Class FastBinarySerializer
- java.lang.Object
-
- net.morimekta.providence.serializer.Serializer
-
- net.morimekta.providence.serializer.FastBinarySerializer
-
public class FastBinarySerializer extends Serializer
Compact binary serializer. This uses a pretty compact binary format while being optimized for fewer operations during read and write.Documentation: Fast Binary Serialization Format with IDL and explanation.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringMEDIA_TYPE-
Fields inherited from class net.morimekta.providence.serializer.Serializer
DEFAULT_STRICT
-
-
Constructor Summary
Constructors Constructor Description FastBinarySerializer()Construct a serializer instance.FastBinarySerializer(boolean readStrict)Construct a serializer instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanbinaryProtocol()<Message extends PMessage<Message>>
Messagedeserialize(java.io.InputStream is, PMessageDescriptor<Message> descriptor)Deserialize a message.<Message extends PMessage<Message>>
PServiceCall<Message>deserialize(java.io.InputStream is, PService service)Deserialize a service call.java.lang.StringmediaType()<Message extends PMessage<Message>>
intserialize(java.io.OutputStream os, PMessageOrBuilder<Message> message)Serialize a message.<Message extends PMessage<Message>>
intserialize(java.io.OutputStream os, PServiceCall<Message> call)Serialize a service call.voidverifyEndOfContent(java.io.InputStream input)Verify that the input stream does not contain any more readable content and close the stream.-
Methods inherited from class net.morimekta.providence.serializer.Serializer
isRequestCallType, toString
-
-
-
-
Field Detail
-
MEDIA_TYPE
public static final java.lang.String MEDIA_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
serialize
public <Message extends PMessage<Message>> int serialize(@Nonnull java.io.OutputStream os, @Nonnull PMessageOrBuilder<Message> message) throws java.io.IOException
Description copied from class:SerializerSerialize a message.- Specified by:
serializein classSerializer- Type Parameters:
Message- The message type.- Parameters:
os- The output stream to write to.message- The message to write.- Returns:
- The number of bytes written to the output stream.
- Throws:
java.io.IOException- If writing or serialization failed.
-
serialize
public <Message extends PMessage<Message>> int serialize(@Nonnull java.io.OutputStream os, @Nonnull PServiceCall<Message> call) throws java.io.IOException
Description copied from class:SerializerSerialize a service call.- Specified by:
serializein classSerializer- Type Parameters:
Message- The message type contained in the service call.- Parameters:
os- The output stream to write to.call- The service call to write.- Returns:
- The number of bytes written to the output stream.
- Throws:
java.io.IOException- If writing or serialization failed.
-
deserialize
@Nonnull public <Message extends PMessage<Message>> Message deserialize(@Nonnull java.io.InputStream is, @Nonnull PMessageDescriptor<Message> descriptor) throws java.io.IOException
Description copied from class:SerializerDeserialize a message.- Specified by:
deserializein classSerializer- Type Parameters:
Message- The message type.- Parameters:
is- The input stream to read from.descriptor- The descriptor of the message to read.- Returns:
- The message read.
- Throws:
java.io.IOException- If reading or deserialization failed.
-
deserialize
@Nonnull public <Message extends PMessage<Message>> PServiceCall<Message> deserialize(@Nonnull java.io.InputStream is, @Nonnull PService service) throws SerializerException
Description copied from class:SerializerDeserialize a service call.- Specified by:
deserializein classSerializer- Type Parameters:
Message- The message type contained in the returned service call.- Parameters:
is- The input stream to read from.service- The service definition to read for.- Returns:
- The service call read.
- Throws:
SerializerException
-
binaryProtocol
public boolean binaryProtocol()
- Specified by:
binaryProtocolin classSerializer- Returns:
- True if the protocol of the serializer is "binary" a.k.a. unreadable to most humans.
-
verifyEndOfContent
public void verifyEndOfContent(@Nonnull java.io.InputStream input) throws java.io.IOExceptionDescription copied from class:SerializerVerify that the input stream does not contain any more readable content and close the stream. Throws exception if unable to verify, or the streams contains any meaningful content.- Specified by:
verifyEndOfContentin classSerializer- Parameters:
input- The input stream to check.- Throws:
java.io.IOException- If unable to read from stream or stream contains meaningful content.
-
mediaType
@Nonnull public java.lang.String mediaType()
- Specified by:
mediaTypein classSerializer- Returns:
- Media type of the content generated by the serializer. Can be used for Content-Type and Accept HTTP headers, MIME type etc.
-
-