blob: 1062675c4f2e69cba6c110305db0dacea60698e0 [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.cmdline.Label;
import com.google.devtools.build.skyframe.SkyFunctionName;
import com.google.devtools.build.skyframe.SkyKey;
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()
.requiredToolchainTypeLabels(ImmutableSet.of())
.execConstraintLabels(ImmutableSet.of())
.forceExecutionPlatform(Optional.empty());
}
@Override
public SkyFunctionName functionName() {
return SkyFunctions.TOOLCHAIN_RESOLUTION;
}
abstract BuildConfigurationValue.Key configurationKey();
abstract ImmutableSet<Label> requiredToolchainTypeLabels();
abstract ImmutableSet<Label> execConstraintLabels();
abstract Optional<Label> forceExecutionPlatform();
/** Builder for {@link ToolchainContextKey}. */
@AutoValue.Builder
public interface Builder {
Builder configurationKey(BuildConfigurationValue.Key key);
Builder requiredToolchainTypeLabels(ImmutableSet<Label> requiredToolchainTypeLabels);
Builder requiredToolchainTypeLabels(Label... requiredToolchainTypeLabels);
Builder execConstraintLabels(ImmutableSet<Label> execConstraintLabels);
Builder execConstraintLabels(Label... execConstraintLabels);
ToolchainContextKey build();
Builder forceExecutionPlatform(Optional<Label> execPlatform);
default Builder forceExecutionPlatform(Label execPlatform) {
Preconditions.checkNotNull(execPlatform);
return forceExecutionPlatform(Optional.of(execPlatform));
}
}
}