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

Unified Diff: pkg/barback/lib/src/node_streams.dart

Issue 261823008: Reorganize barback's source files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: re-add barback/lib/src/internal_asset.dart Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/barback/lib/src/node_status.dart ('k') | pkg/barback/lib/src/package_graph.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/barback/lib/src/node_streams.dart
diff --git a/pkg/barback/lib/src/node_streams.dart b/pkg/barback/lib/src/node_streams.dart
deleted file mode 100644
index 58d0f3b2f4d0feebf5f2bd79c6a38abd59382be9..0000000000000000000000000000000000000000
--- a/pkg/barback/lib/src/node_streams.dart
+++ /dev/null
@@ -1,66 +0,0 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library barback.node_streams;
-
-import 'dart:async';
-
-import 'asset_node.dart';
-import 'log.dart';
-import 'node_status.dart';
-import 'stream_pool.dart';
-
-/// A collection of streams that are common to nodes in barback's package graph.
-class NodeStreams {
- /// A stream that emits an event every time the node's status changes.
- ///
- /// This will emit the new status. It's guaranteed to emit an event only when
- /// the status changes from the previous value. To ensure this, callers should
- /// emit status changes using [changeStatus]. The initial status is assumed to
- /// be [NodeStatus.RUNNING].
- Stream<NodeStatus> get onStatusChange => _onStatusChangeController.stream;
- final _onStatusChangeController =
- new StreamController<NodeStatus>.broadcast(sync: true);
-
- /// A stream that emits any new assets produced by the node.
- ///
- /// Assets are emitted synchronously to ensure that any changes are thoroughly
- /// propagated as soon as they occur.
- Stream<AssetNode> get onAsset => onAssetPool.stream;
- final onAssetPool = new StreamPool<AssetNode>.broadcast();
- final onAssetController =
- new StreamController<AssetNode>.broadcast(sync: true);
-
- /// A stream that emits an event whenever any the node logs an entry.
- Stream<LogEntry> get onLog => onLogPool.stream;
- final onLogPool = new StreamPool<LogEntry>.broadcast();
- final onLogController = new StreamController<LogEntry>.broadcast(sync: true);
-
- var _previousStatus = NodeStatus.RUNNING;
-
- /// Whether [this] has been closed.
- bool get isClosed => onAssetController.isClosed;
-
- NodeStreams() {
- onAssetPool.add(onAssetController.stream);
- onLogPool.add(onLogController.stream);
- }
-
- /// Emits a status change notification via [onStatusChange].
- ///
- /// This guarantees that a change notification won't be emitted if the status
- /// didn't actually change.
- void changeStatus(NodeStatus status) {
- if (_previousStatus != status) _onStatusChangeController.add(status);
- }
-
- /// Closes all the streams.
- void close() {
- _onStatusChangeController.close();
- onAssetController.close();
- onAssetPool.close();
- onLogController.close();
- onLogPool.close();
- }
-}
« no previous file with comments | « pkg/barback/lib/src/node_status.dart ('k') | pkg/barback/lib/src/package_graph.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698