-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathPromise.java
421 lines (341 loc) · 16.7 KB
/
Promise.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
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
/**
* Copyright 2015-2021 Valery Silaev (http://vsilaev.com)
*
* 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 net.tascalate.concurrent;
import static net.tascalate.concurrent.SharedFunctions.NO_SUCH_ELEMENT;
import static net.tascalate.concurrent.SharedFunctions.applyAndCancel;
import static net.tascalate.concurrent.SharedFunctions.failure;
import static net.tascalate.concurrent.SharedFunctions.selectFirst;
import static net.tascalate.concurrent.SharedFunctions.supply;
import static net.tascalate.concurrent.SharedFunctions.unwrapExecutionException;
import static net.tascalate.concurrent.SharedFunctions.wrapCompletionException;
import java.time.Duration;
import java.util.Set;
import java.util.concurrent.CancellationException;
import java.util.concurrent.CompletionException;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Executor;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.function.BiConsumer;
import java.util.function.BiFunction;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.function.Supplier;
import net.tascalate.concurrent.decorators.ExecutorBoundPromise;
/**
* <p>{@link Promise} is a combination of the {@link CompletionStage} and {@link Future} contracts.
* It provides both composition methods of the former and blocking access methods of the later.
* <p>Every composition method derived from the {@link CompletionStage} interface is overridden to
* return a new Promise;
* @author vsilaev
*
* @param <T>
* a type of the successfully resolved promise value
*/
public interface Promise<T> extends Future<T>, CompletionStage<T> {
default T getNow(T valueIfAbsent) throws CancellationException, CompletionException {
return getNow(supply(valueIfAbsent));
}
default T getNow(Supplier<? extends T> valueIfAbsent) throws CancellationException, CompletionException {
if (isDone()) {
try {
return get();
} catch (InterruptedException ex) {
// Should not happen when isDone() returns true
throw new RuntimeException(ex);
} catch (ExecutionException ex) {
throw wrapCompletionException(unwrapExecutionException(ex));
}
} else {
return valueIfAbsent.get();
}
}
default T join() throws CancellationException, CompletionException {
try {
return get();
} catch (InterruptedException ex) {
throw new CompletionException(ex);
} catch (ExecutionException ex) {
throw wrapCompletionException(unwrapExecutionException(ex));
}
}
default boolean isCompletedExceptionally() {
if (!isDone()) {
return false;
}
if (isCancelled()) {
return true;
} else {
try {
// We are done, so no blocking
get();
} catch (Throwable ex) {
return true;
}
return false;
}
}
default Promise<T> onCancel(Runnable action) {
if (isDone()) {
if (isCancelled()) {
action.run();
}
} else {
exceptionally(__ -> {
if (isCancelled()) {
action.run();
}
return null;
});
}
return this;
}
default Promise<T> delay(long timeout, TimeUnit unit) {
return delay(timeout, unit, true);
}
default Promise<T> delay(long timeout, TimeUnit unit, boolean delayOnError) {
return delay(Timeouts.toDuration(timeout, unit), delayOnError);
}
default Promise<T> delay(Duration duration) {
return delay(duration, true);
}
default Promise<T> delay(Duration duration, boolean delayOnError) {
if (!delayOnError) {
// Fast route
return thenCompose(v ->
this.dependent()
.thenCombineAsync(Timeouts.delay(duration), selectFirst(), PromiseOrigin.PARAM_ONLY)
.unwrap()
);
}
DependentPromise<Try<T>> h = dependent().handle((r, e) -> Try.handle(r, e, null), false);
return h.thenCompose(t -> t.isSuccess() || !(isCancelled() || t.isCancel()) ?
// "this" is already completed promise here (in both cases)
// Use *Async to execute on default "this" executor
h.thenCombineAsync(Timeouts.delay(duration), (_1, _2) -> join(), PromiseOrigin.PARAM_ONLY)
:
this,
true
).unwrap();
}
default Promise<T> orTimeout(long timeout, TimeUnit unit) {
return orTimeout(timeout, unit, true);
}
default Promise<T> orTimeout(long timeout, TimeUnit unit, boolean cancelOnTimeout) {
return orTimeout(Timeouts.toDuration(timeout, unit), cancelOnTimeout);
}
default Promise<T> orTimeout(Duration duration) {
return orTimeout(duration, true);
}
default Promise<T> orTimeout(Duration duration, boolean cancelOnTimeout) {
Promise<Try<T>> onTimeout = Timeouts.delayed(null, duration);
return
this.dependent()
.handle((r, e) -> Try.handle(r, e, onTimeout), false)
.applyToEither(onTimeout, applyAndCancel(v -> Try.doneOrTimeout(v, duration), cancelOnTimeout, this), PromiseOrigin.ALL)
// Use *Async to execute on default "this" executor;
// Don't use *Async above to let interrupt correctly with single-thread executors
.thenComposeAsync(Try::asPromise, true)
.unwrap();
}
default Promise<T> onTimeout(T value, long timeout, TimeUnit unit) {
return onTimeout(value, timeout, unit, true);
}
default Promise<T> onTimeout(T value, long timeout, TimeUnit unit, boolean cancelOnTimeout) {
return onTimeout(value, Timeouts.toDuration(timeout, unit), cancelOnTimeout);
}
default Promise<T> onTimeout(T value, Duration duration) {
return onTimeout(value, duration, true);
}
default Promise<T> onTimeout(T value, Duration duration, boolean cancelOnTimeout) {
Promise<Try<T>> onTimeout = Timeouts.delayed(Try.success(value), duration);
return
this.dependent()
.handle((r, e) -> Try.handle(r, e, onTimeout), false)
// Use *Async to execute on default "this" executor
.applyToEither(onTimeout, applyAndCancel(Function.identity(), cancelOnTimeout, this), PromiseOrigin.ALL)
// Use *Async to execute on default "this" executor;
// Don't use *Async above to let interrupt correctly with single-thread executors
.thenComposeAsync(Try::asPromise, true)
.unwrap();
}
default Promise<T> onTimeout(Supplier<? extends T> supplier, long timeout, TimeUnit unit) {
return onTimeout(supplier, timeout, unit, true);
}
default Promise<T> onTimeout(Supplier<? extends T> supplier, long timeout, TimeUnit unit, boolean cancelOnTimeout) {
return onTimeout(supplier, Timeouts.toDuration(timeout, unit), cancelOnTimeout);
}
default Promise<T> onTimeout(Supplier<? extends T> supplier, Duration duration) {
return onTimeout(supplier, duration, true);
}
default Promise<T> onTimeout(Supplier<? extends T> supplier, Duration duration, boolean cancelOnTimeout) {
// timeout converted to supplier
Promise<Supplier<Try<T>>> onTimeout = Timeouts.delayed(Try.call(supplier), duration);
return
this.dependent()
.handle((r, e) -> supply(Try.handle(r, e, onTimeout)), false)
.applyToEither(onTimeout, applyAndCancel(Function.identity(), cancelOnTimeout, this), PromiseOrigin.ALL)
// Use *Async to execute on default "this" executor;
// Don't use *Async above to let interrupt correctly with single-thread executors
// Supplier will be called on async executor of this
.thenComposeAsync(s -> s.get().asPromise(), true)
.unwrap();
}
/**
* Converts this {@link Promise} to a {@link DependentPromise}
* The returned DependentPromise does not implicitly enlist any {@link CompletionStage}
* for cancellation (neither self, nor passed as arguments to combining methods);
* only enlisting via explicit parameter is supported
*
* @return
* created DependentPromise
*/
// @Decorator
default DependentPromise<T> dependent() {
return ConfigurableDependentPromise.from(this);
}
/**
* Converts this {@link Promise} to a {@link DependentPromise}
* The returned DependentPromise does implicitly enlist {@link CompletionStage}
* for cancellation (either self, and/or passed as arguments to combining methods)
* according to <code>defaultEnlistOptions</code> parameter
*
* @param defaultEnlistOptions
* defines what {@link CompletionStage} should be enlisted implicitly for cancellation
* @return
* created DependentPromise
*/
// @Decorator
default DependentPromise<T> dependent(Set<PromiseOrigin> defaultEnlistOptions) {
return ConfigurableDependentPromise.from(this, defaultEnlistOptions);
}
// @Decorator
default Promise<T> defaultAsyncOn(Executor executor) {
return new ExecutorBoundPromise<>(this, executor);
}
/**
* Decorate this {@link Promise} with a decorator specified
* @param <D>
* type of the actual promise decorator
* @param decoratorFactory
* a factory to create a concrete decorator
* @return
* a decorator created
*/
default <D> D as(Function<? super Promise<T>, D> decoratorFactory) {
return decoratorFactory.apply(this);
}
/**
* Unwraps underlying {@link Promise} if it was decorated (removes one level of decorators)
* @return
* the underlying un-decorated {@link Promise} or self if not decorated
*/
default Promise<T> unwrap() {
return this;
}
/**
* Fully unwraps underlying {@link Promise} (removes all decoration layers)
* @return
* the underlying un-decorated {@link Promise} or self if not decorated
*/
default Promise<T> raw() {
return this;
}
<U> Promise<U> thenApply(Function<? super T, ? extends U> fn);
<U> Promise<U> thenApplyAsync(Function<? super T, ? extends U> fn);
<U> Promise<U> thenApplyAsync(Function<? super T, ? extends U> fn, Executor executor);
Promise<Void> thenAccept(Consumer<? super T> action);
Promise<Void> thenAcceptAsync(Consumer<? super T> action);
Promise<Void> thenAcceptAsync(Consumer<? super T> action, Executor executor);
Promise<Void> thenRun(Runnable action);
Promise<Void> thenRunAsync(Runnable action);
Promise<Void> thenRunAsync(Runnable action, Executor executor);
<U, V> Promise<V> thenCombine(CompletionStage<? extends U> other, BiFunction<? super T, ? super U, ? extends V> fn);
<U, V> Promise<V> thenCombineAsync(CompletionStage<? extends U> other, BiFunction<? super T, ? super U, ? extends V> fn);
<U, V> Promise<V> thenCombineAsync(CompletionStage<? extends U> other,
BiFunction<? super T, ? super U, ? extends V> fn,
Executor executor);
<U> Promise<Void> thenAcceptBoth(CompletionStage<? extends U> other, BiConsumer<? super T, ? super U> action);
<U> Promise<Void> thenAcceptBothAsync(CompletionStage<? extends U> other, BiConsumer<? super T, ? super U> action);
<U> Promise<Void> thenAcceptBothAsync(CompletionStage<? extends U> other,
BiConsumer<? super T, ? super U> action,
Executor executor);
Promise<Void> runAfterBoth(CompletionStage<?> other, Runnable action);
Promise<Void> runAfterBothAsync(CompletionStage<?> other, Runnable action);
Promise<Void> runAfterBothAsync(CompletionStage<?> other,
Runnable action,
Executor executor);
<U> Promise<U> applyToEither(CompletionStage<? extends T> other, Function<? super T, U> fn);
<U> Promise<U> applyToEitherAsync(CompletionStage<? extends T> other, Function<? super T, U> fn);
<U> Promise<U> applyToEitherAsync(CompletionStage<? extends T> other,
Function<? super T, U> fn,
Executor executor);
Promise<Void> acceptEither(CompletionStage<? extends T> other, Consumer<? super T> action);
Promise<Void> acceptEitherAsync(CompletionStage<? extends T> other, Consumer<? super T> action);
Promise<Void> acceptEitherAsync(CompletionStage<? extends T> other,
Consumer<? super T> action,
Executor executor);
Promise<Void> runAfterEither(CompletionStage<?> other, Runnable action);
Promise<Void> runAfterEitherAsync(CompletionStage<?> other, Runnable action);
Promise<Void> runAfterEitherAsync(CompletionStage<?> other,
Runnable action,
Executor executor);
<U> Promise<U> thenCompose(Function<? super T, ? extends CompletionStage<U>> fn);
<U> Promise<U> thenComposeAsync(Function<? super T, ? extends CompletionStage<U>> fn);
<U> Promise<U> thenComposeAsync(Function<? super T, ? extends CompletionStage<U>> fn, Executor executor);
Promise<T> exceptionally(Function<Throwable, ? extends T> fn);
default Promise<T> exceptionallyAsync(Function<Throwable, ? extends T> fn) {
return PromiseHelper.exceptionallyAsync(this, fn);
}
default Promise<T> exceptionallyAsync(Function<Throwable, ? extends T> fn, Executor executor) {
return PromiseHelper.exceptionallyAsync(this, fn, executor);
}
default Promise<T> exceptionallyCompose(Function<Throwable, ? extends CompletionStage<T>> fn) {
return PromiseHelper.exceptionallyCompose(this, fn);
}
default Promise<T> exceptionallyComposeAsync(Function<Throwable, ? extends CompletionStage<T>> fn) {
return PromiseHelper.exceptionallyComposeAsync(this, fn);
}
default Promise<T> exceptionallyComposeAsync(Function<Throwable, ? extends CompletionStage<T>> fn, Executor executor) {
return PromiseHelper.exceptionallyComposeAsync(this, fn, executor);
}
default Promise<T> thenFilter(Predicate<? super T> predicate) {
return thenFilter(predicate, NO_SUCH_ELEMENT);
}
default Promise<T> thenFilter(Predicate<? super T> predicate, Function<? super T, Throwable> errorSupplier) {
return thenCompose(v -> predicate.test(v) ? this : failure(errorSupplier, v));
}
default Promise<T> thenFilterAsync(Predicate<? super T> predicate) {
return thenFilterAsync(predicate, NO_SUCH_ELEMENT);
}
default Promise<T> thenFilterAsync(Predicate<? super T> predicate, Function<? super T, Throwable> errorSupplier) {
return thenComposeAsync(v -> predicate.test(v) ? this : failure(errorSupplier, v));
}
default Promise<T> thenFilterAsync(Predicate<? super T> predicate, Executor executor) {
return thenFilterAsync(predicate, NO_SUCH_ELEMENT, executor);
}
default Promise<T> thenFilterAsync(Predicate<? super T> predicate, Function<? super T, Throwable> errorSupplier, Executor executor) {
return thenComposeAsync(v -> predicate.test(v) ? this : failure(errorSupplier, v), executor);
}
Promise<T> whenComplete(BiConsumer<? super T, ? super Throwable> action);
Promise<T> whenCompleteAsync(BiConsumer<? super T, ? super Throwable> action);
Promise<T> whenCompleteAsync(BiConsumer<? super T, ? super Throwable> action, Executor executor);
<U> Promise<U> handle(BiFunction<? super T, Throwable, ? extends U> fn);
<U> Promise<U> handleAsync(BiFunction<? super T, Throwable, ? extends U> fn);
<U> Promise<U> handleAsync(BiFunction<? super T, Throwable, ? extends U> fn, Executor executor);
}