37ed87b038
Port the service tests and Observatory to Dart 3. Change-Id: I8a8b20d8f90acd3b5f741c93f10ba99971aa0c52 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/154825 Commit-Queue: Ryan Macnak <rmacnak@google.com> Reviewed-by: Ben Konyi <bkonyi@google.com>
38 lines
1.2 KiB
Dart
38 lines
1.2 KiB
Dart
// 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 shell;
|
|
|
|
import 'package:observatory/service_io.dart';
|
|
|
|
import 'dart:io';
|
|
|
|
// Simple demo for service_io library. Connects to localhost on the default
|
|
// port, picks the first isolate, reads requests from stdin, and prints
|
|
// results to stdout. Example session:
|
|
// <<< isolate isolates/1071334835
|
|
// >>> /classes/40
|
|
// <<< {"type":"Class","id":"classes\/40","name":"num","user_name":"num",...
|
|
// >>> /objects/0
|
|
// >>> {"type":"Array","class":{"type":"@Class","id":"classes\/62",...
|
|
|
|
void repl(VM vm, Isolate isolate, String lastResult) {
|
|
print(lastResult);
|
|
Map params = {
|
|
'objectId': stdin.readLineSync(),
|
|
};
|
|
isolate.invokeRpcNoUpgrade('getObject', params).then((Map result) {
|
|
repl(vm, isolate, result.toString());
|
|
});
|
|
}
|
|
|
|
void main() {
|
|
String addr = 'ws://localhost:8181/ws';
|
|
new WebSocketVM(new WebSocketVMTarget(addr)).load().then((serviceObject) {
|
|
VM vm = serviceObject as VM;
|
|
Isolate isolate = vm.isolates.first;
|
|
repl(vm, isolate, 'isolate ${isolate.id}');
|
|
});
|
|
}
|