ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166y/Phaser.java
Revision: 1.47
Committed: Wed Jul 7 19:52:32 2010 UTC (13 years, 10 months ago) by dl
Branch: MAIN
Changes since 1.46: +1 -1 lines
Log Message:
Simplify APIs. See concurrency-interest postings for rationale

File Contents

# User Rev Content
1 dl 1.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 jsr166 1.9
9 dl 1.1 import java.util.concurrent.*;
10 jsr166 1.20
11     import java.util.concurrent.atomic.AtomicReference;
12 dl 1.1 import java.util.concurrent.locks.LockSupport;
13    
14     /**
15 jsr166 1.37 * A reusable synchronization barrier, similar in functionality to
16 jsr166 1.9 * {@link java.util.concurrent.CyclicBarrier CyclicBarrier} and
17     * {@link java.util.concurrent.CountDownLatch CountDownLatch}
18     * but supporting more flexible usage.
19 dl 1.1 *
20 dl 1.38 * <p> <b>Registration.</b> Unlike the case for other barriers, the
21     * number of parties <em>registered</em> to synchronize on a phaser
22     * may vary over time. Tasks may be registered at any time (using
23     * methods {@link #register}, {@link #bulkRegister}, or forms of
24     * constructors establishing initial numbers of parties), and
25     * optionally deregistered upon any arrival (using {@link
26 dl 1.35 * #arriveAndDeregister}). As is the case with most basic
27     * synchronization constructs, registration and deregistration affect
28     * only internal counts; they do not establish any further internal
29 jsr166 1.37 * bookkeeping, so tasks cannot query whether they are registered.
30     * (However, you can introduce such bookkeeping by subclassing this
31     * class.)
32 dl 1.1 *
33 dl 1.38 * <p> <b>Synchronization.</b> Like a {@code CyclicBarrier}, a {@code
34     * Phaser} may be repeatedly awaited. Method {@link
35     * #arriveAndAwaitAdvance} has effect analogous to {@link
36     * java.util.concurrent.CyclicBarrier#await CyclicBarrier.await}. Each
37     * generation of a {@code Phaser} has an associated phase number. The
38 dl 1.39 * phase number starts at zero, and advances when all parties arrive
39 dl 1.38 * at the barrier, wrapping around to zero after reaching {@code
40     * Integer.MAX_VALUE}. The use of phase numbers enables independent
41     * control of actions upon arrival at a barrier and upon awaiting
42     * others, via two kinds of methods that may be invoked by any
43     * registered party:
44 dl 1.1 *
45     * <ul>
46     *
47 dl 1.38 * <li> <b>Arrival.</b> Methods {@link #arrive} and
48     * {@link #arriveAndDeregister} record arrival at a
49     * barrier. These methods do not block, but return an associated
50     * <em>arrival phase number</em>; that is, the phase number of
51     * the barrier to which the arrival applied. When the final
52     * party for a given phase arrives, an optional barrier action
53     * is performed and the phase advances. Barrier actions,
54     * performed by the party triggering a phase advance, are
55     * arranged by overriding method {@link #onAdvance(int, int)},
56     * which also controls termination. Overriding this method is
57     * similar to, but more flexible than, providing a barrier
58     * action to a {@code CyclicBarrier}.
59     *
60     * <li> <b>Waiting.</b> Method {@link #awaitAdvance} requires an
61     * argument indicating an arrival phase number, and returns when
62     * the barrier advances to (or is already at) a different phase.
63     * Unlike similar constructions using {@code CyclicBarrier},
64     * method {@code awaitAdvance} continues to wait even if the
65 dl 1.39 * waiting thread is interrupted. Interruptible and timeout
66     * versions are also available, but exceptions encountered while
67 dl 1.38 * tasks wait interruptibly or with timeout do not change the
68     * state of the barrier. If necessary, you can perform any
69     * associated recovery within handlers of those exceptions,
70     * often after invoking {@code forceTermination}. Phasers may
71     * also be used by tasks executing in a {@link ForkJoinPool},
72     * which will ensure sufficient parallelism to execute tasks
73     * when others are blocked waiting for a phase to advance.
74     *
75 dl 1.1 * </ul>
76     *
77 dl 1.38 * <p> <b>Termination.</b> A {@code Phaser} may enter a
78 dl 1.39 * <em>termination</em> state in which all synchronization methods
79     * immediately return without updating phaser state or waiting for
80     * advance, and indicating (via a negative phase value) that execution
81     * is complete. Termination is triggered when an invocation of {@code
82     * onAdvance} returns {@code true}. As illustrated below, when
83     * phasers control actions with a fixed number of iterations, it is
84     * often convenient to override this method to cause termination when
85     * the current phase number reaches a threshold. Method {@link
86     * #forceTermination} is also available to abruptly release waiting
87     * threads and allow them to terminate.
88 dl 1.4 *
89 dl 1.38 * <p> <b>Tiering.</b> Phasers may be <em>tiered</em> (i.e., arranged
90     * in tree structures) to reduce contention. Phasers with large
91 dl 1.4 * numbers of parties that would otherwise experience heavy
92 dl 1.38 * synchronization contention costs may instead be set up so that
93     * groups of sub-phasers share a common parent. This may greatly
94     * increase throughput even though it incurs greater per-operation
95     * overhead.
96     *
97     * <p><b>Monitoring.</b> While synchronization methods may be invoked
98     * only by registered parties, the current state of a phaser may be
99     * monitored by any caller. At any given moment there are {@link
100 dl 1.40 * #getRegisteredParties} parties in total, of which {@link
101     * #getArrivedParties} have arrived at the current phase ({@link
102     * #getPhase}). When the remaining ({@link #getUnarrivedParties})
103 dl 1.42 * parties arrive, the phase advances. The values returned by these
104     * methods may reflect transient states and so are not in general
105     * useful for synchronization control. Method {@link #toString}
106     * returns snapshots of these state queries in a form convenient for
107     * informal monitoring.
108 dl 1.1 *
109 dl 1.4 * <p><b>Sample usages:</b>
110     *
111 jsr166 1.24 * <p>A {@code Phaser} may be used instead of a {@code CountDownLatch}
112     * to control a one-shot action serving a variable number of
113     * parties. The typical idiom is for the method setting this up to
114     * first register, then start the actions, then deregister, as in:
115 dl 1.1 *
116 jsr166 1.13 * <pre> {@code
117 jsr166 1.33 * void runTasks(List<Runnable> tasks) {
118 jsr166 1.13 * final Phaser phaser = new Phaser(1); // "1" to register self
119 dl 1.27 * // create and start threads
120 jsr166 1.33 * for (Runnable task : tasks) {
121 jsr166 1.13 * phaser.register();
122     * new Thread() {
123     * public void run() {
124     * phaser.arriveAndAwaitAdvance(); // await all creation
125 jsr166 1.33 * task.run();
126 jsr166 1.13 * }
127     * }.start();
128 dl 1.4 * }
129 dl 1.6 *
130 dl 1.27 * // allow threads to start and deregister self
131     * phaser.arriveAndDeregister();
132 jsr166 1.13 * }}</pre>
133 dl 1.1 *
134 dl 1.4 * <p>One way to cause a set of threads to repeatedly perform actions
135 jsr166 1.7 * for a given number of iterations is to override {@code onAdvance}:
136 dl 1.1 *
137 jsr166 1.13 * <pre> {@code
138 jsr166 1.33 * void startTasks(List<Runnable> tasks, final int iterations) {
139 jsr166 1.13 * final Phaser phaser = new Phaser() {
140 dl 1.38 * protected boolean onAdvance(int phase, int registeredParties) {
141 jsr166 1.13 * return phase >= iterations || registeredParties == 0;
142     * }
143     * };
144     * phaser.register();
145 jsr166 1.45 * for (final Runnable task : tasks) {
146 jsr166 1.13 * phaser.register();
147     * new Thread() {
148     * public void run() {
149     * do {
150 jsr166 1.33 * task.run();
151 jsr166 1.13 * phaser.arriveAndAwaitAdvance();
152 jsr166 1.45 * } while (!phaser.isTerminated());
153 dl 1.4 * }
154 jsr166 1.13 * }.start();
155 dl 1.1 * }
156 dl 1.4 * phaser.arriveAndDeregister(); // deregister self, don't wait
157 jsr166 1.13 * }}</pre>
158 dl 1.1 *
159 dl 1.38 * If the main task must later await termination, it
160     * may re-register and then execute a similar loop:
161 jsr166 1.45 * <pre> {@code
162 dl 1.38 * // ...
163     * phaser.register();
164     * while (!phaser.isTerminated())
165 jsr166 1.45 * phaser.arriveAndAwaitAdvance();}</pre>
166 dl 1.38 *
167 jsr166 1.45 * <p>Related constructions may be used to await particular phase numbers
168 dl 1.38 * in contexts where you are sure that the phase will never wrap around
169     * {@code Integer.MAX_VALUE}. For example:
170     *
171 jsr166 1.45 * <pre> {@code
172     * void awaitPhase(Phaser phaser, int phase) {
173     * int p = phaser.register(); // assumes caller not already registered
174     * while (p < phase) {
175     * if (phaser.isTerminated())
176     * // ... deal with unexpected termination
177     * else
178     * p = phaser.arriveAndAwaitAdvance();
179 dl 1.38 * }
180 jsr166 1.45 * phaser.arriveAndDeregister();
181     * }}</pre>
182 dl 1.38 *
183     *
184 jsr166 1.25 * <p>To create a set of tasks using a tree of phasers,
185 dl 1.4 * you could use code of the following form, assuming a
186 jsr166 1.24 * Task class with a constructor accepting a phaser that
187 dl 1.4 * it registers for upon construction:
188 jsr166 1.45 *
189 jsr166 1.13 * <pre> {@code
190 dl 1.44 * void build(Task[] actions, int lo, int hi, Phaser ph) {
191     * if (hi - lo > TASKS_PER_PHASER) {
192     * for (int i = lo; i < hi; i += TASKS_PER_PHASER) {
193     * int j = Math.min(i + TASKS_PER_PHASER, hi);
194     * build(actions, i, j, new Phaser(ph));
195 jsr166 1.13 * }
196     * } else {
197     * for (int i = lo; i < hi; ++i)
198 dl 1.44 * actions[i] = new Task(ph);
199     * // assumes new Task(ph) performs ph.register()
200 jsr166 1.13 * }
201     * }
202     * // .. initially called, for n tasks via
203     * build(new Task[n], 0, n, new Phaser());}</pre>
204 dl 1.4 *
205 jsr166 1.7 * The best value of {@code TASKS_PER_PHASER} depends mainly on
206 dl 1.4 * expected barrier synchronization rates. A value as low as four may
207     * be appropriate for extremely small per-barrier task bodies (thus
208     * high rates), or up to hundreds for extremely large ones.
209     *
210     * </pre>
211     *
212 dl 1.1 * <p><b>Implementation notes</b>: This implementation restricts the
213 dl 1.4 * maximum number of parties to 65535. Attempts to register additional
214 jsr166 1.32 * parties result in {@code IllegalStateException}. However, you can and
215 dl 1.4 * should create tiered phasers to accommodate arbitrarily large sets
216     * of participants.
217 jsr166 1.16 *
218     * @since 1.7
219     * @author Doug Lea
220 dl 1.1 */
221     public class Phaser {
222     /*
223     * This class implements an extension of X10 "clocks". Thanks to
224 dl 1.4 * Vijay Saraswat for the idea, and to Vivek Sarkar for
225     * enhancements to extend functionality.
226 dl 1.1 */
227    
228     /**
229     * Barrier state representation. Conceptually, a barrier contains
230     * four values:
231 jsr166 1.3 *
232 dl 1.1 * * parties -- the number of parties to wait (16 bits)
233     * * unarrived -- the number of parties yet to hit barrier (16 bits)
234     * * phase -- the generation of the barrier (31 bits)
235     * * terminated -- set if barrier is terminated (1 bit)
236     *
237     * However, to efficiently maintain atomicity, these values are
238 dl 1.4 * packed into a single (atomic) long. Termination uses the sign
239     * bit of 32 bit representation of phase, so phase is set to -1 on
240 jsr166 1.8 * termination. Good performance relies on keeping state decoding
241 dl 1.4 * and encoding simple, and keeping race windows short.
242     *
243     * Note: there are some cheats in arrive() that rely on unarrived
244 dl 1.10 * count being lowest 16 bits.
245 dl 1.1 */
246 dl 1.4 private volatile long state;
247 dl 1.1
248 dl 1.10 private static final int ushortMask = 0xffff;
249     private static final int phaseMask = 0x7fffffff;
250 dl 1.1
251     private static int unarrivedOf(long s) {
252 jsr166 1.18 return (int) (s & ushortMask);
253 dl 1.1 }
254    
255     private static int partiesOf(long s) {
256 jsr166 1.17 return ((int) s) >>> 16;
257 dl 1.1 }
258    
259     private static int phaseOf(long s) {
260 jsr166 1.17 return (int) (s >>> 32);
261 dl 1.1 }
262    
263     private static int arrivedOf(long s) {
264     return partiesOf(s) - unarrivedOf(s);
265     }
266    
267     private static long stateFor(int phase, int parties, int unarrived) {
268 jsr166 1.17 return ((((long) phase) << 32) | (((long) parties) << 16) |
269     (long) unarrived);
270 dl 1.1 }
271    
272 dl 1.4 private static long trippedStateFor(int phase, int parties) {
273 jsr166 1.17 long lp = (long) parties;
274     return (((long) phase) << 32) | (lp << 16) | lp;
275 dl 1.4 }
276    
277 dl 1.10 /**
278 jsr166 1.14 * Returns message string for bad bounds exceptions.
279 dl 1.10 */
280     private static String badBounds(int parties, int unarrived) {
281     return ("Attempt to set " + unarrived +
282     " unarrived of " + parties + " parties");
283 dl 1.4 }
284    
285     /**
286     * The parent of this phaser, or null if none
287     */
288     private final Phaser parent;
289    
290     /**
291 jsr166 1.24 * The root of phaser tree. Equals this if not in a tree. Used to
292 dl 1.4 * support faster state push-down.
293     */
294     private final Phaser root;
295    
296     // Wait queues
297    
298     /**
299 dl 1.10 * Heads of Treiber stacks for waiting threads. To eliminate
300 dl 1.4 * contention while releasing some threads while adding others, we
301     * use two of them, alternating across even and odd phases.
302     */
303     private final AtomicReference<QNode> evenQ = new AtomicReference<QNode>();
304     private final AtomicReference<QNode> oddQ = new AtomicReference<QNode>();
305    
306     private AtomicReference<QNode> queueFor(int phase) {
307 jsr166 1.18 return ((phase & 1) == 0) ? evenQ : oddQ;
308 dl 1.4 }
309    
310     /**
311     * Returns current state, first resolving lagged propagation from
312     * root if necessary.
313     */
314     private long getReconciledState() {
315 jsr166 1.18 return (parent == null) ? state : reconcileState();
316 dl 1.4 }
317    
318     /**
319     * Recursively resolves state.
320     */
321     private long reconcileState() {
322     Phaser p = parent;
323     long s = state;
324     if (p != null) {
325     while (unarrivedOf(s) == 0 && phaseOf(s) != phaseOf(root.state)) {
326     long parentState = p.getReconciledState();
327     int parentPhase = phaseOf(parentState);
328     int phase = phaseOf(s = state);
329     if (phase != parentPhase) {
330     long next = trippedStateFor(parentPhase, partiesOf(s));
331     if (casState(s, next)) {
332     releaseWaiters(phase);
333     s = next;
334     }
335     }
336     }
337     }
338     return s;
339 dl 1.1 }
340    
341     /**
342 jsr166 1.24 * Creates a new phaser without any initially registered parties,
343 dl 1.10 * initial phase number 0, and no parent. Any thread using this
344 jsr166 1.24 * phaser will need to first register for it.
345 dl 1.1 */
346     public Phaser() {
347 dl 1.4 this(null);
348 dl 1.1 }
349    
350     /**
351 jsr166 1.24 * Creates a new phaser with the given numbers of registered
352 dl 1.4 * unarrived parties, initial phase number 0, and no parent.
353 jsr166 1.14 *
354     * @param parties the number of parties required to trip barrier
355 dl 1.1 * @throws IllegalArgumentException if parties less than zero
356 jsr166 1.14 * or greater than the maximum number of parties supported
357 dl 1.1 */
358     public Phaser(int parties) {
359 dl 1.4 this(null, parties);
360     }
361    
362     /**
363 jsr166 1.24 * Creates a new phaser with the given parent, without any
364 dl 1.4 * initially registered parties. If parent is non-null this phaser
365     * is registered with the parent and its initial phase number is
366     * the same as that of parent phaser.
367 jsr166 1.14 *
368     * @param parent the parent phaser
369 dl 1.4 */
370     public Phaser(Phaser parent) {
371     int phase = 0;
372     this.parent = parent;
373     if (parent != null) {
374     this.root = parent.root;
375     phase = parent.register();
376     }
377     else
378     this.root = this;
379     this.state = trippedStateFor(phase, 0);
380     }
381    
382     /**
383 jsr166 1.24 * Creates a new phaser with the given parent and numbers of
384 jsr166 1.14 * registered unarrived parties. If parent is non-null, this phaser
385 dl 1.4 * is registered with the parent and its initial phase number is
386     * the same as that of parent phaser.
387 jsr166 1.14 *
388     * @param parent the parent phaser
389     * @param parties the number of parties required to trip barrier
390 dl 1.4 * @throws IllegalArgumentException if parties less than zero
391 jsr166 1.14 * or greater than the maximum number of parties supported
392 dl 1.4 */
393     public Phaser(Phaser parent, int parties) {
394 dl 1.1 if (parties < 0 || parties > ushortMask)
395     throw new IllegalArgumentException("Illegal number of parties");
396 dl 1.4 int phase = 0;
397     this.parent = parent;
398     if (parent != null) {
399     this.root = parent.root;
400     phase = parent.register();
401     }
402     else
403     this.root = this;
404     this.state = trippedStateFor(phase, parties);
405 dl 1.1 }
406    
407     /**
408     * Adds a new unarrived party to this phaser.
409 jsr166 1.14 *
410 dl 1.35 * @return the arrival phase number to which this registration applied
411 dl 1.1 * @throws IllegalStateException if attempting to register more
412 jsr166 1.14 * than the maximum supported number of parties
413 dl 1.1 */
414 dl 1.4 public int register() {
415     return doRegister(1);
416     }
417    
418     /**
419     * Adds the given number of new unarrived parties to this phaser.
420 jsr166 1.14 *
421     * @param parties the number of parties required to trip barrier
422 dl 1.35 * @return the arrival phase number to which this registration applied
423 dl 1.4 * @throws IllegalStateException if attempting to register more
424 jsr166 1.14 * than the maximum supported number of parties
425 dl 1.4 */
426     public int bulkRegister(int parties) {
427     if (parties < 0)
428     throw new IllegalArgumentException();
429     if (parties == 0)
430     return getPhase();
431     return doRegister(parties);
432     }
433    
434     /**
435     * Shared code for register, bulkRegister
436     */
437     private int doRegister(int registrations) {
438     int phase;
439 dl 1.1 for (;;) {
440 dl 1.4 long s = getReconciledState();
441     phase = phaseOf(s);
442     int unarrived = unarrivedOf(s) + registrations;
443     int parties = partiesOf(s) + registrations;
444 jsr166 1.12 if (phase < 0)
445 dl 1.4 break;
446 dl 1.1 if (parties > ushortMask || unarrived > ushortMask)
447 dl 1.10 throw new IllegalStateException(badBounds(parties, unarrived));
448 dl 1.4 if (phase == phaseOf(root.state) &&
449     casState(s, stateFor(phase, parties, unarrived)))
450     break;
451 dl 1.1 }
452 dl 1.4 return phase;
453 dl 1.1 }
454    
455     /**
456     * Arrives at the barrier, but does not wait for others. (You can
457 dl 1.38 * in turn wait for others via {@link #awaitAdvance}). It is an
458     * unenforced usage error for an unregistered party to invoke this
459     * method.
460 dl 1.1 *
461 dl 1.35 * @return the arrival phase number, or a negative value if terminated
462 dl 1.4 * @throws IllegalStateException if not terminated and the number
463 jsr166 1.14 * of unarrived parties would become negative
464 dl 1.1 */
465 dl 1.4 public int arrive() {
466     int phase;
467 dl 1.1 for (;;) {
468 dl 1.4 long s = state;
469     phase = phaseOf(s);
470 dl 1.10 if (phase < 0)
471     break;
472 dl 1.1 int parties = partiesOf(s);
473     int unarrived = unarrivedOf(s) - 1;
474 dl 1.4 if (unarrived > 0) { // Not the last arrival
475     if (casState(s, s - 1)) // s-1 adds one arrival
476     break;
477     }
478     else if (unarrived == 0) { // the last arrival
479     Phaser par = parent;
480     if (par == null) { // directly trip
481     if (casState
482     (s,
483 jsr166 1.18 trippedStateFor(onAdvance(phase, parties) ? -1 :
484 dl 1.4 ((phase + 1) & phaseMask), parties))) {
485     releaseWaiters(phase);
486     break;
487     }
488     }
489     else { // cascade to parent
490     if (casState(s, s - 1)) { // zeroes unarrived
491     par.arrive();
492     reconcileState();
493     break;
494     }
495     }
496     }
497     else if (phase != phaseOf(root.state)) // or if unreconciled
498     reconcileState();
499     else
500 dl 1.10 throw new IllegalStateException(badBounds(parties, unarrived));
501 dl 1.1 }
502 dl 1.4 return phase;
503 dl 1.1 }
504    
505     /**
506 dl 1.27 * Arrives at the barrier and deregisters from it without waiting
507     * for others. Deregistration reduces the number of parties
508 dl 1.4 * required to trip the barrier in future phases. If this phaser
509     * has a parent, and deregistration causes this phaser to have
510 dl 1.27 * zero parties, this phaser also arrives at and is deregistered
511 dl 1.38 * from its parent. It is an unenforced usage error for an
512     * unregistered party to invoke this method.
513 dl 1.1 *
514 dl 1.35 * @return the arrival phase number, or a negative value if terminated
515 dl 1.4 * @throws IllegalStateException if not terminated and the number
516 jsr166 1.14 * of registered or unarrived parties would become negative
517 dl 1.1 */
518 dl 1.4 public int arriveAndDeregister() {
519     // similar code to arrive, but too different to merge
520     Phaser par = parent;
521     int phase;
522 dl 1.1 for (;;) {
523 dl 1.4 long s = state;
524     phase = phaseOf(s);
525 dl 1.10 if (phase < 0)
526     break;
527 dl 1.1 int parties = partiesOf(s) - 1;
528     int unarrived = unarrivedOf(s) - 1;
529 dl 1.4 if (parties >= 0) {
530     if (unarrived > 0 || (unarrived == 0 && par != null)) {
531     if (casState
532     (s,
533     stateFor(phase, parties, unarrived))) {
534     if (unarrived == 0) {
535     par.arriveAndDeregister();
536     reconcileState();
537     }
538     break;
539     }
540     continue;
541     }
542     if (unarrived == 0) {
543     if (casState
544     (s,
545 jsr166 1.18 trippedStateFor(onAdvance(phase, parties) ? -1 :
546 dl 1.4 ((phase + 1) & phaseMask), parties))) {
547     releaseWaiters(phase);
548     break;
549     }
550     continue;
551     }
552     if (par != null && phase != phaseOf(root.state)) {
553     reconcileState();
554     continue;
555     }
556 dl 1.1 }
557 dl 1.10 throw new IllegalStateException(badBounds(parties, unarrived));
558 dl 1.1 }
559 dl 1.4 return phase;
560 dl 1.1 }
561    
562     /**
563 dl 1.4 * Arrives at the barrier and awaits others. Equivalent in effect
564 dl 1.27 * to {@code awaitAdvance(arrive())}. If you need to await with
565     * interruption or timeout, you can arrange this with an analogous
566     * construction using one of the other forms of the awaitAdvance
567     * method. If instead you need to deregister upon arrival use
568 dl 1.38 * {@code arriveAndDeregister}. It is an unenforced usage error
569     * for an unregistered party to invoke this method.
570 jsr166 1.14 *
571 dl 1.35 * @return the arrival phase number, or a negative number if terminated
572 dl 1.4 * @throws IllegalStateException if not terminated and the number
573 jsr166 1.14 * of unarrived parties would become negative
574 dl 1.1 */
575     public int arriveAndAwaitAdvance() {
576 dl 1.4 return awaitAdvance(arrive());
577 dl 1.1 }
578    
579     /**
580 dl 1.27 * Awaits the phase of the barrier to advance from the given phase
581 dl 1.30 * value, returning immediately if the current phase of the
582     * barrier is not equal to the given phase value or this barrier
583 dl 1.38 * is terminated. It is an unenforced usage error for an
584     * unregistered party to invoke this method.
585 jsr166 1.14 *
586 dl 1.35 * @param phase an arrival phase number, or negative value if
587     * terminated; this argument is normally the value returned by a
588     * previous call to {@code arrive} or its variants
589     * @return the next arrival phase number, or a negative value
590     * if terminated or argument is negative
591 dl 1.1 */
592     public int awaitAdvance(int phase) {
593     if (phase < 0)
594     return phase;
595 dl 1.4 long s = getReconciledState();
596     int p = phaseOf(s);
597     if (p != phase)
598     return p;
599 dl 1.10 if (unarrivedOf(s) == 0 && parent != null)
600 dl 1.4 parent.awaitAdvance(phase);
601     // Fall here even if parent waited, to reconcile and help release
602     return untimedWait(phase);
603 dl 1.1 }
604    
605     /**
606 dl 1.30 * Awaits the phase of the barrier to advance from the given phase
607 dl 1.38 * value, throwing {@code InterruptedException} if interrupted
608     * while waiting, or returning immediately if the current phase of
609     * the barrier is not equal to the given phase value or this
610     * barrier is terminated. It is an unenforced usage error for an
611     * unregistered party to invoke this method.
612 jsr166 1.14 *
613 dl 1.35 * @param phase an arrival phase number, or negative value if
614     * terminated; this argument is normally the value returned by a
615     * previous call to {@code arrive} or its variants
616     * @return the next arrival phase number, or a negative value
617     * if terminated or argument is negative
618 dl 1.1 * @throws InterruptedException if thread interrupted while waiting
619     */
620 jsr166 1.12 public int awaitAdvanceInterruptibly(int phase)
621 dl 1.10 throws InterruptedException {
622 dl 1.1 if (phase < 0)
623     return phase;
624 dl 1.4 long s = getReconciledState();
625     int p = phaseOf(s);
626     if (p != phase)
627     return p;
628 dl 1.10 if (unarrivedOf(s) == 0 && parent != null)
629 dl 1.4 parent.awaitAdvanceInterruptibly(phase);
630     return interruptibleWait(phase);
631 dl 1.1 }
632    
633     /**
634 dl 1.30 * Awaits the phase of the barrier to advance from the given phase
635 dl 1.38 * value or the given timeout to elapse, throwing {@code
636     * InterruptedException} if interrupted while waiting, or
637     * returning immediately if the current phase of the barrier is
638     * not equal to the given phase value or this barrier is
639     * terminated. It is an unenforced usage error for an
640     * unregistered party to invoke this method.
641 jsr166 1.14 *
642 dl 1.35 * @param phase an arrival phase number, or negative value if
643     * terminated; this argument is normally the value returned by a
644     * previous call to {@code arrive} or its variants
645 dl 1.31 * @param timeout how long to wait before giving up, in units of
646     * {@code unit}
647     * @param unit a {@code TimeUnit} determining how to interpret the
648     * {@code timeout} parameter
649 dl 1.35 * @return the next arrival phase number, or a negative value
650     * if terminated or argument is negative
651 dl 1.1 * @throws InterruptedException if thread interrupted while waiting
652     * @throws TimeoutException if timed out while waiting
653     */
654 jsr166 1.18 public int awaitAdvanceInterruptibly(int phase,
655     long timeout, TimeUnit unit)
656 dl 1.1 throws InterruptedException, TimeoutException {
657     if (phase < 0)
658     return phase;
659 dl 1.4 long s = getReconciledState();
660     int p = phaseOf(s);
661     if (p != phase)
662     return p;
663 dl 1.10 if (unarrivedOf(s) == 0 && parent != null)
664 dl 1.4 parent.awaitAdvanceInterruptibly(phase, timeout, unit);
665     return timedWait(phase, unit.toNanos(timeout));
666 dl 1.1 }
667    
668     /**
669     * Forces this barrier to enter termination state. Counts of
670 dl 1.4 * arrived and registered parties are unaffected. If this phaser
671     * has a parent, it too is terminated. This method may be useful
672     * for coordinating recovery after one or more tasks encounter
673     * unexpected exceptions.
674 dl 1.1 */
675     public void forceTermination() {
676     for (;;) {
677 dl 1.4 long s = getReconciledState();
678 dl 1.1 int phase = phaseOf(s);
679     int parties = partiesOf(s);
680     int unarrived = unarrivedOf(s);
681     if (phase < 0 ||
682 dl 1.4 casState(s, stateFor(-1, parties, unarrived))) {
683     releaseWaiters(0);
684     releaseWaiters(1);
685     if (parent != null)
686     parent.forceTermination();
687 dl 1.1 return;
688     }
689     }
690     }
691    
692     /**
693 dl 1.4 * Returns the current phase number. The maximum phase number is
694 jsr166 1.7 * {@code Integer.MAX_VALUE}, after which it restarts at
695 dl 1.4 * zero. Upon termination, the phase number is negative.
696 jsr166 1.14 *
697 dl 1.4 * @return the phase number, or a negative value if terminated
698 dl 1.1 */
699 dl 1.4 public final int getPhase() {
700     return phaseOf(getReconciledState());
701 dl 1.1 }
702    
703     /**
704     * Returns the number of parties registered at this barrier.
705 jsr166 1.14 *
706 dl 1.1 * @return the number of parties
707     */
708     public int getRegisteredParties() {
709 dl 1.4 return partiesOf(state);
710 dl 1.1 }
711    
712     /**
713 dl 1.36 * Returns the number of registered parties that have arrived at
714     * the current phase of this barrier.
715 jsr166 1.14 *
716 dl 1.1 * @return the number of arrived parties
717     */
718     public int getArrivedParties() {
719 dl 1.4 return arrivedOf(state);
720 dl 1.1 }
721    
722     /**
723     * Returns the number of registered parties that have not yet
724     * arrived at the current phase of this barrier.
725 jsr166 1.14 *
726 dl 1.1 * @return the number of unarrived parties
727     */
728     public int getUnarrivedParties() {
729 dl 1.4 return unarrivedOf(state);
730     }
731    
732     /**
733 jsr166 1.23 * Returns the parent of this phaser, or {@code null} if none.
734 jsr166 1.14 *
735 jsr166 1.23 * @return the parent of this phaser, or {@code null} if none
736 dl 1.4 */
737     public Phaser getParent() {
738     return parent;
739     }
740    
741     /**
742     * Returns the root ancestor of this phaser, which is the same as
743     * this phaser if it has no parent.
744 jsr166 1.14 *
745 jsr166 1.9 * @return the root ancestor of this phaser
746 dl 1.4 */
747     public Phaser getRoot() {
748     return root;
749 dl 1.1 }
750    
751     /**
752 jsr166 1.9 * Returns {@code true} if this barrier has been terminated.
753 jsr166 1.14 *
754 jsr166 1.9 * @return {@code true} if this barrier has been terminated
755 dl 1.1 */
756     public boolean isTerminated() {
757 dl 1.4 return getPhase() < 0;
758 dl 1.1 }
759    
760     /**
761 dl 1.43 * Overridable method to perform an action upon impending phase
762     * advance, and to control termination. This method is invoked
763     * upon arrival of the party tripping the barrier (when all other
764     * waiting parties are dormant). If this method returns {@code
765     * true}, then, rather than advance the phase number, this barrier
766     * will be set to a final termination state, and subsequent calls
767     * to {@link #isTerminated} will return true. Any (unchecked)
768     * Exception or Error thrown by an invocation of this method is
769     * propagated to the party attempting to trip the barrier, in
770     * which case no advance occurs.
771 dl 1.42 *
772     * <p>The arguments to this method provide the state of the phaser
773     * prevailing for the current transition. (When called from within
774     * an implementation of {@code onAdvance} the values returned by
775     * methods such as {@code getPhase} may or may not reliably
776     * indicate the state to which this transition applies.)
777 jsr166 1.3 *
778 jsr166 1.25 * <p>The default version returns {@code true} when the number of
779 dl 1.1 * registered parties is zero. Normally, overrides that arrange
780     * termination for other reasons should also preserve this
781     * property.
782     *
783 jsr166 1.25 * <p>You may override this method to perform an action with side
784 dl 1.46 * effects visible to participating tasks, but it is only sensible
785     * to do so in designs where all parties register before any
786     * arrive, and all {@link #awaitAdvance} at each phase.
787     * Otherwise, you cannot ensure lack of interference from other
788     * parties during the invocation of this method. Additionally,
789     * method {@code onAdvance} may be invoked more than once per
790     * transition if registrations are intermixed with arrivals.
791 dl 1.4 *
792 dl 1.1 * @param phase the phase number on entering the barrier
793 jsr166 1.9 * @param registeredParties the current number of registered parties
794     * @return {@code true} if this barrier should terminate
795 dl 1.1 */
796     protected boolean onAdvance(int phase, int registeredParties) {
797     return registeredParties <= 0;
798     }
799    
800     /**
801 dl 1.4 * Returns a string identifying this phaser, as well as its
802 dl 1.1 * state. The state, in brackets, includes the String {@code
803 jsr166 1.9 * "phase = "} followed by the phase number, {@code "parties = "}
804 dl 1.1 * followed by the number of registered parties, and {@code
805 jsr166 1.9 * "arrived = "} followed by the number of arrived parties.
806 dl 1.1 *
807     * @return a string identifying this barrier, as well as its state
808     */
809     public String toString() {
810 dl 1.4 long s = getReconciledState();
811 jsr166 1.9 return super.toString() +
812     "[phase = " + phaseOf(s) +
813     " parties = " + partiesOf(s) +
814     " arrived = " + arrivedOf(s) + "]";
815 dl 1.1 }
816    
817 dl 1.4 // methods for waiting
818 dl 1.1
819     /**
820 dl 1.10 * Wait nodes for Treiber stack representing wait queue
821 dl 1.1 */
822 dl 1.10 static final class QNode implements ForkJoinPool.ManagedBlocker {
823     final Phaser phaser;
824     final int phase;
825     final long startTime;
826     final long nanos;
827     final boolean timed;
828     final boolean interruptible;
829     volatile boolean wasInterrupted = false;
830     volatile Thread thread; // nulled to cancel wait
831 dl 1.4 QNode next;
832 dl 1.10 QNode(Phaser phaser, int phase, boolean interruptible,
833     boolean timed, long startTime, long nanos) {
834     this.phaser = phaser;
835     this.phase = phase;
836     this.timed = timed;
837     this.interruptible = interruptible;
838     this.startTime = startTime;
839     this.nanos = nanos;
840 dl 1.4 thread = Thread.currentThread();
841     }
842 dl 1.10 public boolean isReleasable() {
843     return (thread == null ||
844     phaser.getPhase() != phase ||
845     (interruptible && wasInterrupted) ||
846     (timed && (nanos - (System.nanoTime() - startTime)) <= 0));
847     }
848     public boolean block() {
849     if (Thread.interrupted()) {
850     wasInterrupted = true;
851     if (interruptible)
852     return true;
853     }
854     if (!timed)
855     LockSupport.park(this);
856     else {
857     long waitTime = nanos - (System.nanoTime() - startTime);
858     if (waitTime <= 0)
859     return true;
860     LockSupport.parkNanos(this, waitTime);
861     }
862     return isReleasable();
863     }
864 dl 1.4 void signal() {
865     Thread t = thread;
866     if (t != null) {
867     thread = null;
868     LockSupport.unpark(t);
869     }
870     }
871 dl 1.10 boolean doWait() {
872     if (thread != null) {
873     try {
874 dl 1.47 ForkJoinPool.managedBlock(this);
875 dl 1.10 } catch (InterruptedException ie) {
876 jsr166 1.12 }
877 dl 1.10 }
878     return wasInterrupted;
879     }
880    
881 dl 1.4 }
882    
883     /**
884 jsr166 1.14 * Removes and signals waiting threads from wait queue.
885 dl 1.4 */
886     private void releaseWaiters(int phase) {
887     AtomicReference<QNode> head = queueFor(phase);
888     QNode q;
889     while ((q = head.get()) != null) {
890     if (head.compareAndSet(q, q.next))
891     q.signal();
892     }
893     }
894    
895     /**
896 jsr166 1.14 * Tries to enqueue given node in the appropriate wait queue.
897     *
898 dl 1.10 * @return true if successful
899     */
900     private boolean tryEnqueue(QNode node) {
901     AtomicReference<QNode> head = queueFor(node.phase);
902     return head.compareAndSet(node.next = head.get(), node);
903     }
904    
905     /**
906 dl 1.1 * Enqueues node and waits unless aborted or signalled.
907 jsr166 1.14 *
908 dl 1.10 * @return current phase
909 dl 1.1 */
910 dl 1.4 private int untimedWait(int phase) {
911 dl 1.1 QNode node = null;
912 dl 1.10 boolean queued = false;
913 dl 1.4 boolean interrupted = false;
914     int p;
915     while ((p = getPhase()) == phase) {
916 dl 1.10 if (Thread.interrupted())
917     interrupted = true;
918     else if (node == null)
919     node = new QNode(this, phase, false, false, 0, 0);
920     else if (!queued)
921     queued = tryEnqueue(node);
922 dl 1.4 else
923 dl 1.10 interrupted = node.doWait();
924 dl 1.4 }
925     if (node != null)
926     node.thread = null;
927 dl 1.10 releaseWaiters(phase);
928 dl 1.4 if (interrupted)
929     Thread.currentThread().interrupt();
930     return p;
931     }
932    
933     /**
934 dl 1.10 * Interruptible version
935     * @return current phase
936 dl 1.4 */
937     private int interruptibleWait(int phase) throws InterruptedException {
938     QNode node = null;
939     boolean queued = false;
940     boolean interrupted = false;
941     int p;
942 dl 1.10 while ((p = getPhase()) == phase && !interrupted) {
943     if (Thread.interrupted())
944     interrupted = true;
945     else if (node == null)
946     node = new QNode(this, phase, true, false, 0, 0);
947     else if (!queued)
948     queued = tryEnqueue(node);
949 dl 1.1 else
950 dl 1.10 interrupted = node.doWait();
951 dl 1.1 }
952     if (node != null)
953     node.thread = null;
954 dl 1.10 if (p != phase || (p = getPhase()) != phase)
955     releaseWaiters(phase);
956 dl 1.4 if (interrupted)
957     throw new InterruptedException();
958     return p;
959 dl 1.1 }
960    
961     /**
962 dl 1.10 * Timeout version.
963     * @return current phase
964 dl 1.1 */
965 dl 1.4 private int timedWait(int phase, long nanos)
966 dl 1.1 throws InterruptedException, TimeoutException {
967 dl 1.10 long startTime = System.nanoTime();
968     QNode node = null;
969     boolean queued = false;
970     boolean interrupted = false;
971 dl 1.4 int p;
972 dl 1.10 while ((p = getPhase()) == phase && !interrupted) {
973     if (Thread.interrupted())
974     interrupted = true;
975     else if (nanos - (System.nanoTime() - startTime) <= 0)
976     break;
977     else if (node == null)
978     node = new QNode(this, phase, true, true, startTime, nanos);
979     else if (!queued)
980     queued = tryEnqueue(node);
981     else
982     interrupted = node.doWait();
983 dl 1.4 }
984 dl 1.10 if (node != null)
985     node.thread = null;
986     if (p != phase || (p = getPhase()) != phase)
987     releaseWaiters(phase);
988     if (interrupted)
989     throw new InterruptedException();
990     if (p == phase)
991     throw new TimeoutException();
992 dl 1.4 return p;
993     }
994    
995 jsr166 1.22 // Unsafe mechanics
996    
997     private static final sun.misc.Unsafe UNSAFE = getUnsafe();
998     private static final long stateOffset =
999     objectFieldOffset("state", Phaser.class);
1000    
1001     private final boolean casState(long cmp, long val) {
1002     return UNSAFE.compareAndSwapLong(this, stateOffset, cmp, val);
1003     }
1004    
1005     private static long objectFieldOffset(String field, Class<?> klazz) {
1006     try {
1007     return UNSAFE.objectFieldOffset(klazz.getDeclaredField(field));
1008     } catch (NoSuchFieldException e) {
1009     // Convert Exception to corresponding Error
1010     NoSuchFieldError error = new NoSuchFieldError(field);
1011     error.initCause(e);
1012     throw error;
1013     }
1014     }
1015    
1016     /**
1017     * Returns a sun.misc.Unsafe. Suitable for use in a 3rd party package.
1018     * Replace with a simple call to Unsafe.getUnsafe when integrating
1019     * into a jdk.
1020     *
1021     * @return a sun.misc.Unsafe
1022     */
1023 jsr166 1.19 private static sun.misc.Unsafe getUnsafe() {
1024 jsr166 1.11 try {
1025 jsr166 1.19 return sun.misc.Unsafe.getUnsafe();
1026 jsr166 1.11 } catch (SecurityException se) {
1027     try {
1028     return java.security.AccessController.doPrivileged
1029 jsr166 1.22 (new java.security
1030     .PrivilegedExceptionAction<sun.misc.Unsafe>() {
1031 jsr166 1.19 public sun.misc.Unsafe run() throws Exception {
1032 jsr166 1.22 java.lang.reflect.Field f = sun.misc
1033     .Unsafe.class.getDeclaredField("theUnsafe");
1034     f.setAccessible(true);
1035     return (sun.misc.Unsafe) f.get(null);
1036 jsr166 1.11 }});
1037     } catch (java.security.PrivilegedActionException e) {
1038 jsr166 1.19 throw new RuntimeException("Could not initialize intrinsics",
1039     e.getCause());
1040 jsr166 1.11 }
1041     }
1042     }
1043 dl 1.1 }