// 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.Function; import com.google.common.collect.HashBiMap; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Iterables; import com.google.devtools.build.lib.util.OS; import com.google.devtools.build.lib.util.Preconditions; import com.google.devtools.build.lib.vfs.ModifiedFileSet; import com.google.devtools.build.lib.vfs.PathFragment; import java.io.IOException; import java.nio.file.ClosedWatchServiceException; import java.nio.file.FileSystems; import java.nio.file.FileVisitResult; import java.nio.file.Files; import java.nio.file.LinkOption; import java.nio.file.Path; import java.nio.file.SimpleFileVisitor; import java.nio.file.StandardWatchEventKinds; import java.nio.file.WatchEvent; import java.nio.file.WatchEvent.Kind; import java.nio.file.WatchKey; import java.nio.file.WatchService; import java.nio.file.attribute.BasicFileAttributes; import java.util.HashSet; import java.util.Set; /** * File system watcher for local filesystems. It's able to provide a list of changed * files between two consecutive calls. Uses the standard Java WatchService, which uses * 'inotify' on Linux. */ public class LocalDiffAwareness implements DiffAwareness { /** Factory for creating {@link LocalDiffAwareness} instances. */ public static class Factory implements DiffAwareness.Factory { private final ImmutableList prefixBlacklist; /** * Creates a new factory; the file system watcher may not work on all file systems, particularly * for network file systems. The prefix blacklist can be used to blacklist known paths that * point to network file systems. */ public Factory(ImmutableList prefixBlacklist) { this.prefixBlacklist = prefixBlacklist; } @Override public DiffAwareness maybeCreate(com.google.devtools.build.lib.vfs.Path pathEntry) { com.google.devtools.build.lib.vfs.Path resolvedPathEntry; try { resolvedPathEntry = pathEntry.resolveSymbolicLinks(); } catch (IOException e) { return null; } PathFragment resolvedPathEntryFragment = resolvedPathEntry.asFragment(); // There's no good way to automatically detect network file systems. We rely on a blacklist // for now (and maybe add a command-line option in the future?). for (String prefix : prefixBlacklist) { if (resolvedPathEntryFragment.startsWith(new PathFragment(prefix))) { return null; } } // Disable the file watcher on OSX due to https://bugs.openjdk.java.net/browse/JDK-7133447 if (OS.getCurrent() == OS.DARWIN) { return null; } WatchService watchService; try { watchService = FileSystems.getDefault().newWatchService(); } catch (IOException e) { return null; } return new LocalDiffAwareness(resolvedPathEntryFragment.toString(), watchService); } } private int numGetCurrentViewCalls = 0; /** * Bijection from WatchKey to the (absolute) Path being watched. WatchKeys don't have this * functionality built-in so we do it ourselves. */ private final HashBiMap watchKeyToDirBiMap = HashBiMap.create(); /** Root directory to watch. This is an absolute path. */ private final Path watchRootPath; /** Every directory is registered under this watch service. */ private WatchService watchService; private LocalDiffAwareness(String watchRoot, WatchService watchService) { this.watchRootPath = FileSystems.getDefault().getPath(watchRoot); this.watchService = watchService; } /** * The WatchService is inherently sequential and side-effectful, so we enforce this by only * supporting {@link #getDiff} calls that happen to be sequential. */ private static class SequentialView implements DiffAwareness.View { private final LocalDiffAwareness owner; private final int position; private final Set modifiedAbsolutePaths; public SequentialView(LocalDiffAwareness owner, int position, Set modifiedAbsolutePaths) { this.owner = owner; this.position = position; this.modifiedAbsolutePaths = modifiedAbsolutePaths; } public static boolean areInSequence(SequentialView oldView, SequentialView newView) { return oldView.owner == newView.owner && (oldView.position + 1) == newView.position; } @Override public String toString() { return String.format("SequentialView[owner=%s, position=%d, modifiedAbsolutePaths=%s]", owner, position, modifiedAbsolutePaths); } } @Override public SequentialView getCurrentView() throws BrokenDiffAwarenessException { Set modifiedAbsolutePaths; if (numGetCurrentViewCalls++ == 0) { try { registerSubDirectoriesAndReturnContents(watchRootPath); } catch (IOException e) { close(); throw new BrokenDiffAwarenessException( "Error encountered with local file system watcher " + e); } modifiedAbsolutePaths = ImmutableSet.of(); } else { try { modifiedAbsolutePaths = collectChanges(); } catch (BrokenDiffAwarenessException e) { close(); throw e; } catch (IOException e) { close(); throw new BrokenDiffAwarenessException( "Error encountered with local file system watcher " + e); } catch (ClosedWatchServiceException e) { throw new BrokenDiffAwarenessException( "Internal error with the local file system watcher " + e); } } return new SequentialView(this, numGetCurrentViewCalls, modifiedAbsolutePaths); } @Override public ModifiedFileSet getDiff(View oldView, View newView) throws IncompatibleViewException, BrokenDiffAwarenessException { SequentialView oldSequentialView; SequentialView newSequentialView; try { oldSequentialView = (SequentialView) oldView; newSequentialView = (SequentialView) newView; } catch (ClassCastException e) { throw new IncompatibleViewException("Given views are not from LocalDiffAwareness"); } if (!SequentialView.areInSequence(oldSequentialView, newSequentialView)) { return ModifiedFileSet.EVERYTHING_MODIFIED; } return ModifiedFileSet.builder() .modifyAll(Iterables.transform(newSequentialView.modifiedAbsolutePaths, nioAbsolutePathToPathFragment)) .build(); } @Override public String name() { return "local"; } @Override public void close() { try { watchService.close(); } catch (IOException ignored) { // Nothing we can do here. } } /** Converts java.nio.file.Path objects to vfs.PathFragment. */ private final Function nioAbsolutePathToPathFragment = new Function() { @Override public PathFragment apply(Path input) { Preconditions.checkArgument(input.startsWith(watchRootPath), "%s %s", input, watchRootPath); return new PathFragment(watchRootPath.relativize(input).toString()); } }; /** Returns the changed files caught by the watch service. */ private Set collectChanges() throws BrokenDiffAwarenessException, IOException { Set createdFilesAndDirectories = new HashSet<>(); Set deletedOrModifiedFilesAndDirectories = new HashSet<>(); Set deletedTrackedDirectories = new HashSet<>(); WatchKey watchKey; while ((watchKey = watchService.poll()) != null) { Path dir = watchKeyToDirBiMap.get(watchKey); Preconditions.checkArgument(dir != null); // We replay all the events for this watched directory in chronological order and // construct the diff of this directory since the last #collectChanges call. for (WatchEvent event : watchKey.pollEvents()) { Kind kind = event.kind(); if (kind == StandardWatchEventKinds.OVERFLOW) { // TODO(bazel-team): find out when an overflow might happen, and maybe handle it more // gently. throw new BrokenDiffAwarenessException("Overflow when watching local filesystem for " + "changes"); } if (event.context() == null) { // The WatchService documentation mentions that WatchEvent#context may return null, but // doesn't explain how/why it would do so. Looking at the implementation, it only // happens on an overflow event. But we make no assumptions about that implementation // detail here. throw new BrokenDiffAwarenessException("Insufficient information from local file system " + "watcher"); } // For the events we've registered, the context given is a relative path. Path relativePath = (Path) event.context(); Path path = dir.resolve(relativePath); Preconditions.checkState(path.isAbsolute(), path); if (kind == StandardWatchEventKinds.ENTRY_CREATE) { createdFilesAndDirectories.add(path); deletedOrModifiedFilesAndDirectories.remove(path); } else if (kind == StandardWatchEventKinds.ENTRY_DELETE) { createdFilesAndDirectories.remove(path); deletedOrModifiedFilesAndDirectories.add(path); WatchKey deletedDirectoryKey = watchKeyToDirBiMap.inverse().get(path); if (deletedDirectoryKey != null) { // If the deleted directory has children, then there will also be events for the // WatchKey of the directory itself. WatchService#poll doesn't specify the order in // which WatchKeys are returned, so the key for the directory itself may be processed // *after* the current key (the parent of the deleted directory), and so we don't want // to remove the deleted directory from our bimap just yet. // // For example, suppose we have the file '/root/a/foo.txt' and are watching the // directories '/root' and '/root/a'. If the directory '/root/a' gets deleted then the // following is a valid sequence of events by key. // // WatchKey '/root/' // WatchEvent EVENT_MODIFY 'a' // WatchEvent EVENT_DELETE 'a' // WatchKey '/root/a' // WatchEvent EVENT_DELETE 'foo.txt' deletedTrackedDirectories.add(path); // Since inotify uses inodes under the covers we cancel our registration on this key to // avoid getting WatchEvents from a new directory that happens to have the same inode. deletedDirectoryKey.cancel(); } } else if (kind == StandardWatchEventKinds.ENTRY_MODIFY) { // If a file was created and then modified, then the net diff is that it was // created. if (!createdFilesAndDirectories.contains(path)) { deletedOrModifiedFilesAndDirectories.add(path); } } } if (!watchKey.reset()) { // Watcher got deleted, directory no longer valid. watchKeyToDirBiMap.remove(watchKey); } } for (Path path : deletedTrackedDirectories) { WatchKey staleKey = watchKeyToDirBiMap.inverse().get(path); watchKeyToDirBiMap.remove(staleKey); } if (watchKeyToDirBiMap.isEmpty()) { // No more directories to watch, something happened the root directory being watched. throw new IOException("Root directory " + watchRootPath + " became inaccessible."); } Set changedPaths = new HashSet<>(); for (Path path : createdFilesAndDirectories) { if (Files.isDirectory(path, LinkOption.NOFOLLOW_LINKS)) { // This is a new directory, so changes to it since its creation have not been watched. // We manually traverse the directory tree to register all the new subdirectories and find // all the new subdirectories and files. changedPaths.addAll(registerSubDirectoriesAndReturnContents(path)); } else { changedPaths.add(path); } } changedPaths.addAll(deletedOrModifiedFilesAndDirectories); return changedPaths; } /** * Traverses directory tree to register subdirectories. Returns all paths traversed (as absolute * paths). */ private Set registerSubDirectoriesAndReturnContents(Path rootDir) throws IOException { Set visitedAbsolutePaths = new HashSet<>(); // Note that this does not follow symlinks. Files.walkFileTree(rootDir, new WatcherFileVisitor(visitedAbsolutePaths)); return visitedAbsolutePaths; } /** File visitor used by Files.walkFileTree() upon traversing subdirectories. */ private class WatcherFileVisitor extends SimpleFileVisitor { private final Set visitedAbsolutePaths; private WatcherFileVisitor(Set visitedPaths) { this.visitedAbsolutePaths = visitedPaths; } @Override public FileVisitResult visitFile(Path path, BasicFileAttributes attrs) { Preconditions.checkState(path.isAbsolute(), path); visitedAbsolutePaths.add(path); return FileVisitResult.CONTINUE; } @Override public FileVisitResult preVisitDirectory(Path path, BasicFileAttributes attrs) throws IOException { // It's important that we register the directory before we visit its children. This way we // are guaranteed to see new files/directories either on this #getDiff or the next one. // Otherwise, e.g., an intra-build creation of a child directory will be forever missed if it // happens before the directory is listed as part of the visitation. WatchKey key = path.register(watchService, StandardWatchEventKinds.ENTRY_CREATE, StandardWatchEventKinds.ENTRY_MODIFY, StandardWatchEventKinds.ENTRY_DELETE); Preconditions.checkState(path.isAbsolute(), path); visitedAbsolutePaths.add(path); watchKeyToDirBiMap.put(key, path); return FileVisitResult.CONTINUE; } } }