|
Marshalling API version 1.0.0.GA | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.io.OutputStream
java.io.ObjectOutputStream
org.jboss.marshalling.MarshallerObjectOutputStream
public abstract class MarshallerObjectOutputStream
A marshaller's object output stream. Used by marshallers for compatibility with Java serialization. Instances of
this class may be passed in to the overriden serialization methods for a class implementing Serializable
.
This class is not part of the marshalling API; rather it is intended for marshaller implementors to make it easier to develop Java serialization-compatible marshallers.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class java.io.ObjectOutputStream |
---|
ObjectOutputStream.PutField |
Field Summary |
---|
Constructor Summary | |
---|---|
protected |
MarshallerObjectOutputStream(Marshaller output)
Construct a new instance that delegates to the given marshaller. |
Method Summary | |
---|---|
protected void |
annotateClass(Class<?> cl)
Subclasses may implement this method to allow class data to be stored in the stream. |
protected void |
annotateProxyClass(Class<?> cl)
Subclasses may implement this method to store custom data in the stream along with descriptors for dynamic proxy classes. |
void |
close()
Closes the stream. |
abstract void |
defaultWriteObject()
Write the non-static and non-transient fields of the current class to this stream. |
protected void |
drain()
Drain any buffered data in ObjectOutputStream. |
protected boolean |
enableReplaceObject(boolean enable)
Enable the stream to do replacement of objects in the stream. |
void |
flush()
Flushes the stream. |
abstract ObjectOutputStream.PutField |
putFields()
Retrieve the object used to buffer persistent fields to be written to the stream. |
protected Object |
replaceObject(Object obj)
This method will allow trusted subclasses of ObjectOutputStream to substitute one object for another during serialization. |
void |
reset()
Reset will disregard the state of any objects already written to the stream. |
void |
useProtocolVersion(int version)
Specify stream protocol version to use when writing the stream. |
void |
write(byte[] buf)
Writes an array of bytes. |
void |
write(byte[] buf,
int off,
int len)
Writes a sub array of bytes. |
void |
write(int val)
Writes a byte. |
void |
writeBoolean(boolean val)
Writes a boolean. |
void |
writeByte(int val)
Writes an 8 bit byte. |
void |
writeBytes(String str)
Writes a String as a sequence of bytes. |
void |
writeChar(int val)
Writes a 16 bit char. |
void |
writeChars(String str)
Writes a String as a sequence of chars. |
protected void |
writeClassDescriptor(ObjectStreamClass desc)
Write the specified class descriptor to the ObjectOutputStream. |
void |
writeDouble(double val)
Writes a 64 bit double. |
abstract void |
writeFields()
Write the buffered fields to the stream. |
void |
writeFloat(float val)
Writes a 32 bit float. |
void |
writeInt(int val)
Writes a 32 bit int. |
void |
writeLong(long val)
Writes a 64 bit long. |
protected void |
writeObjectOverride(Object obj)
Method used by subclasses to override the default writeObject method. |
void |
writeShort(int val)
Writes a 16 bit short. |
protected void |
writeStreamHeader()
The writeStreamHeader method is provided so subclasses can append or prepend their own header to the stream. |
void |
writeUnshared(Object obj)
Writes an "unshared" object to the ObjectOutputStream. |
void |
writeUTF(String str)
Primitive data write of this String in modified UTF-8 format. |
Methods inherited from class java.io.ObjectOutputStream |
---|
writeObject |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected MarshallerObjectOutputStream(Marshaller output) throws IOException, SecurityException
output
- the delegate marshaller
IOException
- if an I/O error occurs
SecurityException
- if the caller does not have permission to construct an instance of this classMethod Detail |
---|
protected void writeObjectOverride(Object obj) throws IOException
writeObjectOverride
in class ObjectOutputStream
obj
- object to be written to the underlying stream
IOException
- if there are I/O errors while writing to the
underlying streamObjectOutputStream.ObjectOutputStream()
,
ObjectOutputStream.writeObject(Object)
public void writeUnshared(Object obj) throws IOException
ObjectOutputStream subclasses which override this method can only be constructed in security contexts possessing the "enableSubclassImplementation" SerializablePermission; any attempt to instantiate such a subclass without this permission will cause a SecurityException to be thrown.
writeUnshared
in class ObjectOutputStream
obj
- object to write to stream
InvalidClassException
- if a problem exists with the class of an
object to be serialized
IOException
- if an I/O error occurs during serializationpublic void write(int val) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
write
in class ObjectOutputStream
val
- the byte to be written to the stream
IOException
- If an I/O error has occurred.public void write(byte[] buf) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
write
in class ObjectOutputStream
buf
- the data to be written
IOException
- If an I/O error has occurred.OutputStream.write(byte[], int, int)
public void write(byte[] buf, int off, int len) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
write
in class ObjectOutputStream
buf
- the data to be writtenoff
- the start offset in the datalen
- the number of bytes that are written
IOException
- If an I/O error has occurred.public void flush() throws IOException
flush
in interface Flushable
flush
in interface ObjectOutput
flush
in class ObjectOutputStream
IOException
- If an I/O error has occurred.public void writeBoolean(boolean val) throws IOException
writeBoolean
in interface DataOutput
writeBoolean
in class ObjectOutputStream
val
- the boolean to be written
IOException
- if I/O errors occur while writing to the underlying
streampublic void writeByte(int val) throws IOException
writeByte
in interface DataOutput
writeByte
in class ObjectOutputStream
val
- the byte value to be written
IOException
- if I/O errors occur while writing to the underlying
streampublic void writeShort(int val) throws IOException
writeShort
in interface DataOutput
writeShort
in class ObjectOutputStream
val
- the short value to be written
IOException
- if I/O errors occur while writing to the underlying
streampublic void writeChar(int val) throws IOException
writeChar
in interface DataOutput
writeChar
in class ObjectOutputStream
val
- the char value to be written
IOException
- if I/O errors occur while writing to the underlying
streampublic void writeInt(int val) throws IOException
writeInt
in interface DataOutput
writeInt
in class ObjectOutputStream
val
- the integer value to be written
IOException
- if I/O errors occur while writing to the underlying
streampublic void writeLong(long val) throws IOException
writeLong
in interface DataOutput
writeLong
in class ObjectOutputStream
val
- the long value to be written
IOException
- if I/O errors occur while writing to the underlying
streampublic void writeFloat(float val) throws IOException
writeFloat
in interface DataOutput
writeFloat
in class ObjectOutputStream
val
- the float value to be written
IOException
- if I/O errors occur while writing to the underlying
streampublic void writeDouble(double val) throws IOException
writeDouble
in interface DataOutput
writeDouble
in class ObjectOutputStream
val
- the double value to be written
IOException
- if I/O errors occur while writing to the underlying
streampublic void writeBytes(String str) throws IOException
writeBytes
in interface DataOutput
writeBytes
in class ObjectOutputStream
str
- the String of bytes to be written
IOException
- if I/O errors occur while writing to the underlying
streampublic void writeChars(String str) throws IOException
writeChars
in interface DataOutput
writeChars
in class ObjectOutputStream
str
- the String of chars to be written
IOException
- if I/O errors occur while writing to the underlying
streampublic void writeUTF(String str) throws IOException
writeUTF
in interface DataOutput
writeUTF
in class ObjectOutputStream
str
- the String to be written
IOException
- if I/O errors occur while writing to the underlying
streampublic final void reset() throws IOException
reset
in class ObjectOutputStream
IOException
- if reset() is invoked while serializing an object.public final void close() throws IOException
close
in interface Closeable
close
in interface ObjectOutput
close
in class ObjectOutputStream
IOException
- If an I/O error has occurred.public final void useProtocolVersion(int version) throws IOException
This routine provides a hook to enable the current version of Serialization to write in a format that is backwards compatible to a previous version of the stream format.
Every effort will be made to avoid introducing additional backwards incompatibilities; however, sometimes there is no other alternative.
useProtocolVersion
in class ObjectOutputStream
version
- use ProtocolVersion from java.io.ObjectStreamConstants.
IOException
- if I/O errors occurObjectStreamConstants.PROTOCOL_VERSION_1
,
ObjectStreamConstants.PROTOCOL_VERSION_2
protected final void annotateClass(Class<?> cl) throws IOException
annotateClass
in class ObjectOutputStream
cl
- the class to annotate custom data for
IOException
- Any exception thrown by the underlying
OutputStream.protected final void annotateProxyClass(Class<?> cl) throws IOException
This method is called exactly once for each unique proxy class
descriptor in the stream. The default implementation of this method in
ObjectOutputStream
does nothing.
The corresponding method in ObjectInputStream
is
resolveProxyClass
. For a given subclass of
ObjectOutputStream
that overrides this method, the
resolveProxyClass
method in the corresponding subclass of
ObjectInputStream
must read any data or objects written by
annotateProxyClass
.
annotateProxyClass
in class ObjectOutputStream
cl
- the proxy class to annotate custom data for
IOException
- any exception thrown by the underlying
OutputStream
ObjectInputStream.resolveProxyClass(String[])
protected final Object replaceObject(Object obj) throws IOException
The ObjectOutputStream.writeObject method takes a parameter of type Object (as opposed to type Serializable) to allow for cases where non-serializable objects are replaced by serializable ones.
When a subclass is replacing objects it must insure that either a complementary substitution must be made during deserialization or that the substituted object is compatible with every field where the reference will be stored. Objects whose type is not a subclass of the type of the field or array element abort the serialization by raising an exception and the object is not be stored.
This method is called only once when each object is first encountered. All subsequent references to the object will be redirected to the new object. This method should return the object to be substituted or the original object.
Null can be returned as the object to be substituted, but may cause NullReferenceException in classes that contain references to the original object since they may be expecting an object instead of null.
replaceObject
in class ObjectOutputStream
obj
- the object to be replaced
IOException
- Any exception thrown by the underlying
OutputStream.protected final boolean enableReplaceObject(boolean enable) throws SecurityException
If enable
is true, and there is a security manager
installed, this method first calls the security manager's
checkPermission
method with a
SerializablePermission("enableSubstitution")
permission to
ensure it's ok to enable the stream to do replacement of objects in the
stream.
enableReplaceObject
in class ObjectOutputStream
enable
- boolean parameter to enable replacement of objects
SecurityException
- if a security manager exists and its
checkPermission
method denies enabling the stream
to do replacement of objects in the stream.SecurityManager.checkPermission(java.security.Permission)
,
SerializablePermission
protected final void writeStreamHeader() throws IOException
writeStreamHeader
in class ObjectOutputStream
IOException
- if I/O errors occur while writing to the underlying
streamprotected final void writeClassDescriptor(ObjectStreamClass desc) throws IOException
readClassDescriptor
, should then be overridden to
reconstitute the class descriptor from its custom stream representation.
By default, this method writes class descriptors according to the format
defined in the Object Serialization specification.
Note that this method will only be called if the ObjectOutputStream
is not using the old serialization stream format (set by calling
ObjectOutputStream's useProtocolVersion
method). If this
serialization stream is using the old format
(PROTOCOL_VERSION_1
), the class descriptor will be written
internally in a manner that cannot be overridden or customized.
writeClassDescriptor
in class ObjectOutputStream
desc
- class descriptor to write to the stream
IOException
- If an I/O error has occurred.ObjectInputStream.readClassDescriptor()
,
ObjectOutputStream.useProtocolVersion(int)
,
ObjectStreamConstants.PROTOCOL_VERSION_1
protected final void drain() throws IOException
drain
in class ObjectOutputStream
IOException
- if I/O errors occur while writing to the underlying
streampublic abstract void writeFields() throws IOException
writeFields
in class ObjectOutputStream
IOException
- if I/O errors occur while writing to the underlying
stream
NotActiveException
- Called when a classes writeObject method was
not called to write the state of the object.public abstract ObjectOutputStream.PutField putFields() throws IOException
putFields
in class ObjectOutputStream
IOException
- if I/O errors occurpublic abstract void defaultWriteObject() throws IOException
defaultWriteObject
in class ObjectOutputStream
IOException
- if I/O errors occur while writing to the underlying
OutputStream
|
Marshalling API version 1.0.0.GA | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |