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

Side by Side Diff: runtime/bin/vmservice/service_request.dart

Issue 19870006: Support stacktrace and objecthistogram service commands (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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
« no previous file with comments | « runtime/bin/vmservice/server.dart ('k') | runtime/bin/vmservice/service_request_router.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 vmservice; 5 part of vmservice;
6 6
7 class ServiceRequest { 7 class ServiceRequest {
8 final List<String> pathSegments = new List<String>(); 8 final List<String> pathSegments = new List<String>();
9 final Map<String, String> parameters = new Map<String, String>(); 9 final Map<String, String> parameters = new Map<String, String>();
10 String _response; 10 String _response;
(...skipping 13 matching lines...) Expand all
24 continue; 24 continue;
25 } 25 }
26 pathSegments.add(pathSegment); 26 pathSegments.add(pathSegment);
27 } 27 }
28 uri.queryParameters.forEach((k, v) { 28 uri.queryParameters.forEach((k, v) {
29 parameters[k] = v; 29 parameters[k] = v;
30 }); 30 });
31 return true; 31 return true;
32 } 32 }
33 33
34 String toServiceCallMessage() { 34 List toServiceCallMessage() {
35 return JSON.stringify({ 35 return [pathSegments, parameters.keys.toList(), parameters.values.toList()];
36 'p': pathSegments,
37 'k': parameters.keys.toList(),
38 'v': parameters.values.toList()
39 });
40 } 36 }
41 37
42 void setErrorResponse(String error) { 38 void setErrorResponse(String error) {
43 _response = JSON.stringify({ 39 _response = JSON.stringify({
44 'error': error, 40 'type': 'error',
41 'msg': error,
45 'pathSegments': pathSegments, 42 'pathSegments': pathSegments,
46 'parameters': parameters 43 'parameters': parameters
47 }); 44 });
48 } 45 }
49 46
50 void setResponse(String response) { 47 void setResponse(String response) {
51 _response = response; 48 _response = response;
52 } 49 }
53 50
54 } 51 }
OLDNEW
« no previous file with comments | « runtime/bin/vmservice/server.dart ('k') | runtime/bin/vmservice/service_request_router.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698