Class ByteArrayWriteBuffer.ByteArrayBufferOutput
- All Implemented Interfaces:
com.oracle.coherence.common.io.OutputStreaming
,OutputStreaming
,WriteBuffer.BufferOutput
,Closeable
,DataOutput
,Flushable
,AutoCloseable
- Enclosing class:
ByteArrayWriteBuffer
- Author:
- cp 2005.03.25
-
Field Summary
Fields inherited from class com.tangosol.io.AbstractWriteBuffer.AbstractBufferOutput
m_ofWrite
Fields inherited from interface com.tangosol.io.WriteBuffer.BufferOutput
MAX_PACKED_INT_SIZE, MAX_PACKED_LONG_SIZE
-
Constructor Summary
ConstructorDescriptionConstruct an ByteArrayBufferOutput that will begin writing at the start of the containing WriteBuffer.ByteArrayBufferOutput
(int of) Construct an ByteArrayBufferOutput that will begin writing at the specified offset within the containing WriteBuffer. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
moveOffset
(int cb) Move the offset within the stream forward.void
writeBytes
(String s) Writes the String s, but only the low-order byte from each character of the String is written.void
writeChars
(String s) Writes the String s as a sequence of characters.void
writeInt
(int n) Writes an int value.void
writeLong
(long l) Writes a long value.void
writePackedInt
(int n) Write an int value using a variable-length storage-format.void
writePackedLong
(long l) Write a long value using a variable-length storage-format.void
Write a variable-length encoded UTF packed String.void
writeShort
(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.void
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.Methods inherited from class com.tangosol.io.AbstractWriteBuffer.AbstractBufferOutput
calcUTF, close, flush, formatUTF, formatUTF, getBuffer, getCharBuf, getOffset, setOffset, write, write, write, writeBoolean, writeBuffer, writeBuffer, writeByte, writeChar, writeDouble, writeFloat, writeStream, writeStream, writeUTF
Methods inherited from class java.io.OutputStream
nullOutputStream
-
Constructor Details
-
ByteArrayBufferOutput
public ByteArrayBufferOutput()Construct an ByteArrayBufferOutput that will begin writing at the start of the containing WriteBuffer. -
ByteArrayBufferOutput
public ByteArrayBufferOutput(int of) Construct an ByteArrayBufferOutput that will begin writing at the specified offset within the containing WriteBuffer.- Parameters:
of
- the offset at which to begin writing
-
-
Method Details
-
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:
writeShort
in interfaceDataOutput
- Specified by:
writeShort
in interfaceWriteBuffer.BufferOutput
- Overrides:
writeShort
in classAbstractWriteBuffer.AbstractBufferOutput
- Parameters:
n
- the short to write (passed as an integer)- Throws:
IOException
- if an I/O error occurs
-
writeInt
Writes an int value.- Specified by:
writeInt
in interfaceDataOutput
- Specified by:
writeInt
in interfaceWriteBuffer.BufferOutput
- Overrides:
writeInt
in classAbstractWriteBuffer.AbstractBufferOutput
- Parameters:
n
- the int to write- Throws:
IOException
- if an I/O error occurs
-
writeLong
Writes a long value.- Specified by:
writeLong
in interfaceDataOutput
- Specified by:
writeLong
in interfaceWriteBuffer.BufferOutput
- Overrides:
writeLong
in classAbstractWriteBuffer.AbstractBufferOutput
- Parameters:
l
- the long 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:
writeBytes
in interfaceDataOutput
- Specified by:
writeBytes
in interfaceWriteBuffer.BufferOutput
- Overrides:
writeBytes
in 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:
writeChars
in interfaceDataOutput
- Specified by:
writeChars
in interfaceWriteBuffer.BufferOutput
- Overrides:
writeChars
in classAbstractWriteBuffer.AbstractBufferOutput
- Parameters:
s
- the String to write- Throws:
IOException
- if an I/O error occurs
-
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:
writeUTF
in interfaceDataOutput
- Specified by:
writeUTF
in interfaceWriteBuffer.BufferOutput
- Overrides:
writeUTF
in classAbstractWriteBuffer.AbstractBufferOutput
- Parameters:
s
- the String to write- Throws:
IOException
- if an I/O error occurs
-
writeSafeUTF
Write 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:
writeSafeUTF
in interfaceWriteBuffer.BufferOutput
- Overrides:
writeSafeUTF
in classAbstractWriteBuffer.AbstractBufferOutput
- Parameters:
s
- a String value to write; may be null- Throws:
IOException
- if an I/O error occurs
-
writePackedInt
Write 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:
writePackedInt
in interfaceWriteBuffer.BufferOutput
- Overrides:
writePackedInt
in classAbstractWriteBuffer.AbstractBufferOutput
- Parameters:
n
- an int value to write- Throws:
IOException
- if an I/O error occurs
-
writePackedLong
Write 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:
writePackedLong
in interfaceWriteBuffer.BufferOutput
- Overrides:
writePackedLong
in classAbstractWriteBuffer.AbstractBufferOutput
- Parameters:
l
- a long value to write- Throws:
IOException
- if an I/O error occurs
-
moveOffset
protected void moveOffset(int cb) Move the offset within the stream forward.- Parameters:
cb
- the number of bytes to advance the offset
-