blob: fd3e639681ad17322ea5df084dc7cfa0b5fab54e [file] [log] [blame]
/*
* Copyright 2012-present Facebook, Inc.
*
* 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.facebook.buck.step;
import com.facebook.buck.model.BuildTarget;
import com.facebook.buck.util.CapturingPrintStream;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Charsets;
import com.google.common.base.Optional;
@SuppressWarnings("serial")
public class StepFailedException extends Exception {
private final Step step;
private final int exitCode;
/** Callers should use {@link #createForFailingStepWithExitCode} unless in a unit test. */
@VisibleForTesting
public StepFailedException(String message, Step step, int exitCode) {
super(message);
this.step = step;
this.exitCode = exitCode;
}
static StepFailedException createForFailingStepWithExitCode(Step step,
ExecutionContext context,
int exitCode,
Optional<BuildTarget> buildTarget) {
String nameOrDescription = context.getVerbosity().shouldPrintCommand()
? step.getDescription(context)
: step.getShortName();
String message;
if (buildTarget.isPresent()) {
message = String.format("%s failed with exit code %d:\n%s",
buildTarget.get().getFullyQualifiedName(),
exitCode,
nameOrDescription);
} else {
message = String.format("Failed with exit code %d:\n%s",
exitCode,
nameOrDescription);
}
return new StepFailedException(message, step, exitCode);
}
static StepFailedException createForFailingStepWithException(Step step,
Throwable throwable,
Optional<BuildTarget> buildTarget) {
CapturingPrintStream printStream = new CapturingPrintStream();
throwable.printStackTrace(printStream);
String stackTrace = printStream.getContentsAsString(Charsets.UTF_8);
String message;
if (buildTarget.isPresent()) {
message = String.format("%s failed on step %s with an exception:\n%s\n%s",
buildTarget.get().getFullyQualifiedName(),
step.getShortName(),
throwable.getMessage(),
stackTrace);
} else {
message = String.format("Failed on step %s with an exception:\n%s\n%s",
step.getShortName(),
throwable.getMessage(),
stackTrace);
}
return new StepFailedException(message, step, 1);
}
public Step getStep() {
return step;
}
public int getExitCode() {
return exitCode;
}
}