Index: sdk/lib/_internal/pub/lib/src/utils.dart |
diff --git a/sdk/lib/_internal/pub/lib/src/utils.dart b/sdk/lib/_internal/pub/lib/src/utils.dart |
index 2584bc42f6f8e1468b15f0e0ad132ce92a28a01d..74987ec857e03823265e4526d5dc091739c185a0 100644 |
--- a/sdk/lib/_internal/pub/lib/src/utils.dart |
+++ b/sdk/lib/_internal/pub/lib/src/utils.dart |
@@ -18,7 +18,9 @@ import "package:crypto/crypto.dart"; |
import 'package:path/path.dart' as path; |
import "package:stack_trace/stack_trace.dart"; |
-import 'dart.dart'; |
+import '../../asset/dart/serialize.dart'; |
+ |
+export '../../asset/dart/utils.dart'; |
/// A pair of values. |
class Pair<E, F> { |
@@ -78,53 +80,6 @@ class FutureGroup<T> { |
Future<List> get future => _completer.future; |
} |
-/// Returns a buffered stream that will emit the same values as the stream |
-/// returned by [future] once [future] completes. |
-/// |
-/// If [future] completes to an error, the return value will emit that error and |
-/// then close. |
-/// |
-/// If [broadcast] is true, a broadcast stream is returned. This assumes that |
-/// the stream returned by [future] will be a broadcast stream as well. |
-/// [broadcast] defaults to false. |
-Stream futureStream(Future<Stream> future, {bool broadcast: false}) { |
- var subscription; |
- var controller; |
- |
- future = future.catchError((e, stackTrace) { |
- // Since [controller] is synchronous, it's likely that emitting an error |
- // will cause it to be cancelled before we call close. |
- if (controller != null) controller.addError(e, stackTrace); |
- if (controller != null) controller.close(); |
- controller = null; |
- }); |
- |
- onListen() { |
- future.then((stream) { |
- if (controller == null) return; |
- subscription = stream.listen( |
- controller.add, |
- onError: controller.addError, |
- onDone: controller.close); |
- }); |
- } |
- |
- onCancel() { |
- if (subscription != null) subscription.cancel(); |
- subscription = null; |
- controller = null; |
- } |
- |
- if (broadcast) { |
- controller = new StreamController.broadcast( |
- sync: true, onListen: onListen, onCancel: onCancel); |
- } else { |
- controller = new StreamController( |
- sync: true, onListen: onListen, onCancel: onCancel); |
- } |
- return controller.stream; |
-} |
- |
/// Like [new Future], but avoids around issue 11911 by using [new Future.value] |
/// under the covers. |
Future newFuture(callback()) => new Future.value().then((_) => callback()); |
@@ -523,25 +478,6 @@ Stream mergeStreams(Stream stream1, Stream stream2) { |
return controller.stream; |
} |
-/// Returns a [Stream] that will emit the same values as the stream returned by |
-/// [callback]. |
-/// |
-/// [callback] will only be called when the returned [Stream] gets a subscriber. |
-Stream callbackStream(Stream callback()) { |
- var subscription; |
- var controller; |
- controller = new StreamController(onListen: () { |
- subscription = callback().listen(controller.add, |
- onError: controller.addError, |
- onDone: controller.close); |
- }, |
- onCancel: () => subscription.cancel(), |
- onPause: () => subscription.pause(), |
- onResume: () => subscription.resume(), |
- sync: true); |
- return controller.stream; |
-} |
- |
/// A regular expression matching a trailing CR character. |
final _trailingCR = new RegExp(r"\r$"); |
@@ -828,17 +764,6 @@ String yamlToString(data) { |
return buffer.toString(); |
} |
-/// A regular expression to match the exception prefix that some exceptions' |
-/// [Object.toString] values contain. |
-final _exceptionPrefix = new RegExp(r'^([A-Z][a-zA-Z]*)?(Exception|Error): '); |
- |
-/// Get a string description of an exception. |
-/// |
-/// Many exceptions include the exception class name at the beginning of their |
-/// [toString], so we remove that if it exists. |
-String getErrorMessage(error) => |
- error.toString().replaceFirst(_exceptionPrefix, ''); |
- |
/// An exception class for exceptions that are intended to be seen by the user. |
/// These exceptions won't have any debugging information printed when they're |
/// thrown. |