Package com.tangosol.io
Class MultiByteArrayInputStream
- java.lang.Object
-
- java.io.InputStream
-
- com.tangosol.io.MultiByteArrayInputStream
-
- All Implemented Interfaces:
com.oracle.coherence.common.io.InputStreaming
,InputStreaming
,Closeable
,AutoCloseable
public class MultiByteArrayInputStream extends InputStream implements InputStreaming
Reads binary data from a series of byte arrays.- Author:
- cp 2001.11.03
-
-
Field Summary
Fields Modifier and Type Field Description protected static byte[]
EMPTY_BYTES
Empty array of bytes.protected byte[][]
m_aabArray
The array of byte arrays.protected byte[]
m_ab
The current byte array.protected boolean
m_fDestructive
True iff the array will be null'd out as it is traversed.protected boolean
m_fEOF
True after eof is determined.protected int
m_iArray
The index of the current byte array.protected int
m_iArrayMarked
The index of the marked byte array.protected int
m_of
The current offset in the current byte array.protected int
m_ofMarked
The marked offset in the marked byte array.protected static int
MARK_UNSET
Marker position indicating that stream is not marked.
-
Constructor Summary
Constructors Constructor Description MultiByteArrayInputStream(byte[][] aab)
Construct a MultiByteArrayInputStream.MultiByteArrayInputStream(byte[][] aab, boolean fDestructive)
Construct a MultiByteArrayInputStream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
Returns the number of bytes that can be read (or skipped over) from this input stream without blocking by the next caller of a method for this input stream.void
close()
Close the stream.void
mark(int readlimit)
Marks the current position in this input stream.boolean
markSupported()
Tests if this input stream supports themark
andreset
methods.int
read()
Reads the next byte of data from the input stream.int
read(byte[] abDest, int ofDest, int cbDest)
Reads up tolen
bytes of data from the input stream into an array of bytes.void
reset()
Repositions this stream to the position at the time themark
method was last called on this input stream.long
skip(long n)
Skips over and discardsn
bytes of data from this input stream.-
Methods inherited from class java.io.InputStream
nullInputStream, read, readAllBytes, readNBytes, readNBytes, transferTo
-
-
-
-
Field Detail
-
EMPTY_BYTES
protected static final byte[] EMPTY_BYTES
Empty array of bytes.
-
MARK_UNSET
protected static final int MARK_UNSET
Marker position indicating that stream is not marked.- See Also:
- Constant Field Values
-
m_fEOF
protected boolean m_fEOF
True after eof is determined.
-
m_fDestructive
protected boolean m_fDestructive
True iff the array will be null'd out as it is traversed.
-
m_aabArray
protected byte[][] m_aabArray
The array of byte arrays.
-
m_iArray
protected int m_iArray
The index of the current byte array.
-
m_ab
protected byte[] m_ab
The current byte array.
-
m_of
protected int m_of
The current offset in the current byte array.
-
m_iArrayMarked
protected int m_iArrayMarked
The index of the marked byte array.
-
m_ofMarked
protected int m_ofMarked
The marked offset in the marked byte array.
-
-
Constructor Detail
-
MultiByteArrayInputStream
public MultiByteArrayInputStream(byte[][] aab)
Construct a MultiByteArrayInputStream.- Parameters:
aab
- a non-null array of byte arrays of data to stream, each byte array must be non-null and non-zero-length
-
MultiByteArrayInputStream
public MultiByteArrayInputStream(byte[][] aab, boolean fDestructive)
Construct a MultiByteArrayInputStream.- Parameters:
aab
- a non-null array of byte arrays of data to stream, each byte array must be non-null and non-zero-lengthfDestructive
- if true the supplied array will be cleared as it is traversed, stream mark positions will be respected
-
-
Method Detail
-
read
public int read() throws IOException
Reads the next byte of data from the input stream. The value byte is returned as anint
in the range0
to255
. If no byte is available because 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.- Specified by:
read
in interfacecom.oracle.coherence.common.io.InputStreaming
- Specified by:
read
in classInputStream
- Returns:
- the next byte of data, or
-1
if the end of the stream is reached. - Throws:
IOException
- if an I/O error occurs.
-
read
public int read(byte[] abDest, int ofDest, int cbDest) throws IOException
Reads up tolen
bytes of data from the input stream into an array of bytes. An attempt is made to read as many aslen
bytes, but a smaller number may be read, possibly zero. The number of bytes actually read is returned as an integer.- Specified by:
read
in interfacecom.oracle.coherence.common.io.InputStreaming
- Overrides:
read
in classInputStream
- Parameters:
abDest
- the buffer into which the data is readofDest
- the start offset in arrayb
at which the data is writtencbDest
- the maximum number of bytes to read- Returns:
- the total number of bytes read into the buffer, or
-1
if there is no more data because the end of the stream has been reached. - Throws:
IOException
- if an I/O error occurs
-
available
public int available()
Returns the number of bytes that can be read (or skipped over) from this input stream without blocking by the next caller of a method for this input stream. The next caller might be the same thread or or another thread.- Specified by:
available
in interfacecom.oracle.coherence.common.io.InputStreaming
- Overrides:
available
in classInputStream
- Returns:
- the number of bytes that can be read from this input stream without blocking.
-
skip
public long skip(long n)
Skips over and discardsn
bytes of data from this input stream. Theskip
method may, for a variety of reasons, end up skipping over some smaller number of bytes, possibly0
. This may result from any of a number of conditions; reaching end of file beforen
bytes have been skipped is only one possibility. The actual number of bytes skipped is returned. Ifn
is negative, no bytes are skipped.- Specified by:
skip
in interfacecom.oracle.coherence.common.io.InputStreaming
- Overrides:
skip
in classInputStream
- Parameters:
n
- the number of bytes to be skipped- Returns:
- the actual number of bytes skipped
-
close
public void close()
Close the stream.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfacecom.oracle.coherence.common.io.InputStreaming
- Overrides:
close
in classInputStream
-
mark
public void mark(int readlimit)
Marks the current position in this input stream. A subsequent call to thereset
method repositions this stream at the last marked position so that subsequent reads re-read the same bytes.- Specified by:
mark
in interfacecom.oracle.coherence.common.io.InputStreaming
- Overrides:
mark
in classInputStream
- Parameters:
readlimit
- the maximum limit of bytes that can be read before the mark position becomes invalid
-
reset
public void reset() throws IOException
Repositions this stream to the position at the time themark
method was last called on this input stream.- Specified by:
reset
in interfacecom.oracle.coherence.common.io.InputStreaming
- Overrides:
reset
in classInputStream
- Throws:
IOException
- if the stream has not been marked
-
markSupported
public boolean markSupported()
Tests if this input stream supports themark
andreset
methods. ThemarkSupported
method ofInputStream
returnsfalse
.- Specified by:
markSupported
in interfacecom.oracle.coherence.common.io.InputStreaming
- Overrides:
markSupported
in classInputStream
- Returns:
true
if this true type supports the mark and reset method;false
otherwise
-
-