blob: 6dd965e160ac8f1edff74fb5cadff286429c0fd4 [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.skyframe;
import com.google.auto.value.AutoValue;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableSet;
import com.google.devtools.build.lib.analysis.config.ToolchainTypeRequirement;
import com.google.devtools.build.lib.cmdline.Label;
import com.google.devtools.build.skyframe.SkyFunctionName;
import com.google.devtools.build.skyframe.SkyKey;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import java.util.Optional;
/**
* {@link SkyKey} implementation used for {@link ToolchainResolutionFunction} to produce {@link
* UnloadedToolchainContextImpl} instances.
*/
@AutoValue
public abstract class ToolchainContextKey implements SkyKey {
/** Returns a new {@link Builder}. */
public static Builder key() {
return new AutoValue_ToolchainContextKey.Builder()
.toolchainTypes(ImmutableSet.of())
.execConstraintLabels(ImmutableSet.of())
.forceExecutionPlatform(Optional.empty())
.debugTarget(false);
}
@Override
public SkyFunctionName functionName() {
return SkyFunctions.TOOLCHAIN_RESOLUTION;
}
abstract BuildConfigurationKey configurationKey();
abstract ImmutableSet<ToolchainTypeRequirement> toolchainTypes();
abstract ImmutableSet<Label> execConstraintLabels();
abstract Optional<Label> forceExecutionPlatform();
abstract boolean debugTarget();
/** Builder for {@link ToolchainContextKey}. */
@AutoValue.Builder
public interface Builder {
Builder configurationKey(BuildConfigurationKey key);
Builder toolchainTypes(ImmutableSet<ToolchainTypeRequirement> toolchainTypes);
@CanIgnoreReturnValue
default Builder toolchainTypes(ToolchainTypeRequirement... toolchainTypes) {
return this.toolchainTypes(ImmutableSet.copyOf(toolchainTypes));
}
Builder execConstraintLabels(ImmutableSet<Label> execConstraintLabels);
Builder execConstraintLabels(Label... execConstraintLabels);
Builder debugTarget(boolean flag);
@CanIgnoreReturnValue
default Builder debugTarget() {
return this.debugTarget(true);
}
ToolchainContextKey build();
Builder forceExecutionPlatform(Optional<Label> execPlatform);
@CanIgnoreReturnValue
default Builder forceExecutionPlatform(Label execPlatform) {
Preconditions.checkNotNull(execPlatform);
return forceExecutionPlatform(Optional.of(execPlatform));
}
}
}