Class NonBlockingBufferedInputStream
- All Implemented Interfaces:
Closeable,AutoCloseable
BufferedInputStream.- Author:
- Philip Helger
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected byte[]The internal buffer array where the data is stored.protected intThe index one greater than the index of the last valid byte in the buffer.protected intThe maximum read ahead allowed after a call to themarkmethod before subsequent calls to theresetmethod fail.protected intThe value of theposfield at the time the lastmarkmethod was called.protected intThe current position in the buffer.Fields inherited from class java.io.FilterInputStream
in -
Constructor Summary
ConstructorsConstructorDescriptionCreates aBufferedInputStreamand saves its argument, the input streamin, for later use.NonBlockingBufferedInputStream(InputStream aIS, int nSize) Creates aBufferedInputStreamwith the specified buffer size, and saves its argument, the input streamin, for later use. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking by the next invocation of a method for this input stream.voidclose()Closes this input stream and releases any system resources associated with the stream.voidmark(int nReadlimit) See the general contract of themarkmethod ofInputStream.booleanTests if this input stream supports themarkandresetmethods.intread()See the general contract of thereadmethod ofInputStream.intread(byte[] aBuf, int nOfs, int nLen) Reads bytes from this byte-input stream into the specified byte array, starting at the given offset.voidreset()See the general contract of theresetmethod ofInputStream.longskip(long nBytesToSkip) See the general contract of theskipmethod ofInputStream.Methods inherited from class com.helger.commons.io.stream.WrappedInputStream
getWrappedInputStream, toStringMethods inherited from class java.io.FilterInputStream
readMethods inherited from class java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, skipNBytes, transferTo
-
Field Details
-
m_aBuf
protected volatile byte[] m_aBufThe internal buffer array where the data is stored. When necessary, it may be replaced by another array of a different size. -
m_nCount
protected int m_nCountThe index one greater than the index of the last valid byte in the buffer. This value is always in the range0throughbuf.length; elementsbuf[0]throughbuf[count-1]contain buffered input data obtained from the underlying input stream. -
m_nPos
protected int m_nPosThe current position in the buffer. This is the index of the next character to be read from thebufarray.This value is always in the range
0throughcount. If it is less thancount, thenbuf[pos]is the next byte to be supplied as input; if it is equal tocount, then the nextreadorskipoperation will require more bytes to be read from the contained input stream.- See Also:
-
m_nMarkPos
protected int m_nMarkPosThe value of theposfield at the time the lastmarkmethod was called.This value is always in the range
-1throughpos. If there is no marked position in the input stream, this field is-1. If there is a marked position in the input stream, thenbuf[markpos]is the first byte to be supplied as input after aresetoperation. Ifmarkposis not-1, then all bytes from positionsbuf[markpos]throughbuf[pos-1]must remain in the buffer array (though they may be moved to another place in the buffer array, with suitable adjustments to the values ofcount,pos, andmarkpos); they may not be discarded unless and until the difference betweenposandmarkposexceedsmarklimit.- See Also:
-
m_nMarkLimit
protected int m_nMarkLimitThe maximum read ahead allowed after a call to themarkmethod before subsequent calls to theresetmethod fail. Whenever the difference betweenposandmarkposexceedsmarklimit, then the mark may be dropped by settingmarkposto-1.- See Also:
-
-
Constructor Details
-
NonBlockingBufferedInputStream
Creates aBufferedInputStreamand saves its argument, the input streamin, for later use. An internal buffer array is created and stored inbuf.- Parameters:
aIS- the underlying input stream.
-
NonBlockingBufferedInputStream
Creates aBufferedInputStreamwith the specified buffer size, and saves its argument, the input streamin, for later use. An internal buffer array of lengthsizeis created and stored inbuf.- Parameters:
aIS- the underlying input stream.nSize- the buffer size.- Throws:
IllegalArgumentException- if size ≤ 0.
-
-
Method Details
-
read
See the general contract of thereadmethod ofInputStream.- Overrides:
readin classFilterInputStream- Returns:
- the next byte of data, or
-1if the end of the stream is reached. - Throws:
IOException- if this input stream has been closed by invoking itsclose()method, or an I/O error occurs.
-
read
Reads bytes from this byte-input stream into the specified byte array, starting at the given offset.This method implements the general contract of the corresponding
method of thereadclass. As an additional convenience, it attempts to read as many bytes as possible by repeatedly invoking theInputStreamreadmethod of the underlying stream. This iteratedreadcontinues until one of the following conditions becomes true:- The specified number of bytes have been read,
- The
readmethod of the underlying stream returns-1, indicating end-of-file, or - The
availablemethod of the underlying stream returns zero, indicating that further input requests would block.
readon the underlying stream returns-1to indicate end-of-file then this method returns-1. Otherwise this method returns the number of bytes actually read.Subclasses of this class are encouraged, but not required, to attempt to read as many bytes as possible in the same fashion.
- Overrides:
readin classFilterInputStream- Parameters:
aBuf- destination buffer.nOfs- offset at which to start storing bytes.nLen- maximum number of bytes to read.- Returns:
- the number of bytes read, or
-1if the end of the stream has been reached. - Throws:
IOException- if this input stream has been closed by invoking itsclose()method, or an I/O error occurs.
-
skip
See the general contract of theskipmethod ofInputStream.- Overrides:
skipin classFilterInputStream- Throws:
IOException- if the stream does not support seek, or if this input stream has been closed by invoking itsclose()method, or an I/O error occurs.
-
available
Returns an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking by the next invocation of a method for this input stream. The next invocation might be the same thread or another thread. A single read or skip of this many bytes will not block, but may read or skip fewer bytes.This method returns the sum of the number of bytes remaining to be read in the buffer (
count - pos) and the result of calling the in.available().- Overrides:
availablein classFilterInputStream- Returns:
- an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking.
- Throws:
IOException- if this input stream has been closed by invoking itsclose()method, or an I/O error occurs.
-
mark
public void mark(int nReadlimit) See the general contract of themarkmethod ofInputStream.- Overrides:
markin classFilterInputStream- Parameters:
nReadlimit- the maximum limit of bytes that can be read before the mark position becomes invalid.- See Also:
-
reset
See the general contract of theresetmethod ofInputStream.If
markposis-1(no mark has been set or the mark has been invalidated), anIOExceptionis thrown. Otherwise,posis set equal tomarkpos.- Overrides:
resetin classFilterInputStream- Throws:
IOException- if this stream has not been marked or, if the mark has been invalidated, or the stream has been closed by invoking itsclose()method, or an I/O error occurs.- See Also:
-
markSupported
public boolean markSupported()Tests if this input stream supports themarkandresetmethods. ThemarkSupportedmethod ofBufferedInputStreamreturnstrue.- Overrides:
markSupportedin classFilterInputStream- Returns:
- a
booleanindicating if this stream type supports themarkandresetmethods. - See Also:
-
close
Closes this input stream and releases any system resources associated with the stream. Once the stream has been closed, further read(), available(), reset(), or skip() invocations will throw an IOException. Closing a previously closed stream has no effect.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classFilterInputStream- Throws:
IOException- if an I/O error occurs.
-