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

Unified Diff: runtime/bin/vmservice/client/lib/src/observatory/location_manager.dart

Issue 184233007: Refactor Observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: runtime/bin/vmservice/client/lib/src/observatory/location_manager.dart
diff --git a/runtime/bin/vmservice/client/lib/src/observatory/location_manager.dart b/runtime/bin/vmservice/client/lib/src/observatory/location_manager.dart
deleted file mode 100644
index 2b7c4098e3637754b4172f6461b1897f41f6fc67..0000000000000000000000000000000000000000
--- a/runtime/bin/vmservice/client/lib/src/observatory/location_manager.dart
+++ /dev/null
@@ -1,131 +0,0 @@
-// Copyright (c) 2013, 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.
-
-part of observatory;
-
-/// The LocationManager class observes and parses the hash ('#') portion of the
-/// URL in window.location. The text after the '#' is used as the request
-/// string for the VM service.
-class LocationManager extends Observable {
- static const int InvalidIsolateId = 0;
- static const String defaultHash = '#/isolates/';
- static final RegExp currentIsolateMatcher = new RegExp(r"#/isolates/\d+");
- static final RegExp currentIsolateProfileMatcher =
- new RegExp(r'#/isolates/\d+/profile');
-
- ObservatoryApplication _application;
- ObservatoryApplication get application => _application;
-
- @observable bool profile = false;
- @observable String currentHash = '';
- @observable Uri currentHashUri;
- void init() {
- window.onHashChange.listen((event) {
- if (setDefaultHash()) {
- // We just triggered another onHashChange event.
- return;
- }
- notifyPropertyChange(#hasCurrentIsolate, !hasCurrentIsolate,
- hasCurrentIsolate);
- // Request the current anchor.
- requestCurrentHash();
- });
-
- if (!setDefaultHash()) {
- // An anchor was already present, trigger a request.
- requestCurrentHash();
- }
- }
-
-
- /// Returns the current isolate prefix, i.e. '#/isolates/XX/' if one
- /// is present and null otherwise.
- String currentIsolateAnchorPrefix() {
- Match m = currentIsolateMatcher.matchAsPrefix(currentHash);
- if (m == null) {
- return null;
- }
- return m.input.substring(m.start, m.end);
- }
-
- /// Predicate, does the current URL have a current isolate ID in it?
- @observable bool get hasCurrentIsolate {
- return currentIsolateAnchorPrefix() != null;
- }
-
- /// Extract the current isolate id as an integer. Returns [InvalidIsolateId]
- /// if none is present in window.location.
- String currentIsolateId() {
- var prefix = currentIsolateAnchorPrefix();
- if (prefix == null) {
- return '';
- }
- // Chop off the '/#'.
- return prefix.substring(2);
- }
-
- @observable Isolate currentIsolate() {
- var id = currentIsolateId();
- if (id == '') {
- return null;
- }
- return _application.isolateManager.getIsolate(id);
- }
-
- /// If no anchor is set, set the default anchor and return true.
- /// Return false otherwise.
- bool setDefaultHash() {
- currentHash = window.location.hash;
- if (currentHash == '' || currentHash == '#') {
- window.location.hash = defaultHash;
- return true;
- }
- return false;
- }
-
- /// Take the current request string from window.location and submit the
- /// request to the request manager.
- void requestCurrentHash() {
- currentHash = window.location.hash;
- // Chomp off the #
- String requestUrl = currentHash.substring(1);
- currentHashUri = Uri.parse(requestUrl);
- if (currentIsolateProfileMatcher.hasMatch(currentHash)) {
- // We do not automatically fetch profile data.
- profile = true;
- } else {
- application.requestManager.get(requestUrl);
- profile = false;
- }
- }
-
- /// Create a request for [l] on the current isolate.
- @observable
- String currentIsolateRelativeLink(String l) {
- var isolateId = currentIsolateId();
- if (isolateId == LocationManager.InvalidIsolateId) {
- return defaultHash;
- }
- return relativeLink(isolateId, l);
- }
-
- /// Create a request for [scriptURL] on the current isolate.
- @observable
- String currentIsolateScriptLink(String scriptURL) {
- var encoded = Uri.encodeComponent(scriptURL);
- return currentIsolateRelativeLink('scripts/$encoded');
- }
-
- /// Create a request for [l] on [isolateId].
- @observable
- String relativeLink(String isolateId, String l) {
- return '#/$isolateId/$l';
- }
-
- /// Create a request for [l] on [isolateId].
- @observable
- String absoluteLink(String l) {
- return '#/$l';
- }
-}

Powered by Google App Engine
This is Rietveld 408576698