org.jboss.marshalling.MarshallingObjectOutputStream Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2008, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.marshalling;
import java.io.ObjectOutputStream;
import java.io.IOException;
import java.io.ObjectStreamClass;
/**
* An object output stream which wraps a {@code Marshaller}, which may be used by legacy {@link java.io.ObjectOutputStream ObjectOutputStream}-based
* applications that wish to use the marshalling framework.
*/
public final class MarshallingObjectOutputStream extends ObjectOutputStream {
private Marshaller marshaller;
/**
* Construct a new instance that delegates to the given marshaller.
*
* @param marshaller the delegate marshaller
* @throws java.io.IOException if an I/O error occurs
* @throws SecurityException if the caller does not have permission to construct an instance of this class
*/
protected MarshallingObjectOutputStream(final Marshaller marshaller, final ByteOutput byteOutput) throws IOException, SecurityException {
marshaller.start(byteOutput);
this.marshaller = marshaller;
}
// Delegated methods
/** {@inheritDoc} */
protected void writeObjectOverride(final Object obj) throws IOException {
marshaller.writeObject(obj);
}
/** {@inheritDoc} */
public void writeUnshared(final Object obj) throws IOException {
marshaller.writeObjectUnshared(obj);
}
/** {@inheritDoc} */
public void write(final int val) throws IOException {
marshaller.write(val);
}
/** {@inheritDoc} */
public void write(final byte[] buf) throws IOException {
marshaller.write(buf, 0, buf.length);
}
/** {@inheritDoc} */
public void write(final byte[] buf, final int off, final int len) throws IOException {
marshaller.write(buf, off, len);
}
/** {@inheritDoc} */
public void flush() throws IOException {
marshaller.flush();
}
/** {@inheritDoc} */
public void writeBoolean(final boolean val) throws IOException {
marshaller.writeBoolean(val);
}
/** {@inheritDoc} */
public void writeByte(final int val) throws IOException {
marshaller.writeByte(val);
}
/** {@inheritDoc} */
public void writeShort(final int val) throws IOException {
marshaller.writeShort(val);
}
/** {@inheritDoc} */
public void writeChar(final int val) throws IOException {
marshaller.writeChar(val);
}
/** {@inheritDoc} */
public void writeInt(final int val) throws IOException {
marshaller.writeInt(val);
}
/** {@inheritDoc} */
public void writeLong(final long val) throws IOException {
marshaller.writeLong(val);
}
/** {@inheritDoc} */
public void writeFloat(final float val) throws IOException {
marshaller.writeFloat(val);
}
/** {@inheritDoc} */
public void writeDouble(final double val) throws IOException {
marshaller.writeDouble(val);
}
/** {@inheritDoc} */
public void writeBytes(final String str) throws IOException {
marshaller.writeBytes(str);
}
/** {@inheritDoc} */
public void writeChars(final String str) throws IOException {
marshaller.writeChars(str);
}
/** {@inheritDoc} */
public void writeUTF(final String str) throws IOException {
marshaller.writeUTF(str);
}
// Unsupported methods
/** {@inheritDoc} */
public final void reset() throws IOException {
throw new IOException("reset() may not be invoked on this stream");
}
/** {@inheritDoc} */
public final void close() throws IOException {
marshaller.finish();
marshaller = null;
}
/** {@inheritDoc} */
public final void useProtocolVersion(final int version) throws IOException {
throw new IllegalStateException("Protocol version may not be changed");
}
/** {@inheritDoc} */
protected final void annotateClass(final Class> cl) throws IOException {
throw new IllegalStateException("Class may not be annotated in this context");
}
/** {@inheritDoc} */
protected final void annotateProxyClass(final Class> cl) throws IOException {
throw new IllegalStateException("Class may not be annotated in this context");
}
/** {@inheritDoc} */
protected final Object replaceObject(final Object obj) throws IOException {
throw new IllegalStateException("Object may not be replaced in this context");
}
/** {@inheritDoc} */
protected final boolean enableReplaceObject(final boolean enable) throws SecurityException {
throw new SecurityException("Object replacement may not be controlled in this context");
}
/** {@inheritDoc} */
protected final void writeStreamHeader() throws IOException {
throw new IllegalStateException("Stream header may not be written in this context");
}
/** {@inheritDoc} */
protected final void writeClassDescriptor(final ObjectStreamClass desc) throws IOException {
throw new IllegalStateException("Class descriptor may not be written in this context");
}
/** {@inheritDoc} */
protected final void drain() throws IOException {
throw new IllegalStateException("Output may not be drained in this context");
}
/** {@inheritDoc} */
public void writeFields() throws IOException {
throw new IllegalStateException("writeFields may not be called in this context");
}
/** {@inheritDoc} */
public PutField putFields() throws IOException {
throw new IllegalStateException("putFields may not be called in this context");
}
/** {@inheritDoc} */
public void defaultWriteObject() throws IOException {
throw new IllegalStateException("defaultWriteObject may not be called in this context");
}
}