java.util.concurrent.locks
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractQueuedSynchronizer.ConditionObject
Condition implementation for a AbstractQueuedSynchronizer serving as the basis of a Lock implementation. |
| Modifier | Constructor and Description |
|---|---|
protected |
AbstractQueuedSynchronizer()
Creates a new AbstractQueuedSynchronizer instance with initial synchronization state of zero. |
| Modifier and Type | Method and Description |
|---|---|
void |
acquire(int arg)
Acquires in exclusive mode, ignoring interrupts. |
void |
acquireInterruptibly(int arg)
Acquires in exclusive mode, aborting if interrupted. |
void |
acquireShared(int arg)
Acquires in shared mode, ignoring interrupts. |
void |
acquireSharedInterruptibly(int arg)
Acquires in shared mode, aborting if interrupted. |
protected boolean |
compareAndSetState(int expect,
int update)
Atomically sets synchronization state to the given updated value if the current state value equals the expected value. |
Collection<Thread> |
getExclusiveQueuedThreads()
Returns a collection containing threads that may be waiting to acquire in exclusive mode. |
Thread |
getFirstQueuedThread()
Returns the first (longest-waiting) thread in the queue, or null if no threads are currently queued. |
Collection<Thread> |
getQueuedThreads()
Returns a collection containing threads that may be waiting to acquire. |
int |
getQueueLength()
Returns an estimate of the number of threads waiting to acquire. |
Collection<Thread> |
getSharedQueuedThreads()
Returns a collection containing threads that may be waiting to acquire in shared mode. |
protected int |
getState()
Returns the current value of synchronization state. |
Collection<Thread> |
getWaitingThreads(AbstractQueuedSynchronizer.ConditionObject condition)
Returns a collection containing those threads that may be waiting on the given condition associated with this synchronizer. |
int |
getWaitQueueLength(AbstractQueuedSynchronizer.ConditionObject condition)
Returns an estimate of the number of threads waiting on the given condition associated with this synchronizer. |
boolean |
hasContended()
Queries whether any threads have ever contended to acquire this synchronizer; that is if an acquire method has ever blocked. |
boolean |
hasQueuedPredecessors()
Queries whether any threads have been waiting to acquire longer than the current thread. |
boolean |
hasQueuedThreads()
Queries whether any threads are waiting to acquire. |
boolean |
hasWaiters(AbstractQueuedSynchronizer.ConditionObject condition)
Queries whether any threads are waiting on the given condition associated with this synchronizer. |
protected boolean |
isHeldExclusively()
Returns true if synchronization is held exclusively with
respect to the current (calling) thread. |
boolean |
isQueued(Thread thread)
Returns true if the given thread is currently queued. |
boolean |
owns(AbstractQueuedSynchronizer.ConditionObject condition)
Queries whether the given ConditionObject uses this synchronizer as its lock. |
boolean |
release(int arg)
Releases in exclusive mode. |
boolean |
releaseShared(int arg)
Releases in shared mode. |
protected void |
setState(int newState)
Sets the value of synchronization state. |
String |
toString()
Returns a string identifying this synchronizer, as well as its state. |
protected boolean |
tryAcquire(int arg)
Attempts to acquire in exclusive mode. |
boolean |
tryAcquireNanos(int arg,
long nanosTimeout)
Attempts to acquire in exclusive mode, aborting if interrupted, and failing if the given timeout elapses. |
protected int |
tryAcquireShared(int arg)
Attempts to acquire in shared mode. |
boolean |
tryAcquireSharedNanos(int arg,
long nanosTimeout)
Attempts to acquire in shared mode, aborting if interrupted, and failing if the given timeout elapses. |
protected boolean |
tryRelease(int arg)
Attempts to set the state to reflect a release in exclusive mode. |
protected boolean |
tryReleaseShared(int arg)
Attempts to set the state to reflect a release in shared mode. |
| Methods inherited from class java.util.concurrent.locks.AbstractOwnableSynchronizer |
|---|
getExclusiveOwnerThread, setExclusiveOwnerThread |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
AbstractQueuedSynchronizer
protected AbstractQueuedSynchronizer()
- Creates a new AbstractQueuedSynchronizer instance
with initial synchronization state of zero.
| Method Detail |
|---|
getState
protected final int getState()
- Returns the current value of synchronization state.
This operation has memory semantics of a volatile read.
- Returns:
- current state value
setState
protected final void setState(int newState)
- Sets the value of synchronization state.
This operation has memory semantics of a volatile write.
- Parameters:
newState- the new state value
compareAndSetState
protected final boolean compareAndSetState(int expect,
int update)
- Atomically sets synchronization state to the given updated
value if the current state value equals the expected value.
This operation has memory semantics of a volatile read
and write.
- Parameters:
expect- the expected valueupdate- the new value- Returns:
- true if successful. False return indicates that the actual value was not equal to the expected value.
tryAcquire
protected boolean tryAcquire(int arg)
- Attempts to acquire in exclusive mode. This method should query
if the state of the object permits it to be acquired in the
exclusive mode, and if so to acquire it.
This method is always invoked by the thread performing acquire. If this method reports failure, the acquire method may queue the thread, if it is not already queued, until it is signalled by a release from some other thread. This can be used to implement method
Lock.tryLock().The default implementation throws
UnsupportedOperationException. - Parameters:
arg- the acquire argument. This value is always the one passed to an acquire method, or is the value saved on entry to a condition wait. The value is otherwise uninterpreted and can represent anything you like.- Returns:
trueif successful. Upon success, this object has been acquired.- Throws:
IllegalMonitorStateException- if acquiring would place this synchronizer in an illegal state. This exception must be thrown in a consistent fashion for synchronization to work correctly.UnsupportedOperationException- if exclusive mode is not supported
tryRelease
protected boolean tryRelease(int arg)
- Attempts to set the state to reflect a release in exclusive
mode.
This method is always invoked by the thread performing release.
The default implementation throws
UnsupportedOperationException. - Parameters:
arg- the release argument. This value is always the one passed to a release method, or the current state value upon entry to a condition wait. The value is otherwise uninterpreted and can represent anything you like.- Returns:
trueif this object is now in a fully released state, so that any waiting threads may attempt to acquire; andfalseotherwise.- Throws:
IllegalMonitorStateException- if releasing would place this synchronizer in an illegal state. This exception must be thrown in a consistent fashion for synchronization to work correctly.UnsupportedOperationException- if exclusive mode is not supported
tryAcquireShared
protected int tryAcquireShared(int arg)
- Attempts to acquire in shared mode. This method should query if
the state of the object permits it to be acquired in the shared
mode, and if so to acquire it.
This method is always invoked by the thread performing acquire. If this method reports failure, the acquire method may queue the thread, if it is not already queued, until it is signalled by a release from some other thread.
The default implementation throws
UnsupportedOperationException. - Parameters:
arg- the acquire argument. This value is always the one passed to an acquire method, or is the value saved on entry to a condition wait. The value is otherwise uninterpreted and can represent anything you like.- Returns:
- a negative value on failure; zero if acquisition in shared mode succeeded but no subsequent shared-mode acquire can succeed; and a positive value if acquisition in shared mode succeeded and subsequent shared-mode acquires might also succeed, in which case a subsequent waiting thread must check availability. (Support for three different return values enables this method to be used in contexts where acquires only sometimes act exclusively.) Upon success, this object has been acquired.
- Throws:
IllegalMonitorStateException- if acquiring would place this synchronizer in an illegal state. This exception must be thrown in a consistent fashion for synchronization to work correctly.UnsupportedOperationException- if shared mode is not supported
tryReleaseShared
protected boolean tryReleaseShared(int arg)
- Attempts to set the state to reflect a release in shared mode.
This method is always invoked by the thread performing release.
The default implementation throws
UnsupportedOperationException. - Parameters:
arg- the release argument. This value is always the one passed to a release method, or the current state value upon entry to a condition wait. The value is otherwise uninterpreted and can represent anything you like.- Returns:
trueif this release of shared mode may permit a waiting acquire (shared or exclusive) to succeed; andfalseotherwise- Throws:
IllegalMonitorStateException- if releasing would place this synchronizer in an illegal state. This exception must be thrown in a consistent fashion for synchronization to work correctly.UnsupportedOperationException- if shared mode is not supported
isHeldExclusively
protected boolean isHeldExclusively()
- Returns
trueif synchronization is held exclusively with respect to the current (calling) thread. This method is invoked upon each call to a non-waitingAbstractQueuedSynchronizer.ConditionObjectmethod. (Waiting methods instead invokerelease(int).)The default implementation throws
UnsupportedOperationException. This method is invoked internally only withinAbstractQueuedSynchronizer.ConditionObjectmethods, so need not be defined if conditions are not used. - Returns:
trueif synchronization is held exclusively;falseotherwise- Throws:
UnsupportedOperationException- if conditions are not supported
acquire
public final void acquire(int arg)
- Acquires in exclusive mode, ignoring interrupts. Implemented
by invoking at least once
tryAcquire(int), returning on success. Otherwise the thread is queued, possibly repeatedly blocking and unblocking, invokingtryAcquire(int)until success. This method can be used to implement methodLock.lock(). - Parameters:
arg- the acquire argument. This value is conveyed totryAcquire(int)but is otherwise uninterpreted and can represent anything you like.
acquireInterruptibly
public final void acquireInterruptibly(int arg)
throws InterruptedException
- Acquires in exclusive mode, aborting if interrupted.
Implemented by first checking interrupt status, then invoking
at least once
tryAcquire(int), returning on success. Otherwise the thread is queued, possibly repeatedly blocking and unblocking, invokingtryAcquire(int)until success or the thread is interrupted. This method can be used to implement methodLock.lockInterruptibly(). - Parameters:
arg- the acquire argument. This value is conveyed totryAcquire(int)but is otherwise uninterpreted and can represent anything you like.- Throws:
InterruptedException- if the current thread is interrupted
tryAcquireNanos
public final boolean tryAcquireNanos(int arg,
long nanosTimeout)
throws InterruptedException
- Attempts to acquire in exclusive mode, aborting if interrupted,
and failing if the given timeout elapses. Implemented by first
checking interrupt status, then invoking at least once
tryAcquire(int), returning on success. Otherwise, the thread is queued, possibly repeatedly blocking and unblocking, invokingtryAcquire(int)until success or the thread is interrupted or the timeout elapses. This method can be used to implement methodLock.tryLock(long, TimeUnit). - Parameters:
arg- the acquire argument. This value is conveyed totryAcquire(int)but is otherwise uninterpreted and can represent anything you like.nanosTimeout- the maximum number of nanoseconds to wait- Returns:
trueif acquired;falseif timed out- Throws:
InterruptedException- if the current thread is interrupted
release
public final boolean release(int arg)
- Releases in exclusive mode. Implemented by unblocking one or
more threads if
tryRelease(int)returns true. This method can be used to implement methodLock.unlock(). - Parameters:
arg- the release argument. This value is conveyed totryRelease(int)but is otherwise uninterpreted and can represent anything you like.- Returns:
- the value returned from
tryRelease(int)
acquireShared
public final void acquireShared(int arg)
- Acquires in shared mode, ignoring interrupts. Implemented by
first invoking at least once
tryAcquireShared(int), returning on success. Otherwise the thread is queued, possibly repeatedly blocking and unblocking, invokingtryAcquireShared(int)until success. - Parameters:
arg- the acquire argument. This value is conveyed totryAcquireShared(int)but is otherwise uninterpreted and can represent anything you like.
acquireSharedInterruptibly
public final void acquireSharedInterruptibly(int arg)
throws InterruptedException
- Acquires in shared mode, aborting if interrupted. Implemented
by first checking interrupt status, then invoking at least once
tryAcquireShared(int), returning on success. Otherwise the thread is queued, possibly repeatedly blocking and unblocking, invokingtryAcquireShared(int)until success or the thread is interrupted. - Parameters:
arg- the acquire argument This value is conveyed totryAcquireShared(int)but is otherwise uninterpreted and can represent anything you like.- Throws:
InterruptedException- if the current thread is interrupted
tryAcquireSharedNanos
public final boolean tryAcquireSharedNanos(int arg,
long nanosTimeout)
throws InterruptedException
- Attempts to acquire in shared mode, aborting if interrupted, and
failing if the given timeout elapses. Implemented by first
checking interrupt status, then invoking at least once
tryAcquireShared(int), returning on success. Otherwise, the thread is queued, possibly repeatedly blocking and unblocking, invokingtryAcquireShared(int)until success or the thread is interrupted or the timeout elapses. - Parameters:
arg- the acquire argument. This value is conveyed totryAcquireShared(int)but is otherwise uninterpreted and can represent anything you like.nanosTimeout- the maximum number of nanoseconds to wait- Returns:
trueif acquired;falseif timed out- Throws:
InterruptedException- if the current thread is interrupted
releaseShared
public final boolean releaseShared(int arg)
- Releases in shared mode. Implemented by unblocking one or more
threads if
tryReleaseShared(int)returns true. - Parameters:
arg- the release argument. This value is conveyed totryReleaseShared(int)but is otherwise uninterpreted and can represent anything you like.- Returns:
- the value returned from
tryReleaseShared(int)
hasQueuedThreads
public final boolean hasQueuedThreads()
- Queries whether any threads are waiting to acquire. Note that
because cancellations due to interrupts and timeouts may occur
at any time, a
truereturn does not guarantee that any other thread will ever acquire.In this implementation, this operation returns in constant time.
- Returns:
trueif there may be other threads waiting to acquire
hasContended
public final boolean hasContended()
- Queries whether any threads have ever contended to acquire this
synchronizer; that is if an acquire method has ever blocked.
In this implementation, this operation returns in constant time.
- Returns:
trueif there has ever been contention
getFirstQueuedThread
public final Thread getFirstQueuedThread()
- Returns the first (longest-waiting) thread in the queue, or
nullif no threads are currently queued.In this implementation, this operation normally returns in constant time, but may iterate upon contention if other threads are concurrently modifying the queue.
- Returns:
- the first (longest-waiting) thread in the queue, or
nullif no threads are currently queued
isQueued
public final boolean isQueued(Thread thread)
- Returns true if the given thread is currently queued.
This implementation traverses the queue to determine presence of the given thread.
- Parameters:
thread- the thread- Returns:
trueif the given thread is on the queue- Throws:
NullPointerException- if the thread is null
hasQueuedPredecessors
public final boolean hasQueuedPredecessors()
- Queries whether any threads have been waiting to acquire longer
than the current thread.
An invocation of this method is equivalent to (but may be more efficient than):
getFirstQueuedThread() != Thread.currentThread() && hasQueuedThreads()Note that because cancellations due to interrupts and timeouts may occur at any time, a
truereturn does not guarantee that some other thread will acquire before the current thread. Likewise, it is possible for another thread to win a race to enqueue after this method has returnedfalse, due to the queue being empty.This method is designed to be used by a fair synchronizer to avoid barging. Such a synchronizer's
tryAcquire(int)method should returnfalse, and itstryAcquireShared(int)method should return a negative value, if this method returnstrue(unless this is a reentrant acquire). For example, thetryAcquiremethod for a fair, reentrant, exclusive mode synchronizer might look like this:protected boolean tryAcquire(int arg) { if (isHeldExclusively()) { // A reentrant acquire; increment hold count return true; } else if (hasQueuedPredecessors()) { return false; } else { // try to acquire normally } } - Returns:
trueif there is a queued thread preceding the current thread, andfalseif the current thread is at the head of the queue or the queue is empty- Since:
- 1.7
getQueueLength
public final int getQueueLength()
- Returns an estimate of the number of threads waiting to
acquire. The value is only an estimate because the number of
threads may change dynamically while this method traverses
internal data structures. This method is designed for use in
monitoring system state, not for synchronization
control.
- Returns:
- the estimated number of threads waiting to acquire
getQueuedThreads
public final Collection<Thread> getQueuedThreads()
- Returns a collection containing threads that may be waiting to
acquire. Because the actual set of threads may change
dynamically while constructing this result, the returned
collection is only a best-effort estimate. The elements of the
returned collection are in no particular order. This method is
designed to facilitate construction of subclasses that provide
more extensive monitoring facilities.
- Returns:
- the collection of threads
getExclusiveQueuedThreads
public final Collection<Thread> getExclusiveQueuedThreads()
- Returns a collection containing threads that may be waiting to
acquire in exclusive mode. This has the same properties
as
getQueuedThreads()except that it only returns those threads waiting due to an exclusive acquire. - Returns:
- the collection of threads
getSharedQueuedThreads
public final Collection<Thread> getSharedQueuedThreads()
- Returns a collection containing threads that may be waiting to
acquire in shared mode. This has the same properties
as
getQueuedThreads()except that it only returns those threads waiting due to a shared acquire. - Returns:
- the collection of threads
toString
public String toString()
- Returns a string identifying this synchronizer, as well as its state.
The state, in brackets, includes the String
"State ="followed by the current value ofgetState(), and either"nonempty"or"empty"depending on whether the queue is empty. - Returns:
- a string identifying this synchronizer, as well as its state
owns
public final boolean owns(AbstractQueuedSynchronizer.ConditionObject condition)
- Queries whether the given ConditionObject
uses this synchronizer as its lock.
- Parameters:
condition- the condition- Returns:
- true if owned
- Throws:
NullPointerException- if the condition is null
hasWaiters
public final boolean hasWaiters(AbstractQueuedSynchronizer.ConditionObject condition)
- Queries whether any threads are waiting on the given condition
associated with this synchronizer. Note that because timeouts
and interrupts may occur at any time, a true return
does not guarantee that a future signal will awaken
any threads. This method is designed primarily for use in
monitoring of the system state.
- Parameters:
condition- the condition- Returns:
- true if there are any waiting threads
- Throws:
IllegalMonitorStateException- if exclusive synchronization is not heldIllegalArgumentException- if the given condition is not associated with this synchronizerNullPointerException- if the condition is null
getWaitQueueLength
public final int getWaitQueueLength(AbstractQueuedSynchronizer.ConditionObject condition)
- Returns an estimate of the number of threads waiting on the
given condition associated with this synchronizer. Note that
because timeouts and interrupts may occur at any time, the
estimate serves only as an upper bound on the actual number of
waiters. This method is designed for use in monitoring of the
system state, not for synchronization control.
- Parameters:
condition- the condition- Returns:
- the estimated number of waiting threads
- Throws:
IllegalMonitorStateException- if exclusive synchronization is not heldIllegalArgumentException- if the given condition is not associated with this synchronizerNullPointerException- if the condition is null
getWaitingThreads
public final Collection<Thread> getWaitingThreads(AbstractQueuedSynchronizer.ConditionObject condition)
- Returns a collection containing those threads that may be
waiting on the given condition associated with this
synchronizer. Because the actual set of threads may change
dynamically while constructing this result, the returned
collection is only a best-effort estimate. The elements of the
returned collection are in no particular order.
- Parameters:
condition- the condition- Returns:
- the collection of threads
- Throws:
IllegalMonitorStateException- if exclusive synchronization is not heldIllegalArgumentException- if the given condition is not associated with this synchronizerNullPointerException- if the condition is null
|
Java™ Platform Standard Ed. 7 DRAFT ea-b59 |
|||||||||
| PREV CLASS NEXT CLASS | NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
