OLD | NEW |
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 barback.utils; | 5 library barback.utils; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:typed_data'; | 8 import 'dart:typed_data'; |
9 | 9 |
| 10 import 'package:stack_trace/stack_trace.dart'; |
| 11 |
10 /// A pair of values. | 12 /// A pair of values. |
11 class Pair<E, F> { | 13 class Pair<E, F> { |
12 E first; | 14 E first; |
13 F last; | 15 F last; |
14 | 16 |
15 Pair(this.first, this.last); | 17 Pair(this.first, this.last); |
16 | 18 |
17 String toString() => '($first, $last)'; | 19 String toString() => '($first, $last)'; |
18 | 20 |
19 bool operator==(other) { | 21 bool operator==(other) { |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 var doneCount = 0; | 146 var doneCount = 0; |
145 // Use a sync stream to preserve the synchrony behavior of the input streams. | 147 // Use a sync stream to preserve the synchrony behavior of the input streams. |
146 // If the inputs are sync, then this will be sync as well; if the inputs are | 148 // If the inputs are sync, then this will be sync as well; if the inputs are |
147 // async, then the events we receive will also be async, and forwarding them | 149 // async, then the events we receive will also be async, and forwarding them |
148 // sync won't change that. | 150 // sync won't change that. |
149 var controller = broadcast ? new StreamController.broadcast(sync: true) | 151 var controller = broadcast ? new StreamController.broadcast(sync: true) |
150 : new StreamController(sync: true); | 152 : new StreamController(sync: true); |
151 | 153 |
152 for (var stream in streams) { | 154 for (var stream in streams) { |
153 stream.listen( | 155 stream.listen( |
154 controller.add, | 156 controller.add, |
155 onError: controller.addError, | 157 onError: controller.addError, |
156 onDone: () { | 158 onDone: () { |
157 doneCount++; | 159 doneCount++; |
158 if (doneCount == streams.length) controller.close(); | 160 if (doneCount == streams.length) controller.close(); |
159 }); | 161 }); |
160 } | 162 } |
161 | 163 |
162 return controller.stream; | 164 return controller.stream; |
163 } | 165 } |
164 | 166 |
165 /// Prepends each line in [text] with [prefix]. If [firstPrefix] is passed, the | 167 /// Prepends each line in [text] with [prefix]. If [firstPrefix] is passed, the |
166 /// first line is prefixed with that instead. | 168 /// first line is prefixed with that instead. |
167 String prefixLines(String text, {String prefix: '| ', String firstPrefix}) { | 169 String prefixLines(String text, {String prefix: '| ', String firstPrefix}) { |
168 var lines = text.split('\n'); | 170 var lines = text.split('\n'); |
169 if (firstPrefix == null) { | 171 if (firstPrefix == null) { |
(...skipping 16 matching lines...) Expand all Loading... |
186 // would therefore not wait for microtask callbacks that are scheduled after | 188 // would therefore not wait for microtask callbacks that are scheduled after |
187 // invoking this method. | 189 // invoking this method. |
188 return new Future.delayed(Duration.ZERO, () => pumpEventQueue(times - 1)); | 190 return new Future.delayed(Duration.ZERO, () => pumpEventQueue(times - 1)); |
189 } | 191 } |
190 | 192 |
191 /// Like `new Future`, but avoids issue 11911 by using `new Future.value` under | 193 /// Like `new Future`, but avoids issue 11911 by using `new Future.value` under |
192 /// the covers. | 194 /// the covers. |
193 // TODO(jmesserly): doc comment changed to due 14601. | 195 // TODO(jmesserly): doc comment changed to due 14601. |
194 Future newFuture(callback()) => new Future.value().then((_) => callback()); | 196 Future newFuture(callback()) => new Future.value().then((_) => callback()); |
195 | 197 |
| 198 /// Like [Future.sync], but wraps the Future in [Chain.track] as well. |
| 199 Future syncFuture(callback()) => Chain.track(new Future.sync(callback)); |
| 200 |
196 /// Returns a buffered stream that will emit the same values as the stream | 201 /// Returns a buffered stream that will emit the same values as the stream |
197 /// returned by [future] once [future] completes. | 202 /// returned by [future] once [future] completes. |
198 /// | 203 /// |
199 /// If [future] completes to an error, the return value will emit that error and | 204 /// If [future] completes to an error, the return value will emit that error and |
200 /// then close. | 205 /// then close. |
201 /// | 206 /// |
202 /// If [broadcast] is true, a broadcast stream is returned. This assumes that | 207 /// If [broadcast] is true, a broadcast stream is returned. This assumes that |
203 /// the stream returned by [future] will be a broadcast stream as well. | 208 /// the stream returned by [future] will be a broadcast stream as well. |
204 /// [broadcast] defaults to false. | 209 /// [broadcast] defaults to false. |
205 Stream futureStream(Future<Stream> future, {bool broadcast: false}) { | 210 Stream futureStream(Future<Stream> future, {bool broadcast: false}) { |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 subscription = callback().listen(controller.add, | 256 subscription = callback().listen(controller.add, |
252 onError: controller.addError, | 257 onError: controller.addError, |
253 onDone: controller.close); | 258 onDone: controller.close); |
254 }, | 259 }, |
255 onCancel: () => subscription.cancel(), | 260 onCancel: () => subscription.cancel(), |
256 onPause: () => subscription.pause(), | 261 onPause: () => subscription.pause(), |
257 onResume: () => subscription.resume(), | 262 onResume: () => subscription.resume(), |
258 sync: true); | 263 sync: true); |
259 return controller.stream; | 264 return controller.stream; |
260 } | 265 } |
OLD | NEW |