blob: 9249b8efa464346072406df49b387dfcd0cad617 [file] [log] [blame]
/*
* Copyright 2013-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.plugin.intellij.commands.event;
import com.facebook.buck.plugin.intellij.ui.ProgressNode;
import com.google.common.base.Preconditions;
public class RuleEnd extends Event {
private final String name;
private final String status;
private final boolean cached;
RuleEnd(int timestamp, String buildId, int threadId, String name, String status, boolean cached) {
super(EventFactory.RULE_END, timestamp, buildId, threadId);
this.name = Preconditions.checkNotNull(name);
this.status = Preconditions.checkNotNull(status);
this.cached = Preconditions.checkNotNull(cached);
}
public String getName() {
return name;
}
public String getStatus() {
return status;
}
public boolean isSuccessful() {
return status.equals("SUCCESS");
}
public boolean isCached() {
return cached;
}
public void updateTreeNode(ProgressNode node) {
if (isSuccessful()) {
node.setType(isCached() ? ProgressNode.Type.BUILT_CACHED : ProgressNode.Type.BUILT);
} else {
node.setType(ProgressNode.Type.BUILD_ERROR);
}
node.setName(String.format("[%s ms] %s %s",
getTimestamp() - node.getEvent().getTimestamp(),
getName(),
isCached() ? "(From cache)" : ""));
}
}