T - The type of objects coded by this Coder.IntermediateT - The type of objects a T will be converted to for coding.public final class DelegateCoder<T,IntermediateT> extends CustomCoder<T>
DelegateCoder<T, IntermediateT> wraps a Coder for IntermediateT and
encodes/decodes values of type T by converting
to/from IntermediateT and then encoding/decoding using the underlying
Coder<IntermediateT>.
The conversions from T to IntermediateT and vice versa
must be supplied as DelegateCoder.CodingFunction, a serializable
function that may throw any Exception. If a thrown
exception is an instance of CoderException or
IOException, it will be re-thrown, otherwise it will be wrapped as
a CoderException.
| Modifier and Type | Class and Description |
|---|---|
static interface |
DelegateCoder.CodingFunction<InputT,OutputT>
A
CodingFunction<InputT, OutputT> is a serializable
function from InputT to OutputT that may throw any Exception. |
Coder.Context, Coder.NonDeterministicException| Modifier | Constructor and Description |
|---|---|
protected |
DelegateCoder(Coder<IntermediateT> coder,
DelegateCoder.CodingFunction<T,IntermediateT> toFn,
DelegateCoder.CodingFunction<IntermediateT,T> fromFn) |
| Modifier and Type | Method and Description |
|---|---|
T |
decode(InputStream inStream,
Coder.Context context)
Decodes a value of type
T from the given input stream in
the given context. |
void |
encode(T value,
OutputStream outStream,
Coder.Context context)
Encodes the given value of type
T onto the given output stream
in the given context. |
boolean |
equals(Object o) |
Collection<String> |
getAllowedEncodings()
A collection of encodings supported by
Coder.decode(java.io.InputStream, org.apache.beam.sdk.coders.Coder.Context) in addition to the encoding
from Coder.getEncodingId() (which is assumed supported). |
Coder<IntermediateT> |
getCoder()
Returns the coder used to encode/decode the intermediate values produced/consumed by the
coding functions of this
DelegateCoder. |
String |
getEncodingId()
An identifier for the binary format written by
Coder.encode(T, java.io.OutputStream, org.apache.beam.sdk.coders.Coder.Context). |
int |
hashCode() |
static <T,IntermediateT> |
of(Coder<IntermediateT> coder,
DelegateCoder.CodingFunction<T,IntermediateT> toFn,
DelegateCoder.CodingFunction<IntermediateT,T> fromFn) |
Object |
structuralValue(T value)
Returns an object with an
Object.equals() method that represents structural equality
on the argument. |
String |
toString() |
void |
verifyDeterministic()
Throw
Coder.NonDeterministicException if the coding is not deterministic. |
asCloudObject, ofgetCoderArguments, getInstanceComponentsconsistentWithEquals, getComponents, getEncodedElementByteSize, isRegisterByteSizeObserverCheap, registerByteSizeObserver, verifyDeterministic, verifyDeterministicprotected DelegateCoder(Coder<IntermediateT> coder, DelegateCoder.CodingFunction<T,IntermediateT> toFn, DelegateCoder.CodingFunction<IntermediateT,T> fromFn)
public static <T,IntermediateT> DelegateCoder<T,IntermediateT> of(Coder<IntermediateT> coder, DelegateCoder.CodingFunction<T,IntermediateT> toFn, DelegateCoder.CodingFunction<IntermediateT,T> fromFn)
public void encode(T value, OutputStream outStream, Coder.Context context) throws CoderException, IOException
CoderT onto the given output stream
in the given context.CoderException - if the value could not be encoded for some reasonIOException - if writing to the OutputStream fails
for some reasonpublic T decode(InputStream inStream, Coder.Context context) throws CoderException, IOException
CoderT from the given input stream in
the given context. Returns the decoded value.CoderException - if the value could not be decoded for some reasonIOException - if reading from the InputStream fails
for some reasonpublic Coder<IntermediateT> getCoder()
DelegateCoder.public void verifyDeterministic()
throws Coder.NonDeterministicException
Coder.NonDeterministicException if the coding is not deterministic.
In order for a Coder to be considered deterministic,
the following must be true:
Object.equals()
or Comparable.compareTo(), if supported) have the same
encoding.
Coder always produces a canonical encoding, which is the
same for an instance of an object even if produced on different
computers at different times.
verifyDeterministic in interface Coder<T>verifyDeterministic in class CustomCoder<T>NonDeterministicException - when the underlying coder's verifyDeterministic()
throws a Coder.NonDeterministicException. For this to be safe, the
intermediate CodingFunction<T, IntermediateT> must also be deterministic.Coder.NonDeterministicException - if this coder is not deterministic.public Object structuralValue(T value) throws Exception
Object.equals() method that represents structural equality
on the argument.
For any two values x and y of type T, if their encoded bytes are the
same, then it must be the case that structuralValue(x).equals(@code structuralValue(y).
Most notably:
null should be a proper object with
an equals() method, even if the input value is null.
See also Coder.consistentWithEquals().
structuralValue in interface Coder<T>structuralValue in class StandardCoder<T>T obtained by first converting to
IntermediateT and then obtaining a structural value according to the underlying
coder.Exceptionpublic boolean equals(Object o)
StandardCoderequals in class StandardCoder<T>true if the two StandardCoder instances have the
same class and equal components.public int hashCode()
hashCode in class StandardCoder<T>public String toString()
toString in class StandardCoder<T>public String getEncodingId()
Coder.encode(T, java.io.OutputStream, org.apache.beam.sdk.coders.Coder.Context).
This value, along with the fully qualified class name, forms an identifier for the binary format of this coder. Whenever this value changes, the new encoding is considered incompatible with the prior format: It is presumed that the prior version of the coder will be unable to correctly read the new format and the new version of the coder will be unable to correctly read the old format.
If the format is changed in a backwards-compatible way (the Coder can still accept data from
the prior format), such as by adding optional fields to a Protocol Buffer or Avro definition,
and you want Dataflow to understand that the new coder is compatible with the prior coder,
this value must remain unchanged. It is then the responsibility of Coder.decode(java.io.InputStream, org.apache.beam.sdk.coders.Coder.Context) to correctly
read data from the prior format.
getEncodingId in interface Coder<T>getEncodingId in class CustomCoder<T>String composed from the underlying coder class name and its encoding id.
Note that this omits any description of the coding functions. These should be modified
with care.public Collection<String> getAllowedEncodings()
Coder.decode(java.io.InputStream, org.apache.beam.sdk.coders.Coder.Context) in addition to the encoding
from Coder.getEncodingId() (which is assumed supported).
This information is not currently used for any purpose. It is descriptive only, and this method is subject to change.
getAllowedEncodings in interface Coder<T>getAllowedEncodings in class StandardCoder<T>Coder.getEncodingId()