|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.metasyntactic.thread.concurrent.CyclicBarrier
A cyclic barrier is a reasonable choice for a barrier in contexts involving a fixed sized group of threads that must occasionally wait for each other. (A Rendezvous better handles applications in which any number of threads meet, n-at-a-time.)
CyclicBarriers use an all-or-none breakage model for failed synchronization
attempts: If threads leave a barrier point prematurely because of timeout
or interruption, others will also leave abnormally (via
BrokenBarrierException), until the barrier is restart
ed. This
is usually the simplest and best strategy for sharing knowledge about
failures among cooperating threads in the most common usages contexts of
Barriers. This implementation has the property that interruptions among
newly arriving threads can cause as-yet-unresumed threads from a previous
barrier cycle to return out as broken. This transmits breakage as early as
possible, but with the possible byproduct that only some threads returning
out of a barrier will realize that it is newly broken. (Others will not
realize this until a future cycle.) (The Rendezvous class has a more
uniform, but sometimes less desirable policy.)
Barriers support an optional Runnable command that is run once per barrier point.
Sample usage Here is a code sketch of a barrier in a parallel decomposition design.
class Solver { final int N; final float[][] data; final CyclicBarrier barrier; class Worker implements Runnable { int myRow; Worker(int row) { myRow = row; } public void run() { while (!done()) { processRow(myRow); try { barrier.barrier(); } catch (InterruptedException ex) { return; } catch (BrokenBarrierException ex) { return; } } } } public Solver(float[][] matrix) { data = matrix; N = matrix.length; barrier = new CyclicBarrier(N); barrier.setBarrierCommand(new Runnable() { public void run() { mergeRows(...); } }); for (int i = 0; i < N; ++i) { new Thread(new Worker(i)).start(); waitUntilDone(); } }
Field Summary | |
protected java.lang.Runnable |
barrierCommand
|
protected boolean |
broken
|
protected int |
count
|
protected int |
parties
|
protected int |
resets
|
Constructor Summary | |
CyclicBarrier(int parties)
Create a CyclicBarrier for the indicated number of parties, and no command to run at each barrier. |
|
CyclicBarrier(int parties,
java.lang.Runnable barrierCommand)
Create a CyclicBarrier for the indicated number of parties. |
Method Summary | |
int |
attemptBarrier(long msecs)
Enter barrier and wait at most msecs for the other parties()-1 threads. |
int |
barrier()
Enter barrier and wait for the other parties()-1 threads. |
boolean |
broken()
Returns true if the barrier has been compromised by threads leaving the barrier before a synchronization point (normally due to interruption or timeout). |
protected int |
doBarrier(boolean timed,
long msecs)
|
int |
parties()
Return the number of parties that must meet per barrier point. |
void |
restart()
Reset to initial state. |
java.lang.Runnable |
setBarrierCommand(java.lang.Runnable command)
Set the command to run at the point at which all threads reach the barrier. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected final int parties
protected boolean broken
protected java.lang.Runnable barrierCommand
protected int count
protected int resets
Constructor Detail |
public CyclicBarrier(int parties)
java.lang.IllegalArgumentException
- if parties less than or equal to zero.public CyclicBarrier(int parties, java.lang.Runnable barrierCommand)
java.lang.IllegalArgumentException
- if parties less than or equal to zero.Method Detail |
public java.lang.Runnable setBarrierCommand(java.lang.Runnable command)
command
- the command to run. If null, no command is run.
public boolean broken()
Barrier
broken
in interface Barrier
public void restart()
public int parties()
Barrier
parties
in interface Barrier
public int barrier() throws java.lang.InterruptedException, BrokenBarrierException
BrokenBarrierException
- if any other thread
in any previous or current barrier
since either creation or the last restart
operation left the barrier
prematurely due to interruption or time-out. (If so,
the broken
status is also set.)
Threads that are noticied to have been
interrupted after being released are not considered
to have broken the barrier.
In all cases, the interruption
status of the current thread is preserved, so can be tested
by checking Thread.interrupted
.
java.lang.InterruptedException
- if this thread was interrupted
during the barrier, and was the one causing breakage.
If so, broken
status is also set.public int attemptBarrier(long msecs) throws java.lang.InterruptedException, TimeoutException, BrokenBarrierException
BrokenBarrierException
- if any other thread
in any previous or current barrier
since either creation or the last restart
operation left the barrier
prematurely due to interruption or time-out. (If so,
the broken
status is also set.)
Threads that are noticed to have been
interrupted after being released are not considered
to have broken the barrier.
In all cases, the interruption
status of the current thread is preserved, so can be tested
by checking Thread.interrupted
.
java.lang.InterruptedException
- if this thread was interrupted
during the barrier. If so, broken
status is also set.
TimeoutException
- if this thread timed out waiting for
the barrier. If the timeout occured while already in the
barrier, broken
status is also set.protected int doBarrier(boolean timed, long msecs) throws java.lang.InterruptedException, TimeoutException, BrokenBarrierException
java.lang.InterruptedException
TimeoutException
BrokenBarrierException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |