blob: 0b3cb1e467b813cdd4d9042e851170f8bb1556e9 [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.analysis.actions;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Iterables;
import com.google.devtools.build.lib.actions.AbstractAction;
import com.google.devtools.build.lib.actions.ActionExecutionContext;
import com.google.devtools.build.lib.actions.ActionExecutionException;
import com.google.devtools.build.lib.actions.ActionOwner;
import com.google.devtools.build.lib.actions.ActionResult;
import com.google.devtools.build.lib.actions.Artifact;
import com.google.devtools.build.lib.actions.ExecException;
import com.google.devtools.build.lib.actions.SpawnResult;
import com.google.devtools.build.lib.collect.nestedset.NestedSet;
import com.google.devtools.build.lib.events.EventHandler;
import java.io.IOException;
import javax.annotation.Nullable;
/**
* Abstract Action to write to a file.
*/
public abstract class AbstractFileWriteAction extends AbstractAction {
protected final boolean makeExecutable;
/**
* Creates a new AbstractFileWriteAction instance.
*
* @param owner the action owner.
* @param inputs the Artifacts that this Action depends on
* @param output the Artifact that will be created by executing this Action.
* @param makeExecutable iff true will change the output file to be executable.
*/
public AbstractFileWriteAction(
ActionOwner owner, NestedSet<Artifact> inputs, Artifact output, boolean makeExecutable) {
// There is only one output, and it is primary.
super(owner, inputs, ImmutableSet.of(output));
this.makeExecutable = makeExecutable;
}
public boolean makeExecutable() {
return makeExecutable;
}
@Override
public final ActionResult execute(ActionExecutionContext actionExecutionContext)
throws ActionExecutionException, InterruptedException {
try {
DeterministicWriter deterministicWriter = newDeterministicWriter(actionExecutionContext);
FileWriteActionContext context =
actionExecutionContext.getContext(FileWriteActionContext.class);
ImmutableList<SpawnResult> result =
context.writeOutputToFile(
this, actionExecutionContext, deterministicWriter, makeExecutable, isRemotable());
afterWrite(actionExecutionContext);
return ActionResult.create(result);
} catch (ExecException e) {
throw ActionExecutionException.fromExecException(e, this);
}
}
/**
* Produce a DeterministicWriter that can write the file to an OutputStream deterministically.
*
* @param ctx context for use with creating the writer.
*/
public abstract DeterministicWriter newDeterministicWriter(ActionExecutionContext ctx)
throws InterruptedException, ExecException;
/**
* This hook is called after the File has been successfully written to disk.
*
* @param actionExecutionContext the execution context
*/
protected void afterWrite(ActionExecutionContext actionExecutionContext) {
}
@Override
public String getMnemonic() {
return "FileWrite";
}
@Override
protected String getRawProgressMessage() {
return (makeExecutable ? "Writing script " : "Writing file ")
+ Iterables.getOnlyElement(getOutputs()).prettyPrint();
}
/**
* Whether the file write can be generated remotely. If the file is consumed in Blaze
* unconditionally, it doesn't make sense to run remotely.
*/
public boolean isRemotable() {
return true;
}
/**
* This interface is used to get the contents of the file to output to aquery when using
* --include_file_write_contents.
*/
public interface FileContentsProvider {
String getFileContents(@Nullable EventHandler eventHandler) throws IOException;
public boolean makeExecutable();
}
@Override
public ImmutableMap<String, String> getExecProperties() {
return ImmutableMap.of();
}
}