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.asset_cascade; | 5 library barback.asset_cascade; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:collection'; | 8 import 'dart:collection'; |
9 | 9 |
10 import 'asset.dart'; | 10 import 'asset.dart'; |
11 import 'asset_id.dart'; | 11 import 'asset_id.dart'; |
12 import 'asset_node.dart'; | 12 import 'asset_node.dart'; |
13 import 'asset_set.dart'; | 13 import 'asset_set.dart'; |
14 import 'barback_logger.dart'; | 14 import 'log.dart'; |
15 import 'build_result.dart'; | 15 import 'build_result.dart'; |
16 import 'cancelable_future.dart'; | 16 import 'cancelable_future.dart'; |
17 import 'errors.dart'; | 17 import 'errors.dart'; |
18 import 'package_graph.dart'; | 18 import 'package_graph.dart'; |
19 import 'phase.dart'; | 19 import 'phase.dart'; |
20 import 'stream_pool.dart'; | 20 import 'stream_pool.dart'; |
21 import 'transformer.dart'; | 21 import 'transformer.dart'; |
22 import 'utils.dart'; | 22 import 'utils.dart'; |
23 | 23 |
24 /// The asset cascade for an individual package. | 24 /// The asset cascade for an individual package. |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 /// | 78 /// |
79 /// This may emit events when the cascade was already dirty. Events are | 79 /// This may emit events when the cascade was already dirty. Events are |
80 /// emitted synchronously to ensure that the dirty state is thoroughly | 80 /// emitted synchronously to ensure that the dirty state is thoroughly |
81 /// propagated as soon as any assets are changed. | 81 /// propagated as soon as any assets are changed. |
82 Stream get onDirty => _onDirtyPool.stream; | 82 Stream get onDirty => _onDirtyPool.stream; |
83 final _onDirtyPool = new StreamPool.broadcast(); | 83 final _onDirtyPool = new StreamPool.broadcast(); |
84 | 84 |
85 /// A controller whose stream feeds into [_onDirtyPool]. | 85 /// A controller whose stream feeds into [_onDirtyPool]. |
86 final _onDirtyController = new StreamController.broadcast(sync: true); | 86 final _onDirtyController = new StreamController.broadcast(sync: true); |
87 | 87 |
88 /// A stream that emits an event whenever any transforms in this cascade log | 88 /// A stream that emits an event whenever any transforms in this cascade logs |
89 /// an entry. | 89 /// an entry. |
90 Stream<LogEntry> get onLog => _onLogPool.stream; | 90 Stream<LogEntry> get onLog => _onLogPool.stream; |
91 final _onLogPool = new StreamPool<LogEntry>.broadcast(); | 91 final _onLogPool = new StreamPool<LogEntry>.broadcast(); |
92 | 92 |
93 /// The errors that have occurred since the current build started. | 93 /// The errors that have occurred since the current build started. |
94 /// | 94 /// |
95 /// This will be empty if no build is occurring. | 95 /// This will be empty if no build is occurring. |
96 Queue<BarbackException> _accumulatedErrors; | 96 Queue<BarbackException> _accumulatedErrors; |
97 | 97 |
98 /// The number of errors that have been logged since the current build | 98 /// The number of errors that have been logged since the current build |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 | 301 |
302 // Otherwise, everything is done. | 302 // Otherwise, everything is done. |
303 return; | 303 return; |
304 } | 304 } |
305 | 305 |
306 // Process that phase and then loop onto the next. | 306 // Process that phase and then loop onto the next. |
307 return future.then((_) => _process()); | 307 return future.then((_) => _process()); |
308 }); | 308 }); |
309 } | 309 } |
310 } | 310 } |
OLD | NEW |