aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/utils/SerialSingleThreadExecutor.java
blob: ea1fb81f19fa106cf97d443c2572f5d6d57b227b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package de.pixart.messenger.utils;

import android.os.Looper;
import android.util.Log;

import java.util.ArrayDeque;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;

import de.pixart.messenger.Config;

public class SerialSingleThreadExecutor implements Executor {

    final Executor executor = Executors.newSingleThreadExecutor();
    protected final ArrayDeque<Runnable> tasks = new ArrayDeque<>();
    private Runnable active;
    private final String name;

    public SerialSingleThreadExecutor(String name) {
        this(name, false);
    }

    public SerialSingleThreadExecutor(String name, boolean prepareLooper) {
        if (prepareLooper) {
            execute(new Runnable() {
                @Override
                public void run() {
                    Looper.prepare();
                }
            });
        }
        this.name = name;
    }

    public synchronized void execute(final Runnable r) {
        tasks.offer(new Runnable() {
            public void run() {
                try {
                    r.run();
                } finally {
                    scheduleNext();
                }
            }
        });
        if (active == null) {
            scheduleNext();
        }
    }

    protected synchronized void scheduleNext() {
        if ((active = tasks.poll()) != null) {
            executor.execute(active);
            int remaining = tasks.size();
            if (remaining > 0) {
                Log.d(Config.LOGTAG, remaining + " remaining tasks on executor '" + name + "'");
            }
        }
    }
}