| 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 app; | 5 part of app; |
| 6 | 6 |
| 7 /// The observatory application. Instances of this are created and owned | 7 /// The observatory application. Instances of this are created and owned |
| 8 /// by the observatory_application custom element. | 8 /// by the observatory_application custom element. |
| 9 class ObservatoryApplication extends Observable { | 9 class ObservatoryApplication extends Observable { |
| 10 static ObservatoryApplication app; | 10 static ObservatoryApplication app; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 // vm.reload(); | 68 // vm.reload(); |
| 69 break; | 69 break; |
| 70 | 70 |
| 71 case 'IsolateShutdown': | 71 case 'IsolateShutdown': |
| 72 // TODO(turnidge): Should we show the user isolate shutdown events? | 72 // TODO(turnidge): Should we show the user isolate shutdown events? |
| 73 // What if there are hundreds of them? Coalesce multiple | 73 // What if there are hundreds of them? Coalesce multiple |
| 74 // shutdown events into one notification? | 74 // shutdown events into one notification? |
| 75 removePauseEvents(event.isolate); | 75 removePauseEvents(event.isolate); |
| 76 // vm.reload(); | 76 // vm.reload(); |
| 77 break; | 77 break; |
| 78 | 78 |
| 79 case 'BreakpointResolved': | 79 case 'BreakpointResolved': |
| 80 event.isolate.reloadBreakpoints(); | 80 event.isolate.reloadBreakpoints(); |
| 81 break; | 81 break; |
| 82 | 82 |
| 83 case 'BreakpointReached': | 83 case 'BreakpointReached': |
| 84 case 'IsolateInterrupted': | 84 case 'IsolateInterrupted': |
| 85 case 'ExceptionThrown': | 85 case 'ExceptionThrown': |
| 86 removePauseEvents(event.isolate); | 86 removePauseEvents(event.isolate); |
| 87 notifications.add(event); | 87 notifications.add(event); |
| 88 break; | 88 break; |
| 89 | 89 |
| 90 case 'GC': | 90 case 'GC': |
| 91 // Ignore GC events for now. | 91 // Ignore GC events for now. |
| 92 break; | 92 break; |
| 93 | 93 |
| 94 default: | 94 default: |
| 95 // Ignore unrecognized events. | 95 // Ignore unrecognized events. |
| 96 Logger.root.severe('Unrecognized event: $event'); | 96 Logger.root.severe('Unrecognized event: $event'); |
| 97 break; | 97 break; |
| 98 } | 98 } |
| 99 } | 99 } |
| 100 | 100 |
| 101 void _registerPages() { | 101 void _registerPages() { |
| 102 // Register ClassTreePage. | 102 // Register ClassTreePage. |
| 103 _pageRegistry.add(new ClassTreePage(this)); | 103 _pageRegistry.add(new ClassTreePage(this)); |
| 104 _pageRegistry.add(new VMConnectPage(this)); | 104 _pageRegistry.add(new VMConnectPage(this)); |
| 105 _pageRegistry.add(new ErrorViewPage(this)); | 105 _pageRegistry.add(new ErrorViewPage(this)); |
| 106 _pageRegistry.add(new MetricsPage(this)); |
| 106 // Note that ServiceObjectPage must be the last entry in the list as it is | 107 // Note that ServiceObjectPage must be the last entry in the list as it is |
| 107 // the catch all. | 108 // the catch all. |
| 108 _pageRegistry.add(new ServiceObjectPage(this)); | 109 _pageRegistry.add(new ServiceObjectPage(this)); |
| 109 } | 110 } |
| 110 | 111 |
| 111 void _onError(ServiceError error) { | 112 void _onError(ServiceError error) { |
| 112 lastErrorOrException = error; | 113 lastErrorOrException = error; |
| 113 _visit('error/', null); | 114 _visit('error/', null); |
| 114 } | 115 } |
| 115 | 116 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 | 209 |
| 209 _vmDisconnected(VM vm) { | 210 _vmDisconnected(VM vm) { |
| 210 if (this.vm != vm) { | 211 if (this.vm != vm) { |
| 211 // This disconnect event occured *after* a new VM was installed. | 212 // This disconnect event occured *after* a new VM was installed. |
| 212 return; | 213 return; |
| 213 } | 214 } |
| 214 this.vm = null; | 215 this.vm = null; |
| 215 locationManager.go(locationManager.makeLink('/vm-connect/')); | 216 locationManager.go(locationManager.makeLink('/vm-connect/')); |
| 216 } | 217 } |
| 217 } | 218 } |
| OLD | NEW |