|
Oracle® Coherence Java API Reference v3.5 E14977-01 |
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
com.tangosol.util.Base
com.tangosol.io.WrapperBufferInput
public class WrapperBufferInput
This is an imitation BufferInput implementation that provides the BufferInput interface by delegating to an object that implements the DataInput interface. Primarily, this is intended as a base class for building specific-purpose DataInput wrappers.
Constructor Summary | |
---|---|
WrapperBufferInput(java.io.DataInput in) Construct a WrapperBufferInput that will read from the specified object implementing the DataInput interface. |
|
WrapperBufferInput(java.io.DataInput in, ReadBuffer rb) Construct a WrapperBufferInput that will read from the specified object implementing the DataInput interface and return the optional ReadBuffer as its underlying source. |
Method Summary | |
---|---|
int |
available() Returns the number of bytes that can be read (or skipped over) from this input stream without causing a blocking I/O condition to occur. |
void |
close() Close the InputStream and release any system resources associated with it. |
ReadBuffer |
getBuffer() Get the ReadBuffer object that this BufferInput is reading from. |
java.io.DataInput |
getDataInput() Obtain the underlying object providing the DataInput interface that this object is delegating to. |
int |
getOffset() Determine the current offset of this BufferInput within the underlying ReadBuffer. |
void |
mark(int cbReadLimit) Marks the current read position in the InputStream in order to support the stream to be later "rewound" (using the InputStreaming.reset() method) to the current position. |
boolean |
markSupported() Determine if this InputStream supports the InputStreaming.mark(int) and InputStreaming.reset() methods. |
int |
read() Read the next byte of data from the InputStream. |
int |
read(byte[] ab) Read some number of bytes from the input stream and store them into the passed array ab . |
int |
read(byte[] ab, int of, int cb) Read up to cb bytes from the input stream and store them into the passed array ab starting at offset of . |
boolean |
readBoolean() |
ReadBuffer |
readBuffer(int cb) Read cb bytes and return them as a ReadBuffer object. |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] ab) |
void |
readFully(byte[] ab, int of, int cb) |
int |
readInt() |
java.lang.String |
readLine() |
long |
readLong() |
int |
readPackedInt() Read an int value using a variable-length storage format as described by WriteBuffer.BufferOutput.writePackedInt(int) . |
long |
readPackedLong() Read a long value using a variable-length storage format as described by WriteBuffer.BufferOutput.writePackedLong(long) . |
java.lang.String |
readSafeUTF() Read a variable-length encoded UTF packed String. |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
java.lang.String |
readUTF() |
void |
reset() Rewind this stream to the position at the time the InputStreaming.mark(int) method was last called on this InputStream. |
void |
setOffset(int of) Specify the offset of the next byte to read from the underlying ReadBuffer. |
long |
skip(long cb) Skips over up to the specified number of bytes of data from this InputStream. |
int |
skipBytes(int cb) |
Constructor Detail |
---|
public WrapperBufferInput(java.io.DataInput in)
in
- an object implementing DataInput to read frompublic WrapperBufferInput(java.io.DataInput in, ReadBuffer rb)
in
- an object implementing DataInput to read fromrb
- an optional object implementing ReadBufferMethod Detail |
---|
public int read() throws java.io.IOException
int
in the range 0
to 255
. If the end of the stream has been reached, the value -1
is returned.
This method blocks until input data is available, the end of the stream is detected, or an exception is thrown.
read
in interface InputStreaming
-1
if the end of the stream has been reachedjava.io.IOException
- if an I/O error occurspublic int read(byte[] ab) throws java.io.IOException
ab
. 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.
read
in interface InputStreaming
ab
- the array to store the bytes which are read from the stream-1
if no bytes were read from the stream because the end of the stream had been reachedjava.io.IOException
- if an I/O error occurspublic int read(byte[] ab, int of, int cb) throws java.io.IOException
cb
bytes from the input stream and store them into the passed array ab
starting at offset of
. 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.
read
in interface InputStreaming
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-1
if no bytes were read from the stream because the end of the stream had been reachedjava.io.IOException
- if an I/O error occurspublic long skip(long cb) throws java.io.IOException
skip
in interface InputStreaming
cb
- the maximum number of bytes to skip overjava.io.IOException
- if an I/O error occurspublic int available() throws java.io.IOException
available
in interface InputStreaming
available
in interface ReadBuffer.BufferInput
java.io.IOException
- if an I/O error occurspublic void close() throws java.io.IOException
close
in interface InputStreaming
close
in interface ReadBuffer.BufferInput
java.io.IOException
- if an I/O error occurspublic void mark(int cbReadLimit)
InputStreaming.reset()
method) to the current position. The caller passes in the maximum number of bytes that it expects to read before calling the InputStreaming.reset()
method, thus indicating the upper bounds of the responsibility of the stream to be able to buffer what it has read in order to support this functionality.mark
in interface InputStreaming
mark
in interface ReadBuffer.BufferInput
cbReadLimit
- the maximum number of bytes that caller expects the InputStream to be able to read before the mark position becomes invalidpublic void reset() throws java.io.IOException
InputStreaming.mark(int)
method was last called on this InputStream. If the InputStream cannot fulfill this contract, it should throw an IOException.reset
in interface InputStreaming
java.io.IOException
- if an I/O error occurs, for example if this has not been marked or if the mark has been invalidatedpublic boolean markSupported()
InputStreaming.mark(int)
and InputStreaming.reset()
methods.markSupported
in interface InputStreaming
markSupported
in interface ReadBuffer.BufferInput
true
if this InputStream supports the mark and reset method; false
otherwisepublic void readFully(byte[] ab) throws java.io.IOException
readFully
in interface java.io.DataInput
java.io.IOException
public void readFully(byte[] ab, int of, int cb) throws java.io.IOException
readFully
in interface java.io.DataInput
java.io.IOException
public int skipBytes(int cb) throws java.io.IOException
skipBytes
in interface java.io.DataInput
java.io.IOException
public boolean readBoolean() throws java.io.IOException
readBoolean
in interface java.io.DataInput
java.io.IOException
public byte readByte() throws java.io.IOException
readByte
in interface java.io.DataInput
java.io.IOException
public int readUnsignedByte() throws java.io.IOException
readUnsignedByte
in interface java.io.DataInput
java.io.IOException
public short readShort() throws java.io.IOException
readShort
in interface java.io.DataInput
java.io.IOException
public int readUnsignedShort() throws java.io.IOException
readUnsignedShort
in interface java.io.DataInput
java.io.IOException
public char readChar() throws java.io.IOException
readChar
in interface java.io.DataInput
java.io.IOException
public int readInt() throws java.io.IOException
readInt
in interface java.io.DataInput
java.io.IOException
public long readLong() throws java.io.IOException
readLong
in interface java.io.DataInput
java.io.IOException
public float readFloat() throws java.io.IOException
readFloat
in interface java.io.DataInput
java.io.IOException
public double readDouble() throws java.io.IOException
readDouble
in interface java.io.DataInput
java.io.IOException
public java.lang.String readLine() throws java.io.IOException
readLine
in interface java.io.DataInput
java.io.IOException
public java.lang.String readUTF() throws java.io.IOException
readUTF
in interface java.io.DataInput
java.io.IOException
public ReadBuffer getBuffer()
getBuffer
in interface ReadBuffer.BufferInput
public java.lang.String readSafeUTF() throws java.io.IOException
readSafeUTF
in interface ReadBuffer.BufferInput
java.io.IOException
- if an I/O error occurspublic int readPackedInt() throws java.io.IOException
WriteBuffer.BufferOutput.writePackedInt(int)
.readPackedInt
in interface ReadBuffer.BufferInput
java.io.IOException
- if an I/O error occurspublic long readPackedLong() throws java.io.IOException
WriteBuffer.BufferOutput.writePackedLong(long)
.readPackedLong
in interface ReadBuffer.BufferInput
java.io.IOException
- if an I/O error occurspublic ReadBuffer readBuffer(int cb) throws java.io.IOException
cb
bytes and return them as a ReadBuffer object.readBuffer
in interface ReadBuffer.BufferInput
cb
- the number of bytes to readcb
bytes read from the BufferInputjava.io.EOFException
- if the stream is exhausted before the number of bytes indicated could be readjava.io.IOException
- if an I/O error occurspublic int getOffset()
getOffset
in interface ReadBuffer.BufferInput
public void setOffset(int of)
setOffset
in interface ReadBuffer.BufferInput
of
- the offset of the next byte to read from the ReadBufferpublic java.io.DataInput getDataInput()
|
Oracle® Coherence Java API Reference v3.5 E14977-01 |
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |