-
Notifications
You must be signed in to change notification settings - Fork 478
Expand file tree
/
Copy pathBigSegmentHeader.java
More file actions
640 lines (573 loc) · 26.8 KB
/
Copy pathBigSegmentHeader.java
File metadata and controls
640 lines (573 loc) · 26.8 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
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
/*
* Copyright 2013-2026 chronicle.software; SPDX-License-Identifier: Apache-2.0
*/
package net.openhft.chronicle.hash.impl;
import net.openhft.chronicle.algo.bytes.Access;
import net.openhft.chronicle.algo.bytes.NativeAccess;
import net.openhft.chronicle.algo.locks.VanillaReadWriteUpdateWithWaitsLockingStrategy;
import net.openhft.chronicle.core.Jvm;
import net.openhft.chronicle.core.OS;
import net.openhft.chronicle.hash.locks.InterProcessDeadLockException;
import java.util.concurrent.TimeUnit;
import static java.util.concurrent.TimeUnit.NANOSECONDS;
import static java.util.concurrent.TimeUnit.SECONDS;
import static net.openhft.chronicle.assertions.AssertUtil.SKIP_ASSERTIONS;
import static net.openhft.chronicle.map.internal.InternalAssertUtil.assertAddress;
@SuppressWarnings({"rawtypes", "unchecked"})
public final class BigSegmentHeader implements SegmentHeader {
public static final BigSegmentHeader INSTANCE = new BigSegmentHeader();
static final long LOCK_OFFSET = 0L;
static final long ENTRIES_OFFSET = LOCK_OFFSET + 8L; // 32-bit
static final long LOWEST_POSSIBLY_FREE_CHUNK_OFFSET = ENTRIES_OFFSET + 4L;
static final long NEXT_TIER_INDEX_OFFSET = LOWEST_POSSIBLY_FREE_CHUNK_OFFSET + 4L;
static final long DELETED_OFFSET = NEXT_TIER_INDEX_OFFSET + 8L;
private static final long UNSIGNED_INT_MASK = 0xFFFFFFFFL;
/**
* Make the LOCK constant and {@link #A} of final class types (instead of interfaces) as this
* hopefully help JVM with inlining
*/
private static final VanillaReadWriteUpdateWithWaitsLockingStrategy LOCK =
(VanillaReadWriteUpdateWithWaitsLockingStrategy)
VanillaReadWriteUpdateWithWaitsLockingStrategy.instance();
private static final NativeAccess A = (NativeAccess) Access.nativeAccess();
private static final int TRY_LOCK_NANOS_THRESHOLD = 2_000_000;
public static int LOCK_TIMEOUT_SECONDS;
static {
// Previously this value was 2 seconds, but GC pauses often take more time that shouldn't
// result to InterProcessDeadLockException.
int timeout = 60;
try {
timeout = Integer.parseInt(Jvm.getProperty("net.openhft.chronicle.map.lockTimeoutSeconds", String.valueOf(timeout)));
} catch (NumberFormatException ex) {
// ignore
}
LOCK_TIMEOUT_SECONDS = timeout;
}
private BigSegmentHeader() {
}
private static InterProcessDeadLockException deadLock() {
return new InterProcessDeadLockException(
"Failed to acquire the lock in " + LOCK_TIMEOUT_SECONDS + " seconds.\n" +
"Possible reasons:\n" +
" - The lock was not released by the previous holder. If you use contexts API,\n" +
" for example map.queryContext(key), in a try-with-resources block.\n" +
" - This Chronicle Map (or Set) instance is persisted to disk, and the previous\n" +
" process (or one of parallel accessing processes) has crashed while holding\n" +
" this lock. In this case you should use ChronicleMapBuilder.recoverPersistedTo()" +
" procedure\n" +
" to access the Chronicle Map instance.\n" +
" - A concurrent thread or process, currently holding this lock, spends\n" +
" unexpectedly long time (more than " + LOCK_TIMEOUT_SECONDS + " seconds) in\n" +
" the context (try-with-resource block) or one of overridden interceptor\n" +
" methods (or MapMethods, or MapEntryOperations, or MapRemoteOperations)\n" +
" while performing an ordinary Map operation or replication. You should either\n" +
" redesign your logic to spend less time in critical sections (recommended) or\n" +
" acquire this lock with tryLock(time, timeUnit) method call, with sufficient\n" +
" time specified.\n" +
" - Segment(s) in your Chronicle Map are very large, and iteration over them\n" +
" takes more than " + LOCK_TIMEOUT_SECONDS + " seconds. In this case you should\n" +
" acquire this lock with tryLock(time, timeUnit) method call, with longer\n" +
" timeout specified.\n" +
" - This is a dead lock. If you perform multi-key queries, ensure you acquire\n" +
" segment locks in the order (ascending by segmentIndex()), you can find\n" +
" an example here: https://github.com/OpenHFT/Chronicle-Map/blob/ea/docs/CM_Tutorial.adoc#multi-key-queries\n");
}
private static long roundUpNanosToMillis(long nanos) {
return NANOSECONDS.toMillis(nanos + 900_000);
}
private static boolean innerTryReadLock(final long address,
final long time,
final TimeUnit unit,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
return LOCK.tryReadLock(A, null, address + LOCK_OFFSET) ||
tryReadLock0(address, time, unit, interruptible);
}
private static boolean tryReadLock0(final long address,
final long time,
final TimeUnit unit,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
final long timeInNanos = unit.toNanos(time);
if (timeInNanos < TRY_LOCK_NANOS_THRESHOLD) {
return tryReadLockNanos(address, timeInNanos, interruptible);
} else {
return tryReadLockMillis(address, roundUpNanosToMillis(timeInNanos), interruptible);
}
}
private static boolean tryReadLockNanos(final long address,
final long timeInNanos,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
final long end = System.nanoTime() + timeInNanos;
do {
if (LOCK.tryReadLock(A, null, address + LOCK_OFFSET))
return true;
checkInterrupted(interruptible);
Jvm.nanoPause();
} while (System.nanoTime() <= end);
return false;
}
/**
* Use a timer which is more insensitive to jumps in time like GCs and context switches.
*/
private static boolean tryReadLockMillis(final long address,
long timeInMillis,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
long lastTime = System.currentTimeMillis();
do {
if (LOCK.tryReadLock(A, null, address + LOCK_OFFSET))
return true;
checkInterrupted(interruptible);
Jvm.nanoPause();
long now = System.currentTimeMillis();
if (now != lastTime) {
lastTime = now;
timeInMillis--;
}
} while (timeInMillis >= 0);
return false;
}
private static boolean innerTryUpdateLock(final long address,
final long time,
final TimeUnit unit,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
return LOCK.tryUpdateLock(A, null, address + LOCK_OFFSET) ||
tryUpdateLock0(address, time, unit, interruptible);
}
private static boolean tryUpdateLock0(final long address,
final long time,
final TimeUnit unit,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
final long timeInNanos = unit.toNanos(time);
if (timeInNanos < TRY_LOCK_NANOS_THRESHOLD) {
return tryUpdateLockNanos(address, timeInNanos, interruptible);
} else {
return tryUpdateLockMillis(address, roundUpNanosToMillis(timeInNanos), interruptible);
}
}
private static boolean tryUpdateLockNanos(final long address,
final long timeInNanos,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
final long end = System.nanoTime() + timeInNanos;
do {
if (LOCK.tryUpdateLock(A, null, address + LOCK_OFFSET))
return true;
checkInterrupted(interruptible);
Jvm.nanoPause();
} while (System.nanoTime() <= end);
return false;
}
/**
* Use a timer which is more insensitive to jumps in time like GCs and context switches.
*/
private static boolean tryUpdateLockMillis(final long address,
long timeInMillis,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
long lastTime = System.currentTimeMillis();
do {
if (LOCK.tryUpdateLock(A, null, address + LOCK_OFFSET))
return true;
checkInterrupted(interruptible);
Jvm.nanoPause();
long now = System.currentTimeMillis();
if (now != lastTime) {
lastTime = now;
timeInMillis--;
}
} while (timeInMillis >= 0);
return false;
}
private static boolean innerTryWriteLock(final long address,
final long time,
final TimeUnit unit,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
assert address % 4 == 0;
return LOCK.tryWriteLock(A, null, address + LOCK_OFFSET) ||
tryWriteLock0(address, time, unit, interruptible);
}
private static boolean tryWriteLock0(final long address,
final long time,
final TimeUnit unit,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
final long timeInNanos = unit.toNanos(time);
if (timeInNanos < TRY_LOCK_NANOS_THRESHOLD) {
return tryWriteLockNanos(address, timeInNanos, interruptible);
} else {
return tryWriteLockMillis(address, roundUpNanosToMillis(timeInNanos), interruptible);
}
}
private static boolean tryWriteLockNanos(final long address,
final long timeInNanos,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
final long end = System.nanoTime() + timeInNanos;
registerWait(address);
try {
do {
if (LOCK.tryWriteLockAndDeregisterWait(A, null, address + LOCK_OFFSET))
return true;
checkInterrupted(interruptible);
Jvm.nanoPause();
} while (System.nanoTime() <= end);
deregisterWait(address);
return false;
} catch (Throwable t) {
throw tryDeregisterWaitAndRethrow(address, t);
}
}
/**
* Use a timer which is more insensitive to jumps in time like GCs and context switches.
*/
private static boolean tryWriteLockMillis(final long address,
long timeInMillis,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
long lastTime = System.currentTimeMillis();
registerWait(address);
try {
do {
if (LOCK.tryWriteLockAndDeregisterWait(A, null, address + LOCK_OFFSET))
return true;
checkInterrupted(interruptible);
Jvm.nanoPause();
long now = System.currentTimeMillis();
if (now != lastTime) {
lastTime = now;
timeInMillis--;
}
} while (timeInMillis >= 0);
deregisterWait(address);
return false;
} catch (Throwable t) {
throw tryDeregisterWaitAndRethrow(address, t);
}
}
private static void checkInterrupted(boolean interruptible) throws InterruptedException {
if (interruptible && Thread.interrupted())
throw new InterruptedException();
}
private static void registerWait(long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
LOCK.registerWait(A, null, address + LOCK_OFFSET);
}
private static void deregisterWait(long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
LOCK.deregisterWait(A, null, address + LOCK_OFFSET);
}
private static boolean innerTryUpgradeUpdateToWriteLock(final long address,
final long time,
final TimeUnit unit,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
return LOCK.tryUpgradeUpdateToWriteLock(A, null, address + LOCK_OFFSET) ||
tryUpgradeUpdateToWriteLock0(address, time, unit, interruptible);
}
private static boolean tryUpgradeUpdateToWriteLock0(final long address,
final long time,
final TimeUnit unit,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
final long timeInNanos = unit.toNanos(time);
if (timeInNanos < TRY_LOCK_NANOS_THRESHOLD) {
return tryUpgradeUpdateToWriteLockNanos(address, timeInNanos, interruptible);
} else {
return tryUpgradeUpdateToWriteLockMillis(
address, roundUpNanosToMillis(timeInNanos), interruptible);
}
}
private static boolean tryUpgradeUpdateToWriteLockNanos(final long address,
final long timeInNanos,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
final long end = System.nanoTime() + timeInNanos;
registerWait(address);
try {
do {
if (tryUpgradeUpdateToWriteLockAndDeregisterWait0(address))
return true;
checkInterrupted(interruptible);
Jvm.nanoPause();
} while (System.nanoTime() <= end);
deregisterWait(address);
return false;
} catch (Throwable t) {
throw tryDeregisterWaitAndRethrow(address, t);
}
}
/**
* Use a timer which is more insensitive to jumps in time like GCs and context switches.
*/
private static boolean tryUpgradeUpdateToWriteLockMillis(final long address,
long timeInMillis,
final boolean interruptible) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
long lastTime = System.currentTimeMillis();
registerWait(address);
try {
do {
if (tryUpgradeUpdateToWriteLockAndDeregisterWait0(address))
return true;
checkInterrupted(interruptible);
Jvm.nanoPause();
long now = System.currentTimeMillis();
if (now != lastTime) {
lastTime = now;
timeInMillis--;
}
} while (timeInMillis >= 0);
deregisterWait(address);
return false;
} catch (Throwable t) {
throw tryDeregisterWaitAndRethrow(address, t);
}
}
private static RuntimeException tryDeregisterWaitAndRethrow(final long address,
final Throwable throwable) {
assert SKIP_ASSERTIONS || assertAddress(address);
try {
deregisterWait(address);
} catch (Throwable t) {
throwable.addSuppressed(t);
}
throw Jvm.rethrow(throwable);
}
private static boolean tryUpgradeUpdateToWriteLockAndDeregisterWait0(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
return LOCK.tryUpgradeUpdateToWriteLockAndDeregisterWait(A, null, address + LOCK_OFFSET);
}
@Override
public long entries(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
return OS.memory().readInt(address + ENTRIES_OFFSET) & UNSIGNED_INT_MASK;
}
@Override
public void entries(final long address, final long entries) {
assert SKIP_ASSERTIONS || assertAddress(address);
if (entries >= (1L << 32)) {
throw new IllegalStateException("segment entries overflow: up to " + UNSIGNED_INT_MASK +
" supported, " + entries + " given");
}
OS.memory().writeInt(address + ENTRIES_OFFSET, (int) entries);
}
@Override
public long deleted(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
return OS.memory().readInt(address + DELETED_OFFSET) & UNSIGNED_INT_MASK;
}
@Override
public void deleted(final long address,
final long deleted) {
assert SKIP_ASSERTIONS || assertAddress(address);
if (deleted >= (1L << 32)) {
throw new IllegalStateException("segment deleted entries count overflow: up to " +
UNSIGNED_INT_MASK + " supported, " + deleted + " given");
}
OS.memory().writeInt(address + DELETED_OFFSET, (int) deleted);
}
@Override
public long lowestPossiblyFreeChunk(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
return OS.memory().readInt(address + LOWEST_POSSIBLY_FREE_CHUNK_OFFSET) & UNSIGNED_INT_MASK;
}
@Override
public void lowestPossiblyFreeChunk(final long address,
final long lowestPossiblyFreeChunk) {
assert SKIP_ASSERTIONS || assertAddress(address);
OS.memory().writeInt(address + LOWEST_POSSIBLY_FREE_CHUNK_OFFSET,
(int) lowestPossiblyFreeChunk);
}
@Override
public long nextTierIndex(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
return OS.memory().readLong(address + NEXT_TIER_INDEX_OFFSET);
}
@Override
public void nextTierIndex(final long address,
final long nextTierIndex) {
assert SKIP_ASSERTIONS || assertAddress(address);
OS.memory().writeLong(address + NEXT_TIER_INDEX_OFFSET, nextTierIndex);
}
@Override
public void readLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
try {
if (!innerTryReadLock(address, LOCK_TIMEOUT_SECONDS, SECONDS, false))
throw deadLock();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new AssertionError(e);
}
}
@Override
public void readLockInterruptibly(final long address) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
if (!tryReadLock(address, LOCK_TIMEOUT_SECONDS, SECONDS))
throw deadLock();
}
@Override
public boolean tryReadLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
return LOCK.tryReadLock(A, null, address + LOCK_OFFSET);
}
@Override
public boolean tryReadLock(final long address,
final long time,
final TimeUnit unit) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
return innerTryReadLock(address, time, unit, true);
}
@Override
public boolean tryUpgradeReadToUpdateLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
return LOCK.tryUpgradeReadToUpdateLock(A, null, address + LOCK_OFFSET);
}
@Override
public boolean tryUpgradeReadToWriteLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
return LOCK.tryUpgradeReadToWriteLock(A, null, address + LOCK_OFFSET);
}
@Override
public void updateLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
try {
if (!innerTryUpdateLock(address, LOCK_TIMEOUT_SECONDS, SECONDS, false))
throw deadLock();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new AssertionError(e);
}
}
@Override
public void updateLockInterruptibly(final long address) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
if (!tryUpdateLock(address, LOCK_TIMEOUT_SECONDS, SECONDS))
throw deadLock();
}
@Override
public boolean tryUpdateLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
return LOCK.tryUpdateLock(A, null, address + LOCK_OFFSET);
}
@Override
public boolean tryUpdateLock(final long address,
final long time,
final TimeUnit unit) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
return innerTryUpdateLock(address, time, unit, true);
}
@Override
public void writeLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
try {
if (!innerTryWriteLock(address, LOCK_TIMEOUT_SECONDS, SECONDS, false))
throw deadLock();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new AssertionError(e);
}
}
@Override
public void writeLockInterruptibly(final long address) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
if (!tryWriteLock(address, LOCK_TIMEOUT_SECONDS, SECONDS))
throw deadLock();
}
@Override
public boolean tryWriteLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
assert address % 4 == 0;
return LOCK.tryWriteLock(A, null, address + LOCK_OFFSET);
}
@Override
public boolean tryWriteLock(final long address,
final long time,
final TimeUnit unit) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
return innerTryWriteLock(address, time, unit, true);
}
@Override
public void upgradeUpdateToWriteLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
try {
if (!innerTryUpgradeUpdateToWriteLock(address, LOCK_TIMEOUT_SECONDS, SECONDS, false))
throw deadLock();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new AssertionError(e);
}
}
@Override
public void upgradeUpdateToWriteLockInterruptibly(final long address) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
if (!tryUpgradeUpdateToWriteLock(address, LOCK_TIMEOUT_SECONDS, SECONDS))
throw deadLock();
}
@Override
public boolean tryUpgradeUpdateToWriteLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
return LOCK.tryUpgradeUpdateToWriteLock(A, null, address + LOCK_OFFSET);
}
@Override
public boolean tryUpgradeUpdateToWriteLock(final long address,
final long time,
final TimeUnit unit) throws InterruptedException {
assert SKIP_ASSERTIONS || assertAddress(address);
return innerTryUpgradeUpdateToWriteLock(address, time, unit, true);
}
@Override
public void readUnlock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
LOCK.readUnlock(A, null, address + LOCK_OFFSET);
}
@Override
public void updateUnlock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
LOCK.updateUnlock(A, null, address + LOCK_OFFSET);
}
@Override
public void downgradeUpdateToReadLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
LOCK.downgradeUpdateToReadLock(A, null, address + LOCK_OFFSET);
}
@Override
public void writeUnlock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
LOCK.writeUnlock(A, null, address + LOCK_OFFSET);
}
@Override
public void downgradeWriteToUpdateLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
LOCK.downgradeWriteToUpdateLock(A, null, address + LOCK_OFFSET);
}
@Override
public void downgradeWriteToReadLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
LOCK.downgradeWriteToReadLock(A, null, address + LOCK_OFFSET);
}
@Override
public void resetLock(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
LOCK.reset(A, null, address + LOCK_OFFSET);
}
@Override
public long resetLockState() {
return LOCK.resetState();
}
@Override
public long getLockState(final long address) {
assert SKIP_ASSERTIONS || assertAddress(address);
return LOCK.getState(A, null, address + LOCK_OFFSET);
}
@Override
public String lockStateToString(long lockState) {
return LOCK.toString(lockState);
}
}