Class FormatIdOutputStream
- All Implemented Interfaces:
Closeable, DataOutput, Flushable, ObjectOutput, AutoCloseable, ErrorInfo
An ObjectOutput (henceforth 'out') preceeds objects it writes with a format id. The companion FormatIdInputStream (henceforth 'in') uses these format ids in parsing the stored data. The stream can be thought of as containing a sequence of (formatId,object) pairs interspersed with other data. The assumption is that out.writeObject() produces these pairs and in.readObject() uses the format ids to construct objects from the pairs that out.writeObject produced. The description below describes each supported pair and how in.readObject() processes it.
- (NULL_FORMAT_ID, nothing) in.readObject() returns null.
- (SRING_FORMAT_ID, UTF8 encoded string)in.readObject reads and returns this string.
- (SERIALIZABLE_FORMAT_ID,serialized object) in.readObject() reads the object using java serialization and returns it.
- (A format id for a Storable, isNull flag and object if isNull == false) (see note 1) in.readObject() reads the boolean isNull flag. If is null is true, in.readObject() returns a Storable object of the correct class which is null. If ifNull is false, in.readObject() restores the object using its readExternal() method.
- (A format id for a Formatable which is not Storable, the stored object) (see note 1) in.readObject restores the object using its readExternal() method.
Note 1: The FormatIdInputStream uses Monitor.newInstanceFromIdentifier(format id) to get the class.
Note 2: An object may support more than one of the following interfaces Storable, Formatable, Serializable. In this case out.writeObject use the first of these interfaces which the object supports (based on the order listed here) to determine how to write the object.
-
Field Summary
Fields inherited from class DataOutputStream
writtenFields inherited from class FilterOutputStream
out -
Constructor Summary
ConstructorsConstructorDescriptionConstructor for a FormatIdOutputStream -
Method Summary
Modifier and TypeMethodDescriptionvoidsetOutput(OutputStream out) Set the OutputStream for this FormatIdOutputStream to the stream provided.voidwriteObject(Object ref) Write a format id for the object provied followed by the object itself to this FormatIdOutputStream.Methods inherited from class DataOutputStream
flush, size, write, write, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTFMethods inherited from class FilterOutputStream
close, writeMethods inherited from class OutputStream
nullOutputStreamMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface DataOutput
writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF
-
Constructor Details
-
FormatIdOutputStream
Constructor for a FormatIdOutputStream- Parameters:
out- output goes here.
-
-
Method Details
-
writeObject
Write a format id for the object provied followed by the object itself to this FormatIdOutputStream.- Specified by:
writeObjectin interfaceObjectOutput- Parameters:
ref- a reference to the object.- Throws:
IOException- the exception.
-
setOutput
Set the OutputStream for this FormatIdOutputStream to the stream provided. It is the responsibility of the caller to flush or close (as required) the previous stream this class was attached to.- Parameters:
out- The new output stream.
-
getErrorInfo
- Specified by:
getErrorInfoin interfaceErrorInfo
-
getNestedException
- Specified by:
getNestedExceptionin interfaceErrorInfo
-