
org.gradle.launcher.exec.BuildActionResult 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 2018 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.launcher.exec;
import org.gradle.tooling.internal.provider.serialization.SerializedPayload;
import javax.annotation.Nullable;
/**
* Encapsulates either a result object, or a failure as an exception or a serialized exception.
*
* Exceptions should always be serialized, but currently are not when the failure happens outside the context of a build invocation because the serialization infrastructure is currently tied to some build scoped services.
*/
public class BuildActionResult {
private final SerializedPayload result;
private final SerializedPayload serializedFailure;
private final RuntimeException failure;
private final boolean wasCancelled;
private BuildActionResult(SerializedPayload result, SerializedPayload serializedFailure, RuntimeException failure, boolean wasCancelled) {
this.result = result;
this.serializedFailure = serializedFailure;
this.failure = failure;
this.wasCancelled = wasCancelled;
}
public static BuildActionResult of(@Nullable SerializedPayload result) {
return new BuildActionResult(result, null, null, false);
}
public static BuildActionResult failed(SerializedPayload failure) {
return new BuildActionResult(null, failure, null, false);
}
public static BuildActionResult failed(RuntimeException failure) {
return new BuildActionResult(null, null, failure, false);
}
public static BuildActionResult cancelled(SerializedPayload failure) {
return new BuildActionResult(null, failure, null, true);
}
public static BuildActionResult cancelled(RuntimeException failure) {
return new BuildActionResult(null, null, failure, true);
}
public static BuildActionResult failed(boolean wasCancelled, @Nullable SerializedPayload failure, @Nullable RuntimeException exception) {
return new BuildActionResult(null, failure, exception, wasCancelled);
}
/**
* True when the build failed and was cancelled.
*/
public boolean wasCancelled() {
return wasCancelled;
}
@Nullable
public SerializedPayload getResult() {
return result;
}
@Nullable
public SerializedPayload getFailure() {
return serializedFailure;
}
@Nullable
public RuntimeException getException() {
return failure;
}
public boolean hasFailure() {
return failure != null || serializedFailure != null;
}
public void rethrow() {
if (failure != null) {
throw failure;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy