Class MultiBufferReadBuffer.MultiBufferInput
- All Implemented Interfaces:
com.oracle.coherence.common.io.InputStreaming,InputStreaming,ReadBuffer.BufferInput,Closeable,DataInput,AutoCloseable
- Enclosing class:
MultiBufferReadBuffer
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanTrue if the BufferInput set to self-destruct. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.MultiBufferInput(boolean fDestructive) Default constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected ReadBuffer.BufferInputgetIn()Obtain the underlying BufferOutput.intread()Read the next byte of data from the InputStream.intread(byte[] ab, int of, int cb) Read up tocbbytes from the input stream and store them into the passed arrayabstarting at offsetof.readBuffer(int cb) Readcbbytes and return them as a ReadBuffer object.bytereadByte()Read a byte value.charreadChar()Read a char value.doubleRead a double value.floatRead a float value.intreadInt()Read an int value.longreadLong()Read a long value.intRead an int value using a variable-length storage format as described byWriteBuffer.BufferOutput.writePackedInt(int).longRead a long value using a variable-length storage format as described byWriteBuffer.BufferOutput.writePackedLong(long).Read a variable-length encoded UTF packed String.shortRead a short value.intRead an unsigned short value.readUTF()Reads a String value.voidreset()Rewind this stream to the position at the time theInputStreaming.mark(int)method was last called on this InputStream.voidsetOffset(int of) Specify the offset of the next byte to read from the underlying ReadBuffer.intskipBytes(int cb) Skips over up to the specified number of bytes of data.protected voidsync()After traversing an underlying WriteBuffer boundary, or otherwise changing the offset significantly, sync between this BufferOutput's absolute position and an underlying BufferOutput's relative position.Methods inherited from class com.tangosol.io.AbstractReadBuffer.AbstractBufferInput
adjustOffsetInternal, available, close, convertUTF, getBuffer, getCharBuf, getMarkInternal, getObjectInputFilter, getOffset, mark, markSupported, read, readBoolean, readFully, readFully, readLine, readUnsignedByte, readUTF, setMarkInternal, setObjectInputFilter, setOffsetInternal, skipMethods inherited from class java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, skipNBytes, transferTo
-
Field Details
-
m_fDestructive
protected boolean m_fDestructiveTrue if the BufferInput set to self-destruct.
-
-
Constructor Details
-
MultiBufferInput
public MultiBufferInput()Default constructor. -
MultiBufferInput
public MultiBufferInput(boolean fDestructive) Default constructor.- Parameters:
fDestructive- true iff the stream should self-destruct as it is advanced
-
-
Method Details
-
read
Read the next byte of data from the InputStream. The value byte is returned as anintin the range0to255. If the end of the stream has been reached, the value-1is returned.This method blocks until input data is available, the end of the stream is detected, or an exception is thrown.
- Specified by:
readin interfacecom.oracle.coherence.common.io.InputStreaming- Overrides:
readin classAbstractReadBuffer.AbstractBufferInput- Returns:
- the next byte of data, or
-1if the end of the stream has been reached - Throws:
IOException- if an I/O error occurs
-
read
Read up tocbbytes from the input stream and store them into the passed arrayabstarting at offsetof. The number of bytes actually read is returned.This method blocks until input data is available, the end of the stream is detected, or an exception is thrown.
- Specified by:
readin interfacecom.oracle.coherence.common.io.InputStreaming- Overrides:
readin classAbstractReadBuffer.AbstractBufferInput- Parameters:
ab- the array to store the bytes which are read from the streamof- the offset into the array that the read bytes will be storedcb- the maximum number of bytes to read- Returns:
- the number of bytes read from the stream, or
-1if no bytes were read from the stream because the end of the stream had been reached - Throws:
IOException- if an I/O error occurs
-
reset
Rewind this stream to the position at the time theInputStreaming.mark(int)method was last called on this InputStream. If the InputStream cannot fulfill this contract, it should throw an IOException.- Specified by:
resetin interfacecom.oracle.coherence.common.io.InputStreaming- Overrides:
resetin classAbstractReadBuffer.AbstractBufferInput- Throws:
IOException- if an I/O error occurs, for example if this has not been marked or if the mark has been invalidated
-
skipBytes
Skips over up to the specified number of bytes of data. The number of bytes actually skipped over may be fewer than the number specified to skip, and may even be zero; this can be caused by an end-of-file condition, but can also occur even when there is data remaining to be read. As a result, the caller should check the return value from this method, which indicates the actual number of bytes skipped.- Specified by:
skipBytesin interfaceDataInput- Specified by:
skipBytesin interfaceReadBuffer.BufferInput- Overrides:
skipBytesin classAbstractReadBuffer.AbstractBufferInput- Parameters:
cb- the maximum number of bytes to skip over- Returns:
- the actual number of bytes that were skipped over
- Throws:
IOException- if an I/O error occurs
-
readByte
Read a byte value.This method is the counterpart for the
DataOutput.writeByte(int)method.- Specified by:
readBytein interfaceDataInput- Specified by:
readBytein interfaceReadBuffer.BufferInput- Overrides:
readBytein classAbstractReadBuffer.AbstractBufferInput- Returns:
- a
bytevalue - Throws:
IOException- if an I/O error occurs
-
readShort
Read a short value.This method is the counterpart for the
DataOutput.writeShort(int)method.- Specified by:
readShortin interfaceDataInput- Specified by:
readShortin interfaceReadBuffer.BufferInput- Overrides:
readShortin classAbstractReadBuffer.AbstractBufferInput- Returns:
- a
shortvalue - Throws:
IOException- if an I/O error occurs
-
readUnsignedShort
Read an unsigned short value.This method is the counterpart for the
DataOutput.writeShort(int)method when it is used with unsigned 16-bit values.- Specified by:
readUnsignedShortin interfaceDataInput- Specified by:
readUnsignedShortin interfaceReadBuffer.BufferInput- Overrides:
readUnsignedShortin classAbstractReadBuffer.AbstractBufferInput- Returns:
- an
intvalue in the range of 0x0000 to 0xFFFF - Throws:
IOException- if an I/O error occurs
-
readChar
Read a char value.This method is the counterpart for the
DataOutput.writeChar(int)method.- Specified by:
readCharin interfaceDataInput- Specified by:
readCharin interfaceReadBuffer.BufferInput- Overrides:
readCharin classAbstractReadBuffer.AbstractBufferInput- Returns:
- a
charvalue - Throws:
IOException- if an I/O error occurs
-
readInt
Read an int value.This method is the counterpart for the
DataOutput.writeInt(int)method.- Specified by:
readIntin interfaceDataInput- Specified by:
readIntin interfaceReadBuffer.BufferInput- Overrides:
readIntin classAbstractReadBuffer.AbstractBufferInput- Returns:
- an
intvalue - Throws:
IOException- if an I/O error occurs
-
readLong
Read a long value.This method is the counterpart for the
DataOutput.writeLong(long)method.- Specified by:
readLongin interfaceDataInput- Specified by:
readLongin interfaceReadBuffer.BufferInput- Overrides:
readLongin classAbstractReadBuffer.AbstractBufferInput- Returns:
- a
longvalue - Throws:
IOException- if an I/O error occurs
-
readFloat
Read a float value.This method is the counterpart for the
DataOutput.writeFloat(float)method.- Specified by:
readFloatin interfaceDataInput- Specified by:
readFloatin interfaceReadBuffer.BufferInput- Overrides:
readFloatin classAbstractReadBuffer.AbstractBufferInput- Returns:
- a
floatvalue - Throws:
IOException- if an I/O error occurs
-
readDouble
Read a double value.This method is the counterpart for the
DataOutput.writeDouble(double)method.- Specified by:
readDoublein interfaceDataInput- Specified by:
readDoublein interfaceReadBuffer.BufferInput- Overrides:
readDoublein classAbstractReadBuffer.AbstractBufferInput- Returns:
- a
doublevalue - Throws:
IOException- if an I/O error occurs
-
readUTF
Reads a String value.This method is the counterpart for the
DataOutput.writeUTF(java.lang.String)method.- Specified by:
readUTFin interfaceDataInput- Specified by:
readUTFin interfaceReadBuffer.BufferInput- Overrides:
readUTFin classAbstractReadBuffer.AbstractBufferInput- Returns:
- a String value
- Throws:
IOException- if an I/O error occurs
-
readSafeUTF
Read a variable-length encoded UTF packed String. The major differences between this implementation and DataInput is that this supports null String values and is not limited to 64KB UTF-encoded values.- Specified by:
readSafeUTFin interfaceReadBuffer.BufferInput- Overrides:
readSafeUTFin classAbstractReadBuffer.AbstractBufferInput- Returns:
- a String value; may be null
- Throws:
IOException- if an I/O error occurs
-
readPackedInt
Read an int value using a variable-length storage format as described byWriteBuffer.BufferOutput.writePackedInt(int).- Specified by:
readPackedIntin interfaceReadBuffer.BufferInput- Overrides:
readPackedIntin classAbstractReadBuffer.AbstractBufferInput- Returns:
- an int value
- Throws:
IOException- if an I/O error occurs
-
readPackedLong
Read a long value using a variable-length storage format as described byWriteBuffer.BufferOutput.writePackedLong(long).- Specified by:
readPackedLongin interfaceReadBuffer.BufferInput- Overrides:
readPackedLongin classAbstractReadBuffer.AbstractBufferInput- Returns:
- a long value
- Throws:
IOException- if an I/O error occurs
-
readBuffer
Readcbbytes and return them as a ReadBuffer object.- Specified by:
readBufferin interfaceReadBuffer.BufferInput- Overrides:
readBufferin classAbstractReadBuffer.AbstractBufferInput- Parameters:
cb- the number of bytes to read- Returns:
- a ReadBuffer object composed of
cbbytes read from the BufferInput - Throws:
IOException- if an I/O error occurs
-
setOffset
public void setOffset(int of) Specify the offset of the next byte to read from the underlying ReadBuffer.- Specified by:
setOffsetin interfaceReadBuffer.BufferInput- Overrides:
setOffsetin classAbstractReadBuffer.AbstractBufferInput- Parameters:
of- the offset of the next byte to read from the ReadBuffer
-
getIn
Obtain the underlying BufferOutput.- Returns:
- the underlying BufferOutput
-
sync
protected void sync()After traversing an underlying WriteBuffer boundary, or otherwise changing the offset significantly, sync between this BufferOutput's absolute position and an underlying BufferOutput's relative position.
-