aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/actions/BuildFailedException.java
blob: 088ba60948f6b75d9d23bc26d07c27dbf308b778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright 2014 Google Inc. 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.concurrent.ThreadSafety.ThreadSafe;
import com.google.devtools.build.lib.syntax.Label;

/**
 * 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.)
 */
@ThreadSafe
public class BuildFailedException extends Exception {
  private final boolean catastrophic;
  private final Action action;
  private final Iterable<Label> rootCauses;
  private final boolean errorAlreadyShown;

  public BuildFailedException() {
    this(null);
  }

  public BuildFailedException(String message) {
    this(message, false, null, ImmutableList.<Label>of());
  }

  public BuildFailedException(String message, boolean catastrophic) {
    this(message, catastrophic, null, ImmutableList.<Label>of());
  }

  public BuildFailedException(String message, boolean catastrophic,
      Action action, Iterable<Label> rootCauses) {
    this(message, catastrophic, action, rootCauses, false);
  }

  public BuildFailedException(String message, boolean catastrophic,
      Action action, Iterable<Label> rootCauses, boolean errorAlreadyShown) {
    super(message);
    this.catastrophic = catastrophic;
    this.rootCauses = ImmutableList.copyOf(rootCauses);
    this.action = action;
    this.errorAlreadyShown = errorAlreadyShown;
  }

  public boolean isCatastrophic() {
    return catastrophic;
  }

  public Action getAction() {
    return action;
  }

  public Iterable<Label> getRootCauses() {
    return rootCauses;
  }

  public boolean isErrorAlreadyShown() {
    return errorAlreadyShown || getMessage() == null;
  }
}