aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skyframe/RecursivePkgFunction.java
diff options
context:
space:
mode:
authorGravatar Janak Ramakrishnan <janakr@google.com>2015-06-02 20:20:31 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2015-06-03 13:49:00 +0000
commitf7ff616b36a980e344d240066c909b8995a1ea37 (patch)
tree7c6f5904e7e15f831782ab2b9ee47b8cffb42e41 /src/main/java/com/google/devtools/build/lib/skyframe/RecursivePkgFunction.java
parentfb6e5e9ec2aec8fbff7531423137f07ff7b8359a (diff)
Properly handle exceptions that RecursivePkgFunction can encounter, instead of silently swallowing them.
The old behavior was simply incorrect on --keep_going builds because it meant any directory with an uncaught error caused all of its ancestors to not have any values. It wasn't noticed because SkyframeTargetPatternEvaluator was overly permissive in the errors it expects. We also use a singleton for the empty RecursivePkgValue which might have a negligible (beneficial) memory impact. -- MOS_MIGRATED_REVID=95037551
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skyframe/RecursivePkgFunction.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/RecursivePkgFunction.java33
1 files changed, 27 insertions, 6 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/RecursivePkgFunction.java b/src/main/java/com/google/devtools/build/lib/skyframe/RecursivePkgFunction.java
index b814319840..30ad2bbc02 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/RecursivePkgFunction.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/RecursivePkgFunction.java
@@ -18,6 +18,7 @@ import com.google.common.collect.Lists;
import com.google.devtools.build.lib.collect.nestedset.NestedSetBuilder;
import com.google.devtools.build.lib.collect.nestedset.Order;
import com.google.devtools.build.lib.events.Event;
+import com.google.devtools.build.lib.events.EventHandler;
import com.google.devtools.build.lib.packages.NoSuchPackageException;
import com.google.devtools.build.lib.packages.PackageIdentifier;
import com.google.devtools.build.lib.pkgcache.PathPackageLocator;
@@ -31,6 +32,7 @@ import com.google.devtools.build.skyframe.SkyFunction;
import com.google.devtools.build.skyframe.SkyKey;
import com.google.devtools.build.skyframe.SkyValue;
+import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.Set;
@@ -57,25 +59,36 @@ public class RecursivePkgFunction implements SkyFunction {
Set<PathFragment> excludedPaths = recursivePkgKey.getExcludedPaths();
SkyKey fileKey = FileValue.key(rootedPath);
- FileValue fileValue = (FileValue) env.getValue(fileKey);
+ FileValue fileValue = null;
+ try {
+ fileValue = (FileValue) env.getValueOrThrow(fileKey, InconsistentFilesystemException.class,
+ FileSymlinkCycleException.class, IOException.class);
+ } catch (InconsistentFilesystemException | FileSymlinkCycleException | IOException e) {
+ return reportErrorAndReturn(e, rootRelativePath, env.getListener());
+ }
if (fileValue == null) {
return null;
}
if (!fileValue.isDirectory()) {
- return new RecursivePkgValue(NestedSetBuilder.<String>emptySet(ORDER));
+ return RecursivePkgValue.EMPTY;
}
if (fileValue.isSymlink()) {
// We do not follow directory symlinks when we look recursively for packages. It also
// prevents symlink loops.
- return new RecursivePkgValue(NestedSetBuilder.<String>emptySet(ORDER));
+ return RecursivePkgValue.EMPTY;
}
PackageIdentifier packageId = PackageIdentifier.createInDefaultRepo(
rootRelativePath.getPathString());
- PackageLookupValue pkgLookupValue =
- (PackageLookupValue) env.getValue(PackageLookupValue.key(packageId));
+ PackageLookupValue pkgLookupValue;
+ try {
+ pkgLookupValue = (PackageLookupValue) env.getValueOrThrow(PackageLookupValue.key(packageId),
+ NoSuchPackageException.class, InconsistentFilesystemException.class);
+ } catch (NoSuchPackageException | InconsistentFilesystemException e) {
+ return reportErrorAndReturn(e, rootRelativePath, env.getListener());
+ }
if (pkgLookupValue == null) {
return null;
}
@@ -171,7 +184,15 @@ public class RecursivePkgFunction implements SkyFunction {
packages.addTransitive(((RecursivePkgValue) childValue).getPackages());
}
}
- return new RecursivePkgValue(packages.build());
+ return RecursivePkgValue.create(packages);
+ }
+
+ // Ignore all errors in traversal and just say there are no packages here.
+ private static RecursivePkgValue reportErrorAndReturn(Exception e, PathFragment rootRelativePath,
+ EventHandler handler) {
+ handler.handle(Event.warn("Finding packages under " + rootRelativePath + " failed, skipping: "
+ + e.getMessage()));
+ return RecursivePkgValue.EMPTY;
}
@Nullable