Class NonBlockingBufferedInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- com.helger.commons.io.stream.WrappedInputStream
-
- com.helger.commons.io.stream.NonBlockingBufferedInputStream
-
- All Implemented Interfaces:
Closeable,AutoCloseable
public class NonBlockingBufferedInputStream extends WrappedInputStream
Non-synchronized version ofBufferedInputStream.- Author:
- Philip Helger
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]m_aBufThe internal buffer array where the data is stored.protected intm_nCountThe index one greater than the index of the last valid byte in the buffer.protected intm_nMarkLimitThe maximum read ahead allowed after a call to themarkmethod before subsequent calls to theresetmethod fail.protected intm_nMarkPosThe value of theposfield at the time the lastmarkmethod was called.protected intm_nPosThe current position in the buffer.-
Fields inherited from class java.io.FilterInputStream
in
-
-
Constructor Summary
Constructors Constructor Description NonBlockingBufferedInputStream(InputStream aIS)Creates 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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()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.voidclose()Closes this input stream and releases any system resources associated with the stream.voidmark(int nReadlimit)See the general contract of themarkmethod ofInputStream.booleanmarkSupported()Tests 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, toString
-
Methods inherited from class java.io.FilterInputStream
read
-
Methods inherited from class java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, transferTo
-
-
-
-
Field Detail
-
m_aBuf
protected volatile byte[] m_aBuf
The 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_nCount
The 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_nPos
The 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_aBuf
-
m_nMarkPos
protected int m_nMarkPos
The 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.
-
m_nMarkLimit
protected int m_nMarkLimit
The 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.
-
-
Constructor Detail
-
NonBlockingBufferedInputStream
public NonBlockingBufferedInputStream(@Nonnull InputStream aIS)
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
public NonBlockingBufferedInputStream(@Nonnull InputStream aIS, @Nonnegative int nSize)
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 Detail
-
read
public int read() throws IOExceptionSee 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
public int read(byte[] aBuf, int nOfs, int nLen) throws IOExceptionReads 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
public long skip(long nBytesToSkip) throws IOExceptionSee 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
public int available() throws IOExceptionReturns 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()
-
reset
public void reset() throws IOExceptionSee 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:
mark(int)
-
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:
InputStream.mark(int),InputStream.reset()
-
close
public void close() throws IOExceptionCloses 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.
-
-