ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/Phaser.java
Revision: 1.20
Committed: Sat Nov 13 08:30:15 2010 UTC (13 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.19: +12 -13 lines
Log Message:
tidying

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.util.concurrent.TimeUnit;
10 import java.util.concurrent.TimeoutException;
11 import java.util.concurrent.atomic.AtomicReference;
12 import java.util.concurrent.locks.LockSupport;
13
14 /**
15 * A reusable synchronization barrier, similar in functionality to
16 * {@link java.util.concurrent.CyclicBarrier CyclicBarrier} and
17 * {@link java.util.concurrent.CountDownLatch CountDownLatch}
18 * but supporting more flexible usage.
19 *
20 * <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 * #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 * bookkeeping, so tasks cannot query whether they are registered.
30 * (However, you can introduce such bookkeeping by subclassing this
31 * class.)
32 *
33 * <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 * phase number starts at zero, and advances when all parties arrive
39 * 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 *
45 * <ul>
46 *
47 * <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 * waiting thread is interrupted. Interruptible and timeout
66 * versions are also available, but exceptions encountered while
67 * 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 * </ul>
76 *
77 * <p> <b>Termination.</b> A {@code Phaser} may enter a
78 * <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 *
89 * <p> <b>Tiering.</b> Phasers may be <em>tiered</em> (i.e., arranged
90 * in tree structures) to reduce contention. Phasers with large
91 * numbers of parties that would otherwise experience heavy
92 * 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 * #getRegisteredParties} parties in total, of which {@link
101 * #getArrivedParties} have arrived at the current phase ({@link
102 * #getPhase}). When the remaining ({@link #getUnarrivedParties})
103 * 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 *
109 * <p><b>Sample usages:</b>
110 *
111 * <p>A {@code Phaser} may be used instead of a {@code CountDownLatch}
112 * to control a one-shot action serving a variable number of parties.
113 * The typical idiom is for the method setting this up to first
114 * register, then start the actions, then deregister, as in:
115 *
116 * <pre> {@code
117 * void runTasks(List<Runnable> tasks) {
118 * final Phaser phaser = new Phaser(1); // "1" to register self
119 * // create and start threads
120 * for (Runnable task : tasks) {
121 * phaser.register();
122 * new Thread() {
123 * public void run() {
124 * phaser.arriveAndAwaitAdvance(); // await all creation
125 * task.run();
126 * }
127 * }.start();
128 * }
129 *
130 * // allow threads to start and deregister self
131 * phaser.arriveAndDeregister();
132 * }}</pre>
133 *
134 * <p>One way to cause a set of threads to repeatedly perform actions
135 * for a given number of iterations is to override {@code onAdvance}:
136 *
137 * <pre> {@code
138 * void startTasks(List<Runnable> tasks, final int iterations) {
139 * final Phaser phaser = new Phaser() {
140 * protected boolean onAdvance(int phase, int registeredParties) {
141 * return phase >= iterations || registeredParties == 0;
142 * }
143 * };
144 * phaser.register();
145 * for (final Runnable task : tasks) {
146 * phaser.register();
147 * new Thread() {
148 * public void run() {
149 * do {
150 * task.run();
151 * phaser.arriveAndAwaitAdvance();
152 * } while (!phaser.isTerminated());
153 * }
154 * }.start();
155 * }
156 * phaser.arriveAndDeregister(); // deregister self, don't wait
157 * }}</pre>
158 *
159 * If the main task must later await termination, it
160 * may re-register and then execute a similar loop:
161 * <pre> {@code
162 * // ...
163 * phaser.register();
164 * while (!phaser.isTerminated())
165 * phaser.arriveAndAwaitAdvance();}</pre>
166 *
167 * <p>Related constructions may be used to await particular phase numbers
168 * in contexts where you are sure that the phase will never wrap around
169 * {@code Integer.MAX_VALUE}. For example:
170 *
171 * <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 * }
180 * phaser.arriveAndDeregister();
181 * }}</pre>
182 *
183 *
184 * <p>To create a set of tasks using a tree of phasers,
185 * you could use code of the following form, assuming a
186 * Task class with a constructor accepting a phaser that
187 * it registers with upon construction:
188 *
189 * <pre> {@code
190 * 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 * }
196 * } else {
197 * for (int i = lo; i < hi; ++i)
198 * actions[i] = new Task(ph);
199 * // assumes new Task(ph) performs ph.register()
200 * }
201 * }
202 * // .. initially called, for n tasks via
203 * build(new Task[n], 0, n, new Phaser());}</pre>
204 *
205 * The best value of {@code TASKS_PER_PHASER} depends mainly on
206 * 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 * <p><b>Implementation notes</b>: This implementation restricts the
211 * maximum number of parties to 65535. Attempts to register additional
212 * parties result in {@code IllegalStateException}. However, you can and
213 * should create tiered phasers to accommodate arbitrarily large sets
214 * of participants.
215 *
216 * @since 1.7
217 * @author Doug Lea
218 */
219 public class Phaser {
220 /*
221 * This class implements an extension of X10 "clocks". Thanks to
222 * Vijay Saraswat for the idea, and to Vivek Sarkar for
223 * enhancements to extend functionality.
224 */
225
226 /**
227 * Barrier state representation. Conceptually, a barrier contains
228 * four values:
229 *
230 * * unarrived -- the number of parties yet to hit barrier (bits 0-15)
231 * * parties -- the number of parties to wait (bits 16-31)
232 * * phase -- the generation of the barrier (bits 32-62)
233 * * terminated -- set if barrier is terminated (bit 63 / sign)
234 *
235 * However, to efficiently maintain atomicity, these values are
236 * packed into a single (atomic) long. Termination uses the sign
237 * bit of 32 bit representation of phase, so phase is set to -1 on
238 * termination. Good performance relies on keeping state decoding
239 * and encoding simple, and keeping race windows short.
240 */
241 private volatile long state;
242
243 private static final int MAX_COUNT = 0xffff;
244 private static final int MAX_PHASE = 0x7fffffff;
245 private static final int PARTIES_SHIFT = 16;
246 private static final int PHASE_SHIFT = 32;
247 private static final long UNARRIVED_MASK = 0xffffL;
248 private static final long PARTIES_MASK = 0xffff0000L;
249 private static final long ONE_ARRIVAL = 1L;
250 private static final long ONE_PARTY = 1L << PARTIES_SHIFT;
251 private static final long TERMINATION_PHASE = -1L << PHASE_SHIFT;
252
253 // The following unpacking methods are usually manually inlined
254
255 private static int unarrivedOf(long s) {
256 return (int) (s & UNARRIVED_MASK);
257 }
258
259 private static int partiesOf(long s) {
260 return ((int) (s & PARTIES_MASK)) >>> PARTIES_SHIFT;
261 }
262
263 private static int phaseOf(long s) {
264 return (int) (s >>> PHASE_SHIFT);
265 }
266
267 private static int arrivedOf(long s) {
268 return partiesOf(s) - unarrivedOf(s);
269 }
270
271 /**
272 * The parent of this phaser, or null if none
273 */
274 private final Phaser parent;
275
276 /**
277 * The root of phaser tree. Equals this if not in a tree. Used to
278 * support faster state push-down.
279 */
280 private final Phaser root;
281
282 /**
283 * Heads of Treiber stacks for waiting threads. To eliminate
284 * contention when releasing some threads while adding others, we
285 * use two of them, alternating across even and odd phases.
286 * Subphasers share queues with root to speed up releases.
287 */
288 private final AtomicReference<QNode> evenQ;
289 private final AtomicReference<QNode> oddQ;
290
291 private AtomicReference<QNode> queueFor(int phase) {
292 return ((phase & 1) == 0) ? evenQ : oddQ;
293 }
294
295 /**
296 * Main implementation for methods arrive and arriveAndDeregister.
297 * Manually tuned to speed up and minimize race windows for the
298 * common case of just decrementing unarrived field.
299 *
300 * @param adj - adjustment to apply to state -- either
301 * ONE_ARRIVAL (for arrive) or
302 * ONE_ARRIVAL|ONE_PARTY (for arriveAndDeregister)
303 */
304 private int doArrive(long adj) {
305 long s;
306 int phase, unarrived;
307 while ((phase = (int)((s = state) >>> PHASE_SHIFT)) >= 0) {
308 if ((unarrived = (int)(s & UNARRIVED_MASK)) != 0) {
309 if (UNSAFE.compareAndSwapLong(this, stateOffset, s, s -= adj)) {
310 if (unarrived == 1) {
311 Phaser par;
312 long p = s & PARTIES_MASK; // unshifted parties field
313 long lu = p >>> PARTIES_SHIFT;
314 int u = (int)lu;
315 int nextPhase = (phase + 1) & MAX_PHASE;
316 long next = ((long)nextPhase << PHASE_SHIFT) | p | lu;
317 if ((par = parent) == null) {
318 UNSAFE.compareAndSwapLong
319 (this, stateOffset, s, onAdvance(phase, u)?
320 next | TERMINATION_PHASE : next);
321 releaseWaiters(phase);
322 }
323 else {
324 par.doArrive(u == 0?
325 ONE_ARRIVAL|ONE_PARTY : ONE_ARRIVAL);
326 if ((int)(par.state >>> PHASE_SHIFT) != nextPhase ||
327 ((int)(state >>> PHASE_SHIFT) != nextPhase &&
328 !UNSAFE.compareAndSwapLong(this, stateOffset,
329 s, next)))
330 reconcileState();
331 }
332 }
333 break;
334 }
335 }
336 else if (state == s && reconcileState() == s) // recheck
337 throw new IllegalStateException(badArrive());
338 }
339 return phase;
340 }
341
342 /**
343 * Returns message string for bounds exceptions on arrival.
344 * Declared out of line from doArrive to reduce string op bulk.
345 */
346 private String badArrive() {
347 return "Attempted arrival of unregistered party for " + toString();
348 }
349
350 /**
351 * Implementation of register, bulkRegister
352 *
353 * @param registrations number to add to both parties and unarrived fields
354 */
355 private int doRegister(int registrations) {
356 long adj = (long)registrations; // adjustment to state
357 adj |= adj << PARTIES_SHIFT;
358 Phaser par = parent;
359 long s;
360 int phase;
361 while ((phase = (int)((s = (par == null? state : reconcileState()))
362 >>> PHASE_SHIFT)) >= 0) {
363 int parties = ((int)(s & PARTIES_MASK)) >>> PARTIES_SHIFT;
364 if (parties != 0 && (s & UNARRIVED_MASK) == 0)
365 internalAwaitAdvance(phase, null); // wait for onAdvance
366 else if (parties + registrations > MAX_COUNT)
367 throw new IllegalStateException(badRegister());
368 else if (UNSAFE.compareAndSwapLong(this, stateOffset, s, s + adj))
369 break;
370 }
371 return phase;
372 }
373
374 /**
375 * Returns message string for out of bounds exceptions on registration.
376 */
377 private String badRegister() {
378 return "Attempt to register more than " +
379 MAX_COUNT + " parties for " + toString();
380 }
381
382 /**
383 * Recursively resolves lagged phase propagation from root if
384 * necessary.
385 */
386 private long reconcileState() {
387 Phaser par = parent;
388 if (par == null)
389 return state;
390 Phaser rt = root;
391 long s;
392 int phase, rPhase;
393 while ((phase = (int)((s = state) >>> PHASE_SHIFT)) >= 0 &&
394 (rPhase = (int)(rt.state >>> PHASE_SHIFT)) != phase) {
395 if (rPhase < 0 || (s & UNARRIVED_MASK) == 0) {
396 long ps = par.parent == null? par.state : par.reconcileState();
397 int pPhase = (int)(ps >>> PHASE_SHIFT);
398 if (pPhase < 0 || pPhase == ((phase + 1) & MAX_PHASE)) {
399 if (state != s)
400 continue;
401 long p = s & PARTIES_MASK;
402 long next = ((((long) pPhase) << PHASE_SHIFT) |
403 (p >>> PARTIES_SHIFT) | p);
404 if (UNSAFE.compareAndSwapLong(this, stateOffset, s, next))
405 return next;
406 }
407 }
408 if (state == s)
409 releaseWaiters(phase); // help release others
410 }
411 return s;
412 }
413
414 /**
415 * Creates a new phaser without any initially registered parties,
416 * initial phase number 0, and no parent. Any thread using this
417 * phaser will need to first register for it.
418 */
419 public Phaser() {
420 this(null, 0);
421 }
422
423 /**
424 * Creates a new phaser with the given number of registered
425 * unarrived parties, initial phase number 0, and no parent.
426 *
427 * @param parties the number of parties required to trip barrier
428 * @throws IllegalArgumentException if parties less than zero
429 * or greater than the maximum number of parties supported
430 */
431 public Phaser(int parties) {
432 this(null, parties);
433 }
434
435 /**
436 * Creates a new phaser with the given parent, without any
437 * initially registered parties. If parent is non-null this phaser
438 * is registered with the parent and its initial phase number is
439 * the same as that of parent phaser.
440 *
441 * @param parent the parent phaser
442 */
443 public Phaser(Phaser parent) {
444 this(parent, 0);
445 }
446
447 /**
448 * Creates a new phaser with the given parent and number of
449 * registered unarrived parties. If parent is non-null, this phaser
450 * is registered with the parent and its initial phase number is
451 * the same as that of parent phaser.
452 *
453 * @param parent the parent phaser
454 * @param parties the number of parties required to trip barrier
455 * @throws IllegalArgumentException if parties less than zero
456 * or greater than the maximum number of parties supported
457 */
458 public Phaser(Phaser parent, int parties) {
459 if (parties < 0 || parties > MAX_COUNT)
460 throw new IllegalArgumentException("Illegal number of parties");
461 int phase;
462 this.parent = parent;
463 if (parent != null) {
464 Phaser r = parent.root;
465 this.root = r;
466 this.evenQ = r.evenQ;
467 this.oddQ = r.oddQ;
468 phase = parent.register();
469 }
470 else {
471 this.root = this;
472 this.evenQ = new AtomicReference<QNode>();
473 this.oddQ = new AtomicReference<QNode>();
474 phase = 0;
475 }
476 long p = (long)parties;
477 this.state = (((long) phase) << PHASE_SHIFT) | p | (p << PARTIES_SHIFT);
478 }
479
480 /**
481 * Adds a new unarrived party to this phaser.
482 * If an ongoing invocation of {@link #onAdvance} is in progress,
483 * this method may wait until its completion before registering.
484 *
485 * @return the arrival phase number to which this registration applied
486 * @throws IllegalStateException if attempting to register more
487 * than the maximum supported number of parties
488 */
489 public int register() {
490 return doRegister(1);
491 }
492
493 /**
494 * Adds the given number of new unarrived parties to this phaser.
495 * If an ongoing invocation of {@link #onAdvance} is in progress,
496 * this method may wait until its completion before registering.
497 *
498 * @param parties the number of additional parties required to trip barrier
499 * @return the arrival phase number to which this registration applied
500 * @throws IllegalStateException if attempting to register more
501 * than the maximum supported number of parties
502 * @throws IllegalArgumentException if {@code parties < 0}
503 */
504 public int bulkRegister(int parties) {
505 if (parties < 0)
506 throw new IllegalArgumentException();
507 if (parties > MAX_COUNT)
508 throw new IllegalStateException(badRegister());
509 if (parties == 0)
510 return getPhase();
511 return doRegister(parties);
512 }
513
514 /**
515 * Arrives at the barrier, but does not wait for others. (You can
516 * in turn wait for others via {@link #awaitAdvance}). It is an
517 * unenforced usage error for an unregistered party to invoke this
518 * method.
519 *
520 * @return the arrival phase number, or a negative value if terminated
521 * @throws IllegalStateException if not terminated and the number
522 * of unarrived parties would become negative
523 */
524 public int arrive() {
525 return doArrive(ONE_ARRIVAL);
526 }
527
528 /**
529 * Arrives at the barrier and deregisters from it without waiting
530 * for others. Deregistration reduces the number of parties
531 * required to trip the barrier in future phases. If this phaser
532 * has a parent, and deregistration causes this phaser to have
533 * zero parties, this phaser also arrives at and is deregistered
534 * from its parent. It is an unenforced usage error for an
535 * unregistered party to invoke this method.
536 *
537 * @return the arrival phase number, or a negative value if terminated
538 * @throws IllegalStateException if not terminated and the number
539 * of registered or unarrived parties would become negative
540 */
541 public int arriveAndDeregister() {
542 return doArrive(ONE_ARRIVAL|ONE_PARTY);
543 }
544
545 /**
546 * Arrives at the barrier and awaits others. Equivalent in effect
547 * to {@code awaitAdvance(arrive())}. If you need to await with
548 * interruption or timeout, you can arrange this with an analogous
549 * construction using one of the other forms of the {@code
550 * awaitAdvance} method. If instead you need to deregister upon
551 * arrival, use {@link #arriveAndDeregister}. It is an unenforced
552 * usage error for an unregistered party to invoke this method.
553 *
554 * @return the arrival phase number, or a negative number if terminated
555 * @throws IllegalStateException if not terminated and the number
556 * of unarrived parties would become negative
557 */
558 public int arriveAndAwaitAdvance() {
559 return awaitAdvance(arrive());
560 }
561
562 /**
563 * Awaits the phase of the barrier to advance from the given phase
564 * value, returning immediately if the current phase of the
565 * barrier is not equal to the given phase value or this barrier
566 * is terminated.
567 *
568 * @param phase an arrival phase number, or negative value if
569 * terminated; this argument is normally the value returned by a
570 * previous call to {@code arrive} or its variants
571 * @return the next arrival phase number, or a negative value
572 * if terminated or argument is negative
573 */
574 public int awaitAdvance(int phase) {
575 if (phase < 0)
576 return phase;
577 int p = (int)((parent==null? state : reconcileState()) >>> PHASE_SHIFT);
578 if (p != phase)
579 return p;
580 return internalAwaitAdvance(phase, null);
581 }
582
583 /**
584 * Awaits the phase of the barrier to advance from the given phase
585 * value, throwing {@code InterruptedException} if interrupted
586 * while waiting, or returning immediately if the current phase of
587 * the barrier is not equal to the given phase value or this
588 * barrier is terminated.
589 *
590 * @param phase an arrival phase number, or negative value if
591 * terminated; this argument is normally the value returned by a
592 * previous call to {@code arrive} or its variants
593 * @return the next arrival phase number, or a negative value
594 * if terminated or argument is negative
595 * @throws InterruptedException if thread interrupted while waiting
596 */
597 public int awaitAdvanceInterruptibly(int phase)
598 throws InterruptedException {
599 if (phase < 0)
600 return phase;
601 int p = (int)((parent==null? state : reconcileState()) >>> PHASE_SHIFT);
602 if (p != phase)
603 return p;
604 QNode node = new QNode(this, phase, true, false, 0L);
605 p = internalAwaitAdvance(phase, node);
606 if (node.wasInterrupted)
607 throw new InterruptedException();
608 else
609 return p;
610 }
611
612 /**
613 * Awaits the phase of the barrier to advance from the given phase
614 * value or the given timeout to elapse, throwing {@code
615 * InterruptedException} if interrupted while waiting, or
616 * returning immediately if the current phase of the barrier is
617 * not equal to the given phase value or this barrier is
618 * terminated.
619 *
620 * @param phase an arrival phase number, or negative value if
621 * terminated; this argument is normally the value returned by a
622 * previous call to {@code arrive} or its variants
623 * @param timeout how long to wait before giving up, in units of
624 * {@code unit}
625 * @param unit a {@code TimeUnit} determining how to interpret the
626 * {@code timeout} parameter
627 * @return the next arrival phase number, or a negative value
628 * if terminated or argument is negative
629 * @throws InterruptedException if thread interrupted while waiting
630 * @throws TimeoutException if timed out while waiting
631 */
632 public int awaitAdvanceInterruptibly(int phase,
633 long timeout, TimeUnit unit)
634 throws InterruptedException, TimeoutException {
635 long nanos = unit.toNanos(timeout);
636 if (phase < 0)
637 return phase;
638 int p = (int)((parent==null? state : reconcileState()) >>> PHASE_SHIFT);
639 if (p != phase)
640 return p;
641 QNode node = new QNode(this, phase, true, true, nanos);
642 p = internalAwaitAdvance(phase, node);
643 if (node.wasInterrupted)
644 throw new InterruptedException();
645 else if (p == phase)
646 throw new TimeoutException();
647 else
648 return p;
649 }
650
651 /**
652 * Forces this barrier to enter termination state. Counts of
653 * arrived and registered parties are unaffected. If this phaser
654 * has a parent, it too is terminated. This method may be useful
655 * for coordinating recovery after one or more tasks encounter
656 * unexpected exceptions.
657 */
658 public void forceTermination() {
659 Phaser r = root; // force at root then reconcile
660 long s;
661 while ((s = r.state) >= 0)
662 UNSAFE.compareAndSwapLong(r, stateOffset, s, s | TERMINATION_PHASE);
663 reconcileState();
664 releaseWaiters(0); // signal all threads
665 releaseWaiters(1);
666 }
667
668 /**
669 * Returns the current phase number. The maximum phase number is
670 * {@code Integer.MAX_VALUE}, after which it restarts at
671 * zero. Upon termination, the phase number is negative.
672 *
673 * @return the phase number, or a negative value if terminated
674 */
675 public final int getPhase() {
676 return (int)((parent == null? state : reconcileState()) >>> PHASE_SHIFT);
677 }
678
679 /**
680 * Returns the number of parties registered at this barrier.
681 *
682 * @return the number of parties
683 */
684 public int getRegisteredParties() {
685 return partiesOf(parent == null? state : reconcileState());
686 }
687
688 /**
689 * Returns the number of registered parties that have arrived at
690 * the current phase of this barrier.
691 *
692 * @return the number of arrived parties
693 */
694 public int getArrivedParties() {
695 return arrivedOf(parent == null? state : reconcileState());
696 }
697
698 /**
699 * Returns the number of registered parties that have not yet
700 * arrived at the current phase of this barrier.
701 *
702 * @return the number of unarrived parties
703 */
704 public int getUnarrivedParties() {
705 return unarrivedOf(parent == null? state : reconcileState());
706 }
707
708 /**
709 * Returns the parent of this phaser, or {@code null} if none.
710 *
711 * @return the parent of this phaser, or {@code null} if none
712 */
713 public Phaser getParent() {
714 return parent;
715 }
716
717 /**
718 * Returns the root ancestor of this phaser, which is the same as
719 * this phaser if it has no parent.
720 *
721 * @return the root ancestor of this phaser
722 */
723 public Phaser getRoot() {
724 return root;
725 }
726
727 /**
728 * Returns {@code true} if this barrier has been terminated.
729 *
730 * @return {@code true} if this barrier has been terminated
731 */
732 public boolean isTerminated() {
733 return (parent == null? state : reconcileState()) < 0;
734 }
735
736 /**
737 * Overridable method to perform an action upon impending phase
738 * advance, and to control termination. This method is invoked
739 * upon arrival of the party tripping the barrier (when all other
740 * waiting parties are dormant). If this method returns {@code
741 * true}, then, rather than advance the phase number, this barrier
742 * will be set to a final termination state, and subsequent calls
743 * to {@link #isTerminated} will return true. Any (unchecked)
744 * Exception or Error thrown by an invocation of this method is
745 * propagated to the party attempting to trip the barrier, in
746 * which case no advance occurs.
747 *
748 * <p>The arguments to this method provide the state of the phaser
749 * prevailing for the current transition. The effects of invoking
750 * arrival, registration, and waiting methods on this Phaser from
751 * within {@code onAdvance} are unspecified and should not be
752 * relied on.
753 *
754 * <p>If this Phaser is a member of a tiered set of Phasers, then
755 * {@code onAdvance} is invoked only for its root Phaser on each
756 * advance.
757 *
758 * <p>The default version returns {@code true} when the number of
759 * registered parties is zero. Normally, overrides that arrange
760 * termination for other reasons should also preserve this
761 * property.
762 *
763 * @param phase the phase number on entering the barrier
764 * @param registeredParties the current number of registered parties
765 * @return {@code true} if this barrier should terminate
766 */
767 protected boolean onAdvance(int phase, int registeredParties) {
768 return registeredParties <= 0;
769 }
770
771 /**
772 * Returns a string identifying this phaser, as well as its state.
773 * The state, in brackets, includes the String {@code "phase = "}
774 * followed by the phase number, {@code "parties = "} followed by
775 * the number of registered parties, and {@code "arrived = "}
776 * followed by the number of arrived parties.
777 *
778 * @return a string identifying this barrier, as well as its state
779 */
780 public String toString() {
781 long s = reconcileState();
782 return super.toString() +
783 "[phase = " + phaseOf(s) +
784 " parties = " + partiesOf(s) +
785 " arrived = " + arrivedOf(s) + "]";
786 }
787
788 /**
789 * Removes and signals threads from queue for phase.
790 */
791 private void releaseWaiters(int phase) {
792 AtomicReference<QNode> head = queueFor(phase);
793 QNode q;
794 int p;
795 while ((q = head.get()) != null &&
796 ((p = q.phase) == phase ||
797 (int)(root.state >>> PHASE_SHIFT) != p)) {
798 if (head.compareAndSet(q, q.next))
799 q.signal();
800 }
801 }
802
803 /**
804 * Tries to enqueue given node in the appropriate wait queue.
805 *
806 * @return true if successful
807 */
808 private boolean tryEnqueue(int phase, QNode node) {
809 releaseWaiters(phase-1); // ensure old queue clean
810 AtomicReference<QNode> head = queueFor(phase);
811 QNode q = head.get();
812 return ((q == null || q.phase == phase) &&
813 (int)(root.state >>> PHASE_SHIFT) == phase &&
814 head.compareAndSet(node.next = q, node));
815 }
816
817 /** The number of CPUs, for spin control */
818 private static final int NCPU = Runtime.getRuntime().availableProcessors();
819
820 /**
821 * The number of times to spin before blocking while waiting for
822 * advance, per arrival while waiting. On multiprocessors, fully
823 * blocking and waking up a large number of threads all at once is
824 * usually a very slow process, so we use rechargeable spins to
825 * avoid it when threads regularly arrive: When a thread in
826 * internalAwaitAdvance notices another arrival before blocking,
827 * and there appear to be enough CPUs available, it spins
828 * SPINS_PER_ARRIVAL more times before continuing to try to
829 * block. The value trades off good-citizenship vs big unnecessary
830 * slowdowns.
831 */
832 static final int SPINS_PER_ARRIVAL = (NCPU < 2) ? 1 : 1 << 8;
833
834 /**
835 * Possibly blocks and waits for phase to advance unless aborted.
836 *
837 * @param phase current phase
838 * @param node if non-null, the wait node to track interrupt and timeout;
839 * if null, denotes noninterruptible wait
840 * @return current phase
841 */
842 private int internalAwaitAdvance(int phase, QNode node) {
843 Phaser current = this; // to eventually wait at root if tiered
844 Phaser par = parent;
845 boolean queued = false;
846 int spins = SPINS_PER_ARRIVAL;
847 int lastUnarrived = -1; // to increase spins upon change
848 long s;
849 int p;
850 while ((p = (int)((s = current.state) >>> PHASE_SHIFT)) == phase) {
851 int unarrived = (int)(s & UNARRIVED_MASK);
852 if (unarrived != lastUnarrived) {
853 if ((lastUnarrived = unarrived) < NCPU)
854 spins += SPINS_PER_ARRIVAL;
855 }
856 else if (unarrived == 0 && par != null) {
857 current = par; // if all arrived, use parent
858 par = par.parent;
859 }
860 else if (spins > 0)
861 --spins;
862 else if (node == null)
863 node = new QNode(this, phase, false, false, 0L);
864 else if (node.isReleasable())
865 break;
866 else if (!queued)
867 queued = tryEnqueue(phase, node);
868 else {
869 try {
870 ForkJoinPool.managedBlock(node);
871 } catch (InterruptedException ie) {
872 node.wasInterrupted = true;
873 }
874 }
875 }
876 if (node != null) {
877 if (node.thread != null)
878 node.thread = null;
879 if (!node.interruptible && node.wasInterrupted)
880 Thread.currentThread().interrupt();
881 }
882 if (p == phase)
883 p = (int)(reconcileState() >>> PHASE_SHIFT);
884 if (p != phase)
885 releaseWaiters(phase);
886 return p;
887 }
888
889 /**
890 * Wait nodes for Treiber stack representing wait queue
891 */
892 static final class QNode implements ForkJoinPool.ManagedBlocker {
893 final Phaser phaser;
894 final int phase;
895 final boolean interruptible;
896 final boolean timed;
897 boolean wasInterrupted;
898 long nanos;
899 long lastTime;
900 volatile Thread thread; // nulled to cancel wait
901 QNode next;
902
903 QNode(Phaser phaser, int phase, boolean interruptible,
904 boolean timed, long nanos) {
905 this.phaser = phaser;
906 this.phase = phase;
907 this.interruptible = interruptible;
908 this.nanos = nanos;
909 this.timed = timed;
910 this.lastTime = timed? System.nanoTime() : 0L;
911 thread = Thread.currentThread();
912 }
913
914 public boolean isReleasable() {
915 Thread t = thread;
916 if (t != null) {
917 if (phaser.getPhase() != phase)
918 t = null;
919 else {
920 if (Thread.interrupted())
921 wasInterrupted = true;
922 if (interruptible && wasInterrupted)
923 t = null;
924 else if (timed) {
925 if (nanos > 0) {
926 long now = System.nanoTime();
927 nanos -= now - lastTime;
928 lastTime = now;
929 }
930 if (nanos <= 0)
931 t = null;
932 }
933 }
934 if (t != null)
935 return false;
936 thread = null;
937 }
938 return true;
939 }
940
941 public boolean block() {
942 if (isReleasable())
943 return true;
944 else if (!timed)
945 LockSupport.park(this);
946 else if (nanos > 0)
947 LockSupport.parkNanos(this, nanos);
948 return isReleasable();
949 }
950
951 void signal() {
952 Thread t = thread;
953 if (t != null) {
954 thread = null;
955 LockSupport.unpark(t);
956 }
957 }
958 }
959
960 // Unsafe mechanics
961
962 private static final sun.misc.Unsafe UNSAFE = sun.misc.Unsafe.getUnsafe();
963 private static final long stateOffset =
964 objectFieldOffset("state", Phaser.class);
965
966 private static long objectFieldOffset(String field, Class<?> klazz) {
967 try {
968 return UNSAFE.objectFieldOffset(klazz.getDeclaredField(field));
969 } catch (NoSuchFieldException e) {
970 // Convert Exception to corresponding Error
971 NoSuchFieldError error = new NoSuchFieldError(field);
972 error.initCause(e);
973 throw error;
974 }
975 }
976 }