Skip to content

Commit

Permalink
refactor: extract peek0 methods to LLCF from CFU 🔧
Browse files Browse the repository at this point in the history
  • Loading branch information
oldratlee committed Dec 17, 2024
1 parent 73ca1b0 commit 48c4e16
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import java.util.function.*;

import static io.foldright.cffu.Delayer.atCfDelayerThread;
import static io.foldright.cffu.ExceptionReporter.reportUncaughtException;
import static io.foldright.cffu.InternalCommonUtils.*;
import static io.foldright.cffu.LLCF.*;
import static java.util.Objects.requireNonNull;
Expand Down Expand Up @@ -3061,15 +3060,10 @@ C completeOnTimeout(C cfThis, @Nullable T value, long timeout, TimeUnit unit) {
private static <C extends CompletableFuture<?>> C hopExecutorIfAtCfDelayerThread(C cf, Executor executor) {
CompletableFuture<Object> ret = newIncompleteFuture(cf);

cf.whenComplete((v, ex) -> {
try {
if (!atCfDelayerThread()) completeCf(ret, v, ex);
else screenExecutor(executor).execute(() -> completeCf(ret, v, ex));
} catch (Throwable e) {
if (ex != null) e.addSuppressed(ex);
reportUncaughtException("handle of executor hop", e);
}
});
peek0(cf, (v, ex) -> {
if (!atCfDelayerThread()) completeCf(ret, v, ex);
else screenExecutor(executor).execute(() -> completeCf(ret, v, ex));
}, "handle of executor hop");

return (C) ret;
}
Expand Down Expand Up @@ -3252,15 +3246,7 @@ C peek(C cfThis, BiConsumer<? super T, ? super Throwable> action) {
requireNonNull(cfThis, "cfThis is null");
requireNonNull(action, "action is null");

cfThis.whenComplete((v, ex) -> {
try {
action.accept(v, ex);
} catch (Throwable e) {
if (ex != null) e.addSuppressed(ex);
reportUncaughtException("the action of peek", e);
}
});
return cfThis;
return peek0(cfThis, action, "the action of peek");
}

/**
Expand Down Expand Up @@ -3320,15 +3306,7 @@ C peekAsync(C cfThis, BiConsumer<? super T, ? super Throwable> action, Executor
requireNonNull(action, "action is null");
requireNonNull(executor, "executor is null");

cfThis.whenCompleteAsync((v, ex) -> {
try {
action.accept(v, ex);
} catch (Throwable e) {
if (ex != null) e.addSuppressed(ex);
reportUncaughtException("the action of peekAsync", e);
}
}, executor);
return cfThis;
return peekAsync0(cfThis, action, "the action of peekAsync", executor);
}

// endregion
Expand Down
44 changes: 44 additions & 0 deletions cffu-core/src/main/java/io/foldright/cffu/LLCF.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
package io.foldright.cffu;

import org.jetbrains.annotations.Contract;

import java.util.ArrayList;
import java.util.Objects;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.Executor;
import java.util.concurrent.ForkJoinPool;
import java.util.function.BiConsumer;
import java.util.function.Supplier;

import static io.foldright.cffu.ExceptionReporter.reportUncaughtException;
import static io.foldright.cffu.InternalCommonUtils.mapArray;
import static java.util.Objects.requireNonNull;
import static java.util.concurrent.CompletableFuture.completedFuture;
Expand Down Expand Up @@ -123,6 +127,46 @@ static <T> CompletableFuture<T> toNonMinCfCopy0(CompletionStage<? extends T> s)
return isMinStageCf(f) ? f.toCompletableFuture() : IS_JAVA9_PLUS ? f.copy() : f.thenApply(x -> x);
}

/**
* Peeks the result by executing the given action when the given stage completes, returns the given stage.
* The uncaught exceptions thrown by the action are reported.
*
* @see CompletableFutureUtils#peek(CompletionStage, BiConsumer)
*/
@Contract("_, _, _ -> param1")
static <T, C extends CompletionStage<? extends T>>
C peek0(C cfThis, BiConsumer<? super T, ? super Throwable> action, String where) {
cfThis.whenComplete((v, ex) -> {
try {
action.accept(v, ex);
} catch (Throwable e) {
if (ex != null) e.addSuppressed(ex);
reportUncaughtException(where, e);
}
});
return cfThis;
}

/**
* Peeks the result by executing the given action using the supplied executor when the given stage completes,
* returns the given stage. The uncaught exceptions thrown by the action are reported.
*
* @see CompletableFutureUtils#peekAsync(CompletionStage, BiConsumer, Executor)
*/
@Contract("_, _, _, _ -> param1")
static <T, C extends CompletionStage<? extends T>>
C peekAsync0(C cfThis, BiConsumer<? super T, ? super Throwable> action, String where, Executor executor) {
cfThis.whenCompleteAsync((v, ex) -> {
try {
action.accept(v, ex);
} catch (Throwable e) {
if (ex != null) e.addSuppressed(ex);
reportUncaughtException(where, e);
}
}, executor);
return cfThis;
}

public static boolean isMinStageCf(CompletableFuture<?> cf) {
return cf.getClass().equals(MIN_STAGE_CLASS);
}
Expand Down

0 comments on commit 48c4e16

Please sign in to comment.