blob: b5236a2e90756044b38cbe482a7f4f77126af38d [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.bazel.rules;
import com.google.common.collect.ImmutableList;
import com.google.devtools.build.lib.analysis.actions.FileWriteActionContext;
import com.google.devtools.build.lib.analysis.actions.TemplateExpansionContext;
import com.google.devtools.build.lib.buildtool.BuildRequest;
import com.google.devtools.build.lib.exec.ExecutionOptions;
import com.google.devtools.build.lib.exec.ExecutorBuilder;
import com.google.devtools.build.lib.exec.SpawnCache;
import com.google.devtools.build.lib.rules.android.WriteAdbArgsActionContext;
import com.google.devtools.build.lib.rules.cpp.CppCompileActionContext;
import com.google.devtools.build.lib.rules.cpp.CppIncludeExtractionContext;
import com.google.devtools.build.lib.rules.cpp.CppIncludeScanningContext;
import com.google.devtools.build.lib.runtime.BlazeModule;
import com.google.devtools.build.lib.runtime.Command;
import com.google.devtools.build.lib.runtime.CommandEnvironment;
import com.google.devtools.build.lib.util.RegexFilter;
import com.google.devtools.common.options.OptionsBase;
import java.util.Map;
/** Module which registers the strategy options for Bazel. */
public class BazelStrategyModule extends BlazeModule {
@Override
public Iterable<Class<? extends OptionsBase>> getCommandOptions(Command command) {
return "build".equals(command.name())
? ImmutableList.of(ExecutionOptions.class)
: ImmutableList.of();
}
@Override
public void executorInit(CommandEnvironment env, BuildRequest request, ExecutorBuilder builder) {
builder.addActionContext(new WriteAdbArgsActionContext(env.getClientEnv().get("HOME")));
ExecutionOptions options = env.getOptions().getOptions(ExecutionOptions.class);
// Default strategies for certain mnemonics - they can be overridden by --strategy= flags.
builder.addStrategyByMnemonic("Javac", "worker");
builder.addStrategyByMnemonic("Closure", "worker");
builder.addStrategyByMnemonic("DexBuilder", "worker");
// Allow genrule_strategy to also be overridden by --strategy= flags.
builder.addStrategyByMnemonic("Genrule", options.genruleStrategy);
for (Map.Entry<String, String> strategy : options.strategy) {
String strategyName = strategy.getValue();
// TODO(philwo) - remove this when the standalone / local mess is cleaned up.
// Some flag expansions use "local" as the strategy name, but the strategy is now called
// "standalone", so we'll translate it here.
if (strategyName.equals("local")) {
strategyName = "standalone";
}
builder.addStrategyByMnemonic(strategy.getKey(), strategyName);
}
builder.addStrategyByMnemonic("", options.spawnStrategy);
for (Map.Entry<RegexFilter, String> entry : options.strategyByRegexp) {
builder.addStrategyByRegexp(entry.getKey(), entry.getValue());
}
builder
.addStrategyByContext(CppCompileActionContext.class, "")
.addStrategyByContext(CppIncludeExtractionContext.class, "")
.addStrategyByContext(CppIncludeScanningContext.class, "")
.addStrategyByContext(FileWriteActionContext.class, "")
.addStrategyByContext(TemplateExpansionContext.class, "")
.addStrategyByContext(WriteAdbArgsActionContext.class, "")
.addStrategyByContext(SpawnCache.class, "");
}
}