blob: 5ec7728b53c89f0b97340a627888b5b4fabce27c [file] [log] [blame]
// Copyright 2018 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.query2.aquery;
import com.google.devtools.build.lib.actions.CommandLineExpansionException;
import com.google.devtools.build.lib.analysis.configuredtargets.RuleConfiguredTarget;
import com.google.devtools.build.lib.events.ExtendedEventHandler;
import com.google.devtools.build.lib.query2.engine.QueryEnvironment.TargetAccessor;
import com.google.devtools.build.lib.skyframe.AspectValue;
import com.google.devtools.build.lib.skyframe.ConfiguredTargetValue;
import com.google.devtools.build.lib.skyframe.SkyframeExecutor;
import com.google.devtools.build.lib.skyframe.actiongraph.v2.ActionGraphDump;
import com.google.devtools.build.lib.skyframe.actiongraph.v2.AqueryOutputHandler;
import com.google.devtools.build.lib.skyframe.actiongraph.v2.AqueryOutputHandler.OutputType;
import com.google.devtools.build.lib.skyframe.actiongraph.v2.MonolithicOutputHandler;
import com.google.devtools.build.lib.skyframe.actiongraph.v2.StreamedOutputHandler;
import com.google.protobuf.CodedOutputStream;
import java.io.IOException;
import java.io.OutputStream;
/** Default output callback for aquery, prints proto output. */
public class ActionGraphProtoV2OutputFormatterCallback extends AqueryThreadsafeCallback {
private final OutputType outputType;
private final ActionGraphDump actionGraphDump;
private final AqueryActionFilter actionFilters;
private AqueryOutputHandler aqueryOutputHandler;
/**
* Pseudo-arbitrarily chosen buffer size for output. Chosen to be large enough to fit a handful of
* messages without needing to flush to the underlying output, which may not be buffered.
*/
private static final int OUTPUT_BUFFER_SIZE = 16384;
ActionGraphProtoV2OutputFormatterCallback(
ExtendedEventHandler eventHandler,
AqueryOptions options,
OutputStream out,
SkyframeExecutor skyframeExecutor,
TargetAccessor<ConfiguredTargetValue> accessor,
OutputType outputType,
AqueryActionFilter actionFilters) {
super(eventHandler, options, out, skyframeExecutor, accessor);
this.outputType = outputType;
this.actionFilters = actionFilters;
switch (outputType) {
case BINARY:
case TEXT:
this.aqueryOutputHandler =
new StreamedOutputHandler(
this.outputType,
CodedOutputStream.newInstance(out, OUTPUT_BUFFER_SIZE),
this.printStream);
break;
case JSON:
this.aqueryOutputHandler = new MonolithicOutputHandler(this.printStream);
break;
}
this.actionGraphDump =
new ActionGraphDump(
options.includeCommandline,
options.includeArtifacts,
this.actionFilters,
options.includeParamFiles,
aqueryOutputHandler);
}
@Override
public String getName() {
return outputType.formatName();
}
@Override
public void processOutput(Iterable<ConfiguredTargetValue> partialResult)
throws IOException, InterruptedException {
try {
// Enabling includeParamFiles should enable includeCommandline by default.
options.includeCommandline |= options.includeParamFiles;
for (ConfiguredTargetValue configuredTargetValue : partialResult) {
actionGraphDump.dumpConfiguredTarget(configuredTargetValue);
if (options.useAspects) {
if (configuredTargetValue.getConfiguredTarget() instanceof RuleConfiguredTarget) {
for (AspectValue aspectValue : accessor.getAspectValues(configuredTargetValue)) {
actionGraphDump.dumpAspect(aspectValue, configuredTargetValue);
}
}
}
}
} catch (CommandLineExpansionException e) {
throw new IOException(e.getMessage());
}
}
@Override
public void close(boolean failFast) throws IOException {
if (!failFast) {
aqueryOutputHandler.close();
}
}
}