-
Notifications
You must be signed in to change notification settings - Fork 683
/
Copy pathLock.java
137 lines (124 loc) · 4.14 KB
/
Lock.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
/*
* Copyright 2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.util;
import java.util.function.Supplier;
import org.springframework.util.Assert;
/**
* {@code Lock} provides more extensive locking operations than can be obtained using {@code synchronized} methods and
* {@link java.util.concurrent.locks.Lock}. It allows more flexible structuring and an improved usage model.
* <p>
* This Lock abstraction is an extension to the {@link java.util.concurrent.locks.Lock lock utilities} and intended for
* easier functional and try-with-resources usage.
*
* <pre class="code">
* ReentrantLock backend = new ReentrantLock();
*
* Lock lock = Lock.of(backend);
*
* lock.executeWithoutResult(() -> {
* // callback without returning a result
* });
*
* lock.execute(() -> {
* // callback returning a result
* return …;
* });
* </pre>
*
* @author Mark Paluch
* @since 3.2
*/
public interface Lock {
/**
* Create a new {@link Lock} adapter for the given {@link java.util.concurrent.locks.Lock delegate}.
*
* @param delegate must not be {@literal null}.
* @return a new {@link Lock} adapter.
*/
static Lock of(java.util.concurrent.locks.Lock delegate) {
Assert.notNull(delegate, "Lock delegate must not be null");
return new DefaultLock(delegate);
}
/**
* Acquires the lock.
* <p>
* If the lock is not available then the current thread becomes disabled for thread scheduling purposes and lies
* dormant until the lock has been acquired.
*
* @see java.util.concurrent.locks.Lock#lock()
*/
AcquiredLock lock();
/**
* Acquires the lock unless the current thread is {@linkplain Thread#interrupt interrupted}.
* <p>
* Acquires the lock if it is available and returns immediately.
* <p>
* If the lock is not available then the current thread becomes disabled for thread scheduling purposes and lies
* dormant until one of two things happens:
* <ul>
* <li>The lock is acquired by the current thread; or
* <li>Some other thread {@linkplain Thread#interrupt interrupts} the current thread, and interruption of lock
* acquisition is supported.
* </ul>
* <p>
* If the current thread:
* <ul>
* <li>has its interrupted status set on entry to this method; or
* <li>is {@linkplain Thread#interrupt interrupted} while acquiring the lock, and interruption of lock acquisition is
* supported,
* </ul>
* then {@link InterruptedException} is thrown and the current thread's interrupted status is cleared.
*/
AcquiredLock lockInterruptibly() throws InterruptedException;
/**
* Execute the action specified by the given callback object guarded by a lock and return its result. The
* {@code action} is only executed once the lock has been acquired.
*
* @param action the action to run.
* @return the result of the action.
* @param <T> type of the result.
* @throws RuntimeException if thrown by the action
*/
default <T> T execute(Supplier<T> action) {
try (AcquiredLock l = lock()) {
return action.get();
}
}
/**
* Execute the action specified by the given callback object guarded by a lock. The {@code action} is only executed
* once the lock has been acquired.
*
* @param action the action to run.
* @throws RuntimeException if thrown by the action.
*/
default void executeWithoutResult(Runnable action) {
try (AcquiredLock l = lock()) {
action.run();
}
}
/**
* An acquired lock can be used with try-with-resources for easier releasing.
*/
interface AcquiredLock extends AutoCloseable {
/**
* Releases the lock.
*
* @see java.util.concurrent.locks.Lock#unlock()
*/
@Override
void close();
}
}