org.gradle.internal.build.ExecutionResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2021 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
*
* 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 org.gradle.internal.build;
import com.google.common.collect.ImmutableList;
import org.gradle.execution.MultipleBuildFailures;
import org.gradle.internal.Cast;
import javax.annotation.Nullable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import java.util.function.Consumer;
public abstract class ExecutionResult {
private static final Success SUCCESS = new Success() {
@Override
public Void getValue() {
return null;
}
};
/**
* Returns the value, if available.
*/
public abstract T getValue();
/**
* Returns the failures in this result, or an empty list if the operation was successful.
*/
public abstract List getFailures();
/**
* Returns a single exception object that contains all failures in this result, if available.
*/
public abstract RuntimeException getFailure();
/**
* Returns a single exception object that contains all failures in this result, or null if the operation was successful.
*/
public abstract RuntimeException getFailureOrNull();
/**
* Returns the value or rethrows the failures of this result.
*/
public abstract T getValueOrRethrow();
/**
* Rethrows the failures in this result, if any, otherwise does nothing.
*/
public abstract void rethrow();
/**
* Returns a copy of this result, adding any failures from the given result object.
*/
public abstract ExecutionResult withFailures(ExecutionResult otherResult);
/**
* Casts a failed result.
*/
public abstract ExecutionResult asFailure();
public static ExecutionResult succeeded(T value) {
return new Success() {
@Override
public T getValue() {
return value;
}
};
}
public static ExecutionResult succeeded() {
return SUCCESS;
}
public static ExecutionResult maybeFailing(Runnable action) {
try {
action.run();
return SUCCESS;
} catch (Throwable t) {
return failed(t);
}
}
public static ExecutionResult failed(Throwable failure) {
return new Failure<>(ImmutableList.of(failure));
}
public static ExecutionResult maybeFailed(List extends Throwable> failures) {
if (failures.isEmpty()) {
return SUCCESS;
} else {
return new Failure<>(ImmutableList.copyOf(failures));
}
}
public static ExecutionResult maybeFailed(@Nullable Throwable failure) {
if (failure == null) {
return SUCCESS;
} else {
return new Failure<>(ImmutableList.of(failure));
}
}
/**
* Applies the given action to each item in the given collection and collects the failures.
*/
public static ExecutionResult forEach(Iterable items, Consumer super T> action) {
List failures = null;
for (T item : items) {
try {
action.accept(item);
} catch (Throwable t) {
if (failures == null) {
failures = new ArrayList<>();
}
failures.add(t);
}
}
if (failures == null) {
return succeeded();
} else {
return maybeFailed(failures);
}
}
private static abstract class Success extends ExecutionResult {
@Override
public List getFailures() {
return Collections.emptyList();
}
@Override
public ExecutionResult withFailures(ExecutionResult otherResult) {
if (otherResult.getFailures().isEmpty()) {
return this;
}
return otherResult.asFailure();
}
@Override
public T getValueOrRethrow() {
return getValue();
}
@Override
public void rethrow() {
}
@Override
public RuntimeException getFailureOrNull() {
return null;
}
@Override
public RuntimeException getFailure() {
throw new IllegalArgumentException("Cannot get the failure of a successful result.");
}
@Override
public ExecutionResult asFailure() {
throw new IllegalArgumentException("Cannot cast a successful result to a failed result.");
}
}
private static class Failure extends ExecutionResult {
private final ImmutableList failures;
public Failure(ImmutableList failures) {
this.failures = failures;
}
@Override
public T getValue() {
throw new IllegalArgumentException("Cannot get the value of a failed result.");
}
@Override
public T getValueOrRethrow() {
rethrow();
return null;
}
@Override
public List getFailures() {
return failures;
}
@Override
public RuntimeException getFailureOrNull() {
return getFailure();
}
@Override
public RuntimeException getFailure() {
if (failures.size() == 1 && failures.get(0) instanceof RuntimeException) {
return (RuntimeException) failures.get(0);
}
return new MultipleBuildFailures(failures);
}
@Override
public void rethrow() {
throw getFailure();
}
@Override
public ExecutionResult withFailures(ExecutionResult otherResult) {
if (otherResult.getFailures().isEmpty()) {
return this;
}
Set mergedFailures = new LinkedHashSet<>();
mergedFailures.addAll(failures);
mergedFailures.addAll(otherResult.getFailures());
return new Failure<>(ImmutableList.copyOf(mergedFailures));
}
@Override
public ExecutionResult asFailure() {
return Cast.uncheckedCast(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy