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

Unified Diff: pkg/scheduled_test/lib/scheduled_process.dart

Issue 14753009: Make StreamSubscription be the active part of a stream. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove remaining debugging prints. Created 7 years, 7 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
Index: pkg/scheduled_test/lib/scheduled_process.dart
diff --git a/pkg/scheduled_test/lib/scheduled_process.dart b/pkg/scheduled_test/lib/scheduled_process.dart
index 23370f10942602b5ccc0e42e56dbce3c3d87c70e..c3419c3c3ceeecb7d1beed477cd4f2c62907a3e5 100644
--- a/pkg/scheduled_test/lib/scheduled_process.dart
+++ b/pkg/scheduled_test/lib/scheduled_process.dart
@@ -39,7 +39,7 @@ class ScheduledProcess {
Stream<String> _stdoutLog;
/// A line-by-line view of the standard output stream of the process.
- Stream<String> _stdout;
+ StreamIterator<String> _stdout;
/// A canceller that controls both [_stdout] and [_stdoutLog].
StreamCanceller _stdoutCanceller;
@@ -49,7 +49,7 @@ class ScheduledProcess {
Stream<String> _stderrLog;
/// A line-by-line view of the standard error stream of the process.
- Stream<String> _stderr;
+ StreamIterator<String> _stderr;
/// A canceller that controls both [_stderr] and [_stderrLog].
StreamCanceller _stderrCanceller;
@@ -102,8 +102,8 @@ class ScheduledProcess {
_stderrCanceller = stderrWithCanceller.last;
_stderrLog = stderrWithCanceller.first;
- _stdout = stdoutStream();
- _stderr = stderrStream();
+ _stdout = new StreamIterator<String>(stdoutStream());
+ _stderr = new StreamIterator<String>(stderrStream());
}
/// Updates [_description] to reflect [executable] and [arguments], which are
@@ -240,11 +240,11 @@ class ScheduledProcess {
}
/// Reads the next line of stdout from the process.
- Future<String> nextLine() => schedule(() => streamFirst(_stdout),
+ Future<String> nextLine() => schedule(() => streamIteratorFirst(_stdout),
"reading the next stdout line from process '$description'");
/// Reads the next line of stderr from the process.
- Future<String> nextErrLine() => schedule(() => streamFirst(_stderr),
+ Future<String> nextErrLine() => schedule(() => streamIteratorFirst(_stderr),
"reading the next stderr line from process '$description'");
/// Reads the remaining stdout from the process. This should only be called
@@ -254,8 +254,7 @@ class ScheduledProcess {
throw new StateError("remainingStdout() should only be called after "
"kill() or shouldExit().");
}
-
- return schedule(() => _stdout.toList().then((lines) => lines.join("\n")),
+ return schedule(() => concatRest(_stdout),
"reading the remaining stdout from process '$description'");
}
@@ -267,7 +266,7 @@ class ScheduledProcess {
"kill() or shouldExit().");
}
- return schedule(() => _stderr.toList().then((lines) => lines.join("\n")),
+ return schedule(() => concatRest(_stderr),
"reading the remaining stderr from process '$description'");
}
« no previous file with comments | « no previous file | pkg/scheduled_test/lib/src/mock_clock.dart » ('j') | pkg/scheduled_test/lib/src/mock_clock.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698