| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of vmservice; | 5 part of vmservice; |
| 6 | 6 |
| 7 class RunningIsolates implements MessageRouter { | 7 class RunningIsolates implements MessageRouter { |
| 8 final Map<int, RunningIsolate> isolates = new Map<int, RunningIsolate>(); | 8 final Map<int, RunningIsolate> isolates = new Map<int, RunningIsolate>(); |
| 9 | 9 |
| 10 RunningIsolates(); | 10 RunningIsolates(); |
| 11 | 11 |
| 12 void isolateStartup(int portId, SendPort sp, String name) { | 12 void isolateStartup(int portId, SendPort sp, String name) { |
| 13 if (isolates[portId] != null) { | |
| 14 throw new StateError('Duplicate isolate startup.'); | |
| 15 } | |
| 16 var ri = new RunningIsolate(portId, sp, name); | 13 var ri = new RunningIsolate(portId, sp, name); |
| 17 isolates[portId] = ri; | 14 isolates[portId] = ri; |
| 18 } | 15 } |
| 19 | 16 |
| 20 void isolateShutdown(int portId, SendPort sp) { | 17 void isolateShutdown(int portId, SendPort sp) { |
| 21 if (isolates[portId] == null) { | 18 if (isolates[portId] == null) { |
| 22 throw new StateError('Unknown isolate.'); | 19 return; |
| 23 } | 20 } |
| 24 isolates.remove(portId); | 21 isolates.remove(portId); |
| 25 } | 22 } |
| 26 | 23 |
| 27 void _isolateCollectionRequest(Message message) { | 24 void _isolateCollectionRequest(Message message) { |
| 28 var members = []; | 25 var members = []; |
| 29 var result = {}; | 26 var result = {}; |
| 30 isolates.forEach((portId, runningIsolate) { | 27 isolates.forEach((portId, runningIsolate) { |
| 31 members.add({ | 28 members.add({ |
| 32 'type': 'Isolate', | 29 'type': 'Isolate', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 // Consume '/isolates/isolateId' | 65 // Consume '/isolates/isolateId' |
| 69 message.path.removeRange(0, 2); | 66 message.path.removeRange(0, 2); |
| 70 if (message.path.length == 0) { | 67 if (message.path.length == 0) { |
| 71 // The message now has an empty path. | 68 // The message now has an empty path. |
| 72 message.setErrorResponse('Empty path for isolate: /isolates/$isolateId'); | 69 message.setErrorResponse('Empty path for isolate: /isolates/$isolateId'); |
| 73 return message.response; | 70 return message.response; |
| 74 } | 71 } |
| 75 return isolate.route(message); | 72 return isolate.route(message); |
| 76 } | 73 } |
| 77 } | 74 } |
| OLD | NEW |