| 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 * *Converters are still experimental and are subject to change without notice.* | 10 * *Converters are still experimental and are subject to change without notice.* |
| 11 * | 11 * |
| 12 */ | 12 */ |
| 13 abstract class Converter<S, T> { | 13 abstract class Converter<S, T> { |
| 14 /** | 14 /** |
| 15 * Converts [input] and returns the result of the conversion. | 15 * Converts [input] and returns the result of the conversion. |
| 16 */ | 16 */ |
| 17 T convert(S input); | 17 T convert(S input); |
| 18 | 18 |
| 19 /** | 19 /** |
| 20 * Fuses `this` with [other]. | 20 * Fuses `this` with [other]. |
| 21 * | 21 * |
| 22 * Encoding with the resulting converter is equivalent to converting with | 22 * Encoding with the resulting converter is equivalent to converting with |
| 23 * `this` before converting with `other`. | 23 * `this` before converting with `other`. |
| 24 */ | 24 */ |
| 25 Converter<S, dynamic> fuse(Converter<T, dynamic> other) { | 25 Converter<S, dynamic> fuse(Converter<T, dynamic> other) { |
| 26 return new _FusedConverter<S, T, dynamic>(this, other); | 26 return new _FusedConverter<S, T, dynamic>(this, other); |
| 27 } | 27 } |
| 28 |
| 29 /** |
| 30 * Starts a chunked conversion. |
| 31 */ |
| 32 ChunkedConversionSink startChunkedConversion(ChunkedConversionSink sink) { |
| 33 throw new UnsupportedError( |
| 34 "This converter does not support chunked conversions: $this"); |
| 35 } |
| 28 } | 36 } |
| 29 | 37 |
| 30 /** | 38 /** |
| 31 * Fuses two converters. | 39 * Fuses two converters. |
| 32 * | 40 * |
| 33 * For a non-chunked conversion converts the input in sequence. | 41 * For a non-chunked conversion converts the input in sequence. |
| 34 */ | 42 */ |
| 35 class _FusedConverter<S, M, T> extends Converter<S, T> { | 43 class _FusedConverter<S, M, T> extends Converter<S, T> { |
| 36 final Converter _first; | 44 final Converter _first; |
| 37 final Converter _second; | 45 final Converter _second; |
| 38 | 46 |
| 39 _FusedConverter(this._first, this._second); | 47 _FusedConverter(this._first, this._second); |
| 40 | 48 |
| 41 T convert(S input) => _second.convert(_first.convert(input)); | 49 T convert(S input) => _second.convert(_first.convert(input)); |
| 50 |
| 51 ChunkedConversionSink startChunkedConversion(ChunkedConversionSink sink) { |
| 52 return _first.startChunkedConversion(_second.startChunkedConversion(sink)); |
| 53 } |
| 42 } | 54 } |
| OLD | NEW |