blob: f3637f9779e536f573cd519f137b0fc9f984e764 (
plain)
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
|
package bjc.utils.funcutils;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import java.util.function.Supplier;
/**
* A wrapper around a {@link ReadWriteLock} to ensure that the lock is used
* properly.
*
* @author EVE
*/
public class LambdaLock {
/* The read lock. */
private final Lock readLock;
/* The write lock. */
private final Lock writeLock;
/** Create a new lambda-enabled lock around a new lock. */
public LambdaLock() {
this(new ReentrantReadWriteLock());
}
/**
* Create a new lambda-enabled lock.
*
* @param lck
* The lock to wrap.
*/
public LambdaLock(final ReadWriteLock lck) {
readLock = lck.readLock();
writeLock = lck.writeLock();
}
/**
* Execute an action with the read lock taken.
*
* @param supp
* The action to call.
*
* @return The result of the action.
*/
public <T> T read(final Supplier<T> supp) {
readLock.lock();
try {
return supp.get();
} finally {
readLock.unlock();
}
}
/**
* Execute an action with the write lock taken.
*
* @param supp
* The action to call.
*
* @return The result of the action.
*/
public <T> T write(final Supplier<T> supp) {
writeLock.lock();
try {
return supp.get();
} finally {
writeLock.unlock();
}
}
/**
* Execute an action with the read lock taken.
*
* @param action
* The action to call.
*/
public void read(final Runnable action) {
readLock.lock();
try {
action.run();
} finally {
readLock.unlock();
}
}
/**
* Execute an action with the write lock taken.
*
* @param action
* The action to call.
*/
public void write(final Runnable action) {
writeLock.lock();
try {
action.run();
} finally {
writeLock.unlock();
}
}
}
|