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

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

Issue 64723005: Use the polling watcher by default in pub tests for now. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 7 years, 1 month 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.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback.dart b/sdk/lib/_internal/pub/lib/src/barback.dart
index 7e317f63ecccb05af3aa98d1b09df49c5744a79e..b543876c3d5486e848eab887a10cbefddc3f0793 100644
--- a/sdk/lib/_internal/pub/lib/src/barback.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback.dart
@@ -17,6 +17,8 @@ import 'log.dart' as log;
import 'package_graph.dart';
import 'utils.dart';
+export 'barback/sources.dart' show WatcherType;
+
/// An identifier for a transformer and the configuration that will be passed to
/// it.
///
@@ -108,7 +110,7 @@ class TransformerId {
/// the app when the server is started will be maintained.
Future<BarbackServer> createServer(String host, int port, PackageGraph graph,
BarbackMode mode, {Iterable<Transformer> builtInTransformers,
- bool watchForUpdates: true}) {
+ WatcherType watcher: WatcherType.AUTO}) {
var provider = new PubPackageProvider(graph);
var barback = new Barback(provider);
@@ -117,8 +119,15 @@ Future<BarbackServer> createServer(String host, int port, PackageGraph graph,
return BarbackServer.bind(host, port, barback, graph.entrypoint.root.name)
.then((server) {
return new Future.sync(() {
- if (watchForUpdates) return watchSources(graph, barback);
- loadSources(graph, barback);
+ if (watcher == WatcherType.NONE) {
+ loadSources(graph, barback);
+ return;
+ }
+
+ return watchSources(graph, barback, (directory) {
+ if (watcher == WatcherType.AUTO) return new DirectoryWatcher(directory);
+ return new PollingDirectoryWatcher(directory);
Bob Nystrom 2013/11/08 19:29:08 Did you miss uploading a change here? This should
nweiz 2013/11/08 19:32:10 Yeah, I just forgot to upload the change that got
+ });
}).then((_) {
var completer = new Completer();
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/barback/sources.dart » ('j') | sdk/lib/_internal/pub/lib/src/barback/sources.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698