blob: f78b1b5ca1aa8180b25d8c52ce3e432547bfb125 [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.skyframe;
import com.google.common.base.MoreObjects;
import com.google.common.base.Preconditions;
import com.google.common.base.Predicates;
import com.google.common.base.Throwables;
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.common.flogger.GoogleLogger;
import com.google.devtools.build.lib.actions.InconsistentFilesystemException;
import com.google.devtools.build.lib.cmdline.Label;
import com.google.devtools.build.lib.cmdline.LabelConstants;
import com.google.devtools.build.lib.cmdline.LabelSyntaxException;
import com.google.devtools.build.lib.cmdline.PackageIdentifier;
import com.google.devtools.build.lib.cmdline.RepositoryName;
import com.google.devtools.build.lib.concurrent.BlazeInterners;
import com.google.devtools.build.lib.events.Event;
import com.google.devtools.build.lib.events.EventHandler;
import com.google.devtools.build.lib.events.ExtendedEventHandler.Postable;
import com.google.devtools.build.lib.events.StoredEventHandler;
import com.google.devtools.build.lib.packages.BazelModuleContext;
import com.google.devtools.build.lib.packages.BuildFileNotFoundException;
import com.google.devtools.build.lib.packages.PackageFactory;
import com.google.devtools.build.lib.packages.RuleClassProvider;
import com.google.devtools.build.lib.packages.StarlarkExportable;
import com.google.devtools.build.lib.packages.WorkspaceFileValue;
import com.google.devtools.build.lib.syntax.EvalException;
import com.google.devtools.build.lib.syntax.EvalUtils;
import com.google.devtools.build.lib.syntax.LoadStatement;
import com.google.devtools.build.lib.syntax.Location;
import com.google.devtools.build.lib.syntax.Module;
import com.google.devtools.build.lib.syntax.Mutability;
import com.google.devtools.build.lib.syntax.StarlarkFile;
import com.google.devtools.build.lib.syntax.StarlarkSemantics;
import com.google.devtools.build.lib.syntax.StarlarkThread;
import com.google.devtools.build.lib.syntax.Statement;
import com.google.devtools.build.lib.util.Fingerprint;
import com.google.devtools.build.lib.util.Pair;
import com.google.devtools.build.lib.vfs.DigestHashFunction;
import com.google.devtools.build.lib.vfs.PathFragment;
import com.google.devtools.build.skyframe.RecordingSkyFunctionEnvironment;
import com.google.devtools.build.skyframe.SkyFunction;
import com.google.devtools.build.skyframe.SkyFunctionException;
import com.google.devtools.build.skyframe.SkyFunctionException.Transience;
import com.google.devtools.build.skyframe.SkyKey;
import com.google.devtools.build.skyframe.SkyValue;
import com.google.devtools.build.skyframe.ValueOrException;
import java.util.HashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.function.Consumer;
import javax.annotation.Nullable;
/**
* A Skyframe function to look up and load a single .bzl module.
*
* <p>Given a {@link Label} referencing a .bzl file, attempts to locate the file and load it. The
* Label must be absolute, and must not reference the special {@code external} package. If loading
* is successful, returns a {@link BzlLoadValue} that encapsulates the loaded {@link Module} and its
* transitive digest and {@link StarlarkFileDependency} information. If loading is unsuccessful,
* throws a {@link BzlLoadFunctionException} that encapsulates the cause of the failure.
*
* <p>This Skyframe function supports a special "inlining" mode in which all (indirectly) recursive
* calls to {@code BzlLoadFunction} are made in the same thread rather than through Skyframe. The
* inlining mode's entry point is {@link #computeInline}; see that method for more details. Note
* that it may only be called on an instance of this Skyfunction created by {@link
* #createForInlining}.
*/
public class BzlLoadFunction implements SkyFunction {
// Creates the BazelStarlarkContext and populates the predeclared .bzl symbols.
private final RuleClassProvider ruleClassProvider;
// Only used to retrieve the "native" object.
private final PackageFactory packageFactory;
// Handles retrieving ASTFileLookupValues, either by calling Skyframe or by inlining
// ASTFileLookupFunction; the latter is not to be confused with inlining of BzlLoadFunction. See
// comment in create() for rationale.
private final ASTManager astManager;
// Handles inlining of BzlLoadFunction calls.
@Nullable private final CachedBzlLoadDataManager cachedBzlLoadDataManager;
private static final GoogleLogger logger = GoogleLogger.forEnclosingClass();
private BzlLoadFunction(
RuleClassProvider ruleClassProvider,
PackageFactory packageFactory,
ASTManager astManager,
@Nullable CachedBzlLoadDataManager cachedBzlLoadDataManager) {
this.ruleClassProvider = ruleClassProvider;
this.packageFactory = packageFactory;
this.astManager = astManager;
this.cachedBzlLoadDataManager = cachedBzlLoadDataManager;
}
public static BzlLoadFunction create(
RuleClassProvider ruleClassProvider,
PackageFactory packageFactory,
DigestHashFunction digestHashFunction,
Cache<Label, ASTFileLookupValue> astFileLookupValueCache) {
return new BzlLoadFunction(
ruleClassProvider,
packageFactory,
// When we are not inlining BzlLoadValue nodes, there is no need to have separate
// ASTFileLookupValue nodes for bzl files. Instead we inline ASTFileLookupFunction for a
// strict memory win, at a small code complexity cost.
//
// Detailed explanation:
// (1) The ASTFileLookupValue node for a bzl file is used only for the computation of
// that file's BzlLoadValue node. So there's no concern about duplicate work that would
// otherwise get deduped by Skyframe.
// (2) ASTFileLookupValue doesn't have an interesting equality relation, so we have no
// hope of getting any interesting change-pruning of ASTFileLookupValue nodes. If we
// had an interesting equality relation that was e.g. able to ignore benign
// whitespace, then there would be a hypothetical benefit to having separate
// ASTFileLookupValue nodes (e.g. on incremental builds we'd be able to not re-execute
// top-level code in bzl files if the file were reparsed to an equivalent AST).
// (3) A ASTFileLookupValue node lets us avoid redoing work on a BzlLoadFunction Skyframe
// restart, but we can also achieve that result ourselves with a cache that persists between
// Skyframe restarts.
//
// Therefore, ASTFileLookupValue nodes are wasteful from two perspectives:
// (a) ASTFileLookupValue contains a StarlarkFile, and that business object is really
// just a temporary thing for bzl execution. Retaining it forever is pure waste.
// (b) The memory overhead of the extra Skyframe node and edge per bzl file is pure
// waste.
new InliningAndCachingASTManager(
ruleClassProvider, digestHashFunction, astFileLookupValueCache),
/*cachedBzlLoadDataManager=*/ null);
}
public static BzlLoadFunction createForInlining(
RuleClassProvider ruleClassProvider,
PackageFactory packageFactory,
int bzlLoadValueCacheSize) {
return new BzlLoadFunction(
ruleClassProvider,
packageFactory,
// When we are inlining BzlLoadValue nodes, then we want to have explicit ASTFileLookupValue
// nodes, since now (1) in the comment above doesn't hold. This way we read and parse each
// needed bzl file at most once total globally, rather than once per need (in the worst-case
// of a BzlLoadValue inlining cache miss). This is important in the situation where a bzl
// file is loaded by a lot of other bzl files or BUILD files.
RegularSkyframeASTManager.INSTANCE,
new CachedBzlLoadDataManager(bzlLoadValueCacheSize));
}
@Override
@Nullable
public SkyValue compute(SkyKey skyKey, Environment env)
throws SkyFunctionException, InterruptedException {
BzlLoadValue.Key key = (BzlLoadValue.Key) skyKey.argument();
try {
return computeInternal(key, env, /*inliningState=*/ null);
} catch (InconsistentFilesystemException e) {
throw new BzlLoadFunctionException(e, Transience.PERSISTENT);
} catch (BzlLoadFailedException e) {
throw new BzlLoadFunctionException(e);
}
}
/**
* Entry point for computing "inline", without any direct or indirect Skyframe calls back into
* {@link BzlLoadFunction}. (Other Skyframe calls are permitted.)
*
* <p><b>USAGE NOTE:</b> This function is intended to be called from {@link PackageFunction} and
* probably shouldn't be used anywhere else. If you think you need inline Starlark computation,
* consult with the Core subteam and check out cl/305127325 for an example of correcting a misuse.
*
* <p>Under bzl inlining, there is some calling context that wants to obtain a set of {@link
* BzlLoadValue}s without Skyframe evaluation. For example, a calling context can be a BUILD file
* trying to resolve its top-level {@code load()} statements. Although this work proceeds in a
* single thread, multiple calling contexts may evaluate .bzls in parallel. To avoid redundant
* work, they share a single (global to this Skyfunction instance) cache in lieu of the regular
* Skyframe cache.
*
* <p>If two calling contexts race to compute the same .bzl, each one will see a different copy of
* it, and only one will end up in the shared cache. This presents a hazard: Suppose A and B both
* need foo.bzl, and A needs it twice due to a diamond dependency. If A and B race to compute
* foo.bzl, but B's computation populates the cache, then when A comes back to resolve it the
* second time it will observe a different {@code BzlLoadValue}. This leads to incorrect Starlark
* evaluation since Starlark values may rely on Java object identity (see b/138598337). Even if we
* weren't concerned about racing, A may also reevaluate previously computed items due to cache
* evictions.
*
* <p>To solve this, we keep a second cache, {@code visitedBzls}, that is local to the current
* calling context, and which never evicts entries. This cache is always checked in preference to
* the shared one; it may deviate from the shared one in some of its entries, but the calling
* context won't know the difference. (If bzl inlining is only used for the loading phase, we
* don't need to worry about Starlark values from different packages interacting.)
*
* <p>As an aside, note that we can't avoid having a second cache by simply naively blocking
* evaluation of .bzls on retrievals from the shared cache. This is because two contexts could
* deadlock while trying to evaluate an illegal {@code load()} cycle from opposite ends. It would
* be possible to construct a waits-for graph and perform cycle detection, or to monitor slow
* threads and do detection lazily, but these do not address the cache eviction issue.
* Alternatively, we could make Starlark tolerant of reloading, but that would be tantamount to
* implementing full Starlark serialization.
*
* @return the requested {@code BzlLoadValue}, or null if there is a Skyframe restart or error
*/
@Nullable
BzlLoadValue computeInline(
BzlLoadValue.Key key, Environment env, Map<BzlLoadValue.Key, CachedBzlLoadData> visitedBzls)
throws InconsistentFilesystemException, BzlLoadFailedException, InterruptedException {
// Note to refactorors: No Skyframe calls may be made before the RecordingSkyFunctionEnvironment
// is set up below in computeInlineForCacheMiss.
Preconditions.checkNotNull(cachedBzlLoadDataManager);
CachedBzlLoadData cachedData =
computeInlineWithState(key, env, InliningState.createInitial(visitedBzls));
return cachedData != null ? cachedData.getValue() : null;
}
/**
* Retrieves or creates the requested {@link CachedBzlLoadData} object, entering it into the
* local and shared caches. This is the entry point for recursive calls to the inline code path.
*
* <p>Skyframe calls made underneath this function will be logged in the resulting {@code
* CachedBzlLoadData) (or its transitive dependencies).
*
* <p>Returns null on Skyframe restart or error.
*/
@Nullable
private CachedBzlLoadData computeInlineWithState(
BzlLoadValue.Key key, Environment env, InliningState inliningState)
throws InconsistentFilesystemException, BzlLoadFailedException, InterruptedException {
// Note to refactorors: No Skyframe calls may be made before the RecordingSkyFunctionEnvironment
// is set up below in computeInlineForCacheMiss.
// Try the caches. We must try the thread-local cache before the shared one.
CachedBzlLoadData cachedData = inliningState.visitedBzls.get(key);
if (cachedData == null) {
cachedData = cachedBzlLoadDataManager.cache.getIfPresent(key);
if (cachedData != null) {
// Found a cache hit from another thread's computation; register the recorded deps as if our
// thread required them for the current key. Incorporate into visitedBzls any transitive
// cache hits it does not already contain.
cachedData.traverse(env::registerDependencies, inliningState.visitedBzls);
}
}
// If that didn't work, compute it ourselves and add to the caches on success.
if (cachedData == null) {
cachedData = computeInlineForCacheMiss(key, env, inliningState);
if (cachedData != null) {
inliningState.visitedBzls.put(key, cachedData);
cachedBzlLoadDataManager.cache.put(key, cachedData);
}
}
// On success, notify the parent CachedBzlLoadData of its new child.
if (cachedData != null) {
inliningState.childCachedDataHandler.accept(cachedData);
}
return cachedData;
}
@Nullable
private CachedBzlLoadData computeInlineForCacheMiss(
BzlLoadValue.Key key, Environment env, InliningState inliningState)
throws InconsistentFilesystemException, BzlLoadFailedException, InterruptedException {
// We use an instrumented Skyframe env to capture Skyframe deps in the CachedBzlLoadData. This
// generally includes transitive Skyframe deps, but specifically excludes deps underneath
// recursively loaded .bzls. We unwrap the instrumented env right before recursively calling
// back into computeInlineWithState.
CachedBzlLoadData.Builder cachedDataBuilder = cachedBzlLoadDataManager.cachedDataBuilder();
Preconditions.checkState(
!(env instanceof RecordingSkyFunctionEnvironment),
"Found nested RecordingSkyFunctionEnvironment but it should have been stripped: %s",
env);
RecordingSkyFunctionEnvironment recordingEnv =
new RecordingSkyFunctionEnvironment(
env,
cachedDataBuilder::addDep,
cachedDataBuilder::addDeps,
cachedDataBuilder::noteException);
inliningState.beginLoad(key); // track for cyclic load() detection
BzlLoadValue value;
try {
value =
computeInternal(
key,
recordingEnv,
inliningState.createChildState(
/*childCachedDataHandler=*/ cachedDataBuilder::addTransitiveDeps));
} finally {
inliningState.finishLoad(key);
}
if (value == null) {
return null;
}
cachedDataBuilder.setValue(value);
cachedDataBuilder.setKey(key);
return cachedDataBuilder.build();
}
public void resetInliningCache() {
cachedBzlLoadDataManager.reset();
}
private static ContainingPackageLookupValue getContainingPackageLookupValue(
Environment env, Label label)
throws InconsistentFilesystemException, BzlLoadFailedException, InterruptedException {
PathFragment dir = Label.getContainingDirectory(label);
PackageIdentifier dirId =
PackageIdentifier.create(label.getPackageIdentifier().getRepository(), dir);
ContainingPackageLookupValue containingPackageLookupValue;
try {
containingPackageLookupValue =
(ContainingPackageLookupValue)
env.getValueOrThrow(
ContainingPackageLookupValue.key(dirId),
BuildFileNotFoundException.class,
InconsistentFilesystemException.class);
} catch (BuildFileNotFoundException e) {
throw BzlLoadFailedException.errorReadingFile(
label.toPathFragment(), new ErrorReadingStarlarkExtensionException(e));
}
if (containingPackageLookupValue == null) {
return null;
}
// Ensure the label doesn't cross package boundaries.
if (!containingPackageLookupValue.hasContainingPackage()) {
throw BzlLoadFailedException.noBuildFile(
label, containingPackageLookupValue.getReasonForNoContainingPackage());
}
if (!containingPackageLookupValue
.getContainingPackageName()
.equals(label.getPackageIdentifier())) {
throw BzlLoadFailedException.labelCrossesPackageBoundary(label, containingPackageLookupValue);
}
return containingPackageLookupValue;
}
/**
* Value class bundling parameters that are only used in the code path where {@code
* BzlLoadFunction} calls are inlined.
*/
private static class InliningState {
/**
* The set of .bzls we're currently in the process of loading. This is used for cycle detection
* since we don't have the benefit of Skyframe's internal cycle detection. The set must use
* insertion order for correct error reporting.
*/
// Keyed on the SkyKey, not the label, since label could theoretically be ambiguous, even though
// in practice keys from BUILD / WORKSPACE / @builtins don't call each other. (Not sure if
// WORKSPACE chunking can cause duplicate labels to appear, but we're robust regardless.)
private final LinkedHashSet<BzlLoadValue.Key> loadStack;
/** Called when a transitive {@code CachedBzlLoadData} is produced. */
private final Consumer<CachedBzlLoadData> childCachedDataHandler;
/** Cache local to current calling context. See {@link #computeInline}. */
private final Map<BzlLoadValue.Key, CachedBzlLoadData> visitedBzls;
private InliningState(
LinkedHashSet<BzlLoadValue.Key> loadStack,
Consumer<CachedBzlLoadData> childCachedDataHandler,
Map<BzlLoadValue.Key, CachedBzlLoadData> visitedBzls) {
this.loadStack = loadStack;
this.childCachedDataHandler = childCachedDataHandler;
this.visitedBzls = visitedBzls;
}
static InliningState createInitial(Map<BzlLoadValue.Key, CachedBzlLoadData> visitedBzls) {
return new InliningState(
new LinkedHashSet<>(),
x -> {}, // No parent value to mutate.
visitedBzls);
}
InliningState createChildState(Consumer<CachedBzlLoadData> childCachedDataHandler) {
return new InliningState(loadStack, childCachedDataHandler, visitedBzls);
}
/** Records entry to a {@code load()}, throwing an exception if a cycle is detected. */
void beginLoad(BzlLoadValue.Key key) throws BzlLoadFailedException {
if (!loadStack.add(key)) {
ImmutableList<BzlLoadValue.Key> cycle =
CycleUtils.splitIntoPathAndChain(Predicates.equalTo(key), loadStack).second;
throw new BzlLoadFailedException("Starlark load cycle: " + cycle);
}
}
/** Records exit from a {@code load()}. */
void finishLoad(BzlLoadValue.Key key) throws BzlLoadFailedException {
Preconditions.checkState(loadStack.remove(key), key);
}
}
// It is vital that we don't return any value if any call to env#getValue(s)OrThrow throws an
// exception. We are allowed to wrap the thrown exception and rethrow it for any calling functions
// to handle though.
@Nullable
private BzlLoadValue computeInternal(
BzlLoadValue.Key key, Environment env, @Nullable InliningState inliningState)
throws InconsistentFilesystemException, BzlLoadFailedException, InterruptedException {
Label label = key.getLabel();
PathFragment filePath = label.toPathFragment();
StarlarkSemantics starlarkSemantics = PrecomputedValue.STARLARK_SEMANTICS.get(env);
if (starlarkSemantics == null) {
return null;
}
if (getContainingPackageLookupValue(env, label) == null) {
return null;
}
// Load the AST corresponding to this file.
ASTFileLookupValue astLookupValue;
try {
astLookupValue = astManager.getASTFileLookupValue(label, env);
} catch (ErrorReadingStarlarkExtensionException e) {
throw BzlLoadFailedException.errorReadingFile(filePath, e);
}
if (astLookupValue == null) {
return null;
}
BzlLoadValue result = null;
try {
result =
computeInternalWithAST(
key, filePath, starlarkSemantics, astLookupValue, env, inliningState);
} catch (InconsistentFilesystemException | BzlLoadFailedException | InterruptedException e) {
astManager.doneWithASTFileLookupValue(label);
throw e;
}
if (result != null) {
// Result is final (no Skyframe restart), so no further need for the AST value.
astManager.doneWithASTFileLookupValue(label);
}
return result;
}
@Nullable
private BzlLoadValue computeInternalWithAST(
BzlLoadValue.Key key,
PathFragment filePath,
StarlarkSemantics starlarkSemantics,
ASTFileLookupValue astLookupValue,
Environment env,
@Nullable InliningState inliningState)
throws InconsistentFilesystemException, BzlLoadFailedException, InterruptedException {
Label label = key.getLabel();
if (!astLookupValue.lookupSuccessful()) {
// Starlark code must exist.
throw new BzlLoadFailedException(astLookupValue.getError());
}
StarlarkFile file = astLookupValue.getAST();
if (!file.ok()) {
throw BzlLoadFailedException.skylarkErrors(filePath);
}
// Process the load statements in the file,
// resolving labels relative to the current repo mapping.
ImmutableMap<RepositoryName, RepositoryName> repoMapping = getRepositoryMapping(key, env);
if (repoMapping == null) {
return null;
}
List<Pair<String, Label>> loads =
getLoadLabels(env.getListener(), file, label.getPackageIdentifier(), repoMapping);
if (loads == null) {
// malformed load statements
throw BzlLoadFailedException.skylarkErrors(filePath);
}
// Compute Skyframe key for each label in 'loads'.
List<BzlLoadValue.Key> loadKeys = Lists.newArrayListWithExpectedSize(loads.size());
for (Pair<String, Label> load : loads) {
loadKeys.add(key.getKeyForLoad(load.second));
}
// Load .bzl modules in parallel.
List<BzlLoadValue> bzlLoads =
inliningState == null
? computeBzlLoadsWithSkyframe(env, loadKeys, file.getStartLocation())
: computeBzlLoadsWithInlining(env, loadKeys, label, inliningState);
if (bzlLoads == null) {
return null; // Skyframe deps unavailable
}
// Process the loaded modules.
//
// Compute a digest of the file itself plus the transitive hashes of the modules it directly
// loads. Loop iteration order matches the source order of load statements.
Fingerprint fp = new Fingerprint();
fp.addBytes(astLookupValue.getDigest());
Map<String, Module> loadedModules = Maps.newHashMapWithExpectedSize(loads.size());
ImmutableList.Builder<StarlarkFileDependency> fileDependencies =
ImmutableList.builderWithExpectedSize(loads.size());
for (int i = 0; i < loads.size(); i++) {
String loadString = loads.get(i).first;
BzlLoadValue v = bzlLoads.get(i);
loadedModules.put(loadString, v.getModule());
fileDependencies.add(v.getDependency());
fp.addBytes(v.getTransitiveDigest());
}
byte[] transitiveDigest = fp.digestAndReset();
// executeModule does not request values from the Environment. It may post events to the
// Environment, but events do not matter when caching BzlLoadValues.
Module module =
executeModule(
file,
key.getLabel(),
transitiveDigest,
loadedModules,
starlarkSemantics,
env,
/*inWorkspace=*/ key instanceof BzlLoadValue.KeyForWorkspace,
repoMapping);
BzlLoadValue result =
new BzlLoadValue(
module, transitiveDigest, new StarlarkFileDependency(label, fileDependencies.build()));
return result;
}
private static ImmutableMap<RepositoryName, RepositoryName> getRepositoryMapping(
BzlLoadValue.Key key, Environment env) throws InterruptedException {
Label enclosingFileLabel = key.getLabel();
ImmutableMap<RepositoryName, RepositoryName> repositoryMapping;
if (key instanceof BzlLoadValue.KeyForWorkspace) {
// Still during workspace file evaluation
BzlLoadValue.KeyForWorkspace keyForWorkspace = (BzlLoadValue.KeyForWorkspace) key;
if (keyForWorkspace.getWorkspaceChunk() == 0) {
// There is no previous workspace chunk
repositoryMapping = ImmutableMap.of();
} else {
SkyKey workspaceFileKey =
WorkspaceFileValue.key(
keyForWorkspace.getWorkspacePath(), keyForWorkspace.getWorkspaceChunk() - 1);
WorkspaceFileValue workspaceFileValue = (WorkspaceFileValue) env.getValue(workspaceFileKey);
// Note: we know for sure that the requested WorkspaceFileValue is fully computed so we do
// not need to check if it is null
repositoryMapping =
workspaceFileValue
.getRepositoryMapping()
.getOrDefault(
enclosingFileLabel.getPackageIdentifier().getRepository(), ImmutableMap.of());
}
} else {
// We are fully done with workspace evaluation so we should get the mappings from the
// final RepositoryMappingValue
PackageIdentifier packageIdentifier = enclosingFileLabel.getPackageIdentifier();
RepositoryMappingValue repositoryMappingValue =
(RepositoryMappingValue)
env.getValue(RepositoryMappingValue.key(packageIdentifier.getRepository()));
if (repositoryMappingValue == null) {
return null;
}
repositoryMapping = repositoryMappingValue.getRepositoryMapping();
}
return repositoryMapping;
}
/**
* Returns a list of pairs mapping each load string in the BUILD or .bzl file to the Label it
* resolves to. Labels are resolved relative to {@code base}, the file's package. If any load
* statement is malformed, the function reports one or more errors to the handler and returns
* null. Order matches the source.
*/
@Nullable
static List<Pair<String, Label>> getLoadLabels(
EventHandler handler,
StarlarkFile file,
PackageIdentifier base,
ImmutableMap<RepositoryName, RepositoryName> repoMapping) {
Preconditions.checkArgument(!base.getRepository().isDefault());
// It's redundant that getRelativeWithRemapping needs a Label;
// a PackageIdentifier should suffice. Make one here.
Label buildLabel = getBUILDLabel(base);
boolean ok = true;
List<Pair<String, Label>> loads = Lists.newArrayList();
for (Statement stmt : file.getStatements()) {
if (stmt instanceof LoadStatement) {
LoadStatement load = (LoadStatement) stmt;
String module = load.getImport().getValue();
// Parse the load statement's module string as a label.
// It must end in .bzl and not be in package "//external".
try {
Label label = buildLabel.getRelativeWithRemapping(module, repoMapping);
if (!label.getName().endsWith(".bzl")) {
throw new LabelSyntaxException("The label must reference a file with extension '.bzl'");
}
if (label.getPackageIdentifier().equals(LabelConstants.EXTERNAL_PACKAGE_IDENTIFIER)) {
throw new LabelSyntaxException(
"Starlark files may not be loaded from the //external package");
}
loads.add(Pair.of(module, label));
} catch (LabelSyntaxException ex) {
handler.handle(
Event.error(
load.getImport().getStartLocation(), "in load statement: " + ex.getMessage()));
ok = false;
}
}
}
return ok ? loads : null;
}
private static Label getBUILDLabel(PackageIdentifier pkgid) {
try {
return Label.create(pkgid, "BUILD");
} catch (LabelSyntaxException e) {
// Shouldn't happen; the Label is well-formed by construction.
throw new IllegalStateException(e);
}
}
/**
* Computes the BzlLoadValue for all given keys using vanilla Skyframe evaluation, returning
* {@code null} if Skyframe deps were missing and have been requested.
*/
@Nullable
private static List<BzlLoadValue> computeBzlLoadsWithSkyframe(
Environment env, List<BzlLoadValue.Key> keys, Location locationForErrors)
throws BzlLoadFailedException, InterruptedException {
List<BzlLoadValue> bzlLoads = Lists.newArrayListWithExpectedSize(keys.size());
Map<SkyKey, ValueOrException<BzlLoadFailedException>> values =
env.getValuesOrThrow(keys, BzlLoadFailedException.class);
// Uses same order as load()s in the file. Order matters since we report the first error.
for (BzlLoadValue.Key key : keys) {
try {
bzlLoads.add((BzlLoadValue) values.get(key).get());
} catch (BzlLoadFailedException exn) {
throw new BzlLoadFailedException(
"in " + locationForErrors.file() + ": " + exn.getMessage());
}
}
return env.valuesMissing() ? null : bzlLoads;
}
/**
* Computes the BzlLoadValue for all given keys by reusing this instance of the BzlLoadFunction,
* bypassing traditional Skyframe evaluation, returning {@code null} if Skyframe deps were missing
* and have been requested.
*/
@Nullable
private List<BzlLoadValue> computeBzlLoadsWithInlining(
Environment env, List<BzlLoadValue.Key> keys, Label fileLabel, InliningState inliningState)
throws InterruptedException, BzlLoadFailedException, InconsistentFilesystemException {
Preconditions.checkState(
env instanceof RecordingSkyFunctionEnvironment,
"Expected to be recording dep requests when inlining BzlLoadFunction: %s",
fileLabel);
Environment strippedEnv = ((RecordingSkyFunctionEnvironment) env).getDelegate();
List<BzlLoadValue> bzlLoads = Lists.newArrayListWithExpectedSize(keys.size());
Exception deferredException = null;
boolean valuesMissing = false;
// NOTE: Iterating over loads in the order listed in the file.
for (BzlLoadValue.Key key : keys) {
CachedBzlLoadData cachedData;
try {
cachedData = computeInlineWithState(key, strippedEnv, inliningState);
} catch (BzlLoadFailedException | InconsistentFilesystemException e) {
// For determinism's sake while inlining, preserve the first exception and continue to run
// subsequently listed loads to completion/exception, loading all transitive deps anyway.
deferredException = MoreObjects.firstNonNull(deferredException, e);
continue;
}
if (cachedData == null) {
Preconditions.checkState(env.valuesMissing(), "no starlark load value for %s", key);
// We continue making inline calls even if some requested values are missing, to maximize
// the number of dependent (non-inlined) SkyFunctions that are requested, thus avoiding a
// quadratic number of restarts.
valuesMissing = true;
} else {
bzlLoads.add(cachedData.getValue());
}
}
if (deferredException != null) {
Throwables.throwIfInstanceOf(deferredException, BzlLoadFailedException.class);
Throwables.throwIfInstanceOf(deferredException, InconsistentFilesystemException.class);
throw new IllegalStateException(
"caught a checked exception of unexpected type", deferredException);
}
return valuesMissing ? null : bzlLoads;
}
/** Executes the .bzl file defining the module to be loaded. */
private Module executeModule(
StarlarkFile file,
Label label,
byte[] transitiveDigest,
Map<String, Module> loadedModules,
StarlarkSemantics starlarkSemantics,
Environment env,
boolean inWorkspace,
ImmutableMap<RepositoryName, RepositoryName> repositoryMapping)
throws BzlLoadFailedException, InterruptedException {
// set up .bzl predeclared environment
Map<String, Object> predeclared = new HashMap<>(ruleClassProvider.getEnvironment());
predeclared.put("native", packageFactory.getNativeModule(inWorkspace));
Module module = Module.withPredeclared(starlarkSemantics, predeclared);
module.setClientData(BazelModuleContext.create(label, transitiveDigest));
try (Mutability mu = Mutability.create("loading", label)) {
StarlarkThread thread = new StarlarkThread(mu, starlarkSemantics);
thread.setLoader(loadedModules::get);
StoredEventHandler eventHandler = new StoredEventHandler();
thread.setPrintHandler(Event.makeDebugPrintHandler(eventHandler));
ruleClassProvider.setStarlarkThreadContext(thread, label, repositoryMapping);
execAndExport(file, label, eventHandler, module, thread);
Event.replayEventsOn(env.getListener(), eventHandler.getEvents());
for (Postable post : eventHandler.getPosts()) {
env.getListener().post(post);
}
if (eventHandler.hasErrors()) {
throw BzlLoadFailedException.errors(label.toPathFragment());
}
return module;
}
}
// Precondition: file is validated and error-free.
// Precondition: thread has a valid transitiveDigest.
// TODO(adonovan): executeModule would make a better public API than this function.
public static void execAndExport(
StarlarkFile file, Label label, EventHandler handler, Module module, StarlarkThread thread)
throws InterruptedException {
// Intercept execution after every assignment at top level
// and "export" any newly assigned exportable globals.
// TODO(adonovan): change the semantics; see b/65374671.
thread.setPostAssignHook(
(name, value) -> {
if (value instanceof StarlarkExportable) {
StarlarkExportable exp = (StarlarkExportable) value;
if (!exp.isExported()) {
try {
exp.export(label, name);
} catch (EvalException ex) {
handler.handle(Event.error(ex.getLocation(), ex.getMessage()));
}
}
}
});
try {
EvalUtils.exec(file, module, thread);
} catch (EvalException ex) {
handler.handle(Event.error(ex.getLocation(), ex.getMessage()));
}
}
@Override
public String extractTag(SkyKey skyKey) {
return null;
}
static final class BzlLoadFailedException extends Exception implements SaneAnalysisException {
private final Transience transience;
private BzlLoadFailedException(String errorMessage) {
super(errorMessage);
this.transience = Transience.PERSISTENT;
}
private BzlLoadFailedException(String errorMessage, Exception cause, Transience transience) {
super(errorMessage, cause);
this.transience = transience;
}
static BzlLoadFailedException errors(PathFragment file) {
return new BzlLoadFailedException(String.format("Extension file '%s' has errors", file));
}
static BzlLoadFailedException errorReadingFile(
PathFragment file, ErrorReadingStarlarkExtensionException cause) {
return new BzlLoadFailedException(
String.format(
"Encountered error while reading extension file '%s': %s", file, cause.getMessage()),
cause,
cause.getTransience());
}
static BzlLoadFailedException noBuildFile(Label file, @Nullable String reason) {
if (reason != null) {
return new BzlLoadFailedException(
String.format("Unable to find package for %s: %s.", file, reason));
}
return new BzlLoadFailedException(
String.format(
"Every .bzl file must have a corresponding package, but '%s' does not have one."
+ " Please create a BUILD file in the same or any parent directory. Note that"
+ " this BUILD file does not need to do anything except exist.",
file));
}
static BzlLoadFailedException labelCrossesPackageBoundary(
Label label, ContainingPackageLookupValue containingPackageLookupValue) {
return new BzlLoadFailedException(
ContainingPackageLookupValue.getErrorMessageForLabelCrossingPackageBoundary(
// We don't actually know the proper Root to pass in here (since we don't e.g. know
// the root of the bzl/BUILD file that is trying to load 'label'). Therefore we just
// pass in the Root of the containing package in order to still get a useful error
// message for the user.
containingPackageLookupValue.getContainingPackageRoot(),
label,
containingPackageLookupValue));
}
static BzlLoadFailedException skylarkErrors(PathFragment file) {
return new BzlLoadFailedException(String.format("Extension '%s' has errors", file));
}
}
/**
* A manager abstracting over the method for obtaining {@code ASTFileLookupValue}s. See comment in
* {@link #create}.
*/
private interface ASTManager {
@Nullable
ASTFileLookupValue getASTFileLookupValue(Label label, Environment env)
throws InconsistentFilesystemException, InterruptedException,
ErrorReadingStarlarkExtensionException;
void doneWithASTFileLookupValue(Label label);
}
/** A manager that obtains ASTs from Skyframe calls. */
private static class RegularSkyframeASTManager implements ASTManager {
private static final RegularSkyframeASTManager INSTANCE = new RegularSkyframeASTManager();
@Nullable
@Override
public ASTFileLookupValue getASTFileLookupValue(Label label, Environment env)
throws InconsistentFilesystemException, InterruptedException,
ErrorReadingStarlarkExtensionException {
return (ASTFileLookupValue)
env.getValueOrThrow(
ASTFileLookupValue.key(label),
ErrorReadingStarlarkExtensionException.class,
InconsistentFilesystemException.class);
}
@Override
public void doneWithASTFileLookupValue(Label label) {}
}
/**
* A manager that obtains ASTs by inlining {@link ASTFileLookupFunction} (not to be confused with
* inlining of {@code BzlLoadFunction}). Values are cached within the manager and released
* explicitly by calling {@link #doneWithASTFileLookupValue}.
*/
private static class InliningAndCachingASTManager implements ASTManager {
private final RuleClassProvider ruleClassProvider;
private final DigestHashFunction digestHashFunction;
// We keep a cache of ASTFileLookupValues that have been computed but whose corresponding
// BzlLoadValue has not yet completed. This avoids repeating the ASTFileLookupValue work in case
// of Skyframe restarts. (If we weren't inlining, Skyframe would cache this for us.)
private final Cache<Label, ASTFileLookupValue> astFileLookupValueCache;
private InliningAndCachingASTManager(
RuleClassProvider ruleClassProvider,
DigestHashFunction digestHashFunction,
Cache<Label, ASTFileLookupValue> astFileLookupValueCache) {
this.ruleClassProvider = ruleClassProvider;
this.digestHashFunction = digestHashFunction;
this.astFileLookupValueCache = astFileLookupValueCache;
}
@Nullable
@Override
public ASTFileLookupValue getASTFileLookupValue(Label label, Environment env)
throws InconsistentFilesystemException, InterruptedException,
ErrorReadingStarlarkExtensionException {
ASTFileLookupValue value = astFileLookupValueCache.getIfPresent(label);
if (value == null) {
value =
ASTFileLookupFunction.computeInline(
ASTFileLookupValue.key(label), env, ruleClassProvider, digestHashFunction);
if (value != null) {
astFileLookupValueCache.put(label, value);
}
}
return value;
}
@Override
public void doneWithASTFileLookupValue(Label label) {
astFileLookupValueCache.invalidate(label);
}
}
/**
* Per-instance manager for {@link CachedBzlLoadData}, used when {@code BzlLoadFunction} calls are
* inlined.
*/
private static class CachedBzlLoadDataManager {
private final int cacheSize;
private Cache<BzlLoadValue.Key, CachedBzlLoadData> cache;
private CachedBzlLoadDataBuilderFactory cachedDataBuilderFactory =
new CachedBzlLoadDataBuilderFactory();
private CachedBzlLoadDataManager(int cacheSize) {
this.cacheSize = cacheSize;
}
private CachedBzlLoadData.Builder cachedDataBuilder() {
return cachedDataBuilderFactory.newCachedBzlLoadDataBuilder();
}
private void reset() {
if (cache != null) {
logger.atInfo().log("Starlark inlining cache stats from earlier build: " + cache.stats());
}
cachedDataBuilderFactory = new CachedBzlLoadDataBuilderFactory();
Preconditions.checkState(
cacheSize >= 0, "Expected positive Starlark cache size if caching. %s", cacheSize);
cache =
CacheBuilder.newBuilder()
.concurrencyLevel(BlazeInterners.concurrencyLevel())
.maximumSize(cacheSize)
.recordStats()
.build();
}
}
private static final class BzlLoadFunctionException extends SkyFunctionException {
private BzlLoadFunctionException(BzlLoadFailedException cause) {
super(cause, cause.transience);
}
private BzlLoadFunctionException(InconsistentFilesystemException e, Transience transience) {
super(e, transience);
}
}
}