1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
|
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* This file is available under and governed by the GNU General Public
* License version 2 only, as published by the Free Software Foundation.
* However, the following notice accompanied the original version of this
* file:
*
* Written by Doug Lea with assistance from members of JCP JSR-166
* Expert Group and released to the public domain, as explained at
* http://creativecommons.org/publicdomain/zero/1.0/
* Other contributors include Andrew Wright, Jeffrey Hayes,
* Pat Fisher, Mike Judd.
*/
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import java.util.Collection;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Semaphore;
import java.util.concurrent.ThreadLocalRandom;
import junit.framework.Test;
import junit.framework.TestSuite;
public class SemaphoreTest extends JSR166TestCase {
public static void main(String[] args) {
main(suite(), args);
}
public static Test suite() {
return new TestSuite(SemaphoreTest.class);
}
/**
* Subclass to expose protected methods
*/
static class PublicSemaphore extends Semaphore {
PublicSemaphore(int permits) { super(permits); }
PublicSemaphore(int permits, boolean fair) { super(permits, fair); }
public Collection<Thread> getQueuedThreads() {
return super.getQueuedThreads();
}
public boolean hasQueuedThread(Thread t) {
return super.getQueuedThreads().contains(t);
}
public void reducePermits(int reduction) {
super.reducePermits(reduction);
}
}
/**
* A runnable calling acquire
*/
class InterruptibleLockRunnable extends CheckedRunnable {
final Semaphore lock;
InterruptibleLockRunnable(Semaphore s) { lock = s; }
public void realRun() {
try {
lock.acquire();
}
catch (InterruptedException ignored) {}
}
}
/**
* A runnable calling acquire that expects to be interrupted
*/
class InterruptedLockRunnable extends CheckedInterruptedRunnable {
final Semaphore lock;
InterruptedLockRunnable(Semaphore s) { lock = s; }
public void realRun() throws InterruptedException {
lock.acquire();
}
}
/**
* Spin-waits until s.hasQueuedThread(t) becomes true.
*/
void waitForQueuedThread(PublicSemaphore s, Thread t) {
long startTime = System.nanoTime();
while (!s.hasQueuedThread(t)) {
if (millisElapsedSince(startTime) > LONG_DELAY_MS)
throw new AssertionError("timed out");
Thread.yield();
}
assertTrue(s.hasQueuedThreads());
assertTrue(t.isAlive());
}
/**
* Spin-waits until s.hasQueuedThreads() becomes true.
*/
void waitForQueuedThreads(Semaphore s) {
long startTime = System.nanoTime();
while (!s.hasQueuedThreads()) {
if (millisElapsedSince(startTime) > LONG_DELAY_MS)
throw new AssertionError("timed out");
Thread.yield();
}
}
enum AcquireMethod {
acquire() {
void acquire(Semaphore s) throws InterruptedException {
s.acquire();
}
},
acquireN() {
void acquire(Semaphore s, int permits) throws InterruptedException {
s.acquire(permits);
}
},
acquireUninterruptibly() {
void acquire(Semaphore s) {
s.acquireUninterruptibly();
}
},
acquireUninterruptiblyN() {
void acquire(Semaphore s, int permits) {
s.acquireUninterruptibly(permits);
}
},
tryAcquire() {
void acquire(Semaphore s) {
assertTrue(s.tryAcquire());
}
},
tryAcquireN() {
void acquire(Semaphore s, int permits) {
assertTrue(s.tryAcquire(permits));
}
},
tryAcquireTimed() {
void acquire(Semaphore s) throws InterruptedException {
assertTrue(s.tryAcquire(2 * LONG_DELAY_MS, MILLISECONDS));
}
Thread.State parkedState() { return Thread.State.TIMED_WAITING; }
},
tryAcquireTimedN {
void acquire(Semaphore s, int permits) throws InterruptedException {
assertTrue(s.tryAcquire(permits, 2 * LONG_DELAY_MS, MILLISECONDS));
}
Thread.State parkedState() { return Thread.State.TIMED_WAITING; }
};
// Intentionally meta-circular
/** Acquires 1 permit. */
void acquire(Semaphore s) throws InterruptedException {
acquire(s, 1);
}
/** Acquires the given number of permits. */
void acquire(Semaphore s, int permits) throws InterruptedException {
for (int i = 0; i < permits; i++)
acquire(s);
}
Thread.State parkedState() { return Thread.State.WAITING; }
}
/**
* Zero, negative, and positive initial values are allowed in constructor
*/
public void testConstructor() { testConstructor(false); }
public void testConstructor_fair() { testConstructor(true); }
public void testConstructor(boolean fair) {
for (int permits : new int[] { -42, -1, 0, 1, 42 }) {
Semaphore s = new Semaphore(permits, fair);
assertEquals(permits, s.availablePermits());
assertEquals(fair, s.isFair());
}
}
/**
* Constructor without fairness argument behaves as nonfair
*/
public void testConstructorDefaultsToNonFair() {
for (int permits : new int[] { -42, -1, 0, 1, 42 }) {
Semaphore s = new Semaphore(permits);
assertEquals(permits, s.availablePermits());
assertFalse(s.isFair());
}
}
/**
* tryAcquire succeeds when sufficient permits, else fails
*/
public void testTryAcquireInSameThread() { testTryAcquireInSameThread(false); }
public void testTryAcquireInSameThread_fair() { testTryAcquireInSameThread(true); }
public void testTryAcquireInSameThread(boolean fair) {
Semaphore s = new Semaphore(2, fair);
assertEquals(2, s.availablePermits());
assertTrue(s.tryAcquire());
assertTrue(s.tryAcquire());
assertEquals(0, s.availablePermits());
assertFalse(s.tryAcquire());
assertFalse(s.tryAcquire());
assertEquals(0, s.availablePermits());
}
/**
* timed tryAcquire times out
*/
public void testTryAcquire_timeout() {
final boolean fair = ThreadLocalRandom.current().nextBoolean();
final Semaphore s = new Semaphore(0, fair);
final long startTime = System.nanoTime();
try { assertFalse(s.tryAcquire(timeoutMillis(), MILLISECONDS)); }
catch (InterruptedException e) { threadUnexpectedException(e); }
assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
}
/**
* timed tryAcquire(N) times out
*/
public void testTryAcquireN_timeout() {
final boolean fair = ThreadLocalRandom.current().nextBoolean();
final Semaphore s = new Semaphore(2, fair);
final long startTime = System.nanoTime();
try { assertFalse(s.tryAcquire(3, timeoutMillis(), MILLISECONDS)); }
catch (InterruptedException e) { threadUnexpectedException(e); }
assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
}
/**
* acquire(), acquire(N), timed tryAcquired, timed tryAcquire(N)
* are interruptible
*/
public void testInterruptible_acquire() { testInterruptible(false, AcquireMethod.acquire); }
public void testInterruptible_acquire_fair() { testInterruptible(true, AcquireMethod.acquire); }
public void testInterruptible_acquireN() { testInterruptible(false, AcquireMethod.acquireN); }
public void testInterruptible_acquireN_fair() { testInterruptible(true, AcquireMethod.acquireN); }
public void testInterruptible_tryAcquireTimed() { testInterruptible(false, AcquireMethod.tryAcquireTimed); }
public void testInterruptible_tryAcquireTimed_fair() { testInterruptible(true, AcquireMethod.tryAcquireTimed); }
public void testInterruptible_tryAcquireTimedN() { testInterruptible(false, AcquireMethod.tryAcquireTimedN); }
public void testInterruptible_tryAcquireTimedN_fair() { testInterruptible(true, AcquireMethod.tryAcquireTimedN); }
public void testInterruptible(boolean fair, final AcquireMethod acquirer) {
final PublicSemaphore s = new PublicSemaphore(0, fair);
final java.util.concurrent.CyclicBarrier pleaseInterrupt
= new java.util.concurrent.CyclicBarrier(2);
Thread t = newStartedThread(new CheckedRunnable() {
public void realRun() {
// Interrupt before acquire
Thread.currentThread().interrupt();
try {
acquirer.acquire(s);
shouldThrow();
} catch (InterruptedException success) {}
assertFalse(Thread.interrupted());
// Interrupt before acquire(N)
Thread.currentThread().interrupt();
try {
acquirer.acquire(s, 3);
shouldThrow();
} catch (InterruptedException success) {}
assertFalse(Thread.interrupted());
// Interrupt during acquire
await(pleaseInterrupt);
try {
acquirer.acquire(s);
shouldThrow();
} catch (InterruptedException success) {}
assertFalse(Thread.interrupted());
// Interrupt during acquire(N)
await(pleaseInterrupt);
try {
acquirer.acquire(s, 3);
shouldThrow();
} catch (InterruptedException success) {}
assertFalse(Thread.interrupted());
}});
for (int n = 2; n-->0; ) {
await(pleaseInterrupt);
assertThreadBlocks(t, acquirer.parkedState());
t.interrupt();
}
awaitTermination(t);
}
/**
* acquireUninterruptibly(), acquireUninterruptibly(N) are
* uninterruptible
*/
public void testUninterruptible_acquireUninterruptibly() { testUninterruptible(false, AcquireMethod.acquireUninterruptibly); }
public void testUninterruptible_acquireUninterruptibly_fair() { testUninterruptible(true, AcquireMethod.acquireUninterruptibly); }
public void testUninterruptible_acquireUninterruptiblyN() { testUninterruptible(false, AcquireMethod.acquireUninterruptiblyN); }
public void testUninterruptible_acquireUninterruptiblyN_fair() { testUninterruptible(true, AcquireMethod.acquireUninterruptiblyN); }
public void testUninterruptible(boolean fair, final AcquireMethod acquirer) {
final PublicSemaphore s = new PublicSemaphore(0, fair);
final Semaphore pleaseInterrupt = new Semaphore(-1, fair);
Thread t1 = newStartedThread(new CheckedRunnable() {
public void realRun() throws InterruptedException {
// Interrupt before acquire
pleaseInterrupt.release();
Thread.currentThread().interrupt();
acquirer.acquire(s);
assertTrue(Thread.interrupted());
}});
Thread t2 = newStartedThread(new CheckedRunnable() {
public void realRun() throws InterruptedException {
// Interrupt during acquire
pleaseInterrupt.release();
acquirer.acquire(s);
assertTrue(Thread.interrupted());
}});
await(pleaseInterrupt);
waitForQueuedThread(s, t1);
waitForQueuedThread(s, t2);
t2.interrupt();
assertThreadBlocks(t1, Thread.State.WAITING);
assertThreadBlocks(t2, Thread.State.WAITING);
s.release(2);
awaitTermination(t1);
awaitTermination(t2);
}
/**
* hasQueuedThreads reports whether there are waiting threads
*/
public void testHasQueuedThreads() { testHasQueuedThreads(false); }
public void testHasQueuedThreads_fair() { testHasQueuedThreads(true); }
public void testHasQueuedThreads(boolean fair) {
final PublicSemaphore lock = new PublicSemaphore(1, fair);
assertFalse(lock.hasQueuedThreads());
lock.acquireUninterruptibly();
Thread t1 = newStartedThread(new InterruptedLockRunnable(lock));
waitForQueuedThread(lock, t1);
assertTrue(lock.hasQueuedThreads());
Thread t2 = newStartedThread(new InterruptibleLockRunnable(lock));
waitForQueuedThread(lock, t2);
assertTrue(lock.hasQueuedThreads());
t1.interrupt();
awaitTermination(t1);
assertTrue(lock.hasQueuedThreads());
lock.release();
awaitTermination(t2);
assertFalse(lock.hasQueuedThreads());
}
/**
* getQueueLength reports number of waiting threads
*/
public void testGetQueueLength() { testGetQueueLength(false); }
public void testGetQueueLength_fair() { testGetQueueLength(true); }
public void testGetQueueLength(boolean fair) {
final PublicSemaphore lock = new PublicSemaphore(1, fair);
assertEquals(0, lock.getQueueLength());
lock.acquireUninterruptibly();
Thread t1 = newStartedThread(new InterruptedLockRunnable(lock));
waitForQueuedThread(lock, t1);
assertEquals(1, lock.getQueueLength());
Thread t2 = newStartedThread(new InterruptibleLockRunnable(lock));
waitForQueuedThread(lock, t2);
assertEquals(2, lock.getQueueLength());
t1.interrupt();
awaitTermination(t1);
assertEquals(1, lock.getQueueLength());
lock.release();
awaitTermination(t2);
assertEquals(0, lock.getQueueLength());
}
/**
* getQueuedThreads includes waiting threads
*/
public void testGetQueuedThreads() { testGetQueuedThreads(false); }
public void testGetQueuedThreads_fair() { testGetQueuedThreads(true); }
public void testGetQueuedThreads(boolean fair) {
final PublicSemaphore lock = new PublicSemaphore(1, fair);
assertTrue(lock.getQueuedThreads().isEmpty());
lock.acquireUninterruptibly();
assertTrue(lock.getQueuedThreads().isEmpty());
Thread t1 = newStartedThread(new InterruptedLockRunnable(lock));
waitForQueuedThread(lock, t1);
assertTrue(lock.getQueuedThreads().contains(t1));
Thread t2 = newStartedThread(new InterruptibleLockRunnable(lock));
waitForQueuedThread(lock, t2);
assertTrue(lock.getQueuedThreads().contains(t1));
assertTrue(lock.getQueuedThreads().contains(t2));
t1.interrupt();
awaitTermination(t1);
assertFalse(lock.getQueuedThreads().contains(t1));
assertTrue(lock.getQueuedThreads().contains(t2));
lock.release();
awaitTermination(t2);
assertTrue(lock.getQueuedThreads().isEmpty());
}
/**
* drainPermits reports and removes given number of permits
*/
public void testDrainPermits() { testDrainPermits(false); }
public void testDrainPermits_fair() { testDrainPermits(true); }
public void testDrainPermits(boolean fair) {
Semaphore s = new Semaphore(0, fair);
assertEquals(0, s.availablePermits());
assertEquals(0, s.drainPermits());
s.release(10);
assertEquals(10, s.availablePermits());
assertEquals(10, s.drainPermits());
assertEquals(0, s.availablePermits());
assertEquals(0, s.drainPermits());
}
/**
* release(-N) throws IllegalArgumentException
*/
public void testReleaseIAE() { testReleaseIAE(false); }
public void testReleaseIAE_fair() { testReleaseIAE(true); }
public void testReleaseIAE(boolean fair) {
Semaphore s = new Semaphore(10, fair);
try {
s.release(-1);
shouldThrow();
} catch (IllegalArgumentException success) {}
}
/**
* reducePermits(-N) throws IllegalArgumentException
*/
public void testReducePermitsIAE() { testReducePermitsIAE(false); }
public void testReducePermitsIAE_fair() { testReducePermitsIAE(true); }
public void testReducePermitsIAE(boolean fair) {
PublicSemaphore s = new PublicSemaphore(10, fair);
try {
s.reducePermits(-1);
shouldThrow();
} catch (IllegalArgumentException success) {}
}
/**
* reducePermits reduces number of permits
*/
public void testReducePermits() { testReducePermits(false); }
public void testReducePermits_fair() { testReducePermits(true); }
public void testReducePermits(boolean fair) {
PublicSemaphore s = new PublicSemaphore(10, fair);
assertEquals(10, s.availablePermits());
s.reducePermits(0);
assertEquals(10, s.availablePermits());
s.reducePermits(1);
assertEquals(9, s.availablePermits());
s.reducePermits(10);
assertEquals(-1, s.availablePermits());
s.reducePermits(10);
assertEquals(-11, s.availablePermits());
s.reducePermits(0);
assertEquals(-11, s.availablePermits());
}
/**
* a reserialized semaphore has same number of permits and
* fairness, but no queued threads
*/
public void testSerialization() { testSerialization(false); }
public void testSerialization_fair() { testSerialization(true); }
public void testSerialization(boolean fair) {
try {
Semaphore s = new Semaphore(3, fair);
s.acquire();
s.acquire();
s.release();
Semaphore clone = serialClone(s);
assertEquals(fair, s.isFair());
assertEquals(fair, clone.isFair());
assertEquals(2, s.availablePermits());
assertEquals(2, clone.availablePermits());
clone.acquire();
clone.acquire();
clone.release();
assertEquals(2, s.availablePermits());
assertEquals(1, clone.availablePermits());
assertFalse(s.hasQueuedThreads());
assertFalse(clone.hasQueuedThreads());
} catch (InterruptedException e) { threadUnexpectedException(e); }
{
PublicSemaphore s = new PublicSemaphore(0, fair);
Thread t = newStartedThread(new InterruptibleLockRunnable(s));
// waitForQueuedThreads(s); // suffers from "flicker", so ...
waitForQueuedThread(s, t); // ... we use this instead
PublicSemaphore clone = serialClone(s);
assertEquals(fair, s.isFair());
assertEquals(fair, clone.isFair());
assertEquals(0, s.availablePermits());
assertEquals(0, clone.availablePermits());
assertTrue(s.hasQueuedThreads());
assertFalse(clone.hasQueuedThreads());
s.release();
awaitTermination(t);
assertFalse(s.hasQueuedThreads());
assertFalse(clone.hasQueuedThreads());
}
}
/**
* tryAcquire(n) succeeds when sufficient permits, else fails
*/
public void testTryAcquireNInSameThread() { testTryAcquireNInSameThread(false); }
public void testTryAcquireNInSameThread_fair() { testTryAcquireNInSameThread(true); }
public void testTryAcquireNInSameThread(boolean fair) {
Semaphore s = new Semaphore(2, fair);
assertEquals(2, s.availablePermits());
assertFalse(s.tryAcquire(3));
assertEquals(2, s.availablePermits());
assertTrue(s.tryAcquire(2));
assertEquals(0, s.availablePermits());
assertFalse(s.tryAcquire(1));
assertFalse(s.tryAcquire(2));
assertEquals(0, s.availablePermits());
}
/**
* acquire succeeds if permits available
*/
public void testReleaseAcquireSameThread_acquire() { testReleaseAcquireSameThread(false, AcquireMethod.acquire); }
public void testReleaseAcquireSameThread_acquire_fair() { testReleaseAcquireSameThread(true, AcquireMethod.acquire); }
public void testReleaseAcquireSameThread_acquireN() { testReleaseAcquireSameThread(false, AcquireMethod.acquireN); }
public void testReleaseAcquireSameThread_acquireN_fair() { testReleaseAcquireSameThread(true, AcquireMethod.acquireN); }
public void testReleaseAcquireSameThread_acquireUninterruptibly() { testReleaseAcquireSameThread(false, AcquireMethod.acquireUninterruptibly); }
public void testReleaseAcquireSameThread_acquireUninterruptibly_fair() { testReleaseAcquireSameThread(true, AcquireMethod.acquireUninterruptibly); }
public void testReleaseAcquireSameThread_acquireUninterruptiblyN() { testReleaseAcquireSameThread(false, AcquireMethod.acquireUninterruptibly); }
public void testReleaseAcquireSameThread_acquireUninterruptiblyN_fair() { testReleaseAcquireSameThread(true, AcquireMethod.acquireUninterruptibly); }
public void testReleaseAcquireSameThread_tryAcquire() { testReleaseAcquireSameThread(false, AcquireMethod.tryAcquire); }
public void testReleaseAcquireSameThread_tryAcquire_fair() { testReleaseAcquireSameThread(true, AcquireMethod.tryAcquire); }
public void testReleaseAcquireSameThread_tryAcquireN() { testReleaseAcquireSameThread(false, AcquireMethod.tryAcquireN); }
public void testReleaseAcquireSameThread_tryAcquireN_fair() { testReleaseAcquireSameThread(true, AcquireMethod.tryAcquireN); }
public void testReleaseAcquireSameThread_tryAcquireTimed() { testReleaseAcquireSameThread(false, AcquireMethod.tryAcquireTimed); }
public void testReleaseAcquireSameThread_tryAcquireTimed_fair() { testReleaseAcquireSameThread(true, AcquireMethod.tryAcquireTimed); }
public void testReleaseAcquireSameThread_tryAcquireTimedN() { testReleaseAcquireSameThread(false, AcquireMethod.tryAcquireTimedN); }
public void testReleaseAcquireSameThread_tryAcquireTimedN_fair() { testReleaseAcquireSameThread(true, AcquireMethod.tryAcquireTimedN); }
public void testReleaseAcquireSameThread(boolean fair,
final AcquireMethod acquirer) {
Semaphore s = new Semaphore(1, fair);
for (int i = 1; i < 6; i++) {
s.release(i);
assertEquals(1 + i, s.availablePermits());
try {
acquirer.acquire(s, i);
} catch (InterruptedException e) { threadUnexpectedException(e); }
assertEquals(1, s.availablePermits());
}
}
/**
* release in one thread enables acquire in another thread
*/
public void testReleaseAcquireDifferentThreads_acquire() { testReleaseAcquireDifferentThreads(false, AcquireMethod.acquire); }
public void testReleaseAcquireDifferentThreads_acquire_fair() { testReleaseAcquireDifferentThreads(true, AcquireMethod.acquire); }
public void testReleaseAcquireDifferentThreads_acquireN() { testReleaseAcquireDifferentThreads(false, AcquireMethod.acquireN); }
public void testReleaseAcquireDifferentThreads_acquireN_fair() { testReleaseAcquireDifferentThreads(true, AcquireMethod.acquireN); }
public void testReleaseAcquireDifferentThreads_acquireUninterruptibly() { testReleaseAcquireDifferentThreads(false, AcquireMethod.acquireUninterruptibly); }
public void testReleaseAcquireDifferentThreads_acquireUninterruptibly_fair() { testReleaseAcquireDifferentThreads(true, AcquireMethod.acquireUninterruptibly); }
public void testReleaseAcquireDifferentThreads_acquireUninterruptiblyN() { testReleaseAcquireDifferentThreads(false, AcquireMethod.acquireUninterruptibly); }
public void testReleaseAcquireDifferentThreads_acquireUninterruptiblyN_fair() { testReleaseAcquireDifferentThreads(true, AcquireMethod.acquireUninterruptibly); }
public void testReleaseAcquireDifferentThreads_tryAcquireTimed() { testReleaseAcquireDifferentThreads(false, AcquireMethod.tryAcquireTimed); }
public void testReleaseAcquireDifferentThreads_tryAcquireTimed_fair() { testReleaseAcquireDifferentThreads(true, AcquireMethod.tryAcquireTimed); }
public void testReleaseAcquireDifferentThreads_tryAcquireTimedN() { testReleaseAcquireDifferentThreads(false, AcquireMethod.tryAcquireTimedN); }
public void testReleaseAcquireDifferentThreads_tryAcquireTimedN_fair() { testReleaseAcquireDifferentThreads(true, AcquireMethod.tryAcquireTimedN); }
public void testReleaseAcquireDifferentThreads(boolean fair,
final AcquireMethod acquirer) {
final Semaphore s = new Semaphore(0, fair);
final int rounds = 4;
long startTime = System.nanoTime();
Thread t = newStartedThread(new CheckedRunnable() {
public void realRun() throws InterruptedException {
for (int i = 0; i < rounds; i++) {
assertFalse(s.hasQueuedThreads());
if (i % 2 == 0)
acquirer.acquire(s);
else
acquirer.acquire(s, 3);
}}});
for (int i = 0; i < rounds; i++) {
while (! (s.availablePermits() == 0 && s.hasQueuedThreads()))
Thread.yield();
assertTrue(t.isAlive());
if (i % 2 == 0)
s.release();
else
s.release(3);
}
awaitTermination(t);
assertEquals(0, s.availablePermits());
assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
}
/**
* fair locks are strictly FIFO
*/
public void testFairLocksFifo() {
final PublicSemaphore s = new PublicSemaphore(1, true);
final CountDownLatch pleaseRelease = new CountDownLatch(1);
Thread t1 = newStartedThread(new CheckedRunnable() {
public void realRun() throws InterruptedException {
// Will block; permits are available, but not three
s.acquire(3);
}});
waitForQueuedThread(s, t1);
Thread t2 = newStartedThread(new CheckedRunnable() {
public void realRun() throws InterruptedException {
// Will fail, even though 1 permit is available
assertFalse(
s.tryAcquire(randomExpiredTimeout(), randomTimeUnit()));
assertFalse(
s.tryAcquire(1, randomExpiredTimeout(), randomTimeUnit()));
// untimed tryAcquire will barge and succeed
assertTrue(s.tryAcquire());
s.release(2);
assertTrue(s.tryAcquire(2));
s.release();
pleaseRelease.countDown();
// Will queue up behind t1, even though 1 permit is available
s.acquire();
}});
await(pleaseRelease);
waitForQueuedThread(s, t2);
s.release(2);
awaitTermination(t1);
assertTrue(t2.isAlive());
s.release();
awaitTermination(t2);
}
/**
* toString indicates current number of permits
*/
public void testToString() { testToString(false); }
public void testToString_fair() { testToString(true); }
public void testToString(boolean fair) {
PublicSemaphore s = new PublicSemaphore(0, fair);
assertTrue(s.toString().contains("Permits = 0"));
s.release();
assertTrue(s.toString().contains("Permits = 1"));
s.release(2);
assertTrue(s.toString().contains("Permits = 3"));
s.reducePermits(5);
assertTrue(s.toString().contains("Permits = -2"));
}
}
|