| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 part of dart.convert; | |
| 6 | |
| 7 /** | |
| 8 * A [Converter] converts data from one representation into another. | |
| 9 * | |
| 10 * It is recommended that implementations of `Converter` extend this class, | |
| 11 * to inherit any further methods that may be added to the class. | |
| 12 */ | |
| 13 abstract class Converter<S, T> implements StreamTransformer<S, T> { | |
| 14 const Converter(); | |
| 15 | |
| 16 /** | |
| 17 * Converts [input] and returns the result of the conversion. | |
| 18 */ | |
| 19 T convert(S input); | |
| 20 | |
| 21 /** | |
| 22 * Fuses `this` with [other]. | |
| 23 * | |
| 24 * Encoding with the resulting converter is equivalent to converting with | |
| 25 * `this` before converting with `other`. | |
| 26 */ | |
| 27 Converter<S, dynamic> fuse(Converter<T, dynamic> other) { | |
| 28 return new _FusedConverter<S, T, dynamic>(this, other); | |
| 29 } | |
| 30 | |
| 31 /** | |
| 32 * Starts a chunked conversion. | |
| 33 */ | |
| 34 ChunkedConversionSink startChunkedConversion(Sink<T> sink) { | |
| 35 throw new UnsupportedError( | |
| 36 "This converter does not support chunked conversions: $this"); | |
| 37 } | |
| 38 | |
| 39 // Subclasses are encouraged to provide better types. | |
| 40 Stream<T> bind(Stream<S> source) { | |
| 41 return new Stream.eventTransformed( | |
| 42 source, | |
| 43 (EventSink sink) => new _ConverterStreamEventSink(this, sink)); | |
| 44 } | |
| 45 } | |
| 46 | |
| 47 /** | |
| 48 * Fuses two converters. | |
| 49 * | |
| 50 * For a non-chunked conversion converts the input in sequence. | |
| 51 */ | |
| 52 class _FusedConverter<S, M, T> extends Converter<S, T> { | |
| 53 final Converter _first; | |
| 54 final Converter _second; | |
| 55 | |
| 56 _FusedConverter(this._first, this._second); | |
| 57 | |
| 58 T convert(S input) => _second.convert(_first.convert(input)); | |
| 59 | |
| 60 ChunkedConversionSink startChunkedConversion(Sink<T> sink) { | |
| 61 return _first.startChunkedConversion(_second.startChunkedConversion(sink)); | |
| 62 } | |
| 63 } | |
| OLD | NEW |