Class SizeEstimatingBufferOutput
- All Implemented Interfaces:
 com.oracle.coherence.common.io.OutputStreaming,OutputStreaming,WriteBuffer.BufferOutput,DataOutput
- Since:
 - Coherence 12.1.3
 - Author:
 - mf 2013.05.16
 
- 
Field Summary
FieldsFields inherited from interface com.tangosol.io.WriteBuffer.BufferOutput
MAX_PACKED_INT_SIZE, MAX_PACKED_LONG_SIZE - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Close the OutputStream and release any system resources associated with it.voidflush()Flushes this OutputStream and forces any buffered output bytes to be written.Get the WriteBuffer object that this BufferOutput is writing to.getByteBuffer(int cb) Ensure that there are at leastcbbytes of capacity left in thisWriteBuffer.BufferOutput, and return a mutableByteBufferofcbbytes, starting at the current offset.intDetermine the current offset of this BufferOutput within the underlying WriteBuffer.voidsetOffset(int of) Specify the offset of the next byte to write to the underlying WriteBuffer.voidwrite(byte[] ab) Writes all the bytes in the arrayab.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.voidwritePackedInt(int n) Write an int value using a variable-length storage-format.voidwritePackedLong(long l) Write a long value using a variable-length storage-format.voidWrite a variable-length encoded UTF packed String.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. 
- 
Field Details
- 
m_cb
protected int m_cbThe byte count. 
 - 
 - 
Constructor Details
- 
SizeEstimatingBufferOutput
public SizeEstimatingBufferOutput() 
 - 
 - 
Method Details
- 
write
Description copied from interface:com.oracle.coherence.common.io.OutputStreamingWrites 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- Parameters:
 b- the byte to write (passed as an integer)- Throws:
 IOException- if an I/O error occurs
 - 
write
Description copied from interface:com.oracle.coherence.common.io.OutputStreamingWrites all the bytes in the arrayab.- Specified by:
 writein interfaceDataOutput- Specified by:
 writein interfacecom.oracle.coherence.common.io.OutputStreaming- Parameters:
 ab- the byte array to write- Throws:
 IOException- if an I/O error occurs
 - 
write
Description copied from interface:com.oracle.coherence.common.io.OutputStreamingWritescbbytes starting at offsetoffrom the arrayab.- Specified by:
 writein interfaceDataOutput- Specified by:
 writein interfacecom.oracle.coherence.common.io.OutputStreaming- 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
 - 
flush
Description copied from interface:com.oracle.coherence.common.io.OutputStreamingFlushes this OutputStream and forces any buffered output bytes to be written.- Specified by:
 flushin interfacecom.oracle.coherence.common.io.OutputStreaming- Throws:
 IOException- if an I/O error occurs
 - 
close
Description copied from interface:WriteBuffer.BufferOutputClose the OutputStream and release any system resources associated with it.BufferOutput implementations do not pass this call down onto an underlying stream, if any.
- Specified by:
 closein interfacecom.oracle.coherence.common.io.OutputStreaming- Specified by:
 closein interfaceWriteBuffer.BufferOutput- Throws:
 IOException- if an I/O error occurs
 - 
writeBoolean
Description copied from interface:WriteBuffer.BufferOutputWrites the boolean value f.- Specified by:
 writeBooleanin interfaceDataOutput- Specified by:
 writeBooleanin interfaceWriteBuffer.BufferOutput- Parameters:
 f- the boolean to be written- Throws:
 IOException- if an I/O error occurs
 - 
writeByte
Description copied from interface:WriteBuffer.BufferOutputWrites 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- Parameters:
 b- the byte to write (passed as an integer)- Throws:
 IOException- if an I/O error occurs
 - 
writeShort
Description copied from interface:WriteBuffer.BufferOutputWrites 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- Parameters:
 n- the short to write (passed as an integer)- Throws:
 IOException- if an I/O error occurs
 - 
writeChar
Description copied from interface:WriteBuffer.BufferOutputWrites 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- Parameters:
 ch- the char to write (passed as an integer)- Throws:
 IOException- if an I/O error occurs
 - 
writeInt
Description copied from interface:WriteBuffer.BufferOutputWrites an int value.- Specified by:
 writeIntin interfaceDataOutput- Specified by:
 writeIntin interfaceWriteBuffer.BufferOutput- Parameters:
 n- the int to write- Throws:
 IOException- if an I/O error occurs
 - 
writeLong
Description copied from interface:WriteBuffer.BufferOutputWrites a long value.- Specified by:
 writeLongin interfaceDataOutput- Specified by:
 writeLongin interfaceWriteBuffer.BufferOutput- Parameters:
 l- the long to write- Throws:
 IOException- if an I/O error occurs
 - 
writeFloat
Description copied from interface:WriteBuffer.BufferOutputWrites a float value.- Specified by:
 writeFloatin interfaceDataOutput- Specified by:
 writeFloatin interfaceWriteBuffer.BufferOutput- Parameters:
 fl- the float to write- Throws:
 IOException- if an I/O error occurs
 - 
writeDouble
Description copied from interface:WriteBuffer.BufferOutputWrites a double value.- Specified by:
 writeDoublein interfaceDataOutput- Specified by:
 writeDoublein interfaceWriteBuffer.BufferOutput- Parameters:
 dfl- the double to write- Throws:
 IOException- if an I/O error occurs
 - 
writeBytes
Description copied from interface:WriteBuffer.BufferOutputWrites 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- Parameters:
 s- the String to write- Throws:
 IOException- if an I/O error occurs
 - 
writeChars
Description copied from interface:WriteBuffer.BufferOutputWrites the String s as a sequence of characters.- Specified by:
 writeCharsin interfaceDataOutput- Specified by:
 writeCharsin interfaceWriteBuffer.BufferOutput- Parameters:
 s- the String to write- Throws:
 IOException- if an I/O error occurs
 - 
writeUTF
Description copied from interface:WriteBuffer.BufferOutputWrites 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- Parameters:
 s- the String to write- Throws:
 IOException- if an I/O error occurs
 - 
getBuffer
Description copied from interface:WriteBuffer.BufferOutputGet the WriteBuffer object that this BufferOutput is writing to.- Specified by:
 getBufferin interfaceWriteBuffer.BufferOutput- Returns:
 - the underlying WriteBuffer object
 
 - 
getByteBuffer
Description copied from interface:WriteBuffer.BufferOutputEnsure that there are at leastcbbytes of capacity left in thisWriteBuffer.BufferOutput, and return a mutableByteBufferofcbbytes, starting at the current offset.- Specified by:
 getByteBufferin interfaceWriteBuffer.BufferOutput- Parameters:
 cb- the size of theByteBufferto return- Returns:
 - a mutable 
ByteBufferofcbbytes, starting at the current offset 
 - 
writeSafeUTF
Description copied from interface:WriteBuffer.BufferOutputWrite a variable-length encoded UTF packed String. The major differences between this implementation and DataOutput is that this implementation supports null values and is not limited to 64KB UTF-encoded values.The binary format for a Safe UTF value is a "packed int" for the binary length followed by the UTF-encoded byte stream. The length is either -1 (indicating a null String) or in the range 0 .. Integer.MAX_VALUE (inclusive). The UTF-encoded portion uses a format identical to DataOutput.
- Specified by:
 writeSafeUTFin interfaceWriteBuffer.BufferOutput- Parameters:
 s- a String value to write; may be null- Throws:
 IOException- if an I/O error occurs
 - 
writePackedInt
Description copied from interface:WriteBuffer.BufferOutputWrite an int value using a variable-length storage-format.The format differs from DataOutput in that DataOutput always uses a fixed-length 4-byte Big Endian binary format for int values. The "packed" format includes a sign bit (0x40) and a continuation bit (0x80) in the first byte, followed by the least 6 significant bits of the int value. Subsequent bytes (each appearing only if the previous byte had its continuation bit set) include a continuation bit (0x80) and the next least 7 significant bits of the int value. In this way, a 32-bit value is encoded into 1-5 bytes, depending on the magnitude of the int value being encoded.
- Specified by:
 writePackedIntin interfaceWriteBuffer.BufferOutput- Parameters:
 n- an int value to write- Throws:
 IOException- if an I/O error occurs
 - 
writePackedLong
Description copied from interface:WriteBuffer.BufferOutputWrite a long value using a variable-length storage-format.The format differs from DataOutput in that DataOutput always uses a fixed-length 8-byte Big Endian binary format for long values. The "packed" format includes a sign bit (0x40) and a continuation bit (0x80) in the first byte, followed by the least 6 significant bits of the long value. Subsequent bytes (each appearing only if the previous byte had its continuation bit set) include a continuation bit (0x80) and the next least 7 significant bits of the long value. In this way, a 64-bit value is encoded into 1-10 bytes, depending on the magnitude of the long value being encoded.
- Specified by:
 writePackedLongin interfaceWriteBuffer.BufferOutput- Parameters:
 l- a long value to write- Throws:
 IOException- if an I/O error occurs
 - 
writeBuffer
Description copied from interface:WriteBuffer.BufferOutputWrite 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- Parameters:
 buf- a ReadBuffer object- Throws:
 IOException- if an I/O error occurs
 - 
writeBuffer
Description copied from interface:WriteBuffer.BufferOutputWritecbbytes 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- 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
Description copied from interface:WriteBuffer.BufferOutputWrite 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- 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
Description copied from interface:WriteBuffer.BufferOutputWrite 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- 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
 - 
getOffset
public int getOffset()Description copied from interface:WriteBuffer.BufferOutputDetermine the current offset of this BufferOutput within the underlying WriteBuffer.- Specified by:
 getOffsetin interfaceWriteBuffer.BufferOutput- Returns:
 - the offset of the next byte to write to the WriteBuffer
 
 - 
setOffset
public void setOffset(int of) Description copied from interface:WriteBuffer.BufferOutputSpecify the offset of the next byte to write to the underlying WriteBuffer.- Specified by:
 setOffsetin interfaceWriteBuffer.BufferOutput- Parameters:
 of- the offset of the next byte to write to the WriteBuffer
 
 -