ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166y/ForkJoinTask.java
Revision: 1.57
Committed: Sat Sep 4 11:33:53 2010 UTC (13 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.56: +30 -22 lines
Log Message:
Sync with j.u.c versions

File Contents

# Content
1 /*
2 * Written by Doug Lea with assistance from members of JCP JSR-166
3 * Expert Group and released to the public domain, as explained at
4 * http://creativecommons.org/licenses/publicdomain
5 */
6
7 package jsr166y;
8
9 import java.util.concurrent.*;
10
11 import java.io.Serializable;
12 import java.util.Collection;
13 import java.util.Collections;
14 import java.util.List;
15 import java.util.RandomAccess;
16 import java.util.Map;
17 import java.util.WeakHashMap;
18
19 /**
20 * Abstract base class for tasks that run within a {@link ForkJoinPool}.
21 * A {@code ForkJoinTask} is a thread-like entity that is much
22 * lighter weight than a normal thread. Huge numbers of tasks and
23 * subtasks may be hosted by a small number of actual threads in a
24 * ForkJoinPool, at the price of some usage limitations.
25 *
26 * <p>A "main" {@code ForkJoinTask} begins execution when submitted
27 * to a {@link ForkJoinPool}. Once started, it will usually in turn
28 * start other subtasks. As indicated by the name of this class,
29 * many programs using {@code ForkJoinTask} employ only methods
30 * {@link #fork} and {@link #join}, or derivatives such as {@link
31 * #invokeAll}. However, this class also provides a number of other
32 * methods that can come into play in advanced usages, as well as
33 * extension mechanics that allow support of new forms of fork/join
34 * processing.
35 *
36 * <p>A {@code ForkJoinTask} is a lightweight form of {@link Future}.
37 * The efficiency of {@code ForkJoinTask}s stems from a set of
38 * restrictions (that are only partially statically enforceable)
39 * reflecting their intended use as computational tasks calculating
40 * pure functions or operating on purely isolated objects. The
41 * primary coordination mechanisms are {@link #fork}, that arranges
42 * asynchronous execution, and {@link #join}, that doesn't proceed
43 * until the task's result has been computed. Computations should
44 * avoid {@code synchronized} methods or blocks, and should minimize
45 * other blocking synchronization apart from joining other tasks or
46 * using synchronizers such as Phasers that are advertised to
47 * cooperate with fork/join scheduling. Tasks should also not perform
48 * blocking IO, and should ideally access variables that are
49 * completely independent of those accessed by other running
50 * tasks. Minor breaches of these restrictions, for example using
51 * shared output streams, may be tolerable in practice, but frequent
52 * use may result in poor performance, and the potential to
53 * indefinitely stall if the number of threads not waiting for IO or
54 * other external synchronization becomes exhausted. This usage
55 * restriction is in part enforced by not permitting checked
56 * exceptions such as {@code IOExceptions} to be thrown. However,
57 * computations may still encounter unchecked exceptions, that are
58 * rethrown to callers attempting to join them. These exceptions may
59 * additionally include {@link RejectedExecutionException} stemming
60 * from internal resource exhaustion, such as failure to allocate
61 * internal task queues.
62 *
63 * <p>The primary method for awaiting completion and extracting
64 * results of a task is {@link #join}, but there are several variants:
65 * The {@link Future#get} methods support interruptible and/or timed
66 * waits for completion and report results using {@code Future}
67 * conventions. Method {@link #invoke} is semantically
68 * equivalent to {@code fork(); join()} but always attempts to begin
69 * execution in the current thread. The "<em>quiet</em>" forms of
70 * these methods do not extract results or report exceptions. These
71 * may be useful when a set of tasks are being executed, and you need
72 * to delay processing of results or exceptions until all complete.
73 * Method {@code invokeAll} (available in multiple versions)
74 * performs the most common form of parallel invocation: forking a set
75 * of tasks and joining them all.
76 *
77 * <p>The execution status of tasks may be queried at several levels
78 * of detail: {@link #isDone} is true if a task completed in any way
79 * (including the case where a task was cancelled without executing);
80 * {@link #isCompletedNormally} is true if a task completed without
81 * cancellation or encountering an exception; {@link #isCancelled} is
82 * true if the task was cancelled (in which case {@link #getException}
83 * returns a {@link java.util.concurrent.CancellationException}); and
84 * {@link #isCompletedAbnormally} is true if a task was either
85 * cancelled or encountered an exception, in which case {@link
86 * #getException} will return either the encountered exception or
87 * {@link java.util.concurrent.CancellationException}.
88 *
89 * <p>The ForkJoinTask class is not usually directly subclassed.
90 * Instead, you subclass one of the abstract classes that support a
91 * particular style of fork/join processing, typically {@link
92 * RecursiveAction} for computations that do not return results, or
93 * {@link RecursiveTask} for those that do. Normally, a concrete
94 * ForkJoinTask subclass declares fields comprising its parameters,
95 * established in a constructor, and then defines a {@code compute}
96 * method that somehow uses the control methods supplied by this base
97 * class. While these methods have {@code public} access (to allow
98 * instances of different task subclasses to call each other's
99 * methods), some of them may only be called from within other
100 * ForkJoinTasks (as may be determined using method {@link
101 * #inForkJoinPool}). Attempts to invoke them in other contexts
102 * result in exceptions or errors, possibly including
103 * {@code ClassCastException}.
104 *
105 * <p>Most base support methods are {@code final}, to prevent
106 * overriding of implementations that are intrinsically tied to the
107 * underlying lightweight task scheduling framework. Developers
108 * creating new basic styles of fork/join processing should minimally
109 * implement {@code protected} methods {@link #exec}, {@link
110 * #setRawResult}, and {@link #getRawResult}, while also introducing
111 * an abstract computational method that can be implemented in its
112 * subclasses, possibly relying on other {@code protected} methods
113 * provided by this class.
114 *
115 * <p>ForkJoinTasks should perform relatively small amounts of
116 * computation. Large tasks should be split into smaller subtasks,
117 * usually via recursive decomposition. As a very rough rule of thumb,
118 * a task should perform more than 100 and less than 10000 basic
119 * computational steps. If tasks are too big, then parallelism cannot
120 * improve throughput. If too small, then memory and internal task
121 * maintenance overhead may overwhelm processing.
122 *
123 * <p>This class provides {@code adapt} methods for {@link Runnable}
124 * and {@link Callable}, that may be of use when mixing execution of
125 * {@code ForkJoinTasks} with other kinds of tasks. When all tasks are
126 * of this form, consider using a pool constructed in <em>asyncMode</em>.
127 *
128 * <p>ForkJoinTasks are {@code Serializable}, which enables them to be
129 * used in extensions such as remote execution frameworks. It is
130 * sensible to serialize tasks only before or after, but not during,
131 * execution. Serialization is not relied on during execution itself.
132 *
133 * @since 1.7
134 * @author Doug Lea
135 */
136 public abstract class ForkJoinTask<V> implements Future<V>, Serializable {
137
138 /*
139 * See the internal documentation of class ForkJoinPool for a
140 * general implementation overview. ForkJoinTasks are mainly
141 * responsible for maintaining their "status" field amidst relays
142 * to methods in ForkJoinWorkerThread and ForkJoinPool. The
143 * methods of this class are more-or-less layered into (1) basic
144 * status maintenance (2) execution and awaiting completion (3)
145 * user-level methods that additionally report results. This is
146 * sometimes hard to see because this file orders exported methods
147 * in a way that flows well in javadocs. In particular, most
148 * join mechanics are in method quietlyJoin, below.
149 */
150
151 /*
152 * The status field holds run control status bits packed into a
153 * single int to minimize footprint and to ensure atomicity (via
154 * CAS). Status is initially zero, and takes on nonnegative
155 * values until completed, upon which status holds value
156 * NORMAL. CANCELLED, or EXCEPTIONAL. Tasks undergoing blocking
157 * waits by other threads have the SIGNAL bit set. Completion of
158 * a stolen task with SIGNAL set awakens any waiters via
159 * notifyAll. Even though suboptimal for some purposes, we use
160 * basic builtin wait/notify to take advantage of "monitor
161 * inflation" in JVMs that we would otherwise need to emulate to
162 * avoid adding further per-task bookkeeping overhead. We want
163 * these monitors to be "fat", i.e., not use biasing or thin-lock
164 * techniques, so use some odd coding idioms that tend to avoid
165 * them.
166 */
167
168 /** The run status of this task */
169 volatile int status; // accessed directly by pool and workers
170
171 private static final int NORMAL = -1;
172 private static final int CANCELLED = -2;
173 private static final int EXCEPTIONAL = -3;
174 private static final int SIGNAL = 1;
175
176 /**
177 * Table of exceptions thrown by tasks, to enable reporting by
178 * callers. Because exceptions are rare, we don't directly keep
179 * them with task objects, but instead use a weak ref table. Note
180 * that cancellation exceptions don't appear in the table, but are
181 * instead recorded as status values.
182 * TODO: Use ConcurrentReferenceHashMap
183 */
184 static final Map<ForkJoinTask<?>, Throwable> exceptionMap =
185 Collections.synchronizedMap
186 (new WeakHashMap<ForkJoinTask<?>, Throwable>());
187
188 // Maintaining completion status
189
190 /**
191 * Marks completion and wakes up threads waiting to join this task,
192 * also clearing signal request bits.
193 *
194 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
195 */
196 private void setCompletion(int completion) {
197 int s;
198 while ((s = status) >= 0) {
199 if (UNSAFE.compareAndSwapInt(this, statusOffset, s, completion)) {
200 if (s != 0)
201 synchronized (this) { notifyAll(); }
202 break;
203 }
204 }
205 }
206
207 /**
208 * Records exception and sets exceptional completion.
209 *
210 * @return status on exit
211 */
212 private void setExceptionalCompletion(Throwable rex) {
213 exceptionMap.put(this, rex);
214 setCompletion(EXCEPTIONAL);
215 }
216
217 /**
218 * Blocks a worker thread until completion. Called only by
219 * pool. Currently unused -- pool-based waits use timeout
220 * version below.
221 */
222 final void internalAwaitDone() {
223 int s; // the odd construction reduces lock bias effects
224 while ((s = status) >= 0) {
225 try {
226 synchronized(this) {
227 if (UNSAFE.compareAndSwapInt(this, statusOffset, s,SIGNAL))
228 wait();
229 }
230 } catch (InterruptedException ie) {
231 cancelIfTerminating();
232 }
233 }
234 }
235
236 /**
237 * Blocks a worker thread until completed or timed out. Called
238 * only by pool.
239 *
240 * @return status on exit
241 */
242 final int internalAwaitDone(long millis) {
243 int s;
244 if ((s = status) >= 0) {
245 try {
246 synchronized(this) {
247 if (UNSAFE.compareAndSwapInt(this, statusOffset, s,SIGNAL))
248 wait(millis, 0);
249 }
250 } catch (InterruptedException ie) {
251 cancelIfTerminating();
252 }
253 s = status;
254 }
255 return s;
256 }
257
258 /**
259 * Blocks a non-worker-thread until completion.
260 */
261 private void externalAwaitDone() {
262 int s;
263 while ((s = status) >= 0) {
264 synchronized(this) {
265 if (UNSAFE.compareAndSwapInt(this, statusOffset, s, SIGNAL)){
266 boolean interrupted = false;
267 while (status >= 0) {
268 try {
269 wait();
270 } catch (InterruptedException ie) {
271 interrupted = true;
272 }
273 }
274 if (interrupted)
275 Thread.currentThread().interrupt();
276 break;
277 }
278 }
279 }
280 }
281
282 /**
283 * Unless done, calls exec and records status if completed, but
284 * doesn't wait for completion otherwise. Primary execution method
285 * for ForkJoinWorkerThread.
286 */
287 final void quietlyExec() {
288 try {
289 if (status < 0 || !exec())
290 return;
291 } catch (Throwable rex) {
292 setExceptionalCompletion(rex);
293 return;
294 }
295 setCompletion(NORMAL); // must be outside try block
296 }
297
298 // public methods
299
300 /**
301 * Arranges to asynchronously execute this task. While it is not
302 * necessarily enforced, it is a usage error to fork a task more
303 * than once unless it has completed and been reinitialized.
304 * Subsequent modifications to the state of this task or any data
305 * it operates on are not necessarily consistently observable by
306 * any thread other than the one executing it unless preceded by a
307 * call to {@link #join} or related methods, or a call to {@link
308 * #isDone} returning {@code true}.
309 *
310 * <p>This method may be invoked only from within {@code
311 * ForkJoinTask} computations (as may be determined using method
312 * {@link #inForkJoinPool}). Attempts to invoke in other contexts
313 * result in exceptions or errors, possibly including {@code
314 * ClassCastException}.
315 *
316 * @return {@code this}, to simplify usage
317 */
318 public final ForkJoinTask<V> fork() {
319 ((ForkJoinWorkerThread) Thread.currentThread())
320 .pushTask(this);
321 return this;
322 }
323
324 /**
325 * Returns the result of the computation when it {@link #isDone is done}.
326 * This method differs from {@link #get()} in that
327 * abnormal completion results in {@code RuntimeException} or
328 * {@code Error}, not {@code ExecutionException}.
329 *
330 * @return the computed result
331 */
332 public final V join() {
333 quietlyJoin();
334 Throwable ex;
335 if (status < NORMAL && (ex = getException()) != null)
336 UNSAFE.throwException(ex);
337 return getRawResult();
338 }
339
340 /**
341 * Commences performing this task, awaits its completion if
342 * necessary, and returns its result, or throws an (unchecked)
343 * {@code RuntimeException} or {@code Error} if the underlying
344 * computation did so.
345 *
346 * @return the computed result
347 */
348 public final V invoke() {
349 quietlyInvoke();
350 Throwable ex;
351 if (status < NORMAL && (ex = getException()) != null)
352 UNSAFE.throwException(ex);
353 return getRawResult();
354 }
355
356 /**
357 * Forks the given tasks, returning when {@code isDone} holds for
358 * each task or an (unchecked) exception is encountered, in which
359 * case the exception is rethrown. If more than one task
360 * encounters an exception, then this method throws any one of
361 * these exceptions. If any task encounters an exception, the
362 * other may be cancelled. However, the execution status of
363 * individual tasks is not guaranteed upon exceptional return. The
364 * status of each task may be obtained using {@link
365 * #getException()} and related methods to check if they have been
366 * cancelled, completed normally or exceptionally, or left
367 * unprocessed.
368 *
369 * <p>This method may be invoked only from within {@code
370 * ForkJoinTask} computations (as may be determined using method
371 * {@link #inForkJoinPool}). Attempts to invoke in other contexts
372 * result in exceptions or errors, possibly including {@code
373 * ClassCastException}.
374 *
375 * @param t1 the first task
376 * @param t2 the second task
377 * @throws NullPointerException if any task is null
378 */
379 public static void invokeAll(ForkJoinTask<?> t1, ForkJoinTask<?> t2) {
380 t2.fork();
381 t1.invoke();
382 t2.join();
383 }
384
385 /**
386 * Forks the given tasks, returning when {@code isDone} holds for
387 * each task or an (unchecked) exception is encountered, in which
388 * case the exception is rethrown. If more than one task
389 * encounters an exception, then this method throws any one of
390 * these exceptions. If any task encounters an exception, others
391 * may be cancelled. However, the execution status of individual
392 * tasks is not guaranteed upon exceptional return. The status of
393 * each task may be obtained using {@link #getException()} and
394 * related methods to check if they have been cancelled, completed
395 * normally or exceptionally, or left unprocessed.
396 *
397 * <p>This method may be invoked only from within {@code
398 * ForkJoinTask} computations (as may be determined using method
399 * {@link #inForkJoinPool}). Attempts to invoke in other contexts
400 * result in exceptions or errors, possibly including {@code
401 * ClassCastException}.
402 *
403 * @param tasks the tasks
404 * @throws NullPointerException if any task is null
405 */
406 public static void invokeAll(ForkJoinTask<?>... tasks) {
407 Throwable ex = null;
408 int last = tasks.length - 1;
409 for (int i = last; i >= 0; --i) {
410 ForkJoinTask<?> t = tasks[i];
411 if (t == null) {
412 if (ex == null)
413 ex = new NullPointerException();
414 }
415 else if (i != 0)
416 t.fork();
417 else {
418 t.quietlyInvoke();
419 if (ex == null && t.status < NORMAL)
420 ex = t.getException();
421 }
422 }
423 for (int i = 1; i <= last; ++i) {
424 ForkJoinTask<?> t = tasks[i];
425 if (t != null) {
426 if (ex != null)
427 t.cancel(false);
428 else {
429 t.quietlyJoin();
430 if (ex == null && t.status < NORMAL)
431 ex = t.getException();
432 }
433 }
434 }
435 if (ex != null)
436 UNSAFE.throwException(ex);
437 }
438
439 /**
440 * Forks all tasks in the specified collection, returning when
441 * {@code isDone} holds for each task or an (unchecked) exception
442 * is encountered, in which case the exception is rethrown. If
443 * more than one task encounters an exception, then this method
444 * throws any one of these exceptions. If any task encounters an
445 * exception, others may be cancelled. However, the execution
446 * status of individual tasks is not guaranteed upon exceptional
447 * return. The status of each task may be obtained using {@link
448 * #getException()} and related methods to check if they have been
449 * cancelled, completed normally or exceptionally, or left
450 * unprocessed.
451 *
452 * <p>This method may be invoked only from within {@code
453 * ForkJoinTask} computations (as may be determined using method
454 * {@link #inForkJoinPool}). Attempts to invoke in other contexts
455 * result in exceptions or errors, possibly including {@code
456 * ClassCastException}.
457 *
458 * @param tasks the collection of tasks
459 * @return the tasks argument, to simplify usage
460 * @throws NullPointerException if tasks or any element are null
461 */
462 public static <T extends ForkJoinTask<?>> Collection<T> invokeAll(Collection<T> tasks) {
463 if (!(tasks instanceof RandomAccess) || !(tasks instanceof List<?>)) {
464 invokeAll(tasks.toArray(new ForkJoinTask<?>[tasks.size()]));
465 return tasks;
466 }
467 @SuppressWarnings("unchecked")
468 List<? extends ForkJoinTask<?>> ts =
469 (List<? extends ForkJoinTask<?>>) tasks;
470 Throwable ex = null;
471 int last = ts.size() - 1;
472 for (int i = last; i >= 0; --i) {
473 ForkJoinTask<?> t = ts.get(i);
474 if (t == null) {
475 if (ex == null)
476 ex = new NullPointerException();
477 }
478 else if (i != 0)
479 t.fork();
480 else {
481 t.quietlyInvoke();
482 if (ex == null && t.status < NORMAL)
483 ex = t.getException();
484 }
485 }
486 for (int i = 1; i <= last; ++i) {
487 ForkJoinTask<?> t = ts.get(i);
488 if (t != null) {
489 if (ex != null)
490 t.cancel(false);
491 else {
492 t.quietlyJoin();
493 if (ex == null && t.status < NORMAL)
494 ex = t.getException();
495 }
496 }
497 }
498 if (ex != null)
499 UNSAFE.throwException(ex);
500 return tasks;
501 }
502
503 /**
504 * Attempts to cancel execution of this task. This attempt will
505 * fail if the task has already completed, has already been
506 * cancelled, or could not be cancelled for some other reason. If
507 * successful, and this task has not started when cancel is
508 * called, execution of this task is suppressed, {@link
509 * #isCancelled} will report true, and {@link #join} will result
510 * in a {@code CancellationException} being thrown.
511 *
512 * <p>This method may be overridden in subclasses, but if so, must
513 * still ensure that these minimal properties hold. In particular,
514 * the {@code cancel} method itself must not throw exceptions.
515 *
516 * <p>This method is designed to be invoked by <em>other</em>
517 * tasks. To terminate the current task, you can just return or
518 * throw an unchecked exception from its computation method, or
519 * invoke {@link #completeExceptionally}.
520 *
521 * @param mayInterruptIfRunning this value is ignored in the
522 * default implementation because tasks are not
523 * cancelled via interruption
524 *
525 * @return {@code true} if this task is now cancelled
526 */
527 public boolean cancel(boolean mayInterruptIfRunning) {
528 setCompletion(CANCELLED);
529 return status == CANCELLED;
530 }
531
532 /**
533 * Cancels, ignoring any exceptions thrown by cancel. Used during
534 * worker and pool shutdown. Cancel is spec'ed not to throw any
535 * exceptions, but if it does anyway, we have no recourse during
536 * shutdown, so guard against this case.
537 */
538 final void cancelIgnoringExceptions() {
539 try {
540 cancel(false);
541 } catch (Throwable ignore) {
542 }
543 }
544
545 /**
546 * Cancels if current thread is a terminating worker thread,
547 * ignoring any exceptions thrown by cancel.
548 */
549 final void cancelIfTerminating() {
550 Thread t = Thread.currentThread();
551 if ((t instanceof ForkJoinWorkerThread) &&
552 ((ForkJoinWorkerThread) t).isTerminating()) {
553 try {
554 cancel(false);
555 } catch (Throwable ignore) {
556 }
557 }
558 }
559
560 public final boolean isDone() {
561 return status < 0;
562 }
563
564 public final boolean isCancelled() {
565 return status == CANCELLED;
566 }
567
568 /**
569 * Returns {@code true} if this task threw an exception or was cancelled.
570 *
571 * @return {@code true} if this task threw an exception or was cancelled
572 */
573 public final boolean isCompletedAbnormally() {
574 return status < NORMAL;
575 }
576
577 /**
578 * Returns {@code true} if this task completed without throwing an
579 * exception and was not cancelled.
580 *
581 * @return {@code true} if this task completed without throwing an
582 * exception and was not cancelled
583 */
584 public final boolean isCompletedNormally() {
585 return status == NORMAL;
586 }
587
588 /**
589 * Returns the exception thrown by the base computation, or a
590 * {@code CancellationException} if cancelled, or {@code null} if
591 * none or if the method has not yet completed.
592 *
593 * @return the exception, or {@code null} if none
594 */
595 public final Throwable getException() {
596 int s = status;
597 return ((s >= NORMAL) ? null :
598 (s == CANCELLED) ? new CancellationException() :
599 exceptionMap.get(this));
600 }
601
602 /**
603 * Completes this task abnormally, and if not already aborted or
604 * cancelled, causes it to throw the given exception upon
605 * {@code join} and related operations. This method may be used
606 * to induce exceptions in asynchronous tasks, or to force
607 * completion of tasks that would not otherwise complete. Its use
608 * in other situations is discouraged. This method is
609 * overridable, but overridden versions must invoke {@code super}
610 * implementation to maintain guarantees.
611 *
612 * @param ex the exception to throw. If this exception is not a
613 * {@code RuntimeException} or {@code Error}, the actual exception
614 * thrown will be a {@code RuntimeException} with cause {@code ex}.
615 */
616 public void completeExceptionally(Throwable ex) {
617 setExceptionalCompletion((ex instanceof RuntimeException) ||
618 (ex instanceof Error) ? ex :
619 new RuntimeException(ex));
620 }
621
622 /**
623 * Completes this task, and if not already aborted or cancelled,
624 * returning a {@code null} result upon {@code join} and related
625 * operations. This method may be used to provide results for
626 * asynchronous tasks, or to provide alternative handling for
627 * tasks that would not otherwise complete normally. Its use in
628 * other situations is discouraged. This method is
629 * overridable, but overridden versions must invoke {@code super}
630 * implementation to maintain guarantees.
631 *
632 * @param value the result value for this task
633 */
634 public void complete(V value) {
635 try {
636 setRawResult(value);
637 } catch (Throwable rex) {
638 setExceptionalCompletion(rex);
639 return;
640 }
641 setCompletion(NORMAL);
642 }
643
644 public final V get() throws InterruptedException, ExecutionException {
645 quietlyJoin();
646 if (Thread.interrupted())
647 throw new InterruptedException();
648 int s = status;
649 if (s < NORMAL) {
650 Throwable ex;
651 if (s == CANCELLED)
652 throw new CancellationException();
653 if (s == EXCEPTIONAL && (ex = exceptionMap.get(this)) != null)
654 throw new ExecutionException(ex);
655 }
656 return getRawResult();
657 }
658
659 public final V get(long timeout, TimeUnit unit)
660 throws InterruptedException, ExecutionException, TimeoutException {
661 Thread t = Thread.currentThread();
662 ForkJoinPool pool;
663 if (t instanceof ForkJoinWorkerThread) {
664 ForkJoinWorkerThread w = (ForkJoinWorkerThread) t;
665 if (status >= 0 && w.unpushTask(this))
666 quietlyExec();
667 pool = w.pool;
668 }
669 else
670 pool = null;
671 /*
672 * Timed wait loop intermixes cases for FJ (pool != null) and
673 * non FJ threads. For FJ, decrement pool count but don't try
674 * for replacement; increment count on completion. For non-FJ,
675 * deal with interrupts. This is messy, but a little less so
676 * than is splitting the FJ and nonFJ cases.
677 */
678 boolean interrupted = false;
679 boolean dec = false; // true if pool count decremented
680 long nanos = unit.toNanos(timeout);
681 for (;;) {
682 if (Thread.interrupted() && pool == null) {
683 interrupted = true;
684 break;
685 }
686 int s = status;
687 if (s < 0)
688 break;
689 if (UNSAFE.compareAndSwapInt(this, statusOffset, s, SIGNAL)) {
690 long startTime = System.nanoTime();
691 long nt; // wait time
692 while (status >= 0 &&
693 (nt = nanos - (System.nanoTime() - startTime)) > 0) {
694 if (pool != null && !dec)
695 dec = pool.tryDecrementRunningCount();
696 else {
697 long ms = nt / 1000000;
698 int ns = (int) (nt % 1000000);
699 try {
700 synchronized(this) {
701 if (status >= 0)
702 wait(ms, ns);
703 }
704 } catch (InterruptedException ie) {
705 if (pool != null)
706 cancelIfTerminating();
707 else {
708 interrupted = true;
709 break;
710 }
711 }
712 }
713 }
714 break;
715 }
716 }
717 if (pool != null && dec)
718 pool.incrementRunningCount();
719 if (interrupted)
720 throw new InterruptedException();
721 int es = status;
722 if (es != NORMAL) {
723 Throwable ex;
724 if (es == CANCELLED)
725 throw new CancellationException();
726 if (es == EXCEPTIONAL && (ex = exceptionMap.get(this)) != null)
727 throw new ExecutionException(ex);
728 throw new TimeoutException();
729 }
730 return getRawResult();
731 }
732
733 /**
734 * Joins this task, without returning its result or throwing its
735 * exception. This method may be useful when processing
736 * collections of tasks when some have been cancelled or otherwise
737 * known to have aborted.
738 */
739 public final void quietlyJoin() {
740 Thread t;
741 if ((t = Thread.currentThread()) instanceof ForkJoinWorkerThread) {
742 ForkJoinWorkerThread w = (ForkJoinWorkerThread) t;
743 if (status >= 0) {
744 if (w.unpushTask(this)) {
745 boolean completed;
746 try {
747 completed = exec();
748 } catch (Throwable rex) {
749 setExceptionalCompletion(rex);
750 return;
751 }
752 if (completed) {
753 setCompletion(NORMAL);
754 return;
755 }
756 }
757 w.joinTask(this);
758 }
759 }
760 else
761 externalAwaitDone();
762 }
763
764 /**
765 * Commences performing this task and awaits its completion if
766 * necessary, without returning its result or throwing its
767 * exception. This method may be useful when processing
768 * collections of tasks when some have been cancelled or otherwise
769 * known to have aborted.
770 */
771 public final void quietlyInvoke() {
772 if (status >= 0) {
773 boolean completed;
774 try {
775 completed = exec();
776 } catch (Throwable rex) {
777 setExceptionalCompletion(rex);
778 return;
779 }
780 if (completed)
781 setCompletion(NORMAL);
782 else
783 quietlyJoin();
784 }
785 }
786
787 /**
788 * Possibly executes tasks until the pool hosting the current task
789 * {@link ForkJoinPool#isQuiescent is quiescent}. This method may
790 * be of use in designs in which many tasks are forked, but none
791 * are explicitly joined, instead executing them until all are
792 * processed.
793 *
794 * <p>This method may be invoked only from within {@code
795 * ForkJoinTask} computations (as may be determined using method
796 * {@link #inForkJoinPool}). Attempts to invoke in other contexts
797 * result in exceptions or errors, possibly including {@code
798 * ClassCastException}.
799 */
800 public static void helpQuiesce() {
801 ((ForkJoinWorkerThread) Thread.currentThread())
802 .helpQuiescePool();
803 }
804
805 /**
806 * Resets the internal bookkeeping state of this task, allowing a
807 * subsequent {@code fork}. This method allows repeated reuse of
808 * this task, but only if reuse occurs when this task has either
809 * never been forked, or has been forked, then completed and all
810 * outstanding joins of this task have also completed. Effects
811 * under any other usage conditions are not guaranteed.
812 * This method may be useful when executing
813 * pre-constructed trees of subtasks in loops.
814 */
815 public void reinitialize() {
816 if (status == EXCEPTIONAL)
817 exceptionMap.remove(this);
818 status = 0;
819 }
820
821 /**
822 * Returns the pool hosting the current task execution, or null
823 * if this task is executing outside of any ForkJoinPool.
824 *
825 * @see #inForkJoinPool
826 * @return the pool, or {@code null} if none
827 */
828 public static ForkJoinPool getPool() {
829 Thread t = Thread.currentThread();
830 return (t instanceof ForkJoinWorkerThread) ?
831 ((ForkJoinWorkerThread) t).pool : null;
832 }
833
834 /**
835 * Returns {@code true} if the current thread is executing as a
836 * ForkJoinPool computation.
837 *
838 * @return {@code true} if the current thread is executing as a
839 * ForkJoinPool computation, or false otherwise
840 */
841 public static boolean inForkJoinPool() {
842 return Thread.currentThread() instanceof ForkJoinWorkerThread;
843 }
844
845 /**
846 * Tries to unschedule this task for execution. This method will
847 * typically succeed if this task is the most recently forked task
848 * by the current thread, and has not commenced executing in
849 * another thread. This method may be useful when arranging
850 * alternative local processing of tasks that could have been, but
851 * were not, stolen.
852 *
853 * <p>This method may be invoked only from within {@code
854 * ForkJoinTask} computations (as may be determined using method
855 * {@link #inForkJoinPool}). Attempts to invoke in other contexts
856 * result in exceptions or errors, possibly including {@code
857 * ClassCastException}.
858 *
859 * @return {@code true} if unforked
860 */
861 public boolean tryUnfork() {
862 return ((ForkJoinWorkerThread) Thread.currentThread())
863 .unpushTask(this);
864 }
865
866 /**
867 * Returns an estimate of the number of tasks that have been
868 * forked by the current worker thread but not yet executed. This
869 * value may be useful for heuristic decisions about whether to
870 * fork other tasks.
871 *
872 * <p>This method may be invoked only from within {@code
873 * ForkJoinTask} computations (as may be determined using method
874 * {@link #inForkJoinPool}). Attempts to invoke in other contexts
875 * result in exceptions or errors, possibly including {@code
876 * ClassCastException}.
877 *
878 * @return the number of tasks
879 */
880 public static int getQueuedTaskCount() {
881 return ((ForkJoinWorkerThread) Thread.currentThread())
882 .getQueueSize();
883 }
884
885 /**
886 * Returns an estimate of how many more locally queued tasks are
887 * held by the current worker thread than there are other worker
888 * threads that might steal them. This value may be useful for
889 * heuristic decisions about whether to fork other tasks. In many
890 * usages of ForkJoinTasks, at steady state, each worker should
891 * aim to maintain a small constant surplus (for example, 3) of
892 * tasks, and to process computations locally if this threshold is
893 * exceeded.
894 *
895 * <p>This method may be invoked only from within {@code
896 * ForkJoinTask} computations (as may be determined using method
897 * {@link #inForkJoinPool}). Attempts to invoke in other contexts
898 * result in exceptions or errors, possibly including {@code
899 * ClassCastException}.
900 *
901 * @return the surplus number of tasks, which may be negative
902 */
903 public static int getSurplusQueuedTaskCount() {
904 return ((ForkJoinWorkerThread) Thread.currentThread())
905 .getEstimatedSurplusTaskCount();
906 }
907
908 // Extension methods
909
910 /**
911 * Returns the result that would be returned by {@link #join}, even
912 * if this task completed abnormally, or {@code null} if this task
913 * is not known to have been completed. This method is designed
914 * to aid debugging, as well as to support extensions. Its use in
915 * any other context is discouraged.
916 *
917 * @return the result, or {@code null} if not completed
918 */
919 public abstract V getRawResult();
920
921 /**
922 * Forces the given value to be returned as a result. This method
923 * is designed to support extensions, and should not in general be
924 * called otherwise.
925 *
926 * @param value the value
927 */
928 protected abstract void setRawResult(V value);
929
930 /**
931 * Immediately performs the base action of this task. This method
932 * is designed to support extensions, and should not in general be
933 * called otherwise. The return value controls whether this task
934 * is considered to be done normally. It may return false in
935 * asynchronous actions that require explicit invocations of
936 * {@link #complete} to become joinable. It may also throw an
937 * (unchecked) exception to indicate abnormal exit.
938 *
939 * @return {@code true} if completed normally
940 */
941 protected abstract boolean exec();
942
943 /**
944 * Returns, but does not unschedule or execute, a task queued by
945 * the current thread but not yet executed, if one is immediately
946 * available. There is no guarantee that this task will actually
947 * be polled or executed next. Conversely, this method may return
948 * null even if a task exists but cannot be accessed without
949 * contention with other threads. This method is designed
950 * primarily to support extensions, and is unlikely to be useful
951 * otherwise.
952 *
953 * <p>This method may be invoked only from within {@code
954 * ForkJoinTask} computations (as may be determined using method
955 * {@link #inForkJoinPool}). Attempts to invoke in other contexts
956 * result in exceptions or errors, possibly including {@code
957 * ClassCastException}.
958 *
959 * @return the next task, or {@code null} if none are available
960 */
961 protected static ForkJoinTask<?> peekNextLocalTask() {
962 return ((ForkJoinWorkerThread) Thread.currentThread())
963 .peekTask();
964 }
965
966 /**
967 * Unschedules and returns, without executing, the next task
968 * queued by the current thread but not yet executed. This method
969 * is designed primarily to support extensions, and is unlikely to
970 * be useful otherwise.
971 *
972 * <p>This method may be invoked only from within {@code
973 * ForkJoinTask} computations (as may be determined using method
974 * {@link #inForkJoinPool}). Attempts to invoke in other contexts
975 * result in exceptions or errors, possibly including {@code
976 * ClassCastException}.
977 *
978 * @return the next task, or {@code null} if none are available
979 */
980 protected static ForkJoinTask<?> pollNextLocalTask() {
981 return ((ForkJoinWorkerThread) Thread.currentThread())
982 .pollLocalTask();
983 }
984
985 /**
986 * Unschedules and returns, without executing, the next task
987 * queued by the current thread but not yet executed, if one is
988 * available, or if not available, a task that was forked by some
989 * other thread, if available. Availability may be transient, so a
990 * {@code null} result does not necessarily imply quiescence
991 * of the pool this task is operating in. This method is designed
992 * primarily to support extensions, and is unlikely to be useful
993 * otherwise.
994 *
995 * <p>This method may be invoked only from within {@code
996 * ForkJoinTask} computations (as may be determined using method
997 * {@link #inForkJoinPool}). Attempts to invoke in other contexts
998 * result in exceptions or errors, possibly including {@code
999 * ClassCastException}.
1000 *
1001 * @return a task, or {@code null} if none are available
1002 */
1003 protected static ForkJoinTask<?> pollTask() {
1004 return ((ForkJoinWorkerThread) Thread.currentThread())
1005 .pollTask();
1006 }
1007
1008 /**
1009 * Adaptor for Runnables. This implements RunnableFuture
1010 * to be compliant with AbstractExecutorService constraints
1011 * when used in ForkJoinPool.
1012 */
1013 static final class AdaptedRunnable<T> extends ForkJoinTask<T>
1014 implements RunnableFuture<T> {
1015 final Runnable runnable;
1016 final T resultOnCompletion;
1017 T result;
1018 AdaptedRunnable(Runnable runnable, T result) {
1019 if (runnable == null) throw new NullPointerException();
1020 this.runnable = runnable;
1021 this.resultOnCompletion = result;
1022 }
1023 public T getRawResult() { return result; }
1024 public void setRawResult(T v) { result = v; }
1025 public boolean exec() {
1026 runnable.run();
1027 result = resultOnCompletion;
1028 return true;
1029 }
1030 public void run() { invoke(); }
1031 private static final long serialVersionUID = 5232453952276885070L;
1032 }
1033
1034 /**
1035 * Adaptor for Callables
1036 */
1037 static final class AdaptedCallable<T> extends ForkJoinTask<T>
1038 implements RunnableFuture<T> {
1039 final Callable<? extends T> callable;
1040 T result;
1041 AdaptedCallable(Callable<? extends T> callable) {
1042 if (callable == null) throw new NullPointerException();
1043 this.callable = callable;
1044 }
1045 public T getRawResult() { return result; }
1046 public void setRawResult(T v) { result = v; }
1047 public boolean exec() {
1048 try {
1049 result = callable.call();
1050 return true;
1051 } catch (Error err) {
1052 throw err;
1053 } catch (RuntimeException rex) {
1054 throw rex;
1055 } catch (Exception ex) {
1056 throw new RuntimeException(ex);
1057 }
1058 }
1059 public void run() { invoke(); }
1060 private static final long serialVersionUID = 2838392045355241008L;
1061 }
1062
1063 /**
1064 * Returns a new {@code ForkJoinTask} that performs the {@code run}
1065 * method of the given {@code Runnable} as its action, and returns
1066 * a null result upon {@link #join}.
1067 *
1068 * @param runnable the runnable action
1069 * @return the task
1070 */
1071 public static ForkJoinTask<?> adapt(Runnable runnable) {
1072 return new AdaptedRunnable<Void>(runnable, null);
1073 }
1074
1075 /**
1076 * Returns a new {@code ForkJoinTask} that performs the {@code run}
1077 * method of the given {@code Runnable} as its action, and returns
1078 * the given result upon {@link #join}.
1079 *
1080 * @param runnable the runnable action
1081 * @param result the result upon completion
1082 * @return the task
1083 */
1084 public static <T> ForkJoinTask<T> adapt(Runnable runnable, T result) {
1085 return new AdaptedRunnable<T>(runnable, result);
1086 }
1087
1088 /**
1089 * Returns a new {@code ForkJoinTask} that performs the {@code call}
1090 * method of the given {@code Callable} as its action, and returns
1091 * its result upon {@link #join}, translating any checked exceptions
1092 * encountered into {@code RuntimeException}.
1093 *
1094 * @param callable the callable action
1095 * @return the task
1096 */
1097 public static <T> ForkJoinTask<T> adapt(Callable<? extends T> callable) {
1098 return new AdaptedCallable<T>(callable);
1099 }
1100
1101 // Serialization support
1102
1103 private static final long serialVersionUID = -7721805057305804111L;
1104
1105 /**
1106 * Saves the state to a stream (that is, serializes it).
1107 *
1108 * @serialData the current run status and the exception thrown
1109 * during execution, or {@code null} if none
1110 * @param s the stream
1111 */
1112 private void writeObject(java.io.ObjectOutputStream s)
1113 throws java.io.IOException {
1114 s.defaultWriteObject();
1115 s.writeObject(getException());
1116 }
1117
1118 /**
1119 * Reconstitutes the instance from a stream (that is, deserializes it).
1120 *
1121 * @param s the stream
1122 */
1123 private void readObject(java.io.ObjectInputStream s)
1124 throws java.io.IOException, ClassNotFoundException {
1125 s.defaultReadObject();
1126 Object ex = s.readObject();
1127 if (ex != null)
1128 setExceptionalCompletion((Throwable) ex);
1129 }
1130
1131 // Unsafe mechanics
1132
1133 private static final sun.misc.Unsafe UNSAFE = getUnsafe();
1134 private static final long statusOffset =
1135 objectFieldOffset("status", ForkJoinTask.class);
1136
1137 private static long objectFieldOffset(String field, Class<?> klazz) {
1138 try {
1139 return UNSAFE.objectFieldOffset(klazz.getDeclaredField(field));
1140 } catch (NoSuchFieldException e) {
1141 // Convert Exception to corresponding Error
1142 NoSuchFieldError error = new NoSuchFieldError(field);
1143 error.initCause(e);
1144 throw error;
1145 }
1146 }
1147
1148 /**
1149 * Returns a sun.misc.Unsafe. Suitable for use in a 3rd party package.
1150 * Replace with a simple call to Unsafe.getUnsafe when integrating
1151 * into a jdk.
1152 *
1153 * @return a sun.misc.Unsafe
1154 */
1155 private static sun.misc.Unsafe getUnsafe() {
1156 try {
1157 return sun.misc.Unsafe.getUnsafe();
1158 } catch (SecurityException se) {
1159 try {
1160 return java.security.AccessController.doPrivileged
1161 (new java.security
1162 .PrivilegedExceptionAction<sun.misc.Unsafe>() {
1163 public sun.misc.Unsafe run() throws Exception {
1164 java.lang.reflect.Field f = sun.misc
1165 .Unsafe.class.getDeclaredField("theUnsafe");
1166 f.setAccessible(true);
1167 return (sun.misc.Unsafe) f.get(null);
1168 }});
1169 } catch (java.security.PrivilegedActionException e) {
1170 throw new RuntimeException("Could not initialize intrinsics",
1171 e.getCause());
1172 }
1173 }
1174 }
1175 }