OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 /** | 5 /** |
6 * HTTP status codes. | 6 * HTTP status codes. |
7 */ | 7 */ |
8 interface HttpStatus { | 8 interface HttpStatus { |
9 static final int CONTINUE = 100; | 9 static final int CONTINUE = 100; |
10 static final int SWITCHING_PROTOCOLS = 101; | 10 static final int SWITCHING_PROTOCOLS = 101; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 | 54 |
55 /** | 55 /** |
56 * HTTP server. | 56 * HTTP server. |
57 */ | 57 */ |
58 interface HttpServer default _HttpServer { | 58 interface HttpServer default _HttpServer { |
59 HttpServer(); | 59 HttpServer(); |
60 | 60 |
61 /** | 61 /** |
62 * Start listening for HTTP requests on the specified [host] and | 62 * Start listening for HTTP requests on the specified [host] and |
63 * [port]. For each HTTP request the handler set through | 63 * [port]. For each HTTP request the handler set through [onRequest] |
64 * [requestHandler] will be invoked. If a [port] of 0 is specified | 64 * will be invoked. If a [port] of 0 is specified the server will |
65 * the server will choose an ephemeral port. The optional argument | 65 * choose an ephemeral port. The optional argument [backlog] can be |
66 * [backlog] can be used to specify the listen backlog for the | 66 * used to specify the listen backlog for the underlying OS listen |
67 * underlying OS listen setup. | 67 * setup. |
68 */ | 68 */ |
69 void listen(String host, int port, [int backlog]); | 69 void listen(String host, int port, [int backlog]); |
70 | 70 |
71 /** | 71 /** |
72 * Stop server listening. | 72 * Stop server listening. |
73 */ | 73 */ |
74 void close(); | 74 void close(); |
75 | 75 |
76 /** | 76 /** |
77 * Returns the port that the server is listening on. This can be | 77 * Returns the port that the server is listening on. This can be |
78 * used to get the actual port used when a value of 0 for [port] is | 78 * used to get the actual port used when a value of 0 for [port] is |
79 * specified in the [listen] call. | 79 * specified in the [listen] call. |
80 */ | 80 */ |
81 int get port(); | 81 int get port(); |
82 | 82 |
83 /** | 83 /** |
84 * Sets the handler that gets called when a new HTTP request is received. | 84 * Sets the handler that gets called when a new HTTP request is received. |
85 */ | 85 */ |
86 void set requestHandler(void handler(HttpRequest, HttpResponse)); | 86 void set onRequest(void handler(HttpRequest, HttpResponse)); |
87 | 87 |
88 /** | 88 /** |
89 * Sets the error handler that is called when a connection error occurs. | 89 * Sets the error handler that is called when a connection error occurs. |
90 */ | 90 */ |
91 void set errorHandler(void handler(String errorMessage)); | 91 void set onError(void handler(String errorMessage)); |
92 } | 92 } |
93 | 93 |
94 | 94 |
95 /** | 95 /** |
96 * Http request delivered to the HTTP server callback. | 96 * Http request delivered to the HTTP server callback. |
97 */ | 97 */ |
98 interface HttpRequest default _HttpRequest { | 98 interface HttpRequest default _HttpRequest { |
99 /** | 99 /** |
100 * Returns the content length of the request body. If the size of | 100 * Returns the content length of the request body. If the size of |
101 * the request body is not known in advance this -1. | 101 * the request body is not known in advance this -1. |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 */ | 221 */ |
222 void shutdown(); | 222 void shutdown(); |
223 } | 223 } |
224 | 224 |
225 | 225 |
226 /** | 226 /** |
227 * A [HttpClientConnection] is returned by all [HttpClient] methods | 227 * A [HttpClientConnection] is returned by all [HttpClient] methods |
228 * that initiate a connection to an HTTP server. The handlers will be | 228 * that initiate a connection to an HTTP server. The handlers will be |
229 * called as the connection state progresses. | 229 * called as the connection state progresses. |
230 * | 230 * |
231 * The setting of all handlers is optional. If the [requestHandler] is | 231 * The setting of all handlers is optional. If [onRequest] is not set |
232 * not set the request will be send without any additional headers and | 232 * the request will be send without any additional headers and an |
233 * an empty body. If the [responseHandler] is not set the response | 233 * empty body. If [onResponse] is not set the response will be read |
234 * will be read and discarded. | 234 * and discarded. |
235 */ | 235 */ |
236 interface HttpClientConnection { | 236 interface HttpClientConnection { |
237 /** | 237 /** |
238 * Sets the handler that is called when the connection is established. | 238 * Sets the handler that is called when the connection is established. |
239 */ | 239 */ |
240 void set requestHandler(void handler(HttpClientRequest request)); | 240 void set onRequest(void handler(HttpClientRequest request)); |
241 | 241 |
242 /** | 242 /** |
243 * Sets callback to be called when the request has been send and | 243 * Sets callback to be called when the request has been send and |
244 * the response is ready for processing. The callback is called when | 244 * the response is ready for processing. The callback is called when |
245 * all headers of the response are received and data is ready to be | 245 * all headers of the response are received and data is ready to be |
246 * received. | 246 * received. |
247 */ | 247 */ |
248 void set responseHandler(void handler(HttpClientResponse response)); | 248 void set onResponse(void handler(HttpClientResponse response)); |
249 | 249 |
250 /** | 250 /** |
251 * Sets the handler that gets called if an error occurs while | 251 * Sets the handler that gets called if an error occurs while |
252 * processing the HTTP request. | 252 * processing the HTTP request. |
253 */ | 253 */ |
254 void set errorHandler(void handler(HttpException e)); | 254 void set onError(void handler(HttpException e)); |
255 } | 255 } |
256 | 256 |
257 | 257 |
258 /** | 258 /** |
259 * HTTP request for a client connection. | 259 * HTTP request for a client connection. |
260 */ | 260 */ |
261 interface HttpClientRequest default _HttpClientRequest { | 261 interface HttpClientRequest default _HttpClientRequest { |
262 /** | 262 /** |
263 * Gets and sets the content length of the request. If the size of | 263 * Gets and sets the content length of the request. If the size of |
264 * the request is not known in advance set content length to -1, | 264 * the request is not known in advance set content length to -1, |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 */ | 337 */ |
338 InputStream get inputStream(); | 338 InputStream get inputStream(); |
339 } | 339 } |
340 | 340 |
341 | 341 |
342 class HttpException implements Exception { | 342 class HttpException implements Exception { |
343 const HttpException([String this.message = ""]); | 343 const HttpException([String this.message = ""]); |
344 String toString() => "HttpException: $message"; | 344 String toString() => "HttpException: $message"; |
345 final String message; | 345 final String message; |
346 } | 346 } |
OLD | NEW |