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

Side by Side Diff: runtime/bin/socket.dart

Issue 9699017: Start better error reporting for sockets (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added tests Created 8 years, 9 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) 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 interface ServerSocket default _ServerSocket { 5 interface ServerSocket default _ServerSocket {
6 /** 6 /**
7 * Constructs a new server socket, binds it to a given address and port, 7 * Constructs a new server socket, binds it to a given address and port,
8 * and listens on it. 8 * and listens on it.
9 */ 9 */
10 ServerSocket(String bindAddress, int port, int backlog); 10 ServerSocket(String bindAddress, int port, int backlog);
11 11
12 /** 12 /**
13 * The connection handler gets called when there is a new incoming 13 * The connection handler gets called when there is a new incoming
14 * connection on the socket. 14 * connection on the socket.
15 */ 15 */
16 void set onConnection(void callback(Socket connection)); 16 void set onConnection(void callback(Socket connection));
17 17
18 /** 18 /**
19 * The error handler gets called when a socket error occurs. 19 * The error handler gets called when a socket error occurs.
20 */ 20 */
21 void set onError(void callback()); 21 void set onError(void callback(Exception e));
22 22
23 /** 23 /**
24 * Returns the port used by this socket. 24 * Returns the port used by this socket.
25 */ 25 */
26 int get port(); 26 int get port();
27 27
28 /** 28 /**
29 * Closes the socket. 29 * Closes the socket.
30 */ 30 */
31 void close(); 31 void close();
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 /** 81 /**
82 * The close handler gets called when a the last byte have been read 82 * The close handler gets called when a the last byte have been read
83 * from a socket. At this point the socket might still be open for 83 * from a socket. At this point the socket might still be open for
84 * writing for sending more data. 84 * writing for sending more data.
85 */ 85 */
86 void set onClosed(void callback()); 86 void set onClosed(void callback());
87 87
88 /** 88 /**
89 * The error handler gets called when a socket error occurs. 89 * The error handler gets called when a socket error occurs.
90 */ 90 */
91 void set onError(void callback()); 91 void set onError(void callback(Exception e));
92 92
93 /** 93 /**
94 * Returns input stream to the socket. 94 * Returns input stream to the socket.
95 */ 95 */
96 InputStream get inputStream(); 96 InputStream get inputStream();
97 97
98 /** 98 /**
99 * Returns output stream of the socket. 99 * Returns output stream of the socket.
100 */ 100 */
101 OutputStream get outputStream(); 101 OutputStream get outputStream();
(...skipping 13 matching lines...) Expand all
115 void close([bool halfClose]); 115 void close([bool halfClose]);
116 116
117 /** 117 /**
118 * Socket is hashable. 118 * Socket is hashable.
119 */ 119 */
120 int hashCode(); 120 int hashCode();
121 } 121 }
122 122
123 123
124 class SocketIOException implements Exception { 124 class SocketIOException implements Exception {
125 const SocketIOException([String this.message = ""]); 125 const SocketIOException([String this.message = "",
126 String toString() => "SocketIOException: $message"; 126 OSError this.osError = null]);
127 String toString() {
128 StringBuffer sb = new StringBuffer();
129 sb.add("SocketIOException");
130 if (!message.isEmpty()) {
131 sb.add(": $message");
132 if (osError != null) {
133 sb.add(" ($osError)");
134 }
135 } else if (osError != null) {
136 sb.add(": osError");
137 }
138 return sb.toString();
139 }
127 final String message; 140 final String message;
141 final OSError osError;
128 } 142 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698