| 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 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 = | 25 request.response.headers.contentType = ContentType.parse(mimeType); |
| 26 ContentType.parse(resource.mimeType); | |
| 27 request.response.add(resource.data); | 26 request.response.add(resource.data); |
| 28 request.response.close(); | 27 request.response.close(); |
| 29 return; | 28 return; |
| 30 } | 29 } |
| 31 | 30 |
| 32 var serviceRequest = new ServiceRequest(); | 31 var serviceRequest = new ServiceRequest(); |
| 33 var r = serviceRequest.parse(request.uri); | 32 var r = serviceRequest.parse(request.uri); |
| 34 if (!r) { | 33 if (!r) { |
| 35 // Did not understand the request uri. | 34 // Did not understand the request uri. |
| 36 serviceRequest.setErrorResponse('Invalid request uri: ${request.uri}'); | 35 serviceRequest.setErrorResponse('Invalid request uri: ${request.uri}'); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 62 port = s.port; | 61 port = s.port; |
| 63 _server = s; | 62 _server = s; |
| 64 _server.listen(_requestHandler); | 63 _server.listen(_requestHandler); |
| 65 if (display_message) { | 64 if (display_message) { |
| 66 print('VmService listening on port $port'); | 65 print('VmService listening on port $port'); |
| 67 } | 66 } |
| 68 return s; | 67 return s; |
| 69 }); | 68 }); |
| 70 } | 69 } |
| 71 } | 70 } |
| OLD | NEW |