ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/Semaphore.java
Revision: 1.56
Committed: Fri Oct 22 05:18:31 2010 UTC (13 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.55: +1 -1 lines
Log Message:
whitespace

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 jsr166 1.51 * However, no actual permit objects are used; the {@code Semaphore} just
18 tim 1.1 * 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 jsr166 1.51 * {@code acquire} before another, but reach the ordering point after
105 dl 1.36 * 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 jsr166 1.50 * <p>Memory consistency effects: Actions in a thread prior to calling
122     * a "release" method such as {@code release()}
123     * <a href="package-summary.html#MemoryVisibility"><i>happen-before</i></a>
124     * actions following a successful "acquire" method such as {@code acquire()}
125     * in another thread.
126 jsr166 1.49 *
127 tim 1.1 * @since 1.5
128 dl 1.4 * @author Doug Lea
129 tim 1.1 *
130     */
131 dl 1.16
132 dl 1.23 public class Semaphore implements java.io.Serializable {
133 dl 1.16 private static final long serialVersionUID = -3222578661600680210L;
134 dl 1.25 /** All mechanics via AbstractQueuedSynchronizer subclass */
135 dl 1.23 private final Sync sync;
136    
137 dl 1.25 /**
138 dl 1.34 * Synchronization implementation for semaphore. Uses AQS state
139     * to represent permits. Subclassed into fair and nonfair
140     * versions.
141 dl 1.25 */
142 dl 1.34 abstract static class Sync extends AbstractQueuedSynchronizer {
143 dl 1.46 private static final long serialVersionUID = 1192457210091910933L;
144    
145 dl 1.34 Sync(int permits) {
146 dl 1.29 setState(permits);
147 dl 1.23 }
148 jsr166 1.45
149 dl 1.34 final int getPermits() {
150 dl 1.29 return getState();
151     }
152    
153 dl 1.34 final int nonfairTryAcquireShared(int acquires) {
154 dl 1.23 for (;;) {
155 dl 1.29 int available = getState();
156 dl 1.23 int remaining = available - acquires;
157     if (remaining < 0 ||
158 dl 1.29 compareAndSetState(available, remaining))
159 dl 1.23 return remaining;
160     }
161     }
162 jsr166 1.45
163 dl 1.34 protected final boolean tryReleaseShared(int releases) {
164 dl 1.23 for (;;) {
165 jsr166 1.54 int current = getState();
166     int next = current + releases;
167     if (next < current) // overflow
168     throw new Error("Maximum permit count exceeded");
169     if (compareAndSetState(current, next))
170 dl 1.23 return true;
171     }
172     }
173 dl 1.29
174 dl 1.34 final void reducePermits(int reductions) {
175 dl 1.29 for (;;) {
176     int current = getState();
177     int next = current - reductions;
178 jsr166 1.54 if (next > current) // underflow
179     throw new Error("Permit count underflow");
180 dl 1.29 if (compareAndSetState(current, next))
181     return;
182     }
183     }
184 dl 1.31
185 dl 1.34 final int drainPermits() {
186 dl 1.31 for (;;) {
187     int current = getState();
188     if (current == 0 || compareAndSetState(current, 0))
189     return current;
190     }
191     }
192 dl 1.23 }
193 dl 1.16
194 tim 1.1 /**
195 dl 1.34 * NonFair version
196     */
197 jsr166 1.55 static final class NonfairSync extends Sync {
198 dl 1.46 private static final long serialVersionUID = -2694183684443567898L;
199    
200 dl 1.34 NonfairSync(int permits) {
201     super(permits);
202     }
203 jsr166 1.45
204 dl 1.34 protected int tryAcquireShared(int acquires) {
205     return nonfairTryAcquireShared(acquires);
206     }
207     }
208    
209     /**
210     * Fair version
211     */
212 jsr166 1.55 static final class FairSync extends Sync {
213 dl 1.46 private static final long serialVersionUID = 2014338818796000944L;
214    
215 dl 1.34 FairSync(int permits) {
216     super(permits);
217     }
218 jsr166 1.45
219 dl 1.34 protected int tryAcquireShared(int acquires) {
220     for (;;) {
221 jsr166 1.53 if (hasQueuedPredecessors())
222 dl 1.34 return -1;
223     int available = getState();
224     int remaining = available - acquires;
225     if (remaining < 0 ||
226     compareAndSetState(available, remaining))
227     return remaining;
228     }
229     }
230     }
231    
232     /**
233 jsr166 1.51 * Creates a {@code Semaphore} with the given number of
234 dl 1.36 * permits and nonfair fairness setting.
235 jsr166 1.51 *
236     * @param permits the initial number of permits available.
237     * This value may be negative, in which case releases
238     * must occur before any acquires will be granted.
239 dl 1.36 */
240 jsr166 1.45 public Semaphore(int permits) {
241 dl 1.36 sync = new NonfairSync(permits);
242     }
243    
244     /**
245 jsr166 1.51 * Creates a {@code Semaphore} with the given number of
246 dl 1.19 * permits and the given fairness setting.
247 jsr166 1.51 *
248     * @param permits the initial number of permits available.
249     * This value may be negative, in which case releases
250     * must occur before any acquires will be granted.
251     * @param fair {@code true} if this semaphore will guarantee
252     * first-in first-out granting of permits under contention,
253     * else {@code false}
254 tim 1.1 */
255 jsr166 1.45 public Semaphore(int permits, boolean fair) {
256 jsr166 1.56 sync = fair ? new FairSync(permits) : new NonfairSync(permits);
257 tim 1.1 }
258    
259     /**
260     * Acquires a permit from this semaphore, blocking until one is
261 jsr166 1.51 * available, or the thread is {@linkplain Thread#interrupt interrupted}.
262 tim 1.1 *
263     * <p>Acquires a permit, if one is available and returns immediately,
264     * reducing the number of available permits by one.
265 jsr166 1.51 *
266 tim 1.1 * <p>If no permit is available then the current thread becomes
267     * disabled for thread scheduling purposes and lies dormant until
268     * one of two things happens:
269     * <ul>
270     * <li>Some other thread invokes the {@link #release} method for this
271 dl 1.16 * semaphore and the current thread is next to be assigned a permit; or
272 jsr166 1.51 * <li>Some other thread {@linkplain Thread#interrupt interrupts}
273     * the current thread.
274 tim 1.1 * </ul>
275     *
276     * <p>If the current thread:
277     * <ul>
278     * <li>has its interrupted status set on entry to this method; or
279 jsr166 1.51 * <li>is {@linkplain Thread#interrupt interrupted} while waiting
280 tim 1.1 * for a permit,
281     * </ul>
282     * then {@link InterruptedException} is thrown and the current thread's
283     * interrupted status is cleared.
284     *
285     * @throws InterruptedException if the current thread is interrupted
286     */
287 dl 1.2 public void acquire() throws InterruptedException {
288 dl 1.23 sync.acquireSharedInterruptibly(1);
289 dl 1.2 }
290 tim 1.1
291     /**
292     * Acquires a permit from this semaphore, blocking until one is
293     * available.
294     *
295     * <p>Acquires a permit, if one is available and returns immediately,
296     * reducing the number of available permits by one.
297 jsr166 1.51 *
298 tim 1.1 * <p>If no permit is available then the current thread becomes
299     * disabled for thread scheduling purposes and lies dormant until
300     * some other thread invokes the {@link #release} method for this
301 dl 1.16 * semaphore and the current thread is next to be assigned a permit.
302 tim 1.1 *
303 jsr166 1.51 * <p>If the current thread is {@linkplain Thread#interrupt interrupted}
304     * while waiting for a permit then it will continue to wait, but the
305     * time at which the thread is assigned a permit may change compared to
306     * the time it would have received the permit had no interruption
307     * occurred. When the thread does return from this method its interrupt
308     * status will be set.
309 tim 1.1 */
310 dl 1.2 public void acquireUninterruptibly() {
311 dl 1.39 sync.acquireShared(1);
312 dl 1.2 }
313 tim 1.1
314     /**
315 jsr166 1.45 * Acquires a permit from this semaphore, only if one is available at the
316 tim 1.1 * time of invocation.
317 jsr166 1.51 *
318 tim 1.1 * <p>Acquires a permit, if one is available and returns immediately,
319 jsr166 1.51 * with the value {@code true},
320 tim 1.1 * reducing the number of available permits by one.
321     *
322     * <p>If no permit is available then this method will return
323 jsr166 1.51 * immediately with the value {@code false}.
324 tim 1.1 *
325 dl 1.27 * <p>Even when this semaphore has been set to use a
326 jsr166 1.51 * fair ordering policy, a call to {@code tryAcquire()} <em>will</em>
327 dl 1.27 * immediately acquire a permit if one is available, whether or not
328 jsr166 1.45 * other threads are currently waiting.
329     * This &quot;barging&quot; behavior can be useful in certain
330 dl 1.27 * circumstances, even though it breaks fairness. If you want to honor
331 jsr166 1.45 * the fairness setting, then use
332 dl 1.27 * {@link #tryAcquire(long, TimeUnit) tryAcquire(0, TimeUnit.SECONDS) }
333     * which is almost equivalent (it also detects interruption).
334     *
335 jsr166 1.51 * @return {@code true} if a permit was acquired and {@code false}
336     * otherwise
337 tim 1.1 */
338     public boolean tryAcquire() {
339 dl 1.34 return sync.nonfairTryAcquireShared(1) >= 0;
340 tim 1.1 }
341    
342     /**
343 jsr166 1.45 * Acquires a permit from this semaphore, if one becomes available
344 jsr166 1.51 * within the given waiting time and the current thread has not
345     * been {@linkplain Thread#interrupt interrupted}.
346     *
347 tim 1.1 * <p>Acquires a permit, if one is available and returns immediately,
348 jsr166 1.51 * with the value {@code true},
349 tim 1.1 * reducing the number of available permits by one.
350 jsr166 1.51 *
351     * <p>If no permit is available then the current thread becomes
352     * disabled for thread scheduling purposes and lies dormant until
353     * one of three things happens:
354 tim 1.1 * <ul>
355     * <li>Some other thread invokes the {@link #release} method for this
356 dl 1.16 * semaphore and the current thread is next to be assigned a permit; or
357 jsr166 1.51 * <li>Some other thread {@linkplain Thread#interrupt interrupts}
358     * the current thread; or
359 tim 1.1 * <li>The specified waiting time elapses.
360     * </ul>
361 jsr166 1.51 *
362     * <p>If a permit is acquired then the value {@code true} is returned.
363     *
364 tim 1.1 * <p>If the current thread:
365     * <ul>
366     * <li>has its interrupted status set on entry to this method; or
367 jsr166 1.51 * <li>is {@linkplain Thread#interrupt interrupted} while waiting
368     * to acquire a permit,
369 tim 1.1 * </ul>
370     * then {@link InterruptedException} is thrown and the current thread's
371     * interrupted status is cleared.
372 jsr166 1.51 *
373     * <p>If the specified waiting time elapses then the value {@code false}
374     * is returned. If the time is less than or equal to zero, the method
375     * will not wait at all.
376 tim 1.1 *
377     * @param timeout the maximum time to wait for a permit
378 jsr166 1.51 * @param unit the time unit of the {@code timeout} argument
379     * @return {@code true} if a permit was acquired and {@code false}
380     * if the waiting time elapsed before a permit was acquired
381 tim 1.1 * @throws InterruptedException if the current thread is interrupted
382     */
383 jsr166 1.45 public boolean tryAcquire(long timeout, TimeUnit unit)
384 tim 1.1 throws InterruptedException {
385 dl 1.39 return sync.tryAcquireSharedNanos(1, unit.toNanos(timeout));
386 tim 1.1 }
387    
388     /**
389     * Releases a permit, returning it to the semaphore.
390 jsr166 1.51 *
391     * <p>Releases a permit, increasing the number of available permits by
392     * one. If any threads are trying to acquire a permit, then one is
393     * selected and given the permit that was just released. That thread
394     * is (re)enabled for thread scheduling purposes.
395     *
396 tim 1.1 * <p>There is no requirement that a thread that releases a permit must
397     * have acquired that permit by calling {@link #acquire}.
398     * Correct usage of a semaphore is established by programming convention
399     * in the application.
400     */
401 dl 1.2 public void release() {
402 dl 1.23 sync.releaseShared(1);
403 dl 1.16 }
404 jsr166 1.45
405 dl 1.16 /**
406 jsr166 1.45 * Acquires the given number of permits from this semaphore,
407     * blocking until all are available,
408 jsr166 1.51 * or the thread is {@linkplain Thread#interrupt interrupted}.
409 dl 1.16 *
410     * <p>Acquires the given number of permits, if they are available,
411 jsr166 1.51 * and returns immediately, reducing the number of available permits
412     * by the given amount.
413 dl 1.16 *
414     * <p>If insufficient permits are available then the current thread becomes
415     * disabled for thread scheduling purposes and lies dormant until
416     * one of two things happens:
417     * <ul>
418 jsr166 1.45 * <li>Some other thread invokes one of the {@link #release() release}
419 dl 1.16 * methods for this semaphore, the current thread is next to be assigned
420     * permits and the number of available permits satisfies this request; or
421 jsr166 1.51 * <li>Some other thread {@linkplain Thread#interrupt interrupts}
422     * the current thread.
423 dl 1.16 * </ul>
424     *
425     * <p>If the current thread:
426     * <ul>
427     * <li>has its interrupted status set on entry to this method; or
428 jsr166 1.51 * <li>is {@linkplain Thread#interrupt interrupted} while waiting
429 dl 1.16 * for a permit,
430     * </ul>
431     * then {@link InterruptedException} is thrown and the current thread's
432 jsr166 1.45 * interrupted status is cleared.
433     * Any permits that were to be assigned to this thread are instead
434 dl 1.43 * assigned to other threads trying to acquire permits, as if
435     * permits had been made available by a call to {@link #release()}.
436 dl 1.16 *
437     * @param permits the number of permits to acquire
438     * @throws InterruptedException if the current thread is interrupted
439 jsr166 1.51 * @throws IllegalArgumentException if {@code permits} is negative
440 dl 1.16 */
441     public void acquire(int permits) throws InterruptedException {
442     if (permits < 0) throw new IllegalArgumentException();
443 dl 1.23 sync.acquireSharedInterruptibly(permits);
444 dl 1.16 }
445    
446     /**
447 jsr166 1.45 * Acquires the given number of permits from this semaphore,
448 dl 1.16 * blocking until all are available.
449     *
450     * <p>Acquires the given number of permits, if they are available,
451 jsr166 1.51 * and returns immediately, reducing the number of available permits
452     * by the given amount.
453 dl 1.16 *
454     * <p>If insufficient permits are available then the current thread becomes
455     * disabled for thread scheduling purposes and lies dormant until
456 jsr166 1.45 * some other thread invokes one of the {@link #release() release}
457 dl 1.16 * methods for this semaphore, the current thread is next to be assigned
458     * permits and the number of available permits satisfies this request.
459     *
460 jsr166 1.51 * <p>If the current thread is {@linkplain Thread#interrupt interrupted}
461     * while waiting for permits then it will continue to wait and its
462     * position in the queue is not affected. When the thread does return
463     * from this method its interrupt status will be set.
464 dl 1.16 *
465     * @param permits the number of permits to acquire
466 jsr166 1.51 * @throws IllegalArgumentException if {@code permits} is negative
467 dl 1.16 *
468     */
469     public void acquireUninterruptibly(int permits) {
470     if (permits < 0) throw new IllegalArgumentException();
471 dl 1.39 sync.acquireShared(permits);
472 dl 1.16 }
473    
474     /**
475 dl 1.40 * Acquires the given number of permits from this semaphore, only
476     * if all are available at the time of invocation.
477 dl 1.41 *
478 jsr166 1.45 * <p>Acquires the given number of permits, if they are available, and
479 jsr166 1.51 * returns immediately, with the value {@code true},
480 dl 1.16 * reducing the number of available permits by the given amount.
481     *
482     * <p>If insufficient permits are available then this method will return
483 jsr166 1.51 * immediately with the value {@code false} and the number of available
484 dl 1.16 * permits is unchanged.
485     *
486 dl 1.27 * <p>Even when this semaphore has been set to use a fair ordering
487 jsr166 1.51 * policy, a call to {@code tryAcquire} <em>will</em>
488 dl 1.27 * immediately acquire a permit if one is available, whether or
489     * not other threads are currently waiting. This
490     * &quot;barging&quot; behavior can be useful in certain
491     * circumstances, even though it breaks fairness. If you want to
492     * honor the fairness setting, then use {@link #tryAcquire(int,
493     * long, TimeUnit) tryAcquire(permits, 0, TimeUnit.SECONDS) }
494     * which is almost equivalent (it also detects interruption).
495     *
496 dl 1.16 * @param permits the number of permits to acquire
497 jsr166 1.51 * @return {@code true} if the permits were acquired and
498     * {@code false} otherwise
499     * @throws IllegalArgumentException if {@code permits} is negative
500 dl 1.16 */
501     public boolean tryAcquire(int permits) {
502     if (permits < 0) throw new IllegalArgumentException();
503 dl 1.34 return sync.nonfairTryAcquireShared(permits) >= 0;
504 dl 1.16 }
505    
506     /**
507 jsr166 1.45 * Acquires the given number of permits from this semaphore, if all
508 jsr166 1.51 * become available within the given waiting time and the current
509     * thread has not been {@linkplain Thread#interrupt interrupted}.
510     *
511 jsr166 1.45 * <p>Acquires the given number of permits, if they are available and
512 jsr166 1.51 * returns immediately, with the value {@code true},
513 dl 1.16 * reducing the number of available permits by the given amount.
514 jsr166 1.51 *
515 dl 1.16 * <p>If insufficient permits are available then
516     * the current thread becomes disabled for thread scheduling
517     * purposes and lies dormant until one of three things happens:
518     * <ul>
519 jsr166 1.45 * <li>Some other thread invokes one of the {@link #release() release}
520 dl 1.16 * methods for this semaphore, the current thread is next to be assigned
521     * permits and the number of available permits satisfies this request; or
522 jsr166 1.51 * <li>Some other thread {@linkplain Thread#interrupt interrupts}
523     * the current thread; or
524 dl 1.16 * <li>The specified waiting time elapses.
525     * </ul>
526 jsr166 1.51 *
527     * <p>If the permits are acquired then the value {@code true} is returned.
528     *
529 dl 1.16 * <p>If the current thread:
530     * <ul>
531     * <li>has its interrupted status set on entry to this method; or
532 jsr166 1.51 * <li>is {@linkplain Thread#interrupt interrupted} while waiting
533     * to acquire the permits,
534 dl 1.16 * </ul>
535     * then {@link InterruptedException} is thrown and the current thread's
536     * interrupted status is cleared.
537 jsr166 1.45 * Any permits that were to be assigned to this thread, are instead
538 dl 1.43 * assigned to other threads trying to acquire permits, as if
539     * the permits had been made available by a call to {@link #release()}.
540 dl 1.16 *
541 jsr166 1.51 * <p>If the specified waiting time elapses then the value {@code false}
542     * is returned. If the time is less than or equal to zero, the method
543     * will not wait at all. Any permits that were to be assigned to this
544     * thread, are instead assigned to other threads trying to acquire
545     * permits, as if the permits had been made available by a call to
546     * {@link #release()}.
547 dl 1.16 *
548     * @param permits the number of permits to acquire
549     * @param timeout the maximum time to wait for the permits
550 jsr166 1.51 * @param unit the time unit of the {@code timeout} argument
551     * @return {@code true} if all permits were acquired and {@code false}
552     * if the waiting time elapsed before all permits were acquired
553 dl 1.16 * @throws InterruptedException if the current thread is interrupted
554 jsr166 1.51 * @throws IllegalArgumentException if {@code permits} is negative
555 dl 1.16 */
556     public boolean tryAcquire(int permits, long timeout, TimeUnit unit)
557     throws InterruptedException {
558     if (permits < 0) throw new IllegalArgumentException();
559 dl 1.39 return sync.tryAcquireSharedNanos(permits, unit.toNanos(timeout));
560 dl 1.16 }
561    
562     /**
563     * Releases the given number of permits, returning them to the semaphore.
564 jsr166 1.51 *
565 jsr166 1.45 * <p>Releases the given number of permits, increasing the number of
566 dl 1.16 * available permits by that amount.
567 dl 1.43 * If any threads are trying to acquire permits, then one
568 dl 1.16 * is selected and given the permits that were just released.
569     * If the number of available permits satisfies that thread's request
570 dl 1.43 * then that thread is (re)enabled for thread scheduling purposes;
571     * otherwise the thread will wait until sufficient permits are available.
572     * If there are still permits available
573     * after this thread's request has been satisfied, then those permits
574     * are assigned in turn to other threads trying to acquire permits.
575 dl 1.16 *
576     * <p>There is no requirement that a thread that releases a permit must
577     * have acquired that permit by calling {@link Semaphore#acquire acquire}.
578     * Correct usage of a semaphore is established by programming convention
579     * in the application.
580     *
581     * @param permits the number of permits to release
582 jsr166 1.51 * @throws IllegalArgumentException if {@code permits} is negative
583 dl 1.16 */
584     public void release(int permits) {
585     if (permits < 0) throw new IllegalArgumentException();
586 dl 1.23 sync.releaseShared(permits);
587 dl 1.2 }
588 tim 1.1
589     /**
590 dl 1.41 * Returns the current number of permits available in this semaphore.
591 jsr166 1.51 *
592 tim 1.1 * <p>This method is typically used for debugging and testing purposes.
593 jsr166 1.51 *
594     * @return the number of permits available in this semaphore
595 tim 1.1 */
596 dl 1.16 public int availablePermits() {
597 dl 1.29 return sync.getPermits();
598 tim 1.1 }
599 dl 1.15
600     /**
601 jsr166 1.45 * Acquires and returns all permits that are immediately available.
602 jsr166 1.51 *
603     * @return the number of permits acquired
604 dl 1.31 */
605     public int drainPermits() {
606     return sync.drainPermits();
607     }
608    
609     /**
610 dl 1.41 * Shrinks the number of available permits by the indicated
611 dl 1.40 * reduction. This method can be useful in subclasses that use
612     * semaphores to track resources that become unavailable. This
613 jsr166 1.51 * method differs from {@code acquire} in that it does not block
614 dl 1.40 * waiting for permits to become available.
615 jsr166 1.51 *
616 dl 1.15 * @param reduction the number of permits to remove
617 jsr166 1.51 * @throws IllegalArgumentException if {@code reduction} is negative
618 dl 1.15 */
619 dl 1.16 protected void reducePermits(int reduction) {
620 jsr166 1.53 if (reduction < 0) throw new IllegalArgumentException();
621 dl 1.29 sync.reducePermits(reduction);
622 dl 1.16 }
623    
624     /**
625 jsr166 1.51 * Returns {@code true} if this semaphore has fairness set true.
626     *
627     * @return {@code true} if this semaphore has fairness set true
628 dl 1.16 */
629     public boolean isFair() {
630 dl 1.34 return sync instanceof FairSync;
631 dl 1.22 }
632    
633     /**
634 dl 1.23 * Queries whether any threads are waiting to acquire. Note that
635 jsr166 1.51 * because cancellations may occur at any time, a {@code true}
636 dl 1.23 * return does not guarantee that any other thread will ever
637     * acquire. This method is designed primarily for use in
638     * monitoring of the system state.
639     *
640 jsr166 1.51 * @return {@code true} if there may be other threads waiting to
641     * acquire the lock
642 dl 1.22 */
643 jsr166 1.45 public final boolean hasQueuedThreads() {
644 dl 1.25 return sync.hasQueuedThreads();
645 dl 1.22 }
646    
647     /**
648 jsr166 1.51 * Returns an estimate of the number of threads waiting to acquire.
649     * The value is only an estimate because the number of threads may
650     * change dynamically while this method traverses internal data
651     * structures. This method is designed for use in monitoring of the
652     * system state, not for synchronization control.
653     *
654 dl 1.23 * @return the estimated number of threads waiting for this lock
655 dl 1.22 */
656 dl 1.23 public final int getQueueLength() {
657     return sync.getQueueLength();
658 dl 1.22 }
659    
660     /**
661 jsr166 1.51 * Returns a collection containing threads that may be waiting to acquire.
662     * Because the actual set of threads may change dynamically while
663     * constructing this result, the returned collection is only a best-effort
664     * estimate. The elements of the returned collection are in no particular
665     * order. This method is designed to facilitate construction of
666     * subclasses that provide more extensive monitoring facilities.
667     *
668 dl 1.23 * @return the collection of threads
669 dl 1.22 */
670 dl 1.23 protected Collection<Thread> getQueuedThreads() {
671     return sync.getQueuedThreads();
672 dl 1.16 }
673 dl 1.37
674     /**
675 dl 1.40 * Returns a string identifying this semaphore, as well as its state.
676 jsr166 1.51 * The state, in brackets, includes the String {@code "Permits ="}
677     * followed by the number of permits.
678     *
679     * @return a string identifying this semaphore, as well as its state
680 dl 1.37 */
681     public String toString() {
682     return super.toString() + "[Permits = " + sync.getPermits() + "]";
683     }
684 tim 1.1 }