blob: e20a526c16858a9ade3aad4073a272ee86121fd7 [file] [log] [blame]
// Copyright 2026 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.common.collect.Collections2;
import com.google.common.collect.ImmutableSortedMap;
import com.google.devtools.build.lib.skyframe.serialization.VisibleForSerialization;
import com.google.devtools.build.lib.skyframe.serialization.autocodec.AutoCodec;
import com.google.devtools.build.skyframe.AbstractSkyKey;
import com.google.devtools.build.skyframe.SkyFunction;
import com.google.devtools.build.skyframe.SkyFunctionName;
import com.google.devtools.build.skyframe.SkyKey;
import com.google.devtools.build.skyframe.SkyValue;
import com.google.devtools.build.skyframe.SkyframeLookupResult;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import javax.annotation.Nullable;
/**
* Skyframe function that provides the effective value for an environment variable in the context of
* repository rules and module extensions. This will be the value from the repo environment as
* provided by {@link com.google.devtools.build.lib.runtime.CommandEnvironment#getRepoEnv()}.
*/
public final class RepoEnvironmentFunction implements SkyFunction {
@Override
public SkyValue compute(SkyKey skyKey, Environment env) throws InterruptedException {
Map<String, String> repoEnv = PrecomputedValue.REPO_ENV.get(env);
String key = (String) skyKey.argument();
return new EnvironmentVariableValue(repoEnv.get(key));
}
/** Returns the SkyKey to invoke this function for the environment variable {@code variable}. */
public static Key key(String variable) {
return Key.create(variable);
}
@VisibleForSerialization
@AutoCodec
static class Key extends AbstractSkyKey<String> {
private static final SkyKeyInterner<Key> interner = SkyKey.newInterner();
private Key(String arg) {
super(arg);
}
private static Key create(String arg) {
return interner.intern(new Key(arg));
}
@VisibleForSerialization
@AutoCodec.Interner
static Key intern(Key key) {
return interner.intern(key);
}
@Override
public SkyFunctionName functionName() {
return SkyFunctions.REPOSITORY_ENVIRONMENT_VARIABLE;
}
@Override
public SkyKeyInterner<Key> getSkyKeyInterner() {
return interner;
}
}
/**
* Returns a map of environment variable key => values, getting them from Skyframe. Returns null
* if and only if some dependencies from Skyframe still need to be resolved.
*/
@Nullable
public static ImmutableSortedMap<String, Optional<String>> getEnvironmentView(
Environment env, Set<String> keys) throws InterruptedException {
var skyKeys = Collections2.transform(keys, RepoEnvironmentFunction::key);
SkyframeLookupResult values = env.getValuesAndExceptions(skyKeys);
if (env.valuesMissing()) {
return null;
}
var result = ImmutableSortedMap.<String, Optional<String>>naturalOrder();
for (var key : skyKeys) {
var value = (EnvironmentVariableValue) values.get(key);
if (value == null) {
return null;
}
result.put(key.argument().toString(), Optional.ofNullable(value.value()));
}
return result.buildOrThrow();
}
}