aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/util/WorkerThread.java
blob: 6b65e1c8220aad24ca20b4061d3658598dd64b49 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/**
 * Copyright 2023 JogAmp Community. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification, are
 * permitted provided that the following conditions are met:
 *
 *    1. Redistributions of source code must retain the above copyright notice, this list of
 *       conditions and the following disclaimer.
 *
 *    2. Redistributions in binary form must reproduce the above copyright notice, this list
 *       of conditions and the following disclaimer in the documentation and/or other materials
 *       provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * The views and conclusions contained in the software and documentation are those of the
 * authors and should not be interpreted as representing official policies, either expressed
 * or implied, of JogAmp Community.
 */
package com.jogamp.common.util;

import java.time.Duration;
import java.time.Instant;
import java.time.temporal.ChronoUnit;
import java.util.concurrent.atomic.AtomicInteger;

/**
 * A re-{@link #start()}'able, {@link #pause(boolean)}'able and interrupt'able worker {@link #getThread() thread}
 * with an optional minimum execution duration, see {@link #getSleptDuration()}
 * executing a {@link Callback#run(WorkerThread) task} periodically.
 * <p>
 * Optionally a {@link WorkerThread.StateCallback.State state} {@link StateCallback#run(WorkerThread, WorkerThread.StateCallback.State) task}
 * can be given for fine grained control.
 * </p>
 * <p>
 * If an exception occurs during execution of the work {@link Callback}, the worker {@link #getThread() thread} is {@link #pause(boolean)}'ed
 * and {@link #hasError()} as well as {@link #getError(boolean)} can be used to query and clear the state.
 * User may {@link #resume()} or {@link #stop()} the thread.
 * </p>
 * <p>
 * If an exception occurs during execution of the optional
 * {@link WorkerThread.StateCallback.State state} {@link StateCallback#run(WorkerThread, WorkerThread.StateCallback.State) task},
 * the worker {@link #getThread() thread} is {@link #stop()}'ed
 * and {@link #hasError()} as well as {@link #getError(boolean)} can be used to query and clear the state.
 * </p>
 */
public class WorkerThread {
    /**
     * An interruptible {@link #run() task} periodically executed on the {@link WorkerThread} {@link WorkerThread#getThread() thread}.
     */
    public interface Callback {
        /**
         * Task to be periodically executed on the {@link WorkerThread} {@link WorkerThread#getThread() thread}.
         * @param self The {@link WorkerThread} manager
         * @throws InterruptedException
         */
        void run(WorkerThread self) throws InterruptedException;
    }

    /**
     * An interruptible {@link State} {@link #run() task} on the {@link WorkerThread} {@link WorkerThread#getThread() thread}.
     */
    public interface StateCallback {
        /** State change cause. */
        public static enum State {
            INIT, PAUSED, RESUMED, END
        }
        /**
         * Task to be executed on {@link State} change on the {@link WorkerThread} {@link WorkerThread#getThread() thread}.
         * @param self The {@link WorkerThread} manager
         * @param cause the {@link State} change cause
         * @throws InterruptedException
         */
        void run(WorkerThread self, State cause) throws InterruptedException;
    }

    private static final int RUNNING     = 1 << 0;
    private static final int ACTIVE      = 1 << 1;
    private static final int BLOCKED     = 1 << 2;
    private static final int SHALL_PAUSE = 1 << 3;
    private static final int SHALL_STOP  = 1 << 4;
    private static final int USE_MINIMUM = 1 << 5;
    private static final int DAEMON      = 1 << 6;
    private static AtomicInteger instanceId = new AtomicInteger(0);

    private volatile int state;
    private final static boolean isSet(final int state, final int mask) { return mask == ( state & mask ); }
    private final boolean isSet(final int mask) { return mask == ( state & mask ); }
    private final void set(final int mask) { state |= mask; }
    private final void clear(final int mask) { state &= ~mask; }

    private final Duration minPeriod;
    private final Duration minDelay;
    private final Callback cbWork;
    private final StateCallback cbState;
    private Thread thread;
    private volatile Duration sleptDuration = Duration.ZERO;
    private volatile Exception workErr = null;

    /**
     * Instantiates a new {@link WorkerThread}.
     * @param minPeriod minimum work-loop-period to throttle execution or {@code null} if unthrottled, see {@link #getSleptDuration()}
     * @param minDelay minimum work-loop-delay to throttle execution or {@code null} if unthrottled, see {@link #getSleptDuration()}
     * @param daemonThread argument for {@link Thread#setDaemon(boolean)}
     * @param work the actual work {@link Callback} to perform.
     */
    public WorkerThread(final Duration minPeriod, final Duration minDelay, final boolean daemonThread, final Callback work) {
        this(minPeriod, minDelay, daemonThread, work, null);
    }

    /**
     * Instantiates a new {@link WorkerThread}.
     * @param minPeriod minimum work-loop-period to throttle execution or {@code null} if unthrottled, see {@link #getSleptDuration()}
     * @param minDelay minimum work-loop-delay to throttle execution or {@code null} if unthrottled, see {@link #getSleptDuration()}
     * @param daemonThread argument for {@link Thread#setDaemon(boolean)}
     * @param work the actual work {@link Callback} to perform.
     * @param stateChangeCB optional {@link StateCallback} called at different {@link StateCallback.State} changes while locked
     */
    public WorkerThread(final Duration minPeriod, final Duration minDelay, final boolean daemonThread, final Callback work, final StateCallback stateChangeCB) {
        this.state = 0;
        this.minPeriod = null != minPeriod ? minPeriod : Duration.ZERO;
        this.minDelay = null != minDelay ? minDelay : Duration.ZERO;
        if( this.minPeriod.toMillis() > 0 || this.minDelay.toMillis() > 0 ) {
            set(USE_MINIMUM);
        }
        this.cbWork = work;
        this.cbState = stateChangeCB;
        if( daemonThread ) {
            set(DAEMON);
        }
        thread = null;
    }

    /**
     * Starts execution of a new worker thread if not {@link #isRunning}, i.e. never {@link #start()}'ed or {@link #stop()}'ed.
     * <p>
     * Method blocks until the new worker thread has been started and {@link #isRunning()} and {@link #isActive()} if {@code paused == false}.
     * </p>
     * @param paused if {@code true}, keeps the new worker thread paused, otherwise {@link #resume()} it.
     */
    public final synchronized void start(final boolean paused) {
        if( isSet(RUNNING) || null != thread || isSet(SHALL_STOP) || isSet(SHALL_PAUSE) ) {
            // definite start condition: !isRunning
            // subsequent conditions only for consistency/doc: null == thread && !shallStop && !shallPause
            return;
        }
        if( paused ) {
            set(SHALL_PAUSE);
        }
        thread = new Thread(threadRunnable);
        thread.setDaemon(isSet(DAEMON));
        thread.start();
        try {
            this.notifyAll();  // wake-up startup-block
            if( !paused ) {
                while( !isSet(RUNNING) && !isSet(ACTIVE) && null != thread && !isSet(SHALL_STOP) ) {
                    this.wait();  // wait until started and active (not-paused)
                }
            } else {
                while( !isSet(RUNNING) && null != thread && !isSet(SHALL_STOP) ) {
                    this.wait();  // wait until started
                }
                while( isSet(RUNNING | ACTIVE) && null != thread && !isSet(SHALL_STOP) ) {
                    this.wait();  // wait until paused
                }
            }
        } catch (final InterruptedException e) {
            throw new InterruptedRuntimeException(e);
        }
    }

    /**
     * Stops execution of the {@link #start()}'ed worker thread.
     * <p>
     * Method blocks until worker thread has been {@link #isRunning() stopped} if {@code waitUntilDone} is {@code true}.
     * </p>
     */
    public final synchronized void stop(final boolean waitUntilDone) {
        if( isSet(RUNNING) ) {
            set(SHALL_STOP);
            this.notifyAll();  // wake-up pause-block (opt)
            if( java.lang.Thread.currentThread() != thread ) {
                if( isSet(BLOCKED | RUNNING) ) {
                    thread.interrupt();
                }
                if( waitUntilDone ) {
                    try {
                        while( isSet(RUNNING) ) {
                            this.wait();  // wait until stopped
                        }
                    } catch (final InterruptedException e) {
                        throw new InterruptedRuntimeException(e);
                    }
                }
            }
        }
    }

    /**
     * Pauses execution of the {@link #start()}'ed worker thread.
     * <p>
     * Method blocks until worker thread has been {@link #isActive()}'ated if {@code waitUntilDone} is {@code true}.
     * </p>
     */
    public final synchronized void pause(final boolean waitUntilDone) {
        if( isSet(RUNNING | ACTIVE) && !isSet(SHALL_STOP) ) {
            set(SHALL_PAUSE);
            if( java.lang.Thread.currentThread() != thread ) {
                if( isSet(BLOCKED | ACTIVE) ) {
                    thread.interrupt();
                }
                if( waitUntilDone ) {
                    try {
                        while( isSet(RUNNING | ACTIVE) ) {
                            this.wait(); // wait until paused
                        }
                    } catch (final InterruptedException e) {
                        throw new InterruptedRuntimeException(e);
                    }
                }
            }
        }
    }

    /** Resumes execution of the {@link #pause(boolean)}'ed worker thread. */
    public final synchronized void resume() {
        if( isSet(RUNNING) && !isSet(ACTIVE) && !isSet(SHALL_STOP) ) {
            clear(SHALL_PAUSE);
            this.notifyAll();  // wake-up pause-block
            if( java.lang.Thread.currentThread() != thread ) {
                try {
                    while( !isSet(ACTIVE) && !isSet(SHALL_PAUSE) && isSet(RUNNING) ) {
                        this.wait(); // wait until resumed
                    }
                } catch (final InterruptedException e) {
                    pause(false);
                    throw new InterruptedRuntimeException(e);
                }
            }
        }
    }

    /** Returns true if the worker thread has started via {@link #start()} and has not ended, e.g. via {@link #stop()}. It might be {@link #pause(boolean) paused}. */
    public final boolean isRunning() { return isSet(RUNNING); }
    /** Returns true if the worker thread {@link #isRunning()} and is not {@link #pause(boolean) paused}. */
    public final boolean isActive() { return isSet(ACTIVE); }
    /** Returns true if the worker thread {@link #isRunning()} and is {@link #pause(boolean) paused}. */
    public final boolean isPaused() { return isSet(RUNNING) && !isSet(ACTIVE); }
    /** Returns true if an exception occured during {@link Callable} work execution. */
    public final boolean hasError() { return null != workErr; }
    /** Returns the worker thread if {@link #isRunning()}, otherwise {@code null}. */
    public final Thread getThread() { return thread; }

    /**
     * Returns the exception is {@link #hasError()}.
     * @param clear if true, clear the exception
     */
    public final Exception getError(final boolean clear ) { final Exception e = workErr; if( clear) { workErr = null; } return e; }

    /**
     * Returns enforced minimum work-loop-period or {@link Duration#ZERO} for none.
     * @see #getSleptDuration()
     */
    public final Duration getMinPeriod() { return minPeriod; }

    /**
     * Returns enforced minimum work-loop-delay or {@link Duration#ZERO} for none.
     * @see #getSleptDuration()
     */
    public final Duration getMinDelay() { return minDelay; }

    /**
     * Returns the slept {@link Duration} delta of {@link #getMinPeriod()} and consumed {@link Callback#run()} duration,
     * which minimum is {@link #getMinDelay()}.
     * <p>
     * Returns {@link Duration#ZERO zero} for {@link Duration#ZERO zero} {@link #getMinPeriod()} and {@link #getMinDelay()} or exceeding {@link Callback#run()} duration
     * without {@link #getMinDelay()}.
     * </p>
     */
    public final Duration getSleptDuration() { return sleptDuration; }

    @Override
    public String toString() {
        synchronized(this) {
            final int _state = state;
            return "Worker[running "+isSet(_state, RUNNING)+", active "+isSet(_state, ACTIVE)+", blocked "+isSet(_state, BLOCKED)+
                    ", shall[pause "+isSet(_state, SHALL_PAUSE)+", stop "+isSet(_state, SHALL_STOP)+
                    "], min[period "+minPeriod.toMillis()+"ms, delay "+minDelay.toMillis()+"], slept "+sleptDuration.toMillis()+
                    "ms, daemon "+isSet(_state, DAEMON)+", thread "+thread+"]";
        }
    }

    private final Runnable threadRunnable = new Runnable() {
        @Override
        public final void run() {
            final Thread ct = Thread.currentThread();
            ct.setName(ct.getName()+"-Worker_"+instanceId.getAndIncrement());

            synchronized ( WorkerThread.this ) {
                Exception err = null;
                if( null != cbState ) {
                    try {
                        cbState.run(WorkerThread.this, StateCallback.State.INIT);
                    } catch (final InterruptedException e) {
                        // OK
                    } catch (final Throwable t) {
                        err = new Exception(t.getClass().getSimpleName()+" while processing init-state "+cbState, t);
                    }
                    if( null != err ) {
                        workErr = err;
                        clear(RUNNING | ACTIVE | SHALL_STOP | SHALL_PAUSE);
                        thread = null;
                        workErr.printStackTrace();
                        WorkerThread.this.notifyAll(); // wake-up ctor()
                        return; // bail out
                    }
                }
                set(RUNNING | ACTIVE);
                WorkerThread.this.notifyAll(); // wake-up ctor()
            }

            while( !isSet(SHALL_STOP) ) {
                Exception err = null;
                try {
                    if( isSet(SHALL_PAUSE) ) {
                        synchronized ( WorkerThread.this ) {
                            if( null != cbState ) {
                                try {
                                    cbState.run(WorkerThread.this, StateCallback.State.PAUSED);
                                } catch (final InterruptedException e) {
                                    // OK
                                } catch (final Throwable t) {
                                    err = new Exception(t.getClass().getSimpleName()+" while processing pause-state "+cbState, t);
                                }
                                if( null != err ) {
                                    workErr = err;
                                    clear(RUNNING | ACTIVE | SHALL_STOP | SHALL_PAUSE);
                                    thread = null;
                                    workErr.printStackTrace();
                                    WorkerThread.this.notifyAll(); // wake-up ctor()
                                    return; // bail out
                                }
                            }
                            while( isSet(SHALL_PAUSE) && !isSet(SHALL_STOP) ) {
                                clear(ACTIVE);
                                WorkerThread.this.notifyAll(); // wake-up doPause()
                                try {
                                    WorkerThread.this.wait();  // wait until resumed
                                } catch (final InterruptedException e) {
                                    if( !isSet(SHALL_PAUSE) ) {
                                        throw new InterruptedRuntimeException(e);
                                    }
                                }
                            }
                            if( null != cbState ) {
                                try {
                                    cbState.run(WorkerThread.this, StateCallback.State.RESUMED);
                                } catch (final InterruptedException e) {
                                    err = new InterruptedRuntimeException(e.getClass().getSimpleName()+" while processing resume-state"+cbState, e);
                                } catch (final Throwable t) {
                                    err = new Exception(t.getClass().getSimpleName()+" while processing resume-state "+cbState, t);
                                }
                                if( null != err ) {
                                    workErr = err;
                                    clear(RUNNING | ACTIVE | SHALL_STOP | SHALL_PAUSE);
                                    thread = null;
                                    workErr.printStackTrace();
                                    WorkerThread.this.notifyAll(); // wake-up ctor()
                                    return; // bail out
                                }
                            }
                            set(ACTIVE);
                            WorkerThread.this.notifyAll(); // wake-up doResume()
                        }
                    }
                    if( !isSet(SHALL_STOP) ) {
                        final Instant t0 = Instant.now();
                        set(BLOCKED);
                        {
                            cbWork.run(WorkerThread.this);
                        }
                        clear(BLOCKED);
                        if( isSet(USE_MINIMUM) ) {
                            final long minDelayMS = minDelay.toMillis();
                            final Instant t1 = Instant.now();
                            final Duration td = Duration.between(t0, t1);
                            if( minPeriod.compareTo(td) > 0 ) {
                                final Duration minPeriodDelta = minPeriod.minus(td);
                                final long minPeriodDeltaMS = minPeriodDelta.toMillis();
                                if( minPeriodDeltaMS > 0 ) {
                                    final long minSleepMS = Math.max(minDelayMS, minPeriodDeltaMS);
                                    sleptDuration = Duration.of(minSleepMS, ChronoUnit.MILLIS);
                                    java.lang.Thread.sleep( minSleepMS );
                                } else if( minDelayMS > 0 ) {
                                    sleptDuration = minDelay;
                                    java.lang.Thread.sleep( minDelayMS );
                                } else {
                                    sleptDuration = Duration.ZERO;
                                }
                                // java.util.concurrent.locks.LockSupport.parkNanos(tdMin.toNanos());
                            } else if( minDelayMS > 0 ) {
                                sleptDuration = minDelay;
                                java.lang.Thread.sleep( minDelayMS );
                            } else {
                                sleptDuration = Duration.ZERO;
                            }
                        }
                    }
                } catch (final InterruptedException e) {
                    if( !isSet(BLOCKED) ) { // !shallStop && !shallPause
                        err = new InterruptedRuntimeException(e.getClass().getSimpleName()+" while processing work-callback "+cbWork, e);
                    }
                    clear(BLOCKED);
                    sleptDuration = Duration.ZERO;
                } catch (final Throwable t) {
                    err = new Exception(t.getClass().getSimpleName()+" while processing work-callback "+cbWork, t);
                    sleptDuration = Duration.ZERO;
                } finally {
                    if( null != err ) {
                        // state transition incl. notification
                        synchronized ( WorkerThread.this ) {
                            workErr = err;
                            err = null;
                            set(SHALL_PAUSE);
                            clear(ACTIVE);
                            WorkerThread.this.notifyAll(); // wake-up potential do*()
                        }
                    }
                }
            }
            synchronized ( WorkerThread.this ) {
                if( null != cbState ) {
                    try {
                        cbState.run(WorkerThread.this, StateCallback.State.END);
                    } catch (final InterruptedException e) {
                        // OK
                    } catch (final Throwable t) {
                        workErr = new Exception(t.getClass().getSimpleName()+" while processing end-state "+cbState, t);
                        workErr.printStackTrace();
                    }
                }
                thread = null;
                clear(RUNNING | ACTIVE | SHALL_STOP | SHALL_PAUSE);
                WorkerThread.this.notifyAll(); // wake-up doStop()
            }
        } };
}