
io.opentelemetry.sdk.common.CompletableResultCode Maven / Gradle / Ivy
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.sdk.common;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import javax.annotation.Nullable;
import javax.annotation.concurrent.GuardedBy;
/**
* This class models JDK 8's CompletableFuture to afford migration should Open Telemetry's SDK
* select JDK 8 or greater as a baseline, and also to offer familiarity to developers.
*
* The implementation of Export operations are often asynchronous in nature, hence the need to
* convey a result at a later time. CompletableResultCode facilitates this.
*/
public class CompletableResultCode {
/** Returns a {@link CompletableResultCode} that has been completed successfully. */
public static CompletableResultCode ofSuccess() {
return SUCCESS;
}
/** Returns a {@link CompletableResultCode} that has been completed unsuccessfully. */
public static CompletableResultCode ofFailure() {
return FAILURE;
}
/**
* Returns a {@link CompletableResultCode} that completes after all the provided {@link
* CompletableResultCode}s complete. If any of the results fail, the result will be failed.
*/
public static CompletableResultCode ofAll(final Collection codes) {
final CompletableResultCode result = new CompletableResultCode();
final AtomicInteger pending = new AtomicInteger(codes.size());
final AtomicBoolean failed = new AtomicBoolean();
for (final CompletableResultCode code : codes) {
code.whenComplete(
new Runnable() {
@Override
public void run() {
if (!code.isSuccess()) {
failed.set(true);
}
if (pending.decrementAndGet() == 0) {
if (failed.get()) {
result.fail();
} else {
result.succeed();
}
}
}
});
}
return result;
}
private static final CompletableResultCode SUCCESS = new CompletableResultCode().succeed();
private static final CompletableResultCode FAILURE = new CompletableResultCode().fail();
public CompletableResultCode() {}
@Nullable
@GuardedBy("lock")
private Boolean succeeded = null;
@GuardedBy("lock")
private final List completionActions = new ArrayList<>();
private final Object lock = new Object();
/** Complete this {@link CompletableResultCode} successfully if it is not already completed. */
public CompletableResultCode succeed() {
synchronized (lock) {
if (succeeded == null) {
succeeded = true;
for (Runnable action : completionActions) {
action.run();
}
}
}
return this;
}
/** Complete this {@link CompletableResultCode} unsuccessfully if it is not already completed. */
public CompletableResultCode fail() {
synchronized (lock) {
if (succeeded == null) {
succeeded = false;
for (Runnable action : completionActions) {
action.run();
}
}
}
return this;
}
/**
* Obtain the current state of completion. Generally call once completion is achieved via the
* thenRun method.
*
* @return the current state of completion
*/
public boolean isSuccess() {
synchronized (lock) {
return succeeded != null && succeeded;
}
}
/**
* Perform an action on completion. Actions are guaranteed to be called only once.
*
* @param action the action to perform
* @return this completable result so that it may be further composed
*/
public CompletableResultCode whenComplete(Runnable action) {
synchronized (lock) {
if (succeeded != null) {
action.run();
} else {
this.completionActions.add(action);
}
}
return this;
}
/** Returns whether this {@link CompletableResultCode} has completed. */
public boolean isDone() {
synchronized (lock) {
return succeeded != null;
}
}
/**
* Waits for the specified amount of time for this {@link CompletableResultCode} to complete. If
* it times out or is interrupted, the {@link CompletableResultCode} is failed.
*
* @return this {@link CompletableResultCode}
*/
public CompletableResultCode join(long timeout, TimeUnit unit) {
if (isDone()) {
return this;
}
final CountDownLatch latch = new CountDownLatch(1);
whenComplete(
new Runnable() {
@Override
public void run() {
latch.countDown();
}
});
try {
if (!latch.await(timeout, unit)) {
fail();
}
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
fail();
}
return this;
}
}