Package com.tangosol.io
Class DelegatingWriteBuffer.DelegatingBufferOutput
java.lang.Object
java.io.OutputStream
com.tangosol.io.AbstractWriteBuffer.AbstractBufferOutput
com.tangosol.io.DelegatingWriteBuffer.DelegatingBufferOutput
- All Implemented Interfaces:
com.oracle.coherence.common.io.OutputStreaming,OutputStreaming,WriteBuffer.BufferOutput,Closeable,DataOutput,Flushable,AutoCloseable
- Enclosing class:
DelegatingWriteBuffer
public final class DelegatingWriteBuffer.DelegatingBufferOutput
extends AbstractWriteBuffer.AbstractBufferOutput
A BufferOutput implementation that delegates to a BufferOutput
implementation, except that its offset range is shifted and limited.
- Author:
- cp 2005.03.24
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected WriteBuffer.BufferOutputThe BufferOutput to delegate to.Fields inherited from class com.tangosol.io.AbstractWriteBuffer.AbstractBufferOutput
m_ofWriteFields inherited from interface com.tangosol.io.WriteBuffer.BufferOutput
MAX_PACKED_INT_SIZE, MAX_PACKED_LONG_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionDelegatingBufferOutput(int of) Construct an AbstractBufferOutput that will begin writing at the start of the containing WriteBuffer. -
Method Summary
Modifier and TypeMethodDescriptiongetByteBuffer(int cb) Ensure that there are at leastcbbytes of capacity left in thisWriteBuffer.BufferOutput, and return a mutableByteBufferofcbbytes, starting at the current offset.protected voidmoveOffset(int cb) Move the offset within the stream forward.voidwrite(byte[] ab, int of, int cb) Writescbbytes starting at offsetoffrom the arrayab.voidwrite(int b) Writes the eight low-order bits of the argumentb.voidwriteBoolean(boolean f) Writes the boolean value f.voidwriteBuffer(ReadBuffer buf) Write all the bytes from the passed ReadBuffer object.voidwriteBuffer(ReadBuffer buf, int of, int cb) Writecbbytes from the passed ReadBuffer object starting at offsetofwithin the passed ReadBuffer.voidwriteByte(int b) Writes the eight low-order bits of the argument b.voidwriteBytes(String s) Writes the String s, but only the low-order byte from each character of the String is written.voidwriteChar(int ch) Writes a char value, comprised of the 16 low-order bits of the argument ch; the 16 high-order bits of ch are ignored.voidwriteChars(String s) Writes the String s as a sequence of characters.voidwriteDouble(double dfl) Writes a double value.voidwriteFloat(float fl) Writes a float value.voidwriteInt(int n) Writes an int value.voidwriteLong(long l) Writes a long value.voidwriteShort(int n) Writes a short value, comprised of the 16 low-order bits of the argument n; the 16 high-order bits of n are ignored.voidwriteStream(InputStreaming stream) Write the remaining contents of the specified InputStreaming object.voidwriteStream(InputStreaming stream, int cb) Write the specified number of bytes of the specified InputStreaming object.voidWrites the String s as a sequence of characters, but using UTF-8 encoding for the characters, and including the String length data so that the correspondingDataInput.readUTF()method can reconstitute a String from the written data.Methods inherited from class com.tangosol.io.AbstractWriteBuffer.AbstractBufferOutput
calcUTF, close, countNegatives, flush, formatModifiedUTF, formatModifiedUTF, formatModifiedUTF, formatUTF, formatUTF, getBuffer, getCharBuf, getOffset, setOffset, write, writePackedInt, writePackedLong, writeSafeUTF, writeUTFMethods inherited from class java.io.OutputStream
nullOutputStream
-
Field Details
-
m_out
The BufferOutput to delegate to.
-
-
Constructor Details
-
DelegatingBufferOutput
public DelegatingBufferOutput(int of) Construct an AbstractBufferOutput that will begin writing at the start of the containing WriteBuffer.- Parameters:
of- the offset within the DelegatingWriteBuffer that this BufferOutput will begin writing to
-
-
Method Details
-
write
Writes the eight low-order bits of the argumentb. The 24 high-order bits ofbare ignored.- Specified by:
writein interfaceDataOutput- Specified by:
writein interfacecom.oracle.coherence.common.io.OutputStreaming- Overrides:
writein classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
b- the byte to write (passed as an integer)- Throws:
IOException- if an I/O error occurs
-
write
Writescbbytes starting at offsetoffrom the arrayab.- Specified by:
writein interfaceDataOutput- Specified by:
writein interfacecom.oracle.coherence.common.io.OutputStreaming- Overrides:
writein classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
ab- the byte array to write fromof- the offset intoabto start writing fromcb- the number of bytes fromabto write- Throws:
IOException- if an I/O error occurs
-
writeBoolean
Writes the boolean value f.- Specified by:
writeBooleanin interfaceDataOutput- Specified by:
writeBooleanin interfaceWriteBuffer.BufferOutput- Overrides:
writeBooleanin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
f- the boolean to be written- Throws:
IOException- if an I/O error occurs
-
writeByte
Writes the eight low-order bits of the argument b. The 24 high-order bits of b are ignored.- Specified by:
writeBytein interfaceDataOutput- Specified by:
writeBytein interfaceWriteBuffer.BufferOutput- Overrides:
writeBytein classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
b- the byte to write (passed as an integer)- Throws:
IOException- if an I/O error occurs
-
writeShort
Writes a short value, comprised of the 16 low-order bits of the argument n; the 16 high-order bits of n are ignored.- Specified by:
writeShortin interfaceDataOutput- Specified by:
writeShortin interfaceWriteBuffer.BufferOutput- Overrides:
writeShortin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
n- the short to write (passed as an integer)- Throws:
IOException- if an I/O error occurs
-
writeChar
Writes a char value, comprised of the 16 low-order bits of the argument ch; the 16 high-order bits of ch are ignored.- Specified by:
writeCharin interfaceDataOutput- Specified by:
writeCharin interfaceWriteBuffer.BufferOutput- Overrides:
writeCharin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
ch- the char to write (passed as an integer)- Throws:
IOException- if an I/O error occurs
-
writeInt
Writes an int value.- Specified by:
writeIntin interfaceDataOutput- Specified by:
writeIntin interfaceWriteBuffer.BufferOutput- Overrides:
writeIntin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
n- the int to write- Throws:
IOException- if an I/O error occurs
-
writeLong
Writes a long value.- Specified by:
writeLongin interfaceDataOutput- Specified by:
writeLongin interfaceWriteBuffer.BufferOutput- Overrides:
writeLongin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
l- the long to write- Throws:
IOException- if an I/O error occurs
-
writeFloat
Writes a float value.- Specified by:
writeFloatin interfaceDataOutput- Specified by:
writeFloatin interfaceWriteBuffer.BufferOutput- Overrides:
writeFloatin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
fl- the float to write- Throws:
IOException- if an I/O error occurs
-
writeDouble
Writes a double value.- Specified by:
writeDoublein interfaceDataOutput- Specified by:
writeDoublein interfaceWriteBuffer.BufferOutput- Overrides:
writeDoublein classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
dfl- the double to write- Throws:
IOException- if an I/O error occurs
-
writeBytes
Writes the String s, but only the low-order byte from each character of the String is written.- Specified by:
writeBytesin interfaceDataOutput- Specified by:
writeBytesin interfaceWriteBuffer.BufferOutput- Overrides:
writeBytesin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
s- the String to write- Throws:
IOException- if an I/O error occurs
-
writeChars
Writes the String s as a sequence of characters.- Specified by:
writeCharsin interfaceDataOutput- Specified by:
writeCharsin interfaceWriteBuffer.BufferOutput- Overrides:
writeCharsin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
s- the String to write- Throws:
IOException- if an I/O error occursNullPointerException- if s is null
-
writeUTF
Writes the String s as a sequence of characters, but using UTF-8 encoding for the characters, and including the String length data so that the correspondingDataInput.readUTF()method can reconstitute a String from the written data.- Specified by:
writeUTFin interfaceDataOutput- Specified by:
writeUTFin interfaceWriteBuffer.BufferOutput- Overrides:
writeUTFin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
s- the String to write- Throws:
IOException- if an I/O error occurs
-
getByteBuffer
Ensure that there are at leastcbbytes of capacity left in thisWriteBuffer.BufferOutput, and return a mutableByteBufferofcbbytes, starting at the current offset.- Parameters:
cb- the size of theByteBufferto return- Returns:
- a mutable
ByteBufferofcbbytes, starting at the current offset
-
writeBuffer
Write all the bytes from the passed ReadBuffer object.This is functionally equivalent to the following code:
getBuffer().write(getOffset(), buf);- Specified by:
writeBufferin interfaceWriteBuffer.BufferOutput- Overrides:
writeBufferin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
buf- a ReadBuffer object- Throws:
IOException- if an I/O error occurs
-
writeBuffer
Writecbbytes from the passed ReadBuffer object starting at offsetofwithin the passed ReadBuffer.This is functionally equivalent to the following code:
getBuffer().write(getOffset(), buf, of, cb);- Specified by:
writeBufferin interfaceWriteBuffer.BufferOutput- Overrides:
writeBufferin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
buf- a ReadBuffer objectof- the offset within the ReadBuffer of the first byte to write to this BufferOutputcb- the number of bytes to write- Throws:
IOException- if an I/O error occurs
-
writeStream
Write the remaining contents of the specified InputStreaming object.This is functionally equivalent to the following code:
getBuffer().write(getOffset(), stream);- Specified by:
writeStreamin interfaceWriteBuffer.BufferOutput- Overrides:
writeStreamin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
stream- the stream of bytes to write to this BufferOutput- Throws:
IOException- if an I/O error occurs, specifically if an IOException occurs reading from the passed stream
-
writeStream
Write the specified number of bytes of the specified InputStreaming object.This is functionally equivalent to the following code:
getBuffer().write(getOffset(), stream, cb);- Specified by:
writeStreamin interfaceWriteBuffer.BufferOutput- Overrides:
writeStreamin classAbstractWriteBuffer.AbstractBufferOutput- Parameters:
stream- the stream of bytes to write to this BufferOutputcb- the exact number of bytes to read from the stream and write to this BufferOutput- Throws:
IOException- if an I/O error occurs, specifically if an IOException occurs reading from the passed stream
-
moveOffset
protected void moveOffset(int cb) Move the offset within the stream forward.- Parameters:
cb- the number of bytes to advance the offset
-