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

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

Issue 24844002: Initial GUI for VM service (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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
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_io; 5 part of vmservice_io;
6 6
7 class Server { 7 class Server {
8 int port; 8 int port;
9 static ContentType jsonContentType = ContentType.parse('application/json'); 9 static ContentType jsonContentType = ContentType.parse('application/json');
10 final VmService service; 10 final VmService service;
11 HttpServer _server; 11 HttpServer _server;
12 12
13 Server(this.service, this.port); 13 Server(this.service, this.port);
14 14
15 void _requestHandler(HttpRequest request) { 15 void _requestHandler(HttpRequest request) {
16 // Allow cross origin requests. 16 // Allow cross origin requests.
17 request.response.headers.add('Access-Control-Allow-Origin', '*'); 17 request.response.headers.add('Access-Control-Allow-Origin', '*');
18 18
19 final String path = 19 final String path =
20 request.uri.path == '/' ? '/index.html' : request.uri.path; 20 request.uri.path == '/' ? '/index.html' : request.uri.path;
21 21
22 var resource = Resource.resources[path]; 22 var resource = Resource.resources[path];
23 if (resource != null) { 23 if (resource != null) {
24 // Serving up a static resource (e.g. .css, .html, .png). 24 // Serving up a static resource (e.g. .css, .html, .png).
25 request.response.headers.contentType = ContentType.parse(mimeType); 25 request.response.headers.contentType =
26 ContentType.parse(resource.mimeType);
26 request.response.add(resource.data); 27 request.response.add(resource.data);
27 request.response.close(); 28 request.response.close();
28 return; 29 return;
29 } 30 }
30 31
31 var serviceRequest = new ServiceRequest(); 32 var serviceRequest = new ServiceRequest();
32 var r = serviceRequest.parse(request.uri); 33 var r = serviceRequest.parse(request.uri);
33 if (!r) { 34 if (!r) {
34 // Did not understand the request uri. 35 // Did not understand the request uri.
35 serviceRequest.setErrorResponse('Invalid request uri: ${request.uri}'); 36 serviceRequest.setErrorResponse('Invalid request uri: ${request.uri}');
(...skipping 25 matching lines...) Expand all
61 port = s.port; 62 port = s.port;
62 _server = s; 63 _server = s;
63 _server.listen(_requestHandler); 64 _server.listen(_requestHandler);
64 if (display_message) { 65 if (display_message) {
65 print('VmService listening on port $port'); 66 print('VmService listening on port $port');
66 } 67 }
67 return s; 68 return s;
68 }); 69 });
69 } 70 }
70 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698