ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ForkJoinTask.java
Revision: 1.8
Committed: Tue Aug 4 20:41:40 2009 UTC (14 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.7: +100 -60 lines
Log Message:
sync with jsr166 package

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