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

Side by Side Diff: packages/watcher/lib/src/utils.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 4 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 unified diff | Download patch
« no previous file with comments | « packages/watcher/lib/src/stat.dart ('k') | packages/watcher/lib/src/watch_event.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library watcher.utils;
6
7 import 'dart:async'; 5 import 'dart:async';
8 import 'dart:io'; 6 import 'dart:io';
9 import 'dart:collection'; 7 import 'dart:collection';
10 8
9 import 'package:async/async.dart';
10
11 /// Returns `true` if [error] is a [FileSystemException] for a missing 11 /// Returns `true` if [error] is a [FileSystemException] for a missing
12 /// directory. 12 /// directory.
13 bool isDirectoryNotFoundException(error) { 13 bool isDirectoryNotFoundException(error) {
14 if (error is! FileSystemException) return false; 14 if (error is! FileSystemException) return false;
15 15
16 // See dartbug.com/12461 and tests/standalone/io/directory_error_test.dart. 16 // See dartbug.com/12461 and tests/standalone/io/directory_error_test.dart.
17 var notFoundCode = Platform.operatingSystem == "windows" ? 3 : 2; 17 var notFoundCode = Platform.operatingSystem == "windows" ? 3 : 2;
18 return error.osError.errorCode == notFoundCode; 18 return error.osError.errorCode == notFoundCode;
19 } 19 }
20 20
21 /// Returns the union of all elements in each set in [sets]. 21 /// Returns the union of all elements in each set in [sets].
22 Set unionAll(Iterable<Set> sets) => 22 Set unionAll(Iterable<Set> sets) =>
23 sets.fold(new Set(), (union, set) => union.union(set)); 23 sets.fold(new Set(), (union, set) => union.union(set));
24 24
25 /// Returns a buffered stream that will emit the same values as the stream 25 /// Returns a buffered stream that will emit the same values as the stream
26 /// returned by [future] once [future] completes. 26 /// returned by [future] once [future] completes.
27 /// 27 ///
28 /// If [future] completes to an error, the return value will emit that error and 28 /// If [future] completes to an error, the return value will emit that error and
29 /// then close. 29 /// then close.
30 /// 30 ///
31 /// If [broadcast] is true, a broadcast stream is returned. This assumes that 31 /// If [broadcast] is true, a broadcast stream is returned. This assumes that
32 /// the stream returned by [future] will be a broadcast stream as well. 32 /// the stream returned by [future] will be a broadcast stream as well.
33 /// [broadcast] defaults to false. 33 /// [broadcast] defaults to false.
34 Stream futureStream(Future<Stream> future, {bool broadcast: false}) { 34 Stream/*<T>*/ futureStream/*<T>*/(Future<Stream/*<T>*/> future,
35 {bool broadcast: false}) {
35 var subscription; 36 var subscription;
36 var controller; 37 StreamController/*<T>*/ controller;
37 38
38 future = future.catchError((e, stackTrace) { 39 future = DelegatingFuture.typed(future.catchError((e, stackTrace) {
39 // Since [controller] is synchronous, it's likely that emitting an error 40 // Since [controller] is synchronous, it's likely that emitting an error
40 // will cause it to be cancelled before we call close. 41 // will cause it to be cancelled before we call close.
41 if (controller != null) controller.addError(e, stackTrace); 42 if (controller != null) controller.addError(e, stackTrace);
42 if (controller != null) controller.close(); 43 if (controller != null) controller.close();
43 controller = null; 44 controller = null;
44 }); 45 }));
45 46
46 onListen() { 47 onListen() {
47 future.then((stream) { 48 future.then((stream) {
48 if (controller == null) return; 49 if (controller == null) return;
49 subscription = stream.listen( 50 subscription = stream.listen(
50 controller.add, 51 controller.add,
51 onError: controller.addError, 52 onError: controller.addError,
52 onDone: controller.close); 53 onDone: controller.close);
53 }); 54 });
54 } 55 }
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 88
88 /// A stream transformer that batches all events that are sent at the same time. 89 /// A stream transformer that batches all events that are sent at the same time.
89 /// 90 ///
90 /// When multiple events are synchronously added to a stream controller, the 91 /// When multiple events are synchronously added to a stream controller, the
91 /// [StreamController] implementation uses [scheduleMicrotask] to schedule the 92 /// [StreamController] implementation uses [scheduleMicrotask] to schedule the
92 /// asynchronous firing of each event. In order to recreate the synchronous 93 /// asynchronous firing of each event. In order to recreate the synchronous
93 /// batches, this collates all the events that are received in "nearby" 94 /// batches, this collates all the events that are received in "nearby"
94 /// microtasks. 95 /// microtasks.
95 class BatchedStreamTransformer<T> implements StreamTransformer<T, List<T>> { 96 class BatchedStreamTransformer<T> implements StreamTransformer<T, List<T>> {
96 Stream<List<T>> bind(Stream<T> input) { 97 Stream<List<T>> bind(Stream<T> input) {
97 var batch = new Queue(); 98 var batch = new Queue<T>();
98 return new StreamTransformer<T, List<T>>.fromHandlers( 99 return new StreamTransformer<T, List<T>>.fromHandlers(
99 handleData: (event, sink) { 100 handleData: (event, sink) {
100 batch.add(event); 101 batch.add(event);
101 102
102 // [Timer.run] schedules an event that runs after any microtasks that have 103 // [Timer.run] schedules an event that runs after any microtasks that have
103 // been scheduled. 104 // been scheduled.
104 Timer.run(() { 105 Timer.run(() {
105 if (batch.isEmpty) return; 106 if (batch.isEmpty) return;
106 sink.add(batch.toList()); 107 sink.add(batch.toList());
107 batch.clear(); 108 batch.clear();
108 }); 109 });
109 }, handleDone: (sink) { 110 }, handleDone: (sink) {
110 if (batch.isNotEmpty) { 111 if (batch.isNotEmpty) {
111 sink.add(batch.toList()); 112 sink.add(batch.toList());
112 batch.clear(); 113 batch.clear();
113 } 114 }
114 sink.close(); 115 sink.close();
115 }).bind(input); 116 }).bind(input);
116 } 117 }
117 } 118 }
OLDNEW
« no previous file with comments | « packages/watcher/lib/src/stat.dart ('k') | packages/watcher/lib/src/watch_event.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698