| 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 library dart.vmstats; | 5 library dart.vmstats; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:html'; | 8 import 'dart:html'; |
| 9 import 'dart:json' as JSON; | 9 import 'dart:json' as JSON; |
| 10 | 10 |
| 11 part 'bargraph.dart'; | 11 part 'bargraph.dart'; |
| 12 part 'isolate_list.dart'; | 12 part 'isolate_list.dart'; |
| 13 part 'models.dart'; | 13 part 'models.dart'; |
| 14 | 14 |
| 15 BarGraph _graph; | 15 BarGraph _graph; |
| 16 IsolateList _isolateList; | 16 IsolateList _isolateList; |
| 17 DivElement _statusText; | 17 DivElement _statusText; |
| 18 IsolateListModel _isolates; | 18 IsolateListModel _isolates; |
| 19 Timer _updater; | 19 Timer _updater; |
| 20 | 20 |
| 21 final int _POLL_INTERVAL = const Duration(seconds: 1); | 21 final int _POLL_INTERVAL = const Duration(seconds: 1); |
| 22 final String CYAN = '#00EE76'; |
| 23 final String GREEN = '#97FFFF'; |
| 22 | 24 |
| 23 void main() { | 25 void main() { |
| 24 DivElement dashBoard = query('#dashboard'); | 26 DivElement dashBoard = query('#dashboard'); |
| 25 CanvasElement canvas = query('#graph'); | 27 CanvasElement canvas = query('#graph'); |
| 26 var elements = [ new Element("Old Space", "#97FFFF"), | 28 var elements = [ new Element("Old Space", GREEN), |
| 27 new Element("New Space", "#00EE76")]; | 29 new Element("New Space", CYAN)]; |
| 28 _graph = new BarGraph(canvas, elements); | 30 _graph = new BarGraph(canvas, elements); |
| 29 UListElement isolateListElement = query('#isolateList'); | 31 _isolateList = new IsolateList(query('#isolateList')); |
| 30 _isolateList = new IsolateList(isolateListElement); | |
| 31 _statusText = query('#statusText'); | 32 _statusText = query('#statusText'); |
| 32 | 33 |
| 33 _isolates = new IsolateListModel(); | 34 _isolates = new IsolateListModel(); |
| 34 _isolates.addListener(onUpdateStatus, onRequestFailed); | 35 _isolates.addListener(onUpdateStatus, onRequestFailed); |
| 35 _isolates.update(); | 36 _isolates.update(); |
| 36 _updater = new Timer.periodic(_POLL_INTERVAL, (timer) => _isolates.update()); | 37 _updater = new Timer.periodic(_POLL_INTERVAL, (timer) => _isolates.update()); |
| 37 } | 38 } |
| 38 | 39 |
| 39 void onUpdateStatus(IsolateListModel model) { | 40 void onUpdateStatus(IsolateListModel model) { |
| 40 int oldSpace = 0; | 41 int oldSpace = 0; |
| 41 int newSpace = 0; | 42 int newSpace = 0; |
| 42 model.forEach((Isolate element) { | 43 model.forEach((Isolate element) { |
| 43 oldSpace += element.oldSpace.used; | 44 oldSpace += element.oldSpace.used; |
| 44 newSpace += element.newSpace.used; | 45 newSpace += element.newSpace.used; |
| 45 }); | 46 }); |
| 46 _graph.addSample([oldSpace, newSpace]); | 47 _graph.addSample([oldSpace, newSpace]); |
| 47 _isolateList.updateList(model); | 48 _isolateList.updateList(model); |
| 48 showStatus('Running ...'); | 49 showStatus('Running ...'); |
| 49 } | 50 } |
| 50 | 51 |
| 51 void onRequestFailed() { | 52 void onRequestFailed() { |
| 52 _updater.cancel(); | 53 _updater.cancel(); |
| 53 _isolates.removeListener(onUpdateStatus); | 54 _isolates.removeListener(onUpdateStatus); |
| 54 showStatus('Server closed'); | 55 showStatus('Server closed'); |
| 55 } | 56 } |
| 56 | 57 |
| 57 void showStatus(status) { | 58 void showStatus(status) { |
| 58 _statusText.text = status; | 59 _statusText.text = status; |
| 59 } | 60 } |
| OLD | NEW |