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

Side by Side Diff: dart/runtime/bin/vmservice/client/lib/src/observatory/isolate_manager.dart

Issue 119673004: Version 1.1.0-dev.5.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 observatory; 5 part of observatory;
6 6
7 /// Collection of isolates which are running in the VM. Updated 7 /// Collection of isolates which are running in the VM. Updated
8 class IsolateManager extends Observable { 8 class IsolateManager extends Observable {
9 ObservatoryApplication _application; 9 ObservatoryApplication _application;
10 ObservatoryApplication get application => _application; 10 ObservatoryApplication get application => _application;
11 11
12 @observable final Map<int, Isolate> isolates = 12 @observable final Map<String, Isolate> isolates =
13 toObservable(new Map<int, Isolate>()); 13 toObservable(new Map<String, Isolate>());
14 14
15 static bool _foundIsolateInMembers(int id, List<Map> members) { 15 static bool _foundIsolateInMembers(int id, List<Map> members) {
16 return members.any((E) => E['id'] == id); 16 return members.any((E) => E['id'] == id);
17 } 17 }
18 18
19 void _responseInterceptor() { 19 void _responseInterceptor() {
20 _application.requestManager.responses.forEach((response) { 20 _application.requestManager.responses.forEach((response) {
21 if (response['type'] == 'IsolateList') { 21 if (response['type'] == 'IsolateList') {
22 _updateIsolates(response['members']); 22 _updateIsolates(response['members']);
23 } 23 }
24 }); 24 });
25 } 25 }
26 26
27 Isolate getIsolate(int id) { 27 Isolate getIsolate(String id) {
28 Isolate isolate = isolates[id]; 28 Isolate isolate = isolates[id];
29 if (isolate == null) { 29 if (isolate == null) {
30 isolate = new Isolate(id, ''); 30 isolate = new Isolate(id, '');
31 isolates[id] = isolate; 31 isolates[id] = isolate;
32 } 32 }
33 return isolate; 33 return isolate;
34 } 34 }
35 35
36 void _updateIsolates(List<Map> members) { 36 void _updateIsolates(List<Map> members) {
37 // Find dead isolates. 37 // Find dead isolates.
(...skipping 13 matching lines...) Expand all
51 var name = k['name']; 51 var name = k['name'];
52 if (isolates[id] == null) { 52 if (isolates[id] == null) {
53 var isolate = new Isolate(id, name); 53 var isolate = new Isolate(id, name);
54 isolates[id] = isolate; 54 isolates[id] = isolate;
55 } else { 55 } else {
56 isolates[id].name = name; 56 isolates[id].name = name;
57 } 57 }
58 }); 58 });
59 } 59 }
60 } 60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698