blob: 0ac85307770a8dae2b54c0b09cafe14556962d6a [file] [log] [blame]
// Copyright 2014 The Bazel Authors. All rights reserved.
//
// 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 com.google.devtools.build.lib.actions;
import com.google.common.collect.ImmutableList;
import com.google.devtools.build.lib.causes.Cause;
import com.google.devtools.build.lib.concurrent.ThreadSafety.ThreadSafe;
import com.google.devtools.build.lib.util.ExitCode;
import javax.annotation.Nullable;
/**
* This exception gets thrown if there were errors during the execution phase of
* the build.
*
* <p>The argument to the constructor may be null if the thrower has already
* printed an error message; in this case, no error message should be printed by
* the catcher. (Typically, this happens when the builder is unsuccessful and
* {@code --keep_going} was specified. This error corresponds to one or more
* actions failing, but since those actions' failures will be reported
* separately, the exception carries no message and is just used for control
* flow.)
*
* <p>This exception typically leads to Bazel termination with exit code
* {@link ExitCode#BUILD_FAILURE}. However, if a more specific exit code is
* appropriate, it can be propagated by specifying the exit code to the
* constructor.
*/
@ThreadSafe
public class BuildFailedException extends Exception {
private final boolean catastrophic;
private final Action action;
private final Iterable<Cause> rootCauses;
private final boolean errorAlreadyShown;
@Nullable private final ExitCode exitCode;
public BuildFailedException() {
this(null);
}
public BuildFailedException(String message) {
this(message, false, null, ImmutableList.<Cause>of());
}
public BuildFailedException(String message, ExitCode exitCode) {
this(message, false, null, ImmutableList.<Cause>of(), false, exitCode);
}
public BuildFailedException(String message, boolean catastrophic) {
this(message, catastrophic, null, ImmutableList.<Cause>of());
}
public BuildFailedException(
String message, boolean catastrophic, Action action, Iterable<Cause> rootCauses) {
this(message, catastrophic, action, rootCauses, false);
}
public BuildFailedException(
String message,
boolean catastrophic,
Action action,
Iterable<Cause> rootCauses,
boolean errorAlreadyShown) {
this(message, catastrophic, action, rootCauses, errorAlreadyShown, null);
}
public BuildFailedException(
String message,
boolean catastrophic,
Action action,
Iterable<Cause> rootCauses,
boolean errorAlreadyShown,
ExitCode exitCode) {
super(message);
this.catastrophic = catastrophic;
this.rootCauses = ImmutableList.copyOf(rootCauses);
this.action = action;
this.errorAlreadyShown = errorAlreadyShown;
this.exitCode = exitCode;
}
public boolean isCatastrophic() {
return catastrophic;
}
public Action getAction() {
return action;
}
public Iterable<Cause> getRootCauses() {
return rootCauses;
}
public boolean isErrorAlreadyShown() {
return errorAlreadyShown || getMessage() == null;
}
@Nullable public ExitCode getExitCode() {
return exitCode;
}
}