Chromium Code Reviews

Unified Diff: sdk/lib/_internal/pub/test/serve/utils.dart

Issue 310053004: Add an exitOnClose function to the "pub serve" WebSocket API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: sdk/lib/_internal/pub/test/serve/utils.dart
diff --git a/sdk/lib/_internal/pub/test/serve/utils.dart b/sdk/lib/_internal/pub/test/serve/utils.dart
index a1637f137fc2ee0df52b3fb51ea945e0ae144b38..4ec4dc8f65751958d1722e3dabc8d81d4a2f23c1 100644
--- a/sdk/lib/_internal/pub/test/serve/utils.dart
+++ b/sdk/lib/_internal/pub/test/serve/utils.dart
@@ -328,16 +328,25 @@ Future _ensureWebSocket() {
});
}
+/// Schedules closing the web socket connection to the currently-running pub
+/// serve.
+Future closeWebSocket() {
+ schedule(() {
+ return _ensureWebSocket().then((_) => _webSocket.close())
+ .then((_) => _webSocket = null);
+ }, "closing web socket");
+}
+
/// Sends a JSON RPC 2.0 request to the running pub serve's web socket
/// connection.
///
-/// This calls a method named [method] with the given [params]. [params] may
-/// contain Futures, in which case this will wait until they've completed before
-/// sending the request.
+/// This calls a method named [method] with the given [params] (or no
+/// parameters, if it's not passed). [params] may contain Futures, in which case
+/// this will wait until they've completed before sending the request.
///
/// This schedules the request, but doesn't block the schedule on the response.
/// It returns the response as a [Future].
-Future<Map> webSocketRequest(String method, Map params) {
+Future<Map> webSocketRequest(String method, [Map params]) {
var completer = new Completer();
schedule(() {
return Future.wait([
@@ -424,14 +433,15 @@ var _rpcId = 0;
/// Sends a JSON-RPC 2.0 request calling [method] with [params].
///
/// Returns the response object.
-Future<Map> _jsonRpcRequest(String method, Map params) {
+Future<Map> _jsonRpcRequest(String method, [Map params]) {
var id = _rpcId++;
- _webSocket.add(JSON.encode({
+ var message = {
"jsonrpc": "2.0",
"method": method,
- "params": params,
"id": id
- }));
+ };
+ if (params != null) message["params"] = params;
+ _webSocket.add(JSON.encode(message));
return _webSocketBroadcastStream
.firstWhere((response) => response["id"] == id).then((value) {

Powered by Google App Engine