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

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

Issue 23625002: Support loading transformer plugins from pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 years, 3 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
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/server.dart ('k') | sdk/lib/_internal/pub/lib/src/command.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
new file mode 100644
index 0000000000000000000000000000000000000000..dc29294422f610a0ffd67422fcea003477d84400
--- /dev/null
+++ b/sdk/lib/_internal/pub/lib/src/barback/watch_sources.dart
@@ -0,0 +1,73 @@
+// 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_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));
+
+ // Watch the visible package directories for changes.
+ for (var name in _getPublicDirectories(graph.entrypoint, package)) {
+ var subdirectory = path.join(package.dir, name);
+ // TODO(nweiz): close these watchers when [barback] is closed.
+ var watcher = new DirectoryWatcher(subdirectory);
+ watcher.events.listen((event) {
+ 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/server.dart ('k') | sdk/lib/_internal/pub/lib/src/command.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698