-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathReentrantReadWriteLockTest.java
1681 lines (1543 loc) · 64.6 KB
/
ReentrantReadWriteLockTest.java
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
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* 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.
*/
package jsr166;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import junit.framework.AssertionFailedError;
import junit.framework.Test;
import junit.framework.TestSuite;
public class ReentrantReadWriteLockTest extends JSR166TestCase {
// android-note: Removed because the CTS runner does a bad job of
// retrying tests that have suite() declarations.
//
// public static void main(String[] args) {
// main(suite(), args);
// }
// public static Test suite() {
// return new TestSuite(ReentrantReadWriteLockTest.class);
// }
/**
* A runnable calling lockInterruptibly
*/
class InterruptibleLockRunnable extends CheckedRunnable {
final ReentrantReadWriteLock lock;
InterruptibleLockRunnable(ReentrantReadWriteLock l) { lock = l; }
public void realRun() throws InterruptedException {
lock.writeLock().lockInterruptibly();
}
}
/**
* A runnable calling lockInterruptibly that expects to be
* interrupted
*/
class InterruptedLockRunnable extends CheckedInterruptedRunnable {
final ReentrantReadWriteLock lock;
InterruptedLockRunnable(ReentrantReadWriteLock l) { lock = l; }
public void realRun() throws InterruptedException {
lock.writeLock().lockInterruptibly();
}
}
/**
* Subclass to expose protected methods
*/
static class PublicReentrantReadWriteLock extends ReentrantReadWriteLock {
PublicReentrantReadWriteLock() { super(); }
PublicReentrantReadWriteLock(boolean fair) { super(fair); }
public Thread getOwner() {
return super.getOwner();
}
public Collection<Thread> getQueuedThreads() {
return super.getQueuedThreads();
}
public Collection<Thread> getWaitingThreads(Condition c) {
return super.getWaitingThreads(c);
}
}
/**
* Releases write lock, checking that it had a hold count of 1.
*/
void releaseWriteLock(PublicReentrantReadWriteLock lock) {
ReentrantReadWriteLock.WriteLock writeLock = lock.writeLock();
assertWriteLockedByMoi(lock);
assertEquals(1, lock.getWriteHoldCount());
writeLock.unlock();
assertNotWriteLocked(lock);
}
/**
* Spin-waits until lock.hasQueuedThread(t) becomes true.
*/
void waitForQueuedThread(PublicReentrantReadWriteLock lock, Thread t) {
long startTime = System.nanoTime();
while (!lock.hasQueuedThread(t)) {
if (millisElapsedSince(startTime) > LONG_DELAY_MS)
throw new AssertionFailedError("timed out");
Thread.yield();
}
assertTrue(t.isAlive());
assertNotSame(t, lock.getOwner());
}
/**
* Checks that lock is not write-locked.
*/
void assertNotWriteLocked(PublicReentrantReadWriteLock lock) {
assertFalse(lock.isWriteLocked());
assertFalse(lock.isWriteLockedByCurrentThread());
assertFalse(lock.writeLock().isHeldByCurrentThread());
assertEquals(0, lock.getWriteHoldCount());
assertEquals(0, lock.writeLock().getHoldCount());
assertNull(lock.getOwner());
}
/**
* Checks that lock is write-locked by the given thread.
*/
void assertWriteLockedBy(PublicReentrantReadWriteLock lock, Thread t) {
assertTrue(lock.isWriteLocked());
assertSame(t, lock.getOwner());
assertEquals(t == Thread.currentThread(),
lock.isWriteLockedByCurrentThread());
assertEquals(t == Thread.currentThread(),
lock.writeLock().isHeldByCurrentThread());
assertEquals(t == Thread.currentThread(),
lock.getWriteHoldCount() > 0);
assertEquals(t == Thread.currentThread(),
lock.writeLock().getHoldCount() > 0);
assertEquals(0, lock.getReadLockCount());
}
/**
* Checks that lock is write-locked by the current thread.
*/
void assertWriteLockedByMoi(PublicReentrantReadWriteLock lock) {
assertWriteLockedBy(lock, Thread.currentThread());
}
/**
* Checks that condition c has no waiters.
*/
void assertHasNoWaiters(PublicReentrantReadWriteLock lock, Condition c) {
assertHasWaiters(lock, c, new Thread[] {});
}
/**
* Checks that condition c has exactly the given waiter threads.
*/
void assertHasWaiters(PublicReentrantReadWriteLock lock, Condition c,
Thread... threads) {
lock.writeLock().lock();
assertEquals(threads.length > 0, lock.hasWaiters(c));
assertEquals(threads.length, lock.getWaitQueueLength(c));
assertEquals(threads.length == 0, lock.getWaitingThreads(c).isEmpty());
assertEquals(threads.length, lock.getWaitingThreads(c).size());
assertEquals(new HashSet<Thread>(lock.getWaitingThreads(c)),
new HashSet<Thread>(Arrays.asList(threads)));
lock.writeLock().unlock();
}
enum AwaitMethod { await, awaitTimed, awaitNanos, awaitUntil }
/**
* Awaits condition "indefinitely" using the specified AwaitMethod.
*/
void await(Condition c, AwaitMethod awaitMethod)
throws InterruptedException {
long timeoutMillis = 2 * LONG_DELAY_MS;
switch (awaitMethod) {
case await:
c.await();
break;
case awaitTimed:
assertTrue(c.await(timeoutMillis, MILLISECONDS));
break;
case awaitNanos:
long timeoutNanos = MILLISECONDS.toNanos(timeoutMillis);
long nanosRemaining = c.awaitNanos(timeoutNanos);
assertTrue(nanosRemaining > timeoutNanos / 2);
assertTrue(nanosRemaining <= timeoutNanos);
break;
case awaitUntil:
assertTrue(c.awaitUntil(delayedDate(timeoutMillis)));
break;
default:
throw new AssertionError();
}
}
/**
* Constructor sets given fairness, and is in unlocked state
*/
public void testConstructor() {
PublicReentrantReadWriteLock lock;
lock = new PublicReentrantReadWriteLock();
assertFalse(lock.isFair());
assertNotWriteLocked(lock);
assertEquals(0, lock.getReadLockCount());
lock = new PublicReentrantReadWriteLock(true);
assertTrue(lock.isFair());
assertNotWriteLocked(lock);
assertEquals(0, lock.getReadLockCount());
lock = new PublicReentrantReadWriteLock(false);
assertFalse(lock.isFair());
assertNotWriteLocked(lock);
assertEquals(0, lock.getReadLockCount());
}
/**
* write-locking and read-locking an unlocked lock succeed
*/
public void testLock() { testLock(false); }
public void testLock_fair() { testLock(true); }
public void testLock(boolean fair) {
PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
assertNotWriteLocked(lock);
lock.writeLock().lock();
assertWriteLockedByMoi(lock);
lock.writeLock().unlock();
assertNotWriteLocked(lock);
assertEquals(0, lock.getReadLockCount());
lock.readLock().lock();
assertNotWriteLocked(lock);
assertEquals(1, lock.getReadLockCount());
lock.readLock().unlock();
assertNotWriteLocked(lock);
assertEquals(0, lock.getReadLockCount());
}
/**
* getWriteHoldCount returns number of recursive holds
*/
public void testGetWriteHoldCount() { testGetWriteHoldCount(false); }
public void testGetWriteHoldCount_fair() { testGetWriteHoldCount(true); }
public void testGetWriteHoldCount(boolean fair) {
ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
for (int i = 1; i <= SIZE; i++) {
lock.writeLock().lock();
assertEquals(i,lock.getWriteHoldCount());
}
for (int i = SIZE; i > 0; i--) {
lock.writeLock().unlock();
assertEquals(i - 1,lock.getWriteHoldCount());
}
}
/**
* writelock.getHoldCount returns number of recursive holds
*/
public void testGetHoldCount() { testGetHoldCount(false); }
public void testGetHoldCount_fair() { testGetHoldCount(true); }
public void testGetHoldCount(boolean fair) {
ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
for (int i = 1; i <= SIZE; i++) {
lock.writeLock().lock();
assertEquals(i,lock.writeLock().getHoldCount());
}
for (int i = SIZE; i > 0; i--) {
lock.writeLock().unlock();
assertEquals(i - 1,lock.writeLock().getHoldCount());
}
}
/**
* getReadHoldCount returns number of recursive holds
*/
public void testGetReadHoldCount() { testGetReadHoldCount(false); }
public void testGetReadHoldCount_fair() { testGetReadHoldCount(true); }
public void testGetReadHoldCount(boolean fair) {
ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
for (int i = 1; i <= SIZE; i++) {
lock.readLock().lock();
assertEquals(i,lock.getReadHoldCount());
}
for (int i = SIZE; i > 0; i--) {
lock.readLock().unlock();
assertEquals(i - 1,lock.getReadHoldCount());
}
}
/**
* write-unlocking an unlocked lock throws IllegalMonitorStateException
*/
public void testWriteUnlock_IMSE() { testWriteUnlock_IMSE(false); }
public void testWriteUnlock_IMSE_fair() { testWriteUnlock_IMSE(true); }
public void testWriteUnlock_IMSE(boolean fair) {
ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
try {
lock.writeLock().unlock();
shouldThrow();
} catch (IllegalMonitorStateException success) {}
}
/**
* read-unlocking an unlocked lock throws IllegalMonitorStateException
*/
public void testReadUnlock_IMSE() { testReadUnlock_IMSE(false); }
public void testReadUnlock_IMSE_fair() { testReadUnlock_IMSE(true); }
public void testReadUnlock_IMSE(boolean fair) {
ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
try {
lock.readLock().unlock();
shouldThrow();
} catch (IllegalMonitorStateException success) {}
}
/**
* write-lockInterruptibly is interruptible
*/
public void testWriteLockInterruptibly_Interruptible() { testWriteLockInterruptibly_Interruptible(false); }
public void testWriteLockInterruptibly_Interruptible_fair() { testWriteLockInterruptibly_Interruptible(true); }
public void testWriteLockInterruptibly_Interruptible(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.writeLock().lock();
Thread t = newStartedThread(new CheckedInterruptedRunnable() {
public void realRun() throws InterruptedException {
lock.writeLock().lockInterruptibly();
}});
waitForQueuedThread(lock, t);
t.interrupt();
awaitTermination(t);
releaseWriteLock(lock);
}
/**
* timed write-tryLock is interruptible
*/
public void testWriteTryLock_Interruptible() { testWriteTryLock_Interruptible(false); }
public void testWriteTryLock_Interruptible_fair() { testWriteTryLock_Interruptible(true); }
public void testWriteTryLock_Interruptible(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.writeLock().lock();
Thread t = newStartedThread(new CheckedInterruptedRunnable() {
public void realRun() throws InterruptedException {
lock.writeLock().tryLock(2 * LONG_DELAY_MS, MILLISECONDS);
}});
waitForQueuedThread(lock, t);
t.interrupt();
awaitTermination(t);
releaseWriteLock(lock);
}
/**
* read-lockInterruptibly is interruptible
*/
public void testReadLockInterruptibly_Interruptible() { testReadLockInterruptibly_Interruptible(false); }
public void testReadLockInterruptibly_Interruptible_fair() { testReadLockInterruptibly_Interruptible(true); }
public void testReadLockInterruptibly_Interruptible(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.writeLock().lock();
Thread t = newStartedThread(new CheckedInterruptedRunnable() {
public void realRun() throws InterruptedException {
lock.readLock().lockInterruptibly();
}});
waitForQueuedThread(lock, t);
t.interrupt();
awaitTermination(t);
releaseWriteLock(lock);
}
/**
* timed read-tryLock is interruptible
*/
public void testReadTryLock_Interruptible() { testReadTryLock_Interruptible(false); }
public void testReadTryLock_Interruptible_fair() { testReadTryLock_Interruptible(true); }
public void testReadTryLock_Interruptible(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.writeLock().lock();
Thread t = newStartedThread(new CheckedInterruptedRunnable() {
public void realRun() throws InterruptedException {
lock.readLock().tryLock(2 * LONG_DELAY_MS, MILLISECONDS);
}});
waitForQueuedThread(lock, t);
t.interrupt();
awaitTermination(t);
releaseWriteLock(lock);
}
/**
* write-tryLock on an unlocked lock succeeds
*/
public void testWriteTryLock() { testWriteTryLock(false); }
public void testWriteTryLock_fair() { testWriteTryLock(true); }
public void testWriteTryLock(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
assertTrue(lock.writeLock().tryLock());
assertWriteLockedByMoi(lock);
assertTrue(lock.writeLock().tryLock());
assertWriteLockedByMoi(lock);
lock.writeLock().unlock();
releaseWriteLock(lock);
}
/**
* write-tryLock fails if locked
*/
public void testWriteTryLockWhenLocked() { testWriteTryLockWhenLocked(false); }
public void testWriteTryLockWhenLocked_fair() { testWriteTryLockWhenLocked(true); }
public void testWriteTryLockWhenLocked(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.writeLock().lock();
Thread t = newStartedThread(new CheckedRunnable() {
public void realRun() {
assertFalse(lock.writeLock().tryLock());
}});
awaitTermination(t);
releaseWriteLock(lock);
}
/**
* read-tryLock fails if locked
*/
public void testReadTryLockWhenLocked() { testReadTryLockWhenLocked(false); }
public void testReadTryLockWhenLocked_fair() { testReadTryLockWhenLocked(true); }
public void testReadTryLockWhenLocked(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.writeLock().lock();
Thread t = newStartedThread(new CheckedRunnable() {
public void realRun() {
assertFalse(lock.readLock().tryLock());
}});
awaitTermination(t);
releaseWriteLock(lock);
}
/**
* Multiple threads can hold a read lock when not write-locked
*/
public void testMultipleReadLocks() { testMultipleReadLocks(false); }
public void testMultipleReadLocks_fair() { testMultipleReadLocks(true); }
public void testMultipleReadLocks(boolean fair) {
final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
lock.readLock().lock();
Thread t = newStartedThread(new CheckedRunnable() {
public void realRun() throws InterruptedException {
assertTrue(lock.readLock().tryLock());
lock.readLock().unlock();
assertTrue(lock.readLock().tryLock(LONG_DELAY_MS, MILLISECONDS));
lock.readLock().unlock();
lock.readLock().lock();
lock.readLock().unlock();
}});
awaitTermination(t);
lock.readLock().unlock();
}
/**
* A writelock succeeds only after a reading thread unlocks
*/
public void testWriteAfterReadLock() { testWriteAfterReadLock(false); }
public void testWriteAfterReadLock_fair() { testWriteAfterReadLock(true); }
public void testWriteAfterReadLock(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.readLock().lock();
Thread t = newStartedThread(new CheckedRunnable() {
public void realRun() {
assertEquals(1, lock.getReadLockCount());
lock.writeLock().lock();
assertEquals(0, lock.getReadLockCount());
lock.writeLock().unlock();
}});
waitForQueuedThread(lock, t);
assertNotWriteLocked(lock);
assertEquals(1, lock.getReadLockCount());
lock.readLock().unlock();
assertEquals(0, lock.getReadLockCount());
awaitTermination(t);
assertNotWriteLocked(lock);
}
/**
* A writelock succeeds only after reading threads unlock
*/
public void testWriteAfterMultipleReadLocks() { testWriteAfterMultipleReadLocks(false); }
public void testWriteAfterMultipleReadLocks_fair() { testWriteAfterMultipleReadLocks(true); }
public void testWriteAfterMultipleReadLocks(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.readLock().lock();
lock.readLock().lock();
Thread t1 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.readLock().lock();
assertEquals(3, lock.getReadLockCount());
lock.readLock().unlock();
}});
awaitTermination(t1);
Thread t2 = newStartedThread(new CheckedRunnable() {
public void realRun() {
assertEquals(2, lock.getReadLockCount());
lock.writeLock().lock();
assertEquals(0, lock.getReadLockCount());
lock.writeLock().unlock();
}});
waitForQueuedThread(lock, t2);
assertNotWriteLocked(lock);
assertEquals(2, lock.getReadLockCount());
lock.readLock().unlock();
lock.readLock().unlock();
assertEquals(0, lock.getReadLockCount());
awaitTermination(t2);
assertNotWriteLocked(lock);
}
/**
* A thread that tries to acquire a fair read lock (non-reentrantly)
* will block if there is a waiting writer thread
*/
public void testReaderWriterReaderFairFifo() {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(true);
final AtomicBoolean t1GotLock = new AtomicBoolean(false);
lock.readLock().lock();
Thread t1 = newStartedThread(new CheckedRunnable() {
public void realRun() {
assertEquals(1, lock.getReadLockCount());
lock.writeLock().lock();
assertEquals(0, lock.getReadLockCount());
t1GotLock.set(true);
lock.writeLock().unlock();
}});
waitForQueuedThread(lock, t1);
Thread t2 = newStartedThread(new CheckedRunnable() {
public void realRun() {
assertEquals(1, lock.getReadLockCount());
lock.readLock().lock();
assertEquals(1, lock.getReadLockCount());
assertTrue(t1GotLock.get());
lock.readLock().unlock();
}});
waitForQueuedThread(lock, t2);
assertTrue(t1.isAlive());
assertNotWriteLocked(lock);
assertEquals(1, lock.getReadLockCount());
lock.readLock().unlock();
awaitTermination(t1);
awaitTermination(t2);
assertNotWriteLocked(lock);
}
/**
* Readlocks succeed only after a writing thread unlocks
*/
public void testReadAfterWriteLock() { testReadAfterWriteLock(false); }
public void testReadAfterWriteLock_fair() { testReadAfterWriteLock(true); }
public void testReadAfterWriteLock(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.writeLock().lock();
Thread t1 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.readLock().lock();
lock.readLock().unlock();
}});
Thread t2 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.readLock().lock();
lock.readLock().unlock();
}});
waitForQueuedThread(lock, t1);
waitForQueuedThread(lock, t2);
releaseWriteLock(lock);
awaitTermination(t1);
awaitTermination(t2);
}
/**
* Read trylock succeeds if write locked by current thread
*/
public void testReadHoldingWriteLock() { testReadHoldingWriteLock(false); }
public void testReadHoldingWriteLock_fair() { testReadHoldingWriteLock(true); }
public void testReadHoldingWriteLock(boolean fair) {
final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
lock.writeLock().lock();
assertTrue(lock.readLock().tryLock());
lock.readLock().unlock();
lock.writeLock().unlock();
}
/**
* Read trylock succeeds (barging) even in the presence of waiting
* readers and/or writers
*/
public void testReadTryLockBarging() { testReadTryLockBarging(false); }
public void testReadTryLockBarging_fair() { testReadTryLockBarging(true); }
public void testReadTryLockBarging(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.readLock().lock();
Thread t1 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.writeLock().lock();
lock.writeLock().unlock();
}});
waitForQueuedThread(lock, t1);
Thread t2 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.readLock().lock();
lock.readLock().unlock();
}});
if (fair)
waitForQueuedThread(lock, t2);
Thread t3 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.readLock().tryLock();
lock.readLock().unlock();
}});
assertTrue(lock.getReadLockCount() > 0);
awaitTermination(t3);
assertTrue(t1.isAlive());
if (fair) assertTrue(t2.isAlive());
lock.readLock().unlock();
awaitTermination(t1);
awaitTermination(t2);
}
/**
* Read lock succeeds if write locked by current thread even if
* other threads are waiting for readlock
*/
public void testReadHoldingWriteLock2() { testReadHoldingWriteLock2(false); }
public void testReadHoldingWriteLock2_fair() { testReadHoldingWriteLock2(true); }
public void testReadHoldingWriteLock2(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.writeLock().lock();
lock.readLock().lock();
lock.readLock().unlock();
Thread t1 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.readLock().lock();
lock.readLock().unlock();
}});
Thread t2 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.readLock().lock();
lock.readLock().unlock();
}});
waitForQueuedThread(lock, t1);
waitForQueuedThread(lock, t2);
assertWriteLockedByMoi(lock);
lock.readLock().lock();
lock.readLock().unlock();
releaseWriteLock(lock);
awaitTermination(t1);
awaitTermination(t2);
}
/**
* Read lock succeeds if write locked by current thread even if
* other threads are waiting for writelock
*/
public void testReadHoldingWriteLock3() { testReadHoldingWriteLock3(false); }
public void testReadHoldingWriteLock3_fair() { testReadHoldingWriteLock3(true); }
public void testReadHoldingWriteLock3(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.writeLock().lock();
lock.readLock().lock();
lock.readLock().unlock();
Thread t1 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.writeLock().lock();
lock.writeLock().unlock();
}});
Thread t2 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.writeLock().lock();
lock.writeLock().unlock();
}});
waitForQueuedThread(lock, t1);
waitForQueuedThread(lock, t2);
assertWriteLockedByMoi(lock);
lock.readLock().lock();
lock.readLock().unlock();
assertWriteLockedByMoi(lock);
lock.writeLock().unlock();
awaitTermination(t1);
awaitTermination(t2);
}
/**
* Write lock succeeds if write locked by current thread even if
* other threads are waiting for writelock
*/
public void testWriteHoldingWriteLock4() { testWriteHoldingWriteLock4(false); }
public void testWriteHoldingWriteLock4_fair() { testWriteHoldingWriteLock4(true); }
public void testWriteHoldingWriteLock4(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.writeLock().lock();
lock.writeLock().lock();
lock.writeLock().unlock();
Thread t1 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.writeLock().lock();
lock.writeLock().unlock();
}});
Thread t2 = newStartedThread(new CheckedRunnable() {
public void realRun() {
lock.writeLock().lock();
lock.writeLock().unlock();
}});
waitForQueuedThread(lock, t1);
waitForQueuedThread(lock, t2);
assertWriteLockedByMoi(lock);
assertEquals(1, lock.getWriteHoldCount());
lock.writeLock().lock();
assertWriteLockedByMoi(lock);
assertEquals(2, lock.getWriteHoldCount());
lock.writeLock().unlock();
assertWriteLockedByMoi(lock);
assertEquals(1, lock.getWriteHoldCount());
lock.writeLock().unlock();
awaitTermination(t1);
awaitTermination(t2);
}
/**
* Read tryLock succeeds if readlocked but not writelocked
*/
public void testTryLockWhenReadLocked() { testTryLockWhenReadLocked(false); }
public void testTryLockWhenReadLocked_fair() { testTryLockWhenReadLocked(true); }
public void testTryLockWhenReadLocked(boolean fair) {
final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
lock.readLock().lock();
Thread t = newStartedThread(new CheckedRunnable() {
public void realRun() {
assertTrue(lock.readLock().tryLock());
lock.readLock().unlock();
}});
awaitTermination(t);
lock.readLock().unlock();
}
/**
* write tryLock fails when readlocked
*/
public void testWriteTryLockWhenReadLocked() { testWriteTryLockWhenReadLocked(false); }
public void testWriteTryLockWhenReadLocked_fair() { testWriteTryLockWhenReadLocked(true); }
public void testWriteTryLockWhenReadLocked(boolean fair) {
final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
lock.readLock().lock();
Thread t = newStartedThread(new CheckedRunnable() {
public void realRun() {
assertFalse(lock.writeLock().tryLock());
}});
awaitTermination(t);
lock.readLock().unlock();
}
/**
* write timed tryLock times out if locked
*/
public void testWriteTryLock_Timeout() { testWriteTryLock_Timeout(false); }
public void testWriteTryLock_Timeout_fair() { testWriteTryLock_Timeout(true); }
public void testWriteTryLock_Timeout(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
lock.writeLock().lock();
Thread t = newStartedThread(new CheckedRunnable() {
public void realRun() throws InterruptedException {
long startTime = System.nanoTime();
long timeoutMillis = 10;
assertFalse(lock.writeLock().tryLock(timeoutMillis, MILLISECONDS));
assertTrue(millisElapsedSince(startTime) >= timeoutMillis);
}});
awaitTermination(t);
releaseWriteLock(lock);
}
/**
* read timed tryLock times out if write-locked
*/
public void testReadTryLock_Timeout() { testReadTryLock_Timeout(false); }
public void testReadTryLock_Timeout_fair() { testReadTryLock_Timeout(true); }
public void testReadTryLock_Timeout(boolean fair) {
final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
lock.writeLock().lock();
Thread t = newStartedThread(new CheckedRunnable() {
public void realRun() throws InterruptedException {
long startTime = System.nanoTime();
long timeoutMillis = 10;
assertFalse(lock.readLock().tryLock(timeoutMillis, MILLISECONDS));
assertTrue(millisElapsedSince(startTime) >= timeoutMillis);
}});
awaitTermination(t);
assertTrue(lock.writeLock().isHeldByCurrentThread());
lock.writeLock().unlock();
}
/**
* write lockInterruptibly succeeds if unlocked, else is interruptible
*/
public void testWriteLockInterruptibly() { testWriteLockInterruptibly(false); }
public void testWriteLockInterruptibly_fair() { testWriteLockInterruptibly(true); }
public void testWriteLockInterruptibly(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
try {
lock.writeLock().lockInterruptibly();
} catch (InterruptedException fail) { threadUnexpectedException(fail); }
Thread t = newStartedThread(new CheckedInterruptedRunnable() {
public void realRun() throws InterruptedException {
lock.writeLock().lockInterruptibly();
}});
waitForQueuedThread(lock, t);
t.interrupt();
assertTrue(lock.writeLock().isHeldByCurrentThread());
awaitTermination(t);
releaseWriteLock(lock);
}
/**
* read lockInterruptibly succeeds if lock free else is interruptible
*/
public void testReadLockInterruptibly() { testReadLockInterruptibly(false); }
public void testReadLockInterruptibly_fair() { testReadLockInterruptibly(true); }
public void testReadLockInterruptibly(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
try {
lock.readLock().lockInterruptibly();
lock.readLock().unlock();
lock.writeLock().lockInterruptibly();
} catch (InterruptedException fail) { threadUnexpectedException(fail); }
Thread t = newStartedThread(new CheckedInterruptedRunnable() {
public void realRun() throws InterruptedException {
lock.readLock().lockInterruptibly();
}});
waitForQueuedThread(lock, t);
t.interrupt();
awaitTermination(t);
releaseWriteLock(lock);
}
/**
* Calling await without holding lock throws IllegalMonitorStateException
*/
public void testAwait_IMSE() { testAwait_IMSE(false); }
public void testAwait_IMSE_fair() { testAwait_IMSE(true); }
public void testAwait_IMSE(boolean fair) {
final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
final Condition c = lock.writeLock().newCondition();
for (AwaitMethod awaitMethod : AwaitMethod.values()) {
long startTime = System.nanoTime();
try {
await(c, awaitMethod);
shouldThrow();
} catch (IllegalMonitorStateException success) {
} catch (InterruptedException fail) {
threadUnexpectedException(fail);
}
assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
}
}
/**
* Calling signal without holding lock throws IllegalMonitorStateException
*/
public void testSignal_IMSE() { testSignal_IMSE(false); }
public void testSignal_IMSE_fair() { testSignal_IMSE(true); }
public void testSignal_IMSE(boolean fair) {
final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
final Condition c = lock.writeLock().newCondition();
try {
c.signal();
shouldThrow();
} catch (IllegalMonitorStateException success) {}
}
/**
* Calling signalAll without holding lock throws IllegalMonitorStateException
*/
public void testSignalAll_IMSE() { testSignalAll_IMSE(false); }
public void testSignalAll_IMSE_fair() { testSignalAll_IMSE(true); }
public void testSignalAll_IMSE(boolean fair) {
final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(fair);
final Condition c = lock.writeLock().newCondition();
try {
c.signalAll();
shouldThrow();
} catch (IllegalMonitorStateException success) {}
}
/**
* awaitNanos without a signal times out
*/
public void testAwaitNanos_Timeout() { testAwaitNanos_Timeout(false); }
public void testAwaitNanos_Timeout_fair() { testAwaitNanos_Timeout(true); }
public void testAwaitNanos_Timeout(boolean fair) {
try {
final ReentrantReadWriteLock lock =
new ReentrantReadWriteLock(fair);
final Condition c = lock.writeLock().newCondition();
lock.writeLock().lock();
long startTime = System.nanoTime();
long timeoutMillis = 10;
long timeoutNanos = MILLISECONDS.toNanos(timeoutMillis);
long nanosRemaining = c.awaitNanos(timeoutNanos);
assertTrue(nanosRemaining <= 0);
assertTrue(millisElapsedSince(startTime) >= timeoutMillis);
lock.writeLock().unlock();
} catch (InterruptedException fail) { threadUnexpectedException(fail); }
}
/**
* timed await without a signal times out
*/
public void testAwait_Timeout() { testAwait_Timeout(false); }
public void testAwait_Timeout_fair() { testAwait_Timeout(true); }
public void testAwait_Timeout(boolean fair) {
try {
final ReentrantReadWriteLock lock =
new ReentrantReadWriteLock(fair);
final Condition c = lock.writeLock().newCondition();
lock.writeLock().lock();
long startTime = System.nanoTime();
long timeoutMillis = 10;
assertFalse(c.await(timeoutMillis, MILLISECONDS));
assertTrue(millisElapsedSince(startTime) >= timeoutMillis);
lock.writeLock().unlock();
} catch (InterruptedException fail) { threadUnexpectedException(fail); }
}
/**
* awaitUntil without a signal times out
*/
public void testAwaitUntil_Timeout() { testAwaitUntil_Timeout(false); }
public void testAwaitUntil_Timeout_fair() { testAwaitUntil_Timeout(true); }
public void testAwaitUntil_Timeout(boolean fair) {
try {
final ReentrantReadWriteLock lock =
new ReentrantReadWriteLock(fair);
final Condition c = lock.writeLock().newCondition();
lock.writeLock().lock();
// We shouldn't assume that nanoTime and currentTimeMillis
// use the same time source, so don't use nanoTime here.
java.util.Date delayedDate = delayedDate(timeoutMillis());
assertFalse(c.awaitUntil(delayedDate));
assertTrue(new java.util.Date().getTime() >= delayedDate.getTime());
lock.writeLock().unlock();
} catch (InterruptedException fail) { threadUnexpectedException(fail); }
}
/**
* await returns when signalled
*/
public void testAwait() { testAwait(false); }
public void testAwait_fair() { testAwait(true); }
public void testAwait(boolean fair) {
final PublicReentrantReadWriteLock lock =
new PublicReentrantReadWriteLock(fair);
final Condition c = lock.writeLock().newCondition();
final CountDownLatch locked = new CountDownLatch(1);
Thread t = newStartedThread(new CheckedRunnable() {
public void realRun() throws InterruptedException {
lock.writeLock().lock();
locked.countDown();
c.await();