blob: 520a0cf17a4ad5a935d708c74e7d5dc1b42bfd1a [file] [log] [blame]
// Copyright 2020 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.util;
import com.google.devtools.build.lib.server.FailureDetails.FailureDetail;
import javax.annotation.Nullable;
/** An {@link ExitCode} and an optional {@link FailureDetail}. */
public class DetailedExitCode {
private final ExitCode exitCode;
@Nullable private final FailureDetail failureDetail;
private DetailedExitCode(ExitCode exitCode, @Nullable FailureDetail failureDetail) {
this.exitCode = exitCode;
this.failureDetail = failureDetail;
}
public ExitCode getExitCode() {
return exitCode;
}
@Nullable
public FailureDetail getFailureDetail() {
return failureDetail;
}
public static DetailedExitCode justExitCode(ExitCode exitCode) {
return new DetailedExitCode(exitCode, null);
}
/**
* Returns a {@link DetailedExitCode} whose {@link ExitCode} is chosen referencing {@link
* FailureDetail}'s metadata.
*/
public static DetailedExitCode of(FailureDetail failureDetail) {
return new DetailedExitCode(FailureDetailUtil.getExitCode(failureDetail), failureDetail);
}
@Override
public String toString() {
return String.format(
"DetailedExitCode{exitCode=%s, failureDetail=%s}", exitCode, failureDetail);
}
}