-
Notifications
You must be signed in to change notification settings - Fork 433
Expand file tree
/
Copy pathReentrantReadWriteLock.java
More file actions
384 lines (335 loc) · 13 KB
/
ReentrantReadWriteLock.java
File metadata and controls
384 lines (335 loc) · 13 KB
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
package java.util.concurrent.locks;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;
public class ReentrantReadWriteLock implements ReadWriteLock, java.io.Serializable {
private static final long serialVersionUID = -6992448646407690164L;
/** Inner class providing readlock */
private ReadLock readerLock;
/** Inner class providing writelock */
private WriteLock writerLock;
/** Performs all synchronization mechanics */
private transient Object sync;
private transient Thread writer;
private transient int writeHolds;
private transient int readers;
private transient Map<Thread, Integer> readHolds;
public ReentrantReadWriteLock() {
this(false);
}
public ReentrantReadWriteLock(boolean fair) {
sync = new Object();
readerLock = new ReadLock(this);
writerLock = new WriteLock(this);
readHolds = new HashMap<Thread, Integer>();
}
public Lock readLock() { return readerLock; }
public Lock writeLock() { return writerLock; }
public static class ReadLock implements Lock, java.io.Serializable {
private static final long serialVersionUID = -5992448646407690164L;
private final ReentrantReadWriteLock lock;
protected ReadLock(ReentrantReadWriteLock lock) {
this.lock = lock;
}
public void lock() {
synchronized (lock.sync) {
Thread current = Thread.currentThread();
// If there is a writer, and it's not us, we wait.
// (Reentrancy: writer can acquire read lock)
boolean interrupted = false;
while (lock.writer != null && lock.writer != current) {
try {
lock.sync.wait();
} catch (InterruptedException e) {
interrupted = true;
}
}
lock.readers++;
Integer count = lock.readHolds.get(current);
if (count == null) {
lock.readHolds.put(current, 1);
} else {
lock.readHolds.put(current, count + 1);
}
if (interrupted) {
Thread.currentThread().interrupt();
}
}
}
public void lockInterruptibly() throws InterruptedException {
synchronized (lock.sync) {
if (Thread.interrupted()) throw new InterruptedException();
Thread current = Thread.currentThread();
while (lock.writer != null && lock.writer != current) {
lock.sync.wait();
}
lock.readers++;
Integer count = lock.readHolds.get(current);
if (count == null) {
lock.readHolds.put(current, 1);
} else {
lock.readHolds.put(current, count + 1);
}
}
}
public boolean tryLock() {
synchronized (lock.sync) {
Thread current = Thread.currentThread();
if (lock.writer != null && lock.writer != current) {
return false;
}
lock.readers++;
Integer count = lock.readHolds.get(current);
if (count == null) {
lock.readHolds.put(current, 1);
} else {
lock.readHolds.put(current, count + 1);
}
return true;
}
}
public boolean tryLock(long timeout, TimeUnit unit) throws InterruptedException {
long nanos = unit.toNanos(timeout);
long end = System.currentTimeMillis() + unit.toMillis(timeout);
synchronized (lock.sync) {
if (Thread.interrupted()) throw new InterruptedException();
Thread current = Thread.currentThread();
if (lock.writer == null || lock.writer == current) {
lock.readers++;
Integer count = lock.readHolds.get(current);
if (count == null) {
lock.readHolds.put(current, 1);
} else {
lock.readHolds.put(current, count + 1);
}
return true;
}
long remaining = unit.toMillis(timeout);
while (remaining > 0 && lock.writer != null && lock.writer != current) {
lock.sync.wait(remaining);
if (lock.writer == null || lock.writer == current) {
lock.readers++;
Integer count = lock.readHolds.get(current);
if (count == null) {
lock.readHolds.put(current, 1);
} else {
lock.readHolds.put(current, count + 1);
}
return true;
}
remaining = end - System.currentTimeMillis();
}
return false;
}
}
public void unlock() {
synchronized (lock.sync) {
Thread current = Thread.currentThread();
Integer count = lock.readHolds.get(current);
if (count == null || count <= 0) {
throw new IllegalMonitorStateException();
}
int c = count - 1;
if (c == 0) {
lock.readHolds.remove(current);
} else {
lock.readHolds.put(current, c);
}
lock.readers--;
if (lock.readers == 0) {
lock.sync.notifyAll(); // Notify potential writers
}
}
}
public Condition newCondition() {
throw new UnsupportedOperationException();
}
public String toString() {
return super.toString() + "[ReadLock]";
}
}
public static class WriteLock implements Lock, java.io.Serializable {
private static final long serialVersionUID = -4992448646407690164L;
private final ReentrantReadWriteLock lock;
protected WriteLock(ReentrantReadWriteLock lock) {
this.lock = lock;
}
public void lock() {
synchronized (lock.sync) {
Thread current = Thread.currentThread();
if (lock.writer == current) {
lock.writeHolds++;
return;
}
boolean interrupted = false;
while (lock.readers > 0 || lock.writer != null) {
try {
lock.sync.wait();
} catch (InterruptedException e) {
interrupted = true;
}
}
lock.writer = current;
lock.writeHolds = 1;
if (interrupted) {
Thread.currentThread().interrupt();
}
}
}
public void lockInterruptibly() throws InterruptedException {
synchronized (lock.sync) {
if (Thread.interrupted()) throw new InterruptedException();
Thread current = Thread.currentThread();
if (lock.writer == current) {
lock.writeHolds++;
return;
}
while (lock.readers > 0 || lock.writer != null) {
lock.sync.wait();
}
lock.writer = current;
lock.writeHolds = 1;
}
}
public boolean tryLock() {
synchronized (lock.sync) {
Thread current = Thread.currentThread();
if (lock.writer == current) {
lock.writeHolds++;
return true;
}
if (lock.readers == 0 && lock.writer == null) {
lock.writer = current;
lock.writeHolds = 1;
return true;
}
return false;
}
}
public boolean tryLock(long timeout, TimeUnit unit) throws InterruptedException {
long nanos = unit.toNanos(timeout);
long end = System.currentTimeMillis() + unit.toMillis(timeout);
synchronized (lock.sync) {
if (Thread.interrupted()) throw new InterruptedException();
Thread current = Thread.currentThread();
if (lock.writer == current) {
lock.writeHolds++;
return true;
}
if (lock.readers == 0 && lock.writer == null) {
lock.writer = current;
lock.writeHolds = 1;
return true;
}
long remaining = unit.toMillis(timeout);
while (remaining > 0) {
lock.sync.wait(remaining);
if (lock.writer == current) { // re-check after wait? No, logic above covers it.
lock.writeHolds++;
return true;
}
if (lock.readers == 0 && lock.writer == null) {
lock.writer = current;
lock.writeHolds = 1;
return true;
}
remaining = end - System.currentTimeMillis();
}
return false;
}
}
public void unlock() {
synchronized (lock.sync) {
if (lock.writer != Thread.currentThread()) {
throw new IllegalMonitorStateException();
}
lock.writeHolds--;
if (lock.writeHolds == 0) {
lock.writer = null;
lock.sync.notifyAll(); // Notify waiting readers or writers
}
}
}
public Condition newCondition() {
// Simplified condition implementation reusing ReentrantLock's style if needed
// But Condition for WriteLock usually requires full AQS support.
// The ReentrantLock implementation uses ConditionObject which is tied to the lock instance.
// I should probably support it if possible, but ReadWriteLock conditions are only supported for WriteLock.
// For now, throwing UnsupportedOperationException as implementing Condition correctly for RWLock is non-trivial without AQS.
throw new UnsupportedOperationException();
}
public boolean isHeldByCurrentThread() {
synchronized (lock.sync) {
return lock.writer == Thread.currentThread();
}
}
public int getHoldCount() {
synchronized (lock.sync) {
return (lock.writer == Thread.currentThread()) ? lock.writeHolds : 0;
}
}
public String toString() {
return super.toString() + "[WriteLock]";
}
}
public final boolean isFair() {
return false;
}
protected Thread getOwner() {
synchronized (sync) {
return writer;
}
}
public int getReadLockCount() {
synchronized (sync) {
return readers;
}
}
public boolean isWriteLocked() {
synchronized (sync) {
return writer != null;
}
}
public boolean isWriteLockedByCurrentThread() {
synchronized (sync) {
return writer == Thread.currentThread();
}
}
public int getWriteHoldCount() {
synchronized (sync) {
return (writer == Thread.currentThread()) ? writeHolds : 0;
}
}
public int getReadHoldCount() {
synchronized (sync) {
Integer count = readHolds.get(Thread.currentThread());
return (count == null) ? 0 : count;
}
}
protected Collection<Thread> getQueuedWriterThreads() {
throw new RuntimeException("Not implemented");
}
protected Collection<Thread> getQueuedReaderThreads() {
throw new RuntimeException("Not implemented");
}
public final boolean hasQueuedThreads() {
throw new RuntimeException("Not implemented");
}
public final boolean hasQueuedThread(Thread thread) {
throw new RuntimeException("Not implemented");
}
public final int getQueueLength() {
throw new RuntimeException("Not implemented");
}
protected Collection<Thread> getQueuedThreads() {
throw new RuntimeException("Not implemented");
}
private void readObject(java.io.ObjectInputStream s) throws java.io.IOException, ClassNotFoundException {
s.defaultReadObject();
sync = new Object();
readHolds = new HashMap<Thread, Integer>();
readerLock = new ReadLock(this);
writerLock = new WriteLock(this);
}
}