Add a bunch of debugging prints to the Mac OS watcher.

This reverts r30184, which in turn reverted r30181. It correctly detects whether
it's running on a buildbot in a way that will work for the vm-mac-release bot.

This is a temporary CL intended to help provide information about a test failure
that's only reproducing on the build bot. It will be rolled back as soon as
sufficient information is gathered.

R=rnystrom@google.com
BUG=

Review URL: https://codereview.chromium.org//69933007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@30205 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
nweiz@google.com 2013-11-12 20:08:41 +00:00
parent 25b81b3e8b
commit b58d984659
2 changed files with 78 additions and 3 deletions

View file

@ -340,4 +340,3 @@ watcher/test/*/linux_test: Pass, Slow # Issue 14606
[ $runtime == vm && $system == macos ]
watcher/test/no_subscribers/mac_os_test: Fail # Issue 14793 (see test file for details)
watcher/test/directory_watcher/mac_os_test: Pass, Fail # Issue 15042

View file

@ -7,6 +7,8 @@ library watcher.directory_watcher.mac_os;
import 'dart:async';
import 'dart:io';
import 'package:path/path.dart' as p;
import '../constructable_file_system_event.dart';
import '../path_set.dart';
import '../utils.dart';
@ -78,7 +80,12 @@ class _MacOSDirectoryWatcher implements ManuallyClosedDirectoryWatcher {
if (entity is! Directory) _files.add(entity.path);
},
onError: _emitError,
onDone: _readyCompleter.complete,
onDone: () {
if (_runningOnBuildbot) {
print("watcher is ready");
}
_readyCompleter.complete();
},
cancelOnError: true);
}
@ -94,12 +101,38 @@ class _MacOSDirectoryWatcher implements ManuallyClosedDirectoryWatcher {
/// The callback that's run when [Directory.watch] emits a batch of events.
void _onBatch(List<FileSystemEvent> batch) {
if (_runningOnBuildbot) {
print("======== batch:");
for (var event in batch) {
print(" ${_formatEvent(event)}");
}
print("known files:");
for (var foo in _files.toSet()) {
print(" ${p.relative(foo, from: directory)}");
}
}
batches++;
_sortEvents(batch).forEach((path, events) {
var relativePath = p.relative(path, from: directory);
if (_runningOnBuildbot) {
print("events for $relativePath:\n");
for (var event in events) {
print(" ${_formatEvent(event)}");
}
}
var canonicalEvent = _canonicalEvent(events);
events = canonicalEvent == null ?
_eventsBasedOnFileSystem(path) : [canonicalEvent];
if (_runningOnBuildbot) {
print("canonical event for $relativePath: "
"${_formatEvent(canonicalEvent)}");
print("actionable events for $relativePath: "
"${events.map(_formatEvent)}");
}
for (var event in events) {
if (event is FileSystemCreateEvent) {
@ -113,7 +146,12 @@ class _MacOSDirectoryWatcher implements ManuallyClosedDirectoryWatcher {
if (entity is Directory) return;
_emitEvent(ChangeType.ADD, entity.path);
_files.add(entity.path);
}, onError: _emitError, cancelOnError: true);
}, onError: (e, stackTrace) {
if (_runningOnBuildbot) {
print("got error listing $relativePath: $e");
}
_emitError(e, stackTrace);
}, cancelOnError: true);
} else if (event is FileSystemModifyEvent) {
assert(!event.isDirectory);
_emitEvent(ChangeType.MODIFY, path);
@ -125,6 +163,10 @@ class _MacOSDirectoryWatcher implements ManuallyClosedDirectoryWatcher {
}
}
});
if (_runningOnBuildbot) {
print("========");
}
}
/// Sort all the events in a batch into sets based on their path.
@ -261,6 +303,13 @@ class _MacOSDirectoryWatcher implements ManuallyClosedDirectoryWatcher {
var fileExists = new File(path).existsSync();
var dirExists = new Directory(path).existsSync();
if (_runningOnBuildbot) {
print("file existed: $fileExisted");
print("dir existed: $dirExisted");
print("file exists: $fileExists");
print("dir exists: $dirExists");
}
var events = [];
if (fileExisted) {
if (fileExists) {
@ -330,6 +379,10 @@ class _MacOSDirectoryWatcher implements ManuallyClosedDirectoryWatcher {
// watch beginning.
if (type == ChangeType.ADD && _files.contains(path)) return;
if (_runningOnBuildbot) {
print("emitting $type ${p.relative(path, from: directory)}");
}
_eventsController.add(new WatchEvent(type, path));
}
@ -350,4 +403,27 @@ class _MacOSDirectoryWatcher implements ManuallyClosedDirectoryWatcher {
}, cancelOnError: cancelOnError);
_subscriptions.add(subscription);
}
/// Return a human-friendly string representation of [event].
String _formatEvent(FileSystemEvent event) {
if (event == null) return 'null';
var path = p.relative(event.path, from: directory);
var type = event.isDirectory ? 'directory' : 'file';
if (event is FileSystemCreateEvent) {
return "create $type $path";
} else if (event is FileSystemDeleteEvent) {
return "delete $type $path";
} else if (event is FileSystemModifyEvent) {
return "modify $type $path";
} else if (event is FileSystemMoveEvent) {
return "move $type $path to "
"${p.relative(event.destination, from: directory)}";
}
}
// TODO(nweiz): remove this when the buildbots calm down.
/// Whether this code is running on a buildbot.
bool get _runningOnBuildbot =>
Platform.environment['LOGNAME'] == 'chrome-bot';
}