ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/FutureTask.java
Revision: 1.83
Committed: Sat Jun 18 20:24:06 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.82: +1 -1 lines
Log Message:
coding style

File Contents

# User Rev Content
1 tim 1.1 /*
2 dl 1.2 * Written by Doug Lea with assistance from members of JCP JSR-166
3 dl 1.23 * Expert Group and released to the public domain, as explained at
4 jsr166 1.59 * http://creativecommons.org/publicdomain/zero/1.0/
5 tim 1.1 */
6    
7     package java.util.concurrent;
8 dl 1.62 import java.util.concurrent.locks.LockSupport;
9 dl 1.13
10 tim 1.1 /**
11 dl 1.8 * A cancellable asynchronous computation. This class provides a base
12     * implementation of {@link Future}, with methods to start and cancel
13     * a computation, query to see if the computation is complete, and
14 dl 1.4 * retrieve the result of the computation. The result can only be
15 jsr166 1.64 * retrieved when the computation has completed; the {@code get}
16     * methods will block if the computation has not yet completed. Once
17 dl 1.8 * the computation has completed, the computation cannot be restarted
18 jsr166 1.64 * or cancelled (unless the computation is invoked using
19     * {@link #runAndReset}).
20 tim 1.1 *
21 jsr166 1.64 * <p>A {@code FutureTask} can be used to wrap a {@link Callable} or
22     * {@link Runnable} object. Because {@code FutureTask} implements
23     * {@code Runnable}, a {@code FutureTask} can be submitted to an
24     * {@link Executor} for execution.
25 tim 1.1 *
26 dl 1.14 * <p>In addition to serving as a standalone class, this class provides
27 jsr166 1.64 * {@code protected} functionality that may be useful when creating
28 dl 1.14 * customized task classes.
29     *
30 tim 1.1 * @since 1.5
31 dl 1.4 * @author Doug Lea
32 jsr166 1.64 * @param <V> The result type returned by this FutureTask's {@code get} methods
33 tim 1.1 */
34 peierls 1.39 public class FutureTask<V> implements RunnableFuture<V> {
35 dl 1.62 /*
36     * Revision notes: This differs from previous versions of this
37     * class that relied on AbstractQueuedSynchronizer, mainly to
38     * avoid surprising users about retaining interrupt status during
39     * cancellation races. Sync control in the current design relies
40     * on a "state" field updated via CAS to track completion, along
41     * with a simple Treiber stack to hold waiting threads.
42     *
43     * Style note: As usual, we bypass overhead of using
44     * AtomicXFieldUpdaters and instead directly use Unsafe intrinsics.
45     */
46    
47     /**
48 jsr166 1.73 * The run state of this task, initially NEW. The run state
49 dl 1.78 * transitions to a terminal state only in methods set,
50     * setException, and cancel. During completion, state may take on
51     * transient values of COMPLETING (while outcome is being set) or
52     * INTERRUPTING (only while interrupting the runner to satisfy a
53     * cancel(true)). Transitions from these intermediate to final
54     * states use cheaper ordered/lazy writes because values are unique
55     * and cannot be further modified.
56 jsr166 1.69 *
57     * Possible state transitions:
58 jsr166 1.73 * NEW -> COMPLETING -> NORMAL
59     * NEW -> COMPLETING -> EXCEPTIONAL
60     * NEW -> CANCELLED
61     * NEW -> INTERRUPTING -> INTERRUPTED
62 dl 1.62 */
63     private volatile int state;
64 jsr166 1.73 private static final int NEW = 0;
65 jsr166 1.70 private static final int COMPLETING = 1;
66     private static final int NORMAL = 2;
67     private static final int EXCEPTIONAL = 3;
68     private static final int CANCELLED = 4;
69     private static final int INTERRUPTING = 5;
70     private static final int INTERRUPTED = 6;
71 dl 1.62
72 dl 1.78 /** The underlying callable; nulled out after running */
73 dl 1.77 private Callable<V> callable;
74 dl 1.62 /** The result to return or exception to throw from get() */
75     private Object outcome; // non-volatile, protected by state reads/writes
76     /** The thread running the callable; CASed during run() */
77     private volatile Thread runner;
78     /** Treiber stack of waiting threads */
79     private volatile WaitNode waiters;
80    
81     /**
82 jsr166 1.64 * Returns result or throws exception for completed task.
83     *
84 dl 1.62 * @param s completed state value
85     */
86     private V report(int s) throws ExecutionException {
87     Object x = outcome;
88     if (s == NORMAL)
89     return (V)x;
90 jsr166 1.69 if (s >= CANCELLED)
91 dl 1.62 throw new CancellationException();
92     throw new ExecutionException((Throwable)x);
93     }
94 dl 1.11
95 tim 1.1 /**
96 jsr166 1.64 * Creates a {@code FutureTask} that will, upon running, execute the
97     * given {@code Callable}.
98 tim 1.1 *
99     * @param callable the callable task
100 jsr166 1.79 * @throws NullPointerException if the callable is null
101 tim 1.1 */
102     public FutureTask(Callable<V> callable) {
103 dl 1.9 if (callable == null)
104     throw new NullPointerException();
105 dl 1.62 this.callable = callable;
106 dl 1.77 this.state = NEW;
107 tim 1.1 }
108    
109     /**
110 jsr166 1.64 * Creates a {@code FutureTask} that will, upon running, execute the
111     * given {@code Runnable}, and arrange that {@code get} will return the
112 tim 1.1 * given result on successful completion.
113     *
114 jsr166 1.54 * @param runnable the runnable task
115 tim 1.1 * @param result the result to return on successful completion. If
116 dl 1.9 * you don't need a particular result, consider using
117 dl 1.16 * constructions of the form:
118 jsr166 1.58 * {@code Future<?> f = new FutureTask<Void>(runnable, null)}
119 jsr166 1.79 * @throws NullPointerException if the runnable is null
120 tim 1.1 */
121 dl 1.15 public FutureTask(Runnable runnable, V result) {
122 dl 1.62 this.callable = Executors.callable(runnable, result);
123 dl 1.77 this.state = NEW;
124 dl 1.20 }
125    
126     public boolean isCancelled() {
127 jsr166 1.69 return state >= CANCELLED;
128 dl 1.20 }
129 jsr166 1.35
130 dl 1.20 public boolean isDone() {
131 jsr166 1.73 return state != NEW;
132 dl 1.13 }
133    
134     public boolean cancel(boolean mayInterruptIfRunning) {
135 dl 1.78 if (state != NEW)
136     return false;
137     if (mayInterruptIfRunning) {
138     if (!UNSAFE.compareAndSwapInt(this, stateOffset, NEW, INTERRUPTING))
139     return false;
140     Thread t = runner;
141     if (t != null)
142     t.interrupt();
143     UNSAFE.putOrderedInt(this, stateOffset, INTERRUPTED); // final state
144     }
145     else if (!UNSAFE.compareAndSwapInt(this, stateOffset, NEW, CANCELLED))
146     return false;
147     finishCompletion();
148     return true;
149 dl 1.13 }
150 jsr166 1.35
151 jsr166 1.43 /**
152     * @throws CancellationException {@inheritDoc}
153     */
154 dl 1.2 public V get() throws InterruptedException, ExecutionException {
155 jsr166 1.64 int s = state;
156 jsr166 1.83 return report((s <= COMPLETING) ? awaitDone(false, 0L) : s);
157 tim 1.1 }
158    
159 jsr166 1.43 /**
160     * @throws CancellationException {@inheritDoc}
161     */
162 dl 1.2 public V get(long timeout, TimeUnit unit)
163 tim 1.1 throws InterruptedException, ExecutionException, TimeoutException {
164 jsr166 1.82 if (unit == null)
165     throw new NullPointerException();
166 jsr166 1.64 int s = state;
167     if (s <= COMPLETING &&
168 jsr166 1.82 (s = awaitDone(true, unit.toNanos(timeout))) <= COMPLETING)
169 dl 1.62 throw new TimeoutException();
170     return report(s);
171 tim 1.1 }
172    
173     /**
174 dl 1.20 * Protected method invoked when this task transitions to state
175 jsr166 1.64 * {@code isDone} (whether normally or via cancellation). The
176 dl 1.20 * default implementation does nothing. Subclasses may override
177     * this method to invoke completion callbacks or perform
178     * bookkeeping. Note that you can query status inside the
179     * implementation of this method to determine whether this task
180     * has been cancelled.
181     */
182     protected void done() { }
183    
184     /**
185 jsr166 1.64 * Sets the result of this future to the given value unless
186 dl 1.29 * this future has already been set or has been cancelled.
187 jsr166 1.64 *
188     * <p>This method is invoked internally by the {@link #run} method
189 dl 1.40 * upon successful completion of the computation.
190 jsr166 1.64 *
191 tim 1.1 * @param v the value
192 jsr166 1.35 */
193 dl 1.2 protected void set(V v) {
194 dl 1.78 if (UNSAFE.compareAndSwapInt(this, stateOffset, NEW, COMPLETING)) {
195     outcome = v;
196     UNSAFE.putOrderedInt(this, stateOffset, NORMAL); // final state
197     finishCompletion();
198     }
199 tim 1.1 }
200    
201     /**
202 jsr166 1.64 * Causes this future to report an {@link ExecutionException}
203     * with the given throwable as its cause, unless this future has
204 dl 1.24 * already been set or has been cancelled.
205 jsr166 1.64 *
206     * <p>This method is invoked internally by the {@link #run} method
207 dl 1.40 * upon failure of the computation.
208 jsr166 1.64 *
209 jsr166 1.41 * @param t the cause of failure
210 jsr166 1.35 */
211 dl 1.2 protected void setException(Throwable t) {
212 dl 1.78 if (UNSAFE.compareAndSwapInt(this, stateOffset, NEW, COMPLETING)) {
213     outcome = t;
214     UNSAFE.putOrderedInt(this, stateOffset, EXCEPTIONAL); // final state
215     finishCompletion();
216     }
217 tim 1.1 }
218 jsr166 1.35
219 dl 1.24 public void run() {
220 dl 1.77 if (state == NEW &&
221     UNSAFE.compareAndSwapObject(this, runnerOffset,
222     null, Thread.currentThread())) {
223     Callable<V> c = callable;
224     if (c != null && state == NEW) {
225     V result = null;
226     boolean ran = false;
227     try {
228     result = c.call();
229     ran = true;
230     } catch (Throwable ex) {
231     setException(ex);
232     }
233     if (ran)
234     set(result);
235     callable = null; // null out upon use to reduce footprint
236 dl 1.62 }
237 jsr166 1.68 runner = null;
238 dl 1.77 if (state >= INTERRUPTING) {
239     while (state == INTERRUPTING)
240     Thread.yield(); // wait out pending interrupt
241     Thread.interrupted(); // clear interrupt from cancel(true)
242 jsr166 1.69 }
243 dl 1.62 }
244 dl 1.24 }
245    
246     /**
247 dl 1.30 * Executes the computation without setting its result, and then
248 jsr166 1.64 * resets this future to initial state, failing to do so if the
249 dl 1.24 * computation encounters an exception or is cancelled. This is
250     * designed for use with tasks that intrinsically execute more
251     * than once.
252 jsr166 1.64 *
253 dl 1.24 * @return true if successfully run and reset
254     */
255     protected boolean runAndReset() {
256 dl 1.77 boolean rerun = false; // true if this task can be re-run
257     if (state == NEW &&
258     UNSAFE.compareAndSwapObject(this, runnerOffset,
259     null, Thread.currentThread())) {
260     Callable<V> c = callable;
261     if (c != null && state == NEW) {
262     try {
263     c.call(); // don't set result
264     rerun = true;
265     } catch (Throwable ex) {
266     setException(ex);
267     }
268 jsr166 1.68 }
269     runner = null;
270 jsr166 1.69 int s = state;
271 dl 1.77 if (s != NEW) {
272     rerun = false;
273     if (s >= INTERRUPTING) {
274     while (state == INTERRUPTING)
275     Thread.yield(); // wait out pending interrupt
276     Thread.interrupted(); // clear interrupt from cancel(true)
277     }
278 jsr166 1.69 }
279 dl 1.77 if (!rerun)
280     callable = null;
281 dl 1.62 }
282 dl 1.77 return rerun;
283 dl 1.14 }
284 dl 1.3
285 dl 1.14 /**
286 dl 1.62 * Simple linked list nodes to record waiting threads in a Treiber
287 jsr166 1.64 * stack. See other classes such as Phaser and SynchronousQueue
288 dl 1.62 * for more detailed explanation.
289 dl 1.20 */
290 dl 1.62 static final class WaitNode {
291     volatile Thread thread;
292 dl 1.76 volatile WaitNode next;
293     WaitNode() { thread = Thread.currentThread(); }
294 dl 1.62 }
295 dl 1.42
296 dl 1.62 /**
297 jsr166 1.80 * Removes and signals all waiting threads, and invokes done().
298 dl 1.62 */
299 dl 1.78 private void finishCompletion() {
300 jsr166 1.81 for (WaitNode q; (q = waiters) != null;) {
301 dl 1.62 if (UNSAFE.compareAndSwapObject(this, waitersOffset, q, null)) {
302     for (;;) {
303     Thread t = q.thread;
304     if (t != null) {
305     q.thread = null;
306     LockSupport.unpark(t);
307     }
308     WaitNode next = q.next;
309     if (next == null)
310 dl 1.78 break;
311 dl 1.62 q.next = null; // unlink to help gc
312     q = next;
313     }
314 dl 1.78 break;
315 dl 1.62 }
316 dl 1.24 }
317 dl 1.78 done();
318 dl 1.62 }
319 dl 1.24
320 dl 1.62 /**
321 jsr166 1.64 * Awaits completion or aborts on interrupt or timeout.
322     *
323 dl 1.62 * @param timed true if use timed waits
324 jsr166 1.64 * @param nanos time to wait, if timed
325 dl 1.62 * @return state upon completion
326     */
327     private int awaitDone(boolean timed, long nanos)
328     throws InterruptedException {
329 jsr166 1.63 long last = timed ? System.nanoTime() : 0L;
330 dl 1.62 WaitNode q = null;
331     boolean queued = false;
332 jsr166 1.64 for (;;) {
333 dl 1.62 if (Thread.interrupted()) {
334     removeWaiter(q);
335     throw new InterruptedException();
336     }
337 jsr166 1.64
338     int s = state;
339     if (s > COMPLETING) {
340 dl 1.62 if (q != null)
341     q.thread = null;
342     return s;
343     }
344     else if (q == null)
345     q = new WaitNode();
346     else if (!queued)
347     queued = UNSAFE.compareAndSwapObject(this, waitersOffset,
348     q.next = waiters, q);
349     else if (timed) {
350     long now = System.nanoTime();
351     if ((nanos -= (now - last)) <= 0L) {
352     removeWaiter(q);
353     return state;
354 dl 1.50 }
355 dl 1.62 last = now;
356     LockSupport.parkNanos(this, nanos);
357 dl 1.50 }
358 dl 1.62 else
359     LockSupport.park(this);
360 dl 1.24 }
361 dl 1.62 }
362 dl 1.24
363 dl 1.62 /**
364 jsr166 1.64 * Tries to unlink a timed-out or interrupted wait node to avoid
365     * accumulating garbage. Internal nodes are simply unspliced
366 dl 1.62 * without CAS since it is harmless if they are traversed anyway
367 jsr166 1.81 * by releasers. To avoid effects of unsplicing from already
368     * removed nodes, the list is retraversed in case of an apparent
369     * race. This is slow when there are a lot of nodes, but we don't
370     * expect lists to be long enough to outweigh higher-overhead
371     * schemes.
372 dl 1.62 */
373     private void removeWaiter(WaitNode node) {
374     if (node != null) {
375     node.thread = null;
376 jsr166 1.81 retry:
377     for (;;) { // restart on removeWaiter race
378     for (WaitNode pred = null, q = waiters, s; q != null; q = s) {
379     s = q.next;
380     if (q.thread != null)
381     pred = q;
382     else if (pred != null) {
383     pred.next = s;
384     if (pred.thread == null) // check for race
385     continue retry;
386     }
387     else if (!UNSAFE.compareAndSwapObject(this, waitersOffset,
388     q, s))
389     continue retry;
390 jsr166 1.55 }
391 jsr166 1.81 break;
392 jsr166 1.56 }
393 dl 1.14 }
394 dl 1.62 }
395 dl 1.14
396 dl 1.62 // Unsafe mechanics
397     private static final sun.misc.Unsafe UNSAFE;
398     private static final long stateOffset;
399     private static final long runnerOffset;
400     private static final long waitersOffset;
401     static {
402     try {
403     UNSAFE = sun.misc.Unsafe.getUnsafe();
404     Class<?> k = FutureTask.class;
405     stateOffset = UNSAFE.objectFieldOffset
406     (k.getDeclaredField("state"));
407     runnerOffset = UNSAFE.objectFieldOffset
408     (k.getDeclaredField("runner"));
409     waitersOffset = UNSAFE.objectFieldOffset
410     (k.getDeclaredField("waiters"));
411     } catch (Exception e) {
412     throw new Error(e);
413 dl 1.14 }
414 dl 1.15 }
415 dl 1.62
416 dl 1.15 }