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 library barback.internal_asset; | 5 library barback.internal_asset; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:convert'; | 8 import 'dart:convert'; |
9 import 'dart:io'; | |
10 import 'dart:typed_data'; | 9 import 'dart:typed_data'; |
11 | 10 |
12 import 'asset.dart'; | 11 import 'asset.dart'; |
13 import 'asset_id.dart'; | 12 import 'asset_id.dart'; |
14 import 'file_pool.dart'; | 13 import 'file_pool.dart'; |
15 import 'serialize.dart'; | 14 import 'serialize.dart'; |
16 import 'stream_replayer.dart'; | 15 import 'stream_replayer.dart'; |
17 import 'utils.dart'; | 16 import 'utils.dart'; |
18 | 17 |
19 /// Serialize an asset to a form that's safe to send across isolates. | 18 /// Serialize an asset to a form that's safe to send across isolates. |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 Future<String> readAsString({Encoding encoding}) { | 178 Future<String> readAsString({Encoding encoding}) { |
180 if (encoding == null) encoding = UTF8; | 179 if (encoding == null) encoding = UTF8; |
181 return _replayer.getReplay().toList() | 180 return _replayer.getReplay().toList() |
182 .then((chunks) => encoding.decode(flatten(chunks))); | 181 .then((chunks) => encoding.decode(flatten(chunks))); |
183 } | 182 } |
184 | 183 |
185 Stream<List<int>> read() => _replayer.getReplay(); | 184 Stream<List<int>> read() => _replayer.getReplay(); |
186 | 185 |
187 String toString() => "Stream"; | 186 String toString() => "Stream"; |
188 } | 187 } |
OLD | NEW |