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 WebSocketClient extends Client { | 7 class WebSocketClient extends Client { |
8 static const int PARSE_ERROR_CODE = 4000; | 8 static const int PARSE_ERROR_CODE = 4000; |
9 static const int BINARY_MESSAGE_ERROR_CODE = 4001; | 9 static const int BINARY_MESSAGE_ERROR_CODE = 4001; |
10 static const int NOT_MAP_ERROR_CODE = 4002; | 10 static const int NOT_MAP_ERROR_CODE = 4002; |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 assert(resource != null); | 134 assert(resource != null); |
135 } | 135 } |
136 if (resource != null) { | 136 if (resource != null) { |
137 // Serving up a static resource (e.g. .css, .html, .png). | 137 // Serving up a static resource (e.g. .css, .html, .png). |
138 request.response.headers.contentType = | 138 request.response.headers.contentType = |
139 ContentType.parse(resource.mimeType); | 139 ContentType.parse(resource.mimeType); |
140 request.response.add(resource.data); | 140 request.response.add(resource.data); |
141 request.response.close(); | 141 request.response.close(); |
142 return; | 142 return; |
143 } | 143 } |
144 var message = new Message.fromUri(this, request.uri); | |
145 var client = new HttpRequestClient(request, _service); | 144 var client = new HttpRequestClient(request, _service); |
| 145 var message = new Message.fromUri(client, request.uri); |
146 client.onMessage(null, message); | 146 client.onMessage(null, message); |
147 } | 147 } |
148 | 148 |
149 Future startup() { | 149 Future startup() { |
150 if (_server != null) { | 150 if (_server != null) { |
151 // Already running. | 151 // Already running. |
152 return new Future.value(this); | 152 return new Future.value(this); |
153 } | 153 } |
154 | 154 |
155 // Startup HTTP server. | 155 // Startup HTTP server. |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 print('Could not shutdown Observatory HTTP server:\n$e\n$st\n'); | 202 print('Could not shutdown Observatory HTTP server:\n$e\n$st\n'); |
203 _notifyServerState("", 0); | 203 _notifyServerState("", 0); |
204 return this; | 204 return this; |
205 }); | 205 }); |
206 } | 206 } |
207 | 207 |
208 } | 208 } |
209 | 209 |
210 void _notifyServerState(String ip, int port) | 210 void _notifyServerState(String ip, int port) |
211 native "VMServiceIO_NotifyServerState"; | 211 native "VMServiceIO_NotifyServerState"; |
OLD | NEW |