ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/Semaphore.java
Revision: 1.45
Committed: Tue Apr 26 01:17:18 2005 UTC (19 years, 1 month ago) by jsr166
Branch: MAIN
Changes since 1.44: +34 -34 lines
Log Message:
doc fixes

File Contents

# User Rev Content
1 dl 1.2 /*
2     * Written by Doug Lea with assistance from members of JCP JSR-166
3 dl 1.24 * Expert Group and released to the public domain, as explained at
4     * http://creativecommons.org/licenses/publicdomain
5 dl 1.2 */
6    
7 tim 1.1 package java.util.concurrent;
8 dl 1.16 import java.util.*;
9 dl 1.5 import java.util.concurrent.locks.*;
10 dl 1.16 import java.util.concurrent.atomic.*;
11 tim 1.1
12     /**
13     * A counting semaphore. Conceptually, a semaphore maintains a set of
14     * permits. Each {@link #acquire} blocks if necessary until a permit is
15     * available, and then takes it. Each {@link #release} adds a permit,
16     * potentially releasing a blocking acquirer.
17     * However, no actual permit objects are used; the <tt>Semaphore</tt> just
18     * keeps a count of the number available and acts accordingly.
19     *
20 dl 1.16 * <p>Semaphores are often used to restrict the number of threads than can
21 tim 1.1 * access some (physical or logical) resource. For example, here is
22     * a class that uses a semaphore to control access to a pool of items:
23     * <pre>
24     * class Pool {
25 dl 1.44 * private static final int MAX_AVAILABLE = 100;
26 dl 1.16 * private final Semaphore available = new Semaphore(MAX_AVAILABLE, true);
27 tim 1.1 *
28     * public Object getItem() throws InterruptedException {
29     * available.acquire();
30     * return getNextAvailableItem();
31     * }
32     *
33     * public void putItem(Object x) {
34     * if (markAsUnused(x))
35     * available.release();
36     * }
37     *
38     * // Not a particularly efficient data structure; just for demo
39     *
40     * protected Object[] items = ... whatever kinds of items being managed
41     * protected boolean[] used = new boolean[MAX_AVAILABLE];
42     *
43     * protected synchronized Object getNextAvailableItem() {
44     * for (int i = 0; i < MAX_AVAILABLE; ++i) {
45     * if (!used[i]) {
46     * used[i] = true;
47     * return items[i];
48     * }
49     * }
50     * return null; // not reached
51     * }
52     *
53     * protected synchronized boolean markAsUnused(Object item) {
54     * for (int i = 0; i < MAX_AVAILABLE; ++i) {
55     * if (item == items[i]) {
56     * if (used[i]) {
57     * used[i] = false;
58     * return true;
59 tim 1.8 * } else
60 tim 1.1 * return false;
61     * }
62     * }
63     * return false;
64     * }
65     *
66     * }
67     * </pre>
68     *
69 dl 1.16 * <p>Before obtaining an item each thread must acquire a permit from
70     * the semaphore, guaranteeing that an item is available for use. When
71     * the thread has finished with the item it is returned back to the
72     * pool and a permit is returned to the semaphore, allowing another
73     * thread to acquire that item. Note that no synchronization lock is
74     * held when {@link #acquire} is called as that would prevent an item
75     * from being returned to the pool. The semaphore encapsulates the
76     * synchronization needed to restrict access to the pool, separately
77     * from any synchronization needed to maintain the consistency of the
78     * pool itself.
79     *
80     * <p>A semaphore initialized to one, and which is used such that it
81     * only has at most one permit available, can serve as a mutual
82     * exclusion lock. This is more commonly known as a <em>binary
83     * semaphore</em>, because it only has two states: one permit
84     * available, or zero permits available. When used in this way, the
85     * binary semaphore has the property (unlike many {@link Lock}
86 dl 1.18 * implementations), that the &quot;lock&quot; can be released by a
87 dl 1.16 * thread other than the owner (as semaphores have no notion of
88     * ownership). This can be useful in some specialized contexts, such
89     * as deadlock recovery.
90     *
91 dl 1.36 * <p> The constructor for this class optionally accepts a
92     * <em>fairness</em> parameter. When set false, this class makes no
93     * guarantees about the order in which threads acquire permits. In
94     * particular, <em>barging</em> is permitted, that is, a thread
95     * invoking {@link #acquire} can be allocated a permit ahead of a
96 dl 1.43 * thread that has been waiting - logically the new thread places itself at
97     * the head of the queue of waiting threads. When fairness is set true, the
98 dl 1.36 * semaphore guarantees that threads invoking any of the {@link
99 dl 1.43 * #acquire() acquire} methods are selected to obtain permits in the order in
100 dl 1.36 * which their invocation of those methods was processed
101     * (first-in-first-out; FIFO). Note that FIFO ordering necessarily
102     * applies to specific internal points of execution within these
103     * methods. So, it is possible for one thread to invoke
104     * <tt>acquire</tt> before another, but reach the ordering point after
105     * the other, and similarly upon return from the method.
106 jsr166 1.45 * Also note that the untimed {@link #tryAcquire() tryAcquire} methods do not
107 dl 1.43 * honor the fairness setting, but will take any permits that are
108     * available.
109 dl 1.16 *
110     * <p>Generally, semaphores used to control resource access should be
111     * initialized as fair, to ensure that no thread is starved out from
112     * accessing a resource. When using semaphores for other kinds of
113     * synchronization control, the throughput advantages of non-fair
114     * ordering often outweigh fairness considerations.
115     *
116     * <p>This class also provides convenience methods to {@link
117     * #acquire(int) acquire} and {@link #release(int) release} multiple
118     * permits at a time. Beware of the increased risk of indefinite
119 dl 1.19 * postponement when these methods are used without fairness set true.
120 tim 1.1 *
121     * @since 1.5
122 dl 1.4 * @author Doug Lea
123 tim 1.1 *
124     */
125 dl 1.16
126 dl 1.23 public class Semaphore implements java.io.Serializable {
127 dl 1.16 private static final long serialVersionUID = -3222578661600680210L;
128 dl 1.25 /** All mechanics via AbstractQueuedSynchronizer subclass */
129 dl 1.23 private final Sync sync;
130    
131 dl 1.25 /**
132 dl 1.34 * Synchronization implementation for semaphore. Uses AQS state
133     * to represent permits. Subclassed into fair and nonfair
134     * versions.
135 dl 1.25 */
136 dl 1.34 abstract static class Sync extends AbstractQueuedSynchronizer {
137     Sync(int permits) {
138 dl 1.29 setState(permits);
139 dl 1.23 }
140 jsr166 1.45
141 dl 1.34 final int getPermits() {
142 dl 1.29 return getState();
143     }
144    
145 dl 1.34 final int nonfairTryAcquireShared(int acquires) {
146 dl 1.23 for (;;) {
147 dl 1.29 int available = getState();
148 dl 1.23 int remaining = available - acquires;
149     if (remaining < 0 ||
150 dl 1.29 compareAndSetState(available, remaining))
151 dl 1.23 return remaining;
152     }
153     }
154 jsr166 1.45
155 dl 1.34 protected final boolean tryReleaseShared(int releases) {
156 dl 1.23 for (;;) {
157 dl 1.29 int p = getState();
158 jsr166 1.45 if (compareAndSetState(p, p + releases))
159 dl 1.23 return true;
160     }
161     }
162 dl 1.29
163 dl 1.34 final void reducePermits(int reductions) {
164 dl 1.29 for (;;) {
165     int current = getState();
166     int next = current - reductions;
167     if (compareAndSetState(current, next))
168     return;
169     }
170     }
171 dl 1.31
172 dl 1.34 final int drainPermits() {
173 dl 1.31 for (;;) {
174     int current = getState();
175     if (current == 0 || compareAndSetState(current, 0))
176     return current;
177     }
178     }
179 dl 1.23 }
180 dl 1.16
181 tim 1.1 /**
182 dl 1.34 * NonFair version
183     */
184     final static class NonfairSync extends Sync {
185     NonfairSync(int permits) {
186     super(permits);
187     }
188 jsr166 1.45
189 dl 1.34 protected int tryAcquireShared(int acquires) {
190     return nonfairTryAcquireShared(acquires);
191     }
192     }
193    
194     /**
195     * Fair version
196     */
197     final static class FairSync extends Sync {
198     FairSync(int permits) {
199     super(permits);
200     }
201 jsr166 1.45
202 dl 1.34 protected int tryAcquireShared(int acquires) {
203     Thread current = Thread.currentThread();
204     for (;;) {
205 dl 1.35 Thread first = getFirstQueuedThread();
206     if (first != null && first != current)
207 dl 1.34 return -1;
208     int available = getState();
209     int remaining = available - acquires;
210     if (remaining < 0 ||
211     compareAndSetState(available, remaining))
212     return remaining;
213     }
214     }
215     }
216    
217     /**
218 dl 1.41 * Creates a <tt>Semaphore</tt> with the given number of
219 dl 1.36 * permits and nonfair fairness setting.
220     * @param permits the initial number of permits available. This
221     * value may be negative, in which case releases must
222     * occur before any acquires will be granted.
223     */
224 jsr166 1.45 public Semaphore(int permits) {
225 dl 1.36 sync = new NonfairSync(permits);
226     }
227    
228     /**
229 dl 1.41 * Creates a <tt>Semaphore</tt> with the given number of
230 dl 1.19 * permits and the given fairness setting.
231 dl 1.16 * @param permits the initial number of permits available. This
232     * value may be negative, in which case releases must
233     * occur before any acquires will be granted.
234     * @param fair true if this semaphore will guarantee first-in
235     * first-out granting of permits under contention, else false.
236 tim 1.1 */
237 jsr166 1.45 public Semaphore(int permits, boolean fair) {
238 dl 1.34 sync = (fair)? new FairSync(permits) : new NonfairSync(permits);
239 tim 1.1 }
240    
241     /**
242     * Acquires a permit from this semaphore, blocking until one is
243     * available, or the thread is {@link Thread#interrupt interrupted}.
244     *
245     * <p>Acquires a permit, if one is available and returns immediately,
246     * reducing the number of available permits by one.
247     * <p>If no permit is available then the current thread becomes
248     * disabled for thread scheduling purposes and lies dormant until
249     * one of two things happens:
250     * <ul>
251     * <li>Some other thread invokes the {@link #release} method for this
252 dl 1.16 * semaphore and the current thread is next to be assigned a permit; or
253 tim 1.1 * <li>Some other thread {@link Thread#interrupt interrupts} the current
254     * thread.
255     * </ul>
256     *
257     * <p>If the current thread:
258     * <ul>
259     * <li>has its interrupted status set on entry to this method; or
260     * <li>is {@link Thread#interrupt interrupted} while waiting
261     * for a permit,
262     * </ul>
263     * then {@link InterruptedException} is thrown and the current thread's
264     * interrupted status is cleared.
265     *
266     * @throws InterruptedException if the current thread is interrupted
267     *
268     * @see Thread#interrupt
269     */
270 dl 1.2 public void acquire() throws InterruptedException {
271 dl 1.23 sync.acquireSharedInterruptibly(1);
272 dl 1.2 }
273 tim 1.1
274     /**
275     * Acquires a permit from this semaphore, blocking until one is
276     * available.
277     *
278     * <p>Acquires a permit, if one is available and returns immediately,
279     * reducing the number of available permits by one.
280     * <p>If no permit is available then the current thread becomes
281     * disabled for thread scheduling purposes and lies dormant until
282     * some other thread invokes the {@link #release} method for this
283 dl 1.16 * semaphore and the current thread is next to be assigned a permit.
284 tim 1.1 *
285     * <p>If the current thread
286     * is {@link Thread#interrupt interrupted} while waiting
287     * for a permit then it will continue to wait, but the time at which
288     * the thread is assigned a permit may change compared to the time it
289     * would have received the permit had no interruption occurred. When the
290     * thread does return from this method its interrupt status will be set.
291     *
292     */
293 dl 1.2 public void acquireUninterruptibly() {
294 dl 1.39 sync.acquireShared(1);
295 dl 1.2 }
296 tim 1.1
297     /**
298 jsr166 1.45 * Acquires a permit from this semaphore, only if one is available at the
299 tim 1.1 * time of invocation.
300     * <p>Acquires a permit, if one is available and returns immediately,
301     * with the value <tt>true</tt>,
302     * reducing the number of available permits by one.
303     *
304     * <p>If no permit is available then this method will return
305     * immediately with the value <tt>false</tt>.
306     *
307 dl 1.27 * <p>Even when this semaphore has been set to use a
308     * fair ordering policy, a call to <tt>tryAcquire()</tt> <em>will</em>
309     * immediately acquire a permit if one is available, whether or not
310 jsr166 1.45 * other threads are currently waiting.
311     * This &quot;barging&quot; behavior can be useful in certain
312 dl 1.27 * circumstances, even though it breaks fairness. If you want to honor
313 jsr166 1.45 * the fairness setting, then use
314 dl 1.27 * {@link #tryAcquire(long, TimeUnit) tryAcquire(0, TimeUnit.SECONDS) }
315     * which is almost equivalent (it also detects interruption).
316     *
317 tim 1.1 * @return <tt>true</tt> if a permit was acquired and <tt>false</tt>
318     * otherwise.
319     */
320     public boolean tryAcquire() {
321 dl 1.34 return sync.nonfairTryAcquireShared(1) >= 0;
322 tim 1.1 }
323    
324     /**
325 jsr166 1.45 * Acquires a permit from this semaphore, if one becomes available
326 tim 1.1 * within the given waiting time and the
327     * current thread has not been {@link Thread#interrupt interrupted}.
328     * <p>Acquires a permit, if one is available and returns immediately,
329     * with the value <tt>true</tt>,
330     * reducing the number of available permits by one.
331     * <p>If no permit is available then
332     * the current thread becomes disabled for thread scheduling
333     * purposes and lies dormant until one of three things happens:
334     * <ul>
335     * <li>Some other thread invokes the {@link #release} method for this
336 dl 1.16 * semaphore and the current thread is next to be assigned a permit; or
337 tim 1.1 * <li>Some other thread {@link Thread#interrupt interrupts} the current
338     * thread; or
339     * <li>The specified waiting time elapses.
340     * </ul>
341     * <p>If a permit is acquired then the value <tt>true</tt> is returned.
342     * <p>If the current thread:
343     * <ul>
344     * <li>has its interrupted status set on entry to this method; or
345     * <li>is {@link Thread#interrupt interrupted} while waiting to acquire
346     * a permit,
347     * </ul>
348     * then {@link InterruptedException} is thrown and the current thread's
349     * interrupted status is cleared.
350     * <p>If the specified waiting time elapses then the value <tt>false</tt>
351     * is returned.
352 jsr166 1.45 * If the time is less than or equal to zero, the method will not wait
353 dl 1.16 * at all.
354 tim 1.1 *
355     * @param timeout the maximum time to wait for a permit
356 dl 1.13 * @param unit the time unit of the <tt>timeout</tt> argument.
357 tim 1.1 * @return <tt>true</tt> if a permit was acquired and <tt>false</tt>
358     * if the waiting time elapsed before a permit was acquired.
359     *
360     * @throws InterruptedException if the current thread is interrupted
361     *
362     * @see Thread#interrupt
363     *
364     */
365 jsr166 1.45 public boolean tryAcquire(long timeout, TimeUnit unit)
366 tim 1.1 throws InterruptedException {
367 dl 1.39 return sync.tryAcquireSharedNanos(1, unit.toNanos(timeout));
368 tim 1.1 }
369    
370     /**
371     * Releases a permit, returning it to the semaphore.
372     * <p>Releases a permit, increasing the number of available permits
373     * by one.
374 dl 1.43 * If any threads are trying to acquire a permit, then one
375 tim 1.1 * is selected and given the permit that was just released.
376 dl 1.43 * That thread is (re)enabled for thread scheduling purposes.
377 tim 1.1 * <p>There is no requirement that a thread that releases a permit must
378     * have acquired that permit by calling {@link #acquire}.
379     * Correct usage of a semaphore is established by programming convention
380     * in the application.
381     */
382 dl 1.2 public void release() {
383 dl 1.23 sync.releaseShared(1);
384 dl 1.16 }
385 jsr166 1.45
386 dl 1.16 /**
387 jsr166 1.45 * Acquires the given number of permits from this semaphore,
388     * blocking until all are available,
389 dl 1.16 * or the thread is {@link Thread#interrupt interrupted}.
390     *
391     * <p>Acquires the given number of permits, if they are available,
392     * and returns immediately,
393     * reducing the number of available permits by the given amount.
394     *
395     * <p>If insufficient permits are available then the current thread becomes
396     * disabled for thread scheduling purposes and lies dormant until
397     * one of two things happens:
398     * <ul>
399 jsr166 1.45 * <li>Some other thread invokes one of the {@link #release() release}
400 dl 1.16 * methods for this semaphore, the current thread is next to be assigned
401     * permits and the number of available permits satisfies this request; or
402     * <li>Some other thread {@link Thread#interrupt interrupts} the current
403     * thread.
404     * </ul>
405     *
406     * <p>If the current thread:
407     * <ul>
408     * <li>has its interrupted status set on entry to this method; or
409     * <li>is {@link Thread#interrupt interrupted} while waiting
410     * for a permit,
411     * </ul>
412     * then {@link InterruptedException} is thrown and the current thread's
413 jsr166 1.45 * interrupted status is cleared.
414     * Any permits that were to be assigned to this thread are instead
415 dl 1.43 * assigned to other threads trying to acquire permits, as if
416     * permits had been made available by a call to {@link #release()}.
417 dl 1.16 *
418     * @param permits the number of permits to acquire
419     *
420     * @throws InterruptedException if the current thread is interrupted
421     * @throws IllegalArgumentException if permits less than zero.
422     *
423     * @see Thread#interrupt
424     */
425     public void acquire(int permits) throws InterruptedException {
426     if (permits < 0) throw new IllegalArgumentException();
427 dl 1.23 sync.acquireSharedInterruptibly(permits);
428 dl 1.16 }
429    
430     /**
431 jsr166 1.45 * Acquires the given number of permits from this semaphore,
432 dl 1.16 * blocking until all are available.
433     *
434     * <p>Acquires the given number of permits, if they are available,
435     * and returns immediately,
436     * reducing the number of available permits by the given amount.
437     *
438     * <p>If insufficient permits are available then the current thread becomes
439     * disabled for thread scheduling purposes and lies dormant until
440 jsr166 1.45 * some other thread invokes one of the {@link #release() release}
441 dl 1.16 * methods for this semaphore, the current thread is next to be assigned
442     * permits and the number of available permits satisfies this request.
443     *
444     * <p>If the current thread
445     * is {@link Thread#interrupt interrupted} while waiting
446     * for permits then it will continue to wait and its position in the
447     * queue is not affected. When the
448     * thread does return from this method its interrupt status will be set.
449     *
450     * @param permits the number of permits to acquire
451     * @throws IllegalArgumentException if permits less than zero.
452     *
453     */
454     public void acquireUninterruptibly(int permits) {
455     if (permits < 0) throw new IllegalArgumentException();
456 dl 1.39 sync.acquireShared(permits);
457 dl 1.16 }
458    
459     /**
460 dl 1.40 * Acquires the given number of permits from this semaphore, only
461     * if all are available at the time of invocation.
462 dl 1.41 *
463 jsr166 1.45 * <p>Acquires the given number of permits, if they are available, and
464 dl 1.16 * returns immediately, with the value <tt>true</tt>,
465     * reducing the number of available permits by the given amount.
466     *
467     * <p>If insufficient permits are available then this method will return
468     * immediately with the value <tt>false</tt> and the number of available
469     * permits is unchanged.
470     *
471 dl 1.27 * <p>Even when this semaphore has been set to use a fair ordering
472     * policy, a call to <tt>tryAcquire</tt> <em>will</em>
473     * immediately acquire a permit if one is available, whether or
474     * not other threads are currently waiting. This
475     * &quot;barging&quot; behavior can be useful in certain
476     * circumstances, even though it breaks fairness. If you want to
477     * honor the fairness setting, then use {@link #tryAcquire(int,
478     * long, TimeUnit) tryAcquire(permits, 0, TimeUnit.SECONDS) }
479     * which is almost equivalent (it also detects interruption).
480     *
481 dl 1.16 * @param permits the number of permits to acquire
482     *
483     * @return <tt>true</tt> if the permits were acquired and <tt>false</tt>
484     * otherwise.
485     * @throws IllegalArgumentException if permits less than zero.
486     */
487     public boolean tryAcquire(int permits) {
488     if (permits < 0) throw new IllegalArgumentException();
489 dl 1.34 return sync.nonfairTryAcquireShared(permits) >= 0;
490 dl 1.16 }
491    
492     /**
493 jsr166 1.45 * Acquires the given number of permits from this semaphore, if all
494 dl 1.16 * become available within the given waiting time and the
495     * current thread has not been {@link Thread#interrupt interrupted}.
496 jsr166 1.45 * <p>Acquires the given number of permits, if they are available and
497 dl 1.16 * returns immediately, with the value <tt>true</tt>,
498     * reducing the number of available permits by the given amount.
499     * <p>If insufficient permits are available then
500     * the current thread becomes disabled for thread scheduling
501     * purposes and lies dormant until one of three things happens:
502     * <ul>
503 jsr166 1.45 * <li>Some other thread invokes one of the {@link #release() release}
504 dl 1.16 * methods for this semaphore, the current thread is next to be assigned
505     * permits and the number of available permits satisfies this request; or
506     * <li>Some other thread {@link Thread#interrupt interrupts} the current
507     * thread; or
508     * <li>The specified waiting time elapses.
509     * </ul>
510     * <p>If the permits are acquired then the value <tt>true</tt> is returned.
511     * <p>If the current thread:
512     * <ul>
513     * <li>has its interrupted status set on entry to this method; or
514     * <li>is {@link Thread#interrupt interrupted} while waiting to acquire
515     * the permits,
516     * </ul>
517     * then {@link InterruptedException} is thrown and the current thread's
518     * interrupted status is cleared.
519 jsr166 1.45 * Any permits that were to be assigned to this thread, are instead
520 dl 1.43 * assigned to other threads trying to acquire permits, as if
521     * the permits had been made available by a call to {@link #release()}.
522 dl 1.16 *
523     * <p>If the specified waiting time elapses then the value <tt>false</tt>
524     * is returned.
525     * If the time is
526     * less than or equal to zero, the method will not wait at all.
527 jsr166 1.45 * Any permits that were to be assigned to this thread, are instead
528 dl 1.43 * assigned to other threads trying to acquire permits, as if
529     * the permits had been made available by a call to {@link #release()}.
530 dl 1.16 *
531     * @param permits the number of permits to acquire
532     * @param timeout the maximum time to wait for the permits
533     * @param unit the time unit of the <tt>timeout</tt> argument.
534     * @return <tt>true</tt> if all permits were acquired and <tt>false</tt>
535     * if the waiting time elapsed before all permits were acquired.
536     *
537     * @throws InterruptedException if the current thread is interrupted
538     * @throws IllegalArgumentException if permits less than zero.
539     *
540     * @see Thread#interrupt
541     *
542     */
543     public boolean tryAcquire(int permits, long timeout, TimeUnit unit)
544     throws InterruptedException {
545     if (permits < 0) throw new IllegalArgumentException();
546 dl 1.39 return sync.tryAcquireSharedNanos(permits, unit.toNanos(timeout));
547 dl 1.16 }
548    
549     /**
550     * Releases the given number of permits, returning them to the semaphore.
551 jsr166 1.45 * <p>Releases the given number of permits, increasing the number of
552 dl 1.16 * available permits by that amount.
553 dl 1.43 * If any threads are trying to acquire permits, then one
554 dl 1.16 * is selected and given the permits that were just released.
555     * If the number of available permits satisfies that thread's request
556 dl 1.43 * then that thread is (re)enabled for thread scheduling purposes;
557     * otherwise the thread will wait until sufficient permits are available.
558     * If there are still permits available
559     * after this thread's request has been satisfied, then those permits
560     * are assigned in turn to other threads trying to acquire permits.
561 dl 1.16 *
562     * <p>There is no requirement that a thread that releases a permit must
563     * have acquired that permit by calling {@link Semaphore#acquire acquire}.
564     * Correct usage of a semaphore is established by programming convention
565     * in the application.
566     *
567     * @param permits the number of permits to release
568     * @throws IllegalArgumentException if permits less than zero.
569     */
570     public void release(int permits) {
571     if (permits < 0) throw new IllegalArgumentException();
572 dl 1.23 sync.releaseShared(permits);
573 dl 1.2 }
574 tim 1.1
575     /**
576 dl 1.41 * Returns the current number of permits available in this semaphore.
577 tim 1.1 * <p>This method is typically used for debugging and testing purposes.
578     * @return the number of permits available in this semaphore.
579     */
580 dl 1.16 public int availablePermits() {
581 dl 1.29 return sync.getPermits();
582 tim 1.1 }
583 dl 1.15
584     /**
585 jsr166 1.45 * Acquires and returns all permits that are immediately available.
586     * @return the number of permits
587 dl 1.31 */
588     public int drainPermits() {
589     return sync.drainPermits();
590     }
591    
592     /**
593 dl 1.41 * Shrinks the number of available permits by the indicated
594 dl 1.40 * reduction. This method can be useful in subclasses that use
595     * semaphores to track resources that become unavailable. This
596     * method differs from <tt>acquire</tt> in that it does not block
597     * waiting for permits to become available.
598 dl 1.15 * @param reduction the number of permits to remove
599     * @throws IllegalArgumentException if reduction is negative
600     */
601 dl 1.16 protected void reducePermits(int reduction) {
602 dl 1.15 if (reduction < 0) throw new IllegalArgumentException();
603 dl 1.29 sync.reducePermits(reduction);
604 dl 1.16 }
605    
606     /**
607 dl 1.42 * Returns true if this semaphore has fairness set true.
608 dl 1.16 * @return true if this semaphore has fairness set true.
609     */
610     public boolean isFair() {
611 dl 1.34 return sync instanceof FairSync;
612 dl 1.22 }
613    
614     /**
615 dl 1.23 * Queries whether any threads are waiting to acquire. Note that
616     * because cancellations may occur at any time, a <tt>true</tt>
617     * return does not guarantee that any other thread will ever
618     * acquire. This method is designed primarily for use in
619     * monitoring of the system state.
620     *
621     * @return true if there may be other threads waiting to acquire
622     * the lock.
623 dl 1.22 */
624 jsr166 1.45 public final boolean hasQueuedThreads() {
625 dl 1.25 return sync.hasQueuedThreads();
626 dl 1.22 }
627    
628     /**
629 dl 1.23 * Returns an estimate of the number of threads waiting to
630     * acquire. The value is only an estimate because the number of
631     * threads may change dynamically while this method traverses
632     * internal data structures. This method is designed for use in
633     * monitoring of the system state, not for synchronization
634     * control.
635     * @return the estimated number of threads waiting for this lock
636 dl 1.22 */
637 dl 1.23 public final int getQueueLength() {
638     return sync.getQueueLength();
639 dl 1.22 }
640    
641     /**
642 dl 1.23 * Returns a collection containing threads that may be waiting to
643     * acquire. Because the actual set of threads may change
644     * dynamically while constructing this result, the returned
645     * collection is only a best-effort estimate. The elements of the
646     * returned collection are in no particular order. This method is
647     * designed to facilitate construction of subclasses that provide
648     * more extensive monitoring facilities.
649     * @return the collection of threads
650 dl 1.22 */
651 dl 1.23 protected Collection<Thread> getQueuedThreads() {
652     return sync.getQueuedThreads();
653 dl 1.16 }
654 dl 1.37
655     /**
656 dl 1.40 * Returns a string identifying this semaphore, as well as its state.
657 jsr166 1.45 * The state, in brackets, includes the String
658 dl 1.38 * &quot;Permits =&quot; followed by the number of permits.
659     * @return a string identifying this semaphore, as well as its
660     * state
661 dl 1.37 */
662     public String toString() {
663     return super.toString() + "[Permits = " + sync.getPermits() + "]";
664     }
665    
666 tim 1.1 }