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 * The IO library is used for Dart server applications, | 6 * The IO library is used for Dart server applications, |
7 * which run on a stand-alone Dart VM from the command line. | 7 * which run on a stand-alone Dart VM from the command line. |
8 * *This library does not work in browser based applications.* | 8 * *This library does not work in browser based applications.* |
9 * | 9 * |
10 * This library allows you to work with files, directories, | 10 * This library allows you to work with files, directories, |
11 * sockets, processes, HTTP servers and clients, and more. | 11 * sockets, processes, HTTP servers and clients, and more. |
12 */ | 12 */ |
13 library dart.io; | 13 library dart.io; |
14 | 14 |
15 import 'dart:async'; | 15 import 'dart:async'; |
16 import 'dart:collection' show Queue, | 16 import 'dart:collection' show Queue, |
17 DoubleLinkedQueue, | 17 DoubleLinkedQueue, |
18 DoubleLinkedQueueEntry; | 18 DoubleLinkedQueueEntry; |
19 import 'dart:crypto'; | 19 import 'dart:crypto'; |
20 import 'dart:isolate'; | 20 import 'dart:isolate'; |
21 import 'dart:math'; | 21 import 'dart:math'; |
22 import 'dart:uri'; | 22 import 'dart:uri'; |
23 import 'dart:utf'; | 23 import 'dart:utf'; |
24 import 'dart:scalarlist'; | 24 import 'dart:scalarlist'; |
25 | 25 |
26 part 'base64.dart'; | 26 part 'base64.dart'; |
27 part 'buffer_list.dart'; | 27 part 'buffer_list.dart'; |
28 part 'chunked_stream.dart'; | |
29 part 'common.dart'; | 28 part 'common.dart'; |
30 part 'directory.dart'; | 29 part 'directory.dart'; |
31 part 'directory_impl.dart'; | 30 part 'directory_impl.dart'; |
32 part 'eventhandler.dart'; | 31 part 'eventhandler.dart'; |
33 part 'file.dart'; | 32 part 'file.dart'; |
34 part 'file_impl.dart'; | 33 part 'file_impl.dart'; |
| 34 part 'file_system_entity.dart'; |
35 part 'http.dart'; | 35 part 'http.dart'; |
36 part 'http_headers.dart'; | 36 part 'http_headers.dart'; |
37 part 'http_impl.dart'; | 37 part 'http_impl.dart'; |
38 part 'http_parser.dart'; | 38 part 'http_parser.dart'; |
39 part 'http_session.dart'; | 39 part 'http_session.dart'; |
40 part 'http_utils.dart'; | 40 part 'http_utils.dart'; |
41 part 'input_stream.dart'; | 41 part 'input_stream.dart'; |
42 part 'list_stream.dart'; | 42 part 'io_stream_consumer.dart'; |
43 part 'list_stream_impl.dart'; | |
44 part 'mime_multipart_parser.dart'; | 43 part 'mime_multipart_parser.dart'; |
45 part 'output_stream.dart'; | 44 part 'output_stream.dart'; |
46 part 'path.dart'; | 45 part 'path.dart'; |
47 part 'path_impl.dart'; | 46 part 'path_impl.dart'; |
48 part 'platform.dart'; | 47 part 'platform.dart'; |
49 part 'platform_impl.dart'; | 48 part 'platform_impl.dart'; |
50 part 'process.dart'; | 49 part 'process.dart'; |
51 part 'socket.dart'; | 50 part 'socket.dart'; |
52 part 'socket_stream_impl.dart'; | |
53 part 'stdio.dart'; | 51 part 'stdio.dart'; |
54 part 'stream_util.dart'; | 52 part 'string_transformer.dart'; |
55 part 'string_stream.dart'; | |
56 part 'timer_impl.dart'; | 53 part 'timer_impl.dart'; |
57 part 'secure_socket.dart'; | 54 part 'secure_socket.dart'; |
58 part 'secure_server_socket.dart'; | 55 part 'secure_server_socket.dart'; |
59 part 'websocket.dart'; | 56 part 'websocket.dart'; |
60 part 'websocket_impl.dart'; | 57 part 'websocket_impl.dart'; |
OLD | NEW |