blob: 4c0b79a0b563842d6210ea3a83aea64c587093d3 [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.skyframe;
import com.google.auto.value.AutoValue;
import java.time.Duration;
/**
* Event signaling the end of the execution phase. Contains statistics about the action cache, the
* metadata cache and about last file save times.
*/
@AutoValue
public abstract class ExecutionFinishedEvent {
public static final ExecutionFinishedEvent EMPTY =
builder()
.setOutputDirtyFiles(0)
.setOutputModifiedFilesDuringPreviousBuild(0)
.setSourceDiffCheckingDuration(Duration.ZERO)
.setNumSourceFilesCheckedBecauseOfMissingDiffs(0)
.setOutputTreeDiffCheckingDuration(Duration.ZERO)
.build();
public abstract int outputDirtyFiles();
public abstract int outputModifiedFilesDuringPreviousBuild();
public abstract Duration sourceDiffCheckingDuration();
public abstract int numSourceFilesCheckedBecauseOfMissingDiffs();
public abstract Duration outputTreeDiffCheckingDuration();
static Builder builder() {
return new AutoValue_ExecutionFinishedEvent.Builder();
}
@AutoValue.Builder
abstract static class Builder {
abstract Builder setOutputDirtyFiles(int outputDirtyFiles);
abstract Builder setOutputModifiedFilesDuringPreviousBuild(
int outputModifiedFilesDuringPreviousBuild);
abstract Builder setSourceDiffCheckingDuration(Duration sourceDiffCheckingDuration);
abstract Builder setNumSourceFilesCheckedBecauseOfMissingDiffs(
int numSourceFilesCheckedBecauseOfMissingDiffs);
abstract Builder setOutputTreeDiffCheckingDuration(Duration outputTreeDiffCheckingDuration);
abstract ExecutionFinishedEvent build();
}
}