Chromium Code Reviews| 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 |
| index b4f487cf6564b521b5a31fcefd0201b4f8cefb3c..5895755798c924fdd53cf14a71c036201ec7c060 100644 |
| --- a/runtime/bin/vmservice/client/lib/src/observatory/location_manager.dart |
| +++ b/runtime/bin/vmservice/client/lib/src/observatory/location_manager.dart |
| @@ -10,7 +10,7 @@ part of observatory; |
| 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 currentIsolateMatcher = new RegExp(r"#/isolates/\d+"); |
| ObservatoryApplication _application; |
| ObservatoryApplication get application => _application; |
| @@ -48,24 +48,14 @@ class LocationManager extends Observable { |
| return currentIsolateAnchorPrefix() != null; |
| } |
| - bool get isScriptLink { |
| - String type = currentHashUri.queryParameters['type']; |
| - return type == 'Script'; |
| - } |
| - |
| - String get scriptName { |
| - return Uri.decodeQueryComponent(currentHashUri.queryParameters['name']); |
| - } |
| - |
| /// Extract the current isolate id as an integer. Returns [InvalidIsolateId] |
| /// if none is present in window.location. |
| - int currentIsolateId() { |
| - String isolatePrefix = currentIsolateAnchorPrefix(); |
| - if (isolatePrefix == null) { |
| - return InvalidIsolateId; |
| + String currentIsolateId() { |
| + var prefix = currentIsolateAnchorPrefix(); |
| + if (prefix == null) { |
| + return ''; |
| } |
|
turnidge
2013/12/19 20:39:29
Comment for why we are skipping these first 2 char
Cutch
2013/12/19 21:53:58
Done.
|
| - String id = isolatePrefix.split("/")[2]; |
| - return int.parse(id); |
| + return prefix.substring(2); |
| } |
| /// If no anchor is set, set the default anchor and return true. |
| @@ -99,59 +89,16 @@ class LocationManager extends Observable { |
| return relativeLink(isolateId, l); |
| } |
| - /// Create a request for [objectId] on the current isolate. |
| - @observable |
| - String currentIsolateObjectLink(int objectId) { |
| - var isolateId = currentIsolateId(); |
| - if (isolateId == LocationManager.InvalidIsolateId) { |
| - return defaultHash; |
| - } |
| - return objectLink(isolateId, objectId); |
| - } |
| - |
| - /// Create a request for [cid] on the current isolate. |
| + /// Create a request for [scriptURL] on the current isolate. |
| @observable |
| - String currentIsolateClassLink(int cid) { |
| - var isolateId = currentIsolateId(); |
| - if (isolateId == LocationManager.InvalidIsolateId) { |
| - return defaultHash; |
| - } |
| - return classLink(isolateId, cid); |
| - } |
| - |
| - /// Create a request for the script [objectId] with script [name]. |
| - @observable |
| - String currentIsolateScriptLink(int objectId, String name) { |
| - var isolateId = currentIsolateId(); |
| - if (isolateId == LocationManager.InvalidIsolateId) { |
| - return defaultHash; |
| - } |
| - return scriptLink(isolateId, objectId, name); |
| + String currentIsolateScriptLink(String scriptURL) { |
| + var encoded = Uri.encodeComponent(scriptURL); |
| + return currentIsolateRelativeLink('scripts/$encoded'); |
| } |
| /// Create a request for [l] on [isolateId]. |
| @observable |
| - String relativeLink(int isolateId, String l) { |
| - return '#/isolates/$isolateId/$l'; |
| - } |
| - |
| - /// Create a request for [objectId] on [isolateId]. |
| - @observable |
| - String objectLink(int isolateId, int objectId) { |
| - return '#/isolates/$isolateId/objects/$objectId'; |
| - } |
| - |
| - /// Create a request for [cid] on [isolateId]. |
| - @observable |
| - String classLink(int isolateId, int cid) { |
| - return '#/isolates/$isolateId/classes/$cid'; |
| - } |
| - |
| - @observable |
| - /// Create a request for the script [objectId] with script [url]. |
| - String scriptLink(int isolateId, int objectId, String name) { |
| - String encodedName = Uri.encodeQueryComponent(name); |
| - return '#/isolates/$isolateId/objects/$objectId' |
| - '?type=Script&name=$encodedName'; |
| + String relativeLink(String isolateId, String l) { |
| + return '#/$isolateId/$l'; |
|
turnidge
2013/12/19 20:39:29
Things are simpler now.
|
| } |
| } |