-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFutureTracker.java
288 lines (264 loc) · 9.13 KB
/
FutureTracker.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
/*
* Copyright 2020-2025 Exactpro (Exactpro Systems Limited)
*
* 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
*
* http://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 com.exactpro.th2.taskutils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.time.Duration;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.ReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
/**
* Following class tracks futures and when needed tries to wait for them
*/
public class FutureTracker<T> {
private static final Logger LOGGER = LoggerFactory.getLogger(FutureTracker.class);
private final Duration DURATION_MINUTE = Duration.ofMinutes(1);
private final ReadWriteLock lock = new ReentrantReadWriteLock();
private final Condition onRemove = lock.writeLock().newCondition();
/**
* Guarded by {@link #lock}
*/
private final Set<CompletableFuture<T>> futures;
/**
* Changed under write lock of {@link #lock}
*/
private volatile boolean enabled;
private final int limit;
private final boolean hasLimit;
private FutureTracker(int limit) {
this.futures = new HashSet<>();
this.enabled = true;
this.limit = limit;
this.hasLimit = limit > 0;
}
/**
* @deprecated Use {@link FutureTracker#createUnlimited()} instead
*/
@Deprecated
public FutureTracker() {
this(0);
}
/**
* Creates unlimited FutureTracker
*
* @param <T> is trackable {@link CompletableFuture} type
* @return instance of FutureTracker class
*/
public static <T> FutureTracker<T> createUnlimited() {
return new FutureTracker<>(0);
}
/**
* Creates FutureTracker with limit size
*
* @param <T> is trackable {@link CompletableFuture} type
* @param limit is max number of trackable futures if positive value, otherwise tracker unlimited
* @return instance of FutureTracker class
*/
public static <T> FutureTracker<T> create(int limit) {
return new FutureTracker<>(limit);
}
/**
* Try to add the future for tracking
*
* @param future to be tracked
* @return true if future is already done or is added for tracking otherwise false
* @throws InterruptedException if any thread has interrupted the current thread.
* @throws IllegalStateException if future tracker is disabled
*/
public boolean track(CompletableFuture<T> future) throws InterruptedException {
while (!track(future, DURATION_MINUTE)) {
LOGGER.warn("Future can't be added to track list for longer than {}", DURATION_MINUTE);
}
return true;
}
/**
* Try to add the future for tracking during timeout
*
* @param future to be tracked
* @param timeout the maximum timeout to wait for free space for adding
* @return true if future is already done or is added for tracking during timeout otherwise false
* @throws InterruptedException if any thread has interrupted the current thread.
* @throws IllegalStateException if future tracker is disabled
*/
public boolean track(CompletableFuture<T> future, Duration timeout) throws InterruptedException {
if (enabled) {
if (future.isDone()) {
return true;
}
long endNanos = System.nanoTime() + timeout.toNanos();
lock.writeLock().lock();
try {
if (future.isDone()) {
return true;
}
if (!hasLimit || futures.size() < limit) {
addFuture(future);
return true;
}
long remainingTime = endNanos - System.nanoTime();
if (remainingTime <= 0) {
return future.isDone();
}
if (!onRemove.await(remainingTime, TimeUnit.NANOSECONDS)) {
return future.isDone();
}
if (future.isDone()) {
return true;
}
if (futures.size() < limit) {
addFuture(future);
return true;
}
} finally {
lock.writeLock().unlock();
}
}
throw new IllegalStateException("Future tracker is already disabled");
}
/**
* Stops accepting new futures and waits for
* currently tracked futures
*/
public void awaitRemaining() throws InterruptedException {
awaitRemaining(Duration.ofMillis(-1));
}
/**
* Disables traker and waits for tracked futures, cancels futures after timeout.
* Cancels all futures without wait if passed 0.
* Waits without timeout if passed negative.
*
* @param timeoutMillis milliseconds to wait
* @deprecated use {@link #awaitRemaining(Duration)} instead
*/
@Deprecated
public void awaitRemaining(long timeoutMillis) throws InterruptedException {
awaitRemaining(Duration.ofMillis(timeoutMillis));
}
/**
* Disables traker and waits for tracked futures, cancels futures after timeout.
* Cancels all futures without wait if passed 0.
* Waits without timeout if passed negative.
*
* @param timeout duration to wait
*/
public void awaitRemaining(Duration timeout) throws InterruptedException {
long timeoutNanos = timeout.toNanos();
long startNanos = System.nanoTime();
List<CompletableFuture<T>> remainingFutures;
lock.writeLock().lock();
try {
this.enabled = false;
if (futures.isEmpty()) {
return;
}
remainingFutures = new ArrayList<>(futures);
} finally {
lock.writeLock().unlock();
}
for (CompletableFuture<T> future : remainingFutures) {
long curNanos = System.nanoTime();
try {
if (!future.isDone()) {
if (timeoutNanos < 0) {
future.get();
} else {
if (curNanos - startNanos >= timeoutNanos) {
future.cancel(true);
} else {
future.get(timeoutNanos - (curNanos - startNanos), TimeUnit.NANOSECONDS);
}
}
}
} catch (ExecutionException | TimeoutException e) {
// do nothing
} catch (InterruptedException e) {
LOGGER.error("Await remaining operation is interrupted", e);
throw e;
} catch (Exception e) {
LOGGER.error("Await remaining operation is failed", e);
throw new RuntimeException(e);
}
}
}
/**
* Informational method for getting remaining number of futures
*
* @return number of unfinished futures
*/
public int remaining() {
lock.readLock().lock();
try {
return futures.size();
} finally {
lock.readLock().unlock();
}
}
/**
* Limit of trackable features if positive value, otherwise tracker unlimited
*
* @return max number of trackable futures if positive value, otherwise tracker unlimited
*/
public int limit() {
return limit;
}
/**
* Has tracker got limit for number of trackable futures
*
* @return true if {@link #limit()} is positive, otherwise false
*/
public boolean hasLimit() {
return hasLimit;
}
/**
* Informs if there are any active futures
*
* @return true if there are no active futures
*/
public boolean isEmpty() {
return remaining() == 0;
}
/**
* Informs if future tracker can accept new futures or not
*
* @return current state of {@link FutureTracker} instance
*/
public boolean isEnabled() {
return enabled;
}
private void addFuture(CompletableFuture<T> future) {
if (!enabled) {
throw new IllegalStateException("Future tracker is disabled");
}
futures.add(future);
future.whenComplete((res, ex) -> {
lock.writeLock().lock();
try {
futures.remove(future);
onRemove.signalAll();
} finally {
lock.writeLock().unlock();
}
});
}
}