T - the type of the values being transcodedpublic class NullableCoder<T> extends StandardCoder<T>
NullableCoder encodes nullable values of type T using a nested
Coder<T> that does not tolerate null values. NullableCoder uses
exactly 1 byte per entry to indicate whether the value is null, then adds the encoding
of the inner coder for non-null values.Coder.Context, Coder.NonDeterministicException| Modifier and Type | Method and Description |
|---|---|
boolean |
consistentWithEquals()
NullableCoder is consistent with equals if the nested Coder is. |
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. |
List<Coder<T>> |
getCoderArguments()
If this is a
Coder for a parameterized type, returns the
list of Coders being used for each of the parameters, or
returns null if this cannot be done or this is not a
parameterized type. |
protected long |
getEncodedElementByteSize(T value,
Coder.Context context)
Overridden to short-circuit the default
StandardCoder behavior of encoding and
counting the bytes. |
boolean |
isRegisterByteSizeObserverCheap(T value,
Coder.Context context)
NullableCoder is cheap if valueCoder is cheap. |
static <T> NullableCoder<T> |
of(Coder<T> valueCoder) |
static NullableCoder<?> |
of(List<Coder<?>> components) |
void |
registerByteSizeObserver(T value,
org.apache.beam.sdk.util.common.ElementByteSizeObserver observer,
Coder.Context context)
Overridden to short-circuit the default
StandardCoder behavior of encoding and
counting the bytes. |
Object |
structuralValue(T value)
Returns an object with an
Object.equals() method that represents structural equality
on the argument. |
void |
verifyDeterministic()
NullableCoder is deterministic if the nested Coder is. |
asCloudObject, equals, getAllowedEncodings, getComponents, getEncodingId, hashCode, toString, verifyDeterministic, verifyDeterministicpublic static <T> NullableCoder<T> of(Coder<T> valueCoder)
public static NullableCoder<?> of(List<Coder<?>> components)
public void encode(@Nullable T value, OutputStream outStream, Coder.Context context) throws IOException, CoderException
CoderT onto the given output stream
in the given context.IOException - if writing to the OutputStream fails
for some reasonCoderException - if the value could not be encoded for some reason@Nullable public T decode(InputStream inStream, Coder.Context context) throws IOException, CoderException
CoderT from the given input stream in
the given context. Returns the decoded value.IOException - if reading from the InputStream fails
for some reasonCoderException - if the value could not be decoded for some reasonpublic List<Coder<T>> getCoderArguments()
CoderCoder for a parameterized type, returns the
list of Coders being used for each of the parameters, or
returns null if this cannot be done or this is not a
parameterized type.public void verifyDeterministic()
throws Coder.NonDeterministicException
NullableCoder is deterministic if the nested Coder is.
Throw 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.
Coder.NonDeterministicException - if this coder is not deterministic.public boolean consistentWithEquals()
NullableCoder is consistent with equals if the nested Coder is.
Returns true if this Coder is injective with respect to Object.equals(java.lang.Object).
Whenever the encoded bytes of two values are equal, then the original values are equal
according to Objects.equals(). Note that this is well-defined for null.
This condition is most notably false for arrays. More generally, this condition is false
whenever equals() compares object identity, rather than performing a
semantic/structural comparison.
consistentWithEquals in interface Coder<T>consistentWithEquals in class StandardCoder<T>false for StandardCoder unless overridden.public Object structuralValue(@Nullable T value) throws Exception
CoderObject.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>Exceptionpublic void registerByteSizeObserver(@Nullable T value, org.apache.beam.sdk.util.common.ElementByteSizeObserver observer, Coder.Context context) throws Exception
StandardCoder behavior of encoding and
counting the bytes. The size is known (1 byte) when value is null, otherwise
the size is 1 byte plus the size of nested Coder's encoding of value.
Notifies the ElementByteSizeObserver about the byte size
of the encoded value using this Coder.
Not intended to be called by user code, but instead by
PipelineRunner
implementations.
For StandardCoder subclasses, this notifies observer about the byte size
of the encoded value using this coder as returned by StandardCoder.getEncodedElementByteSize(T, org.apache.beam.sdk.coders.Coder.Context).
registerByteSizeObserver in interface Coder<T>registerByteSizeObserver in class StandardCoder<T>Exceptionprotected long getEncodedElementByteSize(@Nullable T value, Coder.Context context) throws Exception
StandardCoder behavior of encoding and
counting the bytes. The size is known (1 byte) when value is null, otherwise
the size is 1 byte plus the size of nested Coder's encoding of value.
Returns the size in bytes of the encoded value using this coder.getEncodedElementByteSize in class StandardCoder<T>Exceptionpublic boolean isRegisterByteSizeObserverCheap(@Nullable T value, Coder.Context context)
NullableCoder is cheap if valueCoder is cheap.
Returns whether Coder.registerByteSizeObserver(T, org.apache.beam.sdk.util.common.ElementByteSizeObserver, org.apache.beam.sdk.coders.Coder.Context) cheap enough to
call for every element, that is, if this Coder can
calculate the byte size of the element to be coded in roughly
constant time (or lazily).
Not intended to be called by user code, but instead by
PipelineRunner
implementations.
isRegisterByteSizeObserverCheap in interface Coder<T>isRegisterByteSizeObserverCheap in class StandardCoder<T>false unless it is overridden. StandardCoder.registerByteSizeObserver(T, org.apache.beam.sdk.util.common.ElementByteSizeObserver, org.apache.beam.sdk.coders.Coder.Context)
invokes StandardCoder.getEncodedElementByteSize(T, org.apache.beam.sdk.coders.Coder.Context) which requires re-encoding an element
unless it is overridden. This is considered expensive.