Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(321)

Unified Diff: sdk/lib/_internal/pub/lib/src/barback/watch_sources.dart

Issue 43093002: Don't monitor the filesystem during "pub build". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub/lib/src/barback/watch_sources.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback/watch_sources.dart b/sdk/lib/_internal/pub/lib/src/barback/watch_sources.dart
deleted file mode 100644
index 6a176aa5a8ab2d609fa3c990da2b06b1c45e3a92..0000000000000000000000000000000000000000
--- a/sdk/lib/_internal/pub/lib/src/barback/watch_sources.dart
+++ /dev/null
@@ -1,90 +0,0 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library pub.barback.watch_sources;
-
-import 'package:barback/barback.dart';
-import 'package:path/path.dart' as path;
-import 'package:watcher/watcher.dart';
-
-import '../entrypoint.dart';
-import '../io.dart';
-import '../package.dart';
-import '../package_graph.dart';
-
-/// Adds all of the source assets in the provided packages to barback and
-/// then watches the public directories for changes.
-void watchSources(PackageGraph graph, Barback barback) {
- for (var package in graph.packages.values) {
- // Add the initial sources.
- barback.updateSources(_listAssets(graph.entrypoint, package));
-
- // If this package comes from a cached source, its contents won't change so
- // we don't need to monitor it. `packageId` will be null for the application
- // package, since that's not locked.
- var packageId = graph.lockFile.packages[package.name];
- if (packageId != null &&
- graph.entrypoint.cache.sources[packageId.source].shouldCache) {
- continue;
- }
-
- // Watch the visible package directories for changes.
- for (var name in _getPublicDirectories(graph.entrypoint, package)) {
- var subdirectory = path.join(package.dir, name);
- if (!dirExists(subdirectory)) continue;
-
- // TODO(nweiz): close these watchers when [barback] is closed.
- var watcher = new DirectoryWatcher(subdirectory);
- watcher.events.listen((event) {
- // Don't watch files symlinked into these directories.
- // TODO(rnystrom): If pub gets rid of symlinks, remove this.
- var parts = path.split(event.path);
- if (parts.contains("packages") || parts.contains("assets")) return;
-
- var id = new AssetId(package.name,
- path.relative(event.path, from: package.dir));
- if (event.type == ChangeType.REMOVE) {
- barback.removeSources([id]);
- } else {
- barback.updateSources([id]);
- }
- });
- }
- }
-}
-
-/// Lists all of the visible files in [package].
-///
-/// This is the recursive contents of the "asset" and "lib" directories (if
-/// present). If [package] is the entrypoint package, it also includes the
-/// contents of "web".
-List<AssetId> _listAssets(Entrypoint entrypoint, Package package) {
- var files = <AssetId>[];
-
- for (var dirPath in _getPublicDirectories(entrypoint, package)) {
- var dir = path.join(package.dir, dirPath);
- if (!dirExists(dir)) continue;
- for (var entry in listDir(dir, recursive: true)) {
- // Ignore "packages" symlinks if there.
- if (path.split(entry).contains("packages")) continue;
-
- // Skip directories.
- if (!fileExists(entry)) continue;
-
- var id = new AssetId(package.name,
- path.relative(entry, from: package.dir));
- files.add(id);
- }
- }
-
- return files;
-}
-
-/// Gets the names of the top-level directories in [package] whose contents
-/// should be provided as source assets.
-Iterable<String> _getPublicDirectories(Entrypoint entrypoint, Package package) {
- var directories = ["asset", "lib"];
- if (package.name == entrypoint.root.name) directories.add("web");
- return directories;
-}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/sources.dart ('k') | sdk/lib/_internal/pub/lib/src/command/build.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698