blob: d9db7e4a0068b01a2384f4877f2e795f203176d2 [file] [log] [blame]
// Copyright 2016 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.ImmutableMap;
import com.google.common.collect.ImmutableMultimap;
import com.google.common.collect.Multimap;
import com.google.devtools.build.lib.actions.ActionContextConsumer;
import com.google.devtools.build.lib.actions.Executor.ActionContext;
import com.google.devtools.build.lib.analysis.actions.FileWriteActionContext;
import com.google.devtools.build.lib.bazel.rules.BazelRulesModule.BazelExecutionOptions;
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.CppLinkActionContext;
import com.google.devtools.build.lib.rules.cpp.IncludeScanningContext;
import java.util.Map;
import java.util.TreeMap;
/**
* An object describing the {@link ActionContext} implementation that some actions require in Bazel.
*/
public class BazelActionContextConsumer implements ActionContextConsumer {
private final BazelExecutionOptions options;
protected BazelActionContextConsumer(BazelExecutionOptions options) {
this.options = options;
}
@Override
public ImmutableMap<String, String> getSpawnActionContexts() {
Map<String, String> contexts = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
// Default strategies for certain mnemonics - they can be overridden by --strategy= flags.
contexts.put("Javac", "worker");
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";
}
contexts.put(strategy.getKey(), strategyName);
}
if (!options.genruleStrategy.isEmpty()) {
contexts.put("Genrule", options.genruleStrategy);
}
// TODO(bazel-team): put this in getActionContexts (key=SpawnActionContext.class) instead
if (!options.spawnStrategy.isEmpty()) {
contexts.put("", options.spawnStrategy);
}
return ImmutableMap.copyOf(contexts);
}
@Override
public Multimap<Class<? extends ActionContext>, String> getActionContexts() {
return ImmutableMultimap.<Class<? extends ActionContext>, String>builder()
.put(CppCompileActionContext.class, "")
.put(CppLinkActionContext.class, "")
.put(IncludeScanningContext.class, "")
.put(FileWriteActionContext.class, "")
.put(WriteAdbArgsActionContext.class, "")
.build();
}
}