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 * Basic input stream which supplies binary data. | 6 * Basic input stream which supplies binary data. |
7 * | 7 * |
8 * Input streams are used to read data sequentially from some data | 8 * Input streams are used to read data sequentially from some data |
9 * source. All input streams are non-blocking. They each have a number | 9 * source. All input streams are non-blocking. They each have a number |
10 * of read calls which will always return without any IO related | 10 * of read calls which will always return without any IO related |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 } | 96 } |
97 | 97 |
98 | 98 |
99 /** | 99 /** |
100 * String encodings. | 100 * String encodings. |
101 */ | 101 */ |
102 class Encoding { | 102 class Encoding { |
103 static const Encoding UTF_8 = const Encoding._internal("UTF-8"); | 103 static const Encoding UTF_8 = const Encoding._internal("UTF-8"); |
104 static const Encoding ISO_8859_1 = const Encoding._internal("ISO-8859-1"); | 104 static const Encoding ISO_8859_1 = const Encoding._internal("ISO-8859-1"); |
105 static const Encoding ASCII = const Encoding._internal("ASCII"); | 105 static const Encoding ASCII = const Encoding._internal("ASCII"); |
106 /** | |
107 * SYSTEM encoding is the current code page on Windows and UTF-8 on | |
108 * Linux and Mac. | |
109 */ | |
110 static const Encoding SYSTEM = const Encoding._internal("SYSTEM"); | |
111 const Encoding._internal(String this.name); | 106 const Encoding._internal(String this.name); |
112 final String name; | 107 final String name; |
113 } | 108 } |
114 | 109 |
115 | 110 |
116 /** | 111 /** |
117 * A string input stream wraps a basic input stream and supplies | 112 * A string input stream wraps a basic input stream and supplies |
118 * string data. This data can be read either as string chunks or as | 113 * string data. This data can be read either as string chunks or as |
119 * lines separated by line termination character sequences. | 114 * lines separated by line termination character sequences. |
120 */ | 115 */ |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 void set onError(void callback(e)); | 242 void set onError(void callback(e)); |
248 } | 243 } |
249 | 244 |
250 | 245 |
251 class StreamException implements Exception { | 246 class StreamException implements Exception { |
252 const StreamException([String this.message = ""]); | 247 const StreamException([String this.message = ""]); |
253 const StreamException.streamClosed() : message = "Stream closed"; | 248 const StreamException.streamClosed() : message = "Stream closed"; |
254 String toString() => "StreamException: $message"; | 249 String toString() => "StreamException: $message"; |
255 final String message; | 250 final String message; |
256 } | 251 } |
OLD | NEW |