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 part of dart.convert; | 5 part of dart.convert; |
6 | 6 |
7 /** | 7 /** |
8 * A [Converter] converts data from one representation into another. | 8 * A [Converter] converts data from one representation into another. |
9 * | 9 * |
10 * It is recommended that implementations of `Converter` extend this class, | 10 * It is recommended that implementations of `Converter` extend this class, |
(...skipping 11 matching lines...) Expand all Loading... |
22 * Fuses `this` with [other]. | 22 * Fuses `this` with [other]. |
23 * | 23 * |
24 * Encoding with the resulting converter is equivalent to converting with | 24 * Encoding with the resulting converter is equivalent to converting with |
25 * `this` before converting with `other`. | 25 * `this` before converting with `other`. |
26 */ | 26 */ |
27 Converter<S, dynamic> fuse(Converter<T, dynamic> other) { | 27 Converter<S, dynamic> fuse(Converter<T, dynamic> other) { |
28 return new _FusedConverter<S, T, dynamic>(this, other); | 28 return new _FusedConverter<S, T, dynamic>(this, other); |
29 } | 29 } |
30 | 30 |
31 /** | 31 /** |
32 * Deprecated. | 32 * Starts a chunked conversion. |
33 * | |
34 * Use the [ChunkedConverter] interface instead. | |
35 */ | 33 */ |
36 @deprecated | |
37 ChunkedConversionSink startChunkedConversion(Sink sink) { | 34 ChunkedConversionSink startChunkedConversion(Sink sink) { |
38 throw new UnsupportedError( | 35 throw new UnsupportedError( |
39 "This converter does not support chunked conversions: $this"); | 36 "This converter does not support chunked conversions: $this"); |
40 } | 37 } |
41 | 38 |
42 /** | 39 // Subclasses are encouraged to provide better types. |
43 * Deprecated. | |
44 * | |
45 * Use the [ChunkedConverter] interface instead. | |
46 */ | |
47 @deprecated | |
48 Stream bind(Stream stream) { | 40 Stream bind(Stream stream) { |
49 return new Stream.eventTransformed( | 41 return new Stream.eventTransformed( |
50 stream, | 42 stream, |
51 (EventSink sink) => new _ConverterStreamEventSink(this, sink)); | 43 (EventSink sink) => new _ConverterStreamEventSink(this, sink)); |
52 } | 44 } |
53 } | 45 } |
54 | 46 |
55 /** | 47 /** |
56 * Fuses two converters. | 48 * Fuses two converters. |
57 * | 49 * |
58 * For a non-chunked conversion converts the input in sequence. | 50 * For a non-chunked conversion converts the input in sequence. |
59 */ | 51 */ |
60 class _FusedConverter<S, M, T> extends Converter<S, T> { | 52 class _FusedConverter<S, M, T> extends Converter<S, T> { |
61 final Converter<S, M> _first; | 53 final Converter _first; |
62 final Converter<M, T> _second; | 54 final Converter _second; |
63 | 55 |
64 _FusedConverter(this._first, this._second); | 56 _FusedConverter(this._first, this._second); |
65 | 57 |
66 T convert(S input) => _second.convert(_first.convert(input)); | 58 T convert(S input) => _second.convert(_first.convert(input)); |
| 59 |
| 60 ChunkedConversionSink startChunkedConversion(Sink sink) { |
| 61 return _first.startChunkedConversion(_second.startChunkedConversion(sink)); |
| 62 } |
67 } | 63 } |
OLD | NEW |