Package org.apache.commons.io.input
Class UnsynchronizedBufferedInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.commons.io.input.UnsynchronizedFilterInputStream
-
- org.apache.commons.io.input.UnsynchronizedBufferedInputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public final class UnsynchronizedBufferedInputStream extends UnsynchronizedFilterInputStream
An unsynchronized version ofBufferedInputStream, not thread-safe.Wraps an existing
InputStreamand buffers the input. Expensive interaction with the underlying input stream is minimized, since most (smaller) requests can be satisfied by accessing the buffer alone. The drawback is that some extra space is required to hold the buffer and that copying takes place when filling that buffer, but this is usually outweighed by the performance benefits.To build an instance, use
UnsynchronizedBufferedInputStream.Builder.A typical application pattern for the class looks like this:
UnsynchronizedBufferedInputStream s = new UnsynchronizedBufferedInputStream.Builder(). .setInputStream(new FileInputStream("file.java")) .setBufferSize(8192) .get();Provenance: Apache Harmony and modified.
- Since:
- 2.12.0
- See Also:
UnsynchronizedBufferedInputStream.Builder,BufferedInputStream
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUnsynchronizedBufferedInputStream.BuilderBuilds a newUnsynchronizedBufferedInputStream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()Returns the number of bytes that are available before this stream will block.voidclose()Closes this stream.voidmark(int readLimit)Sets a mark position in this stream.booleanmarkSupported()Indicates whetherBufferedInputStreamsupports themark()andreset()methods.intread()Reads a single byte from this stream and returns it as an integer in the range from 0 to 255.intread(byte[] dest, int offset, int length)Reads at mostlengthbytes from this stream and stores them in byte arraybufferstarting at offsetoffset.voidreset()Resets this stream to the last marked location.longskip(long amount)Skipsamountnumber of bytes in this stream.-
Methods inherited from class org.apache.commons.io.input.UnsynchronizedFilterInputStream
builder, read
-
-
-
-
Method Detail
-
available
public int available() throws java.io.IOExceptionReturns the number of bytes that are available before this stream will block. This method returns the number of bytes available in the buffer plus those available in the source stream.- Overrides:
availablein classUnsynchronizedFilterInputStream- Returns:
- the number of bytes available before blocking.
- Throws:
java.io.IOException- if this stream is closed.
-
close
public void close() throws java.io.IOExceptionCloses this stream. The source stream is closed and any resources associated with it are released.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classUnsynchronizedFilterInputStream- Throws:
java.io.IOException- if an error occurs while closing this stream.
-
mark
public void mark(int readLimit)
Sets a mark position in this stream. The parameterreadLimitindicates how many bytes can be read before a mark is invalidated. Callingreset()will reposition the stream back to the marked position ifreadLimithas not been surpassed. The underlying buffer may be increased in size to allowreadLimitnumber of bytes to be supported.- Overrides:
markin classUnsynchronizedFilterInputStream- Parameters:
readLimit- the number of bytes that can be read before the mark is invalidated.- See Also:
reset()
-
markSupported
public boolean markSupported()
Indicates whetherBufferedInputStreamsupports themark()andreset()methods.- Overrides:
markSupportedin classUnsynchronizedFilterInputStream- Returns:
truefor BufferedInputStreams.- See Also:
mark(int),reset()
-
read
public int read() throws java.io.IOExceptionReads a single byte from this stream and returns it as an integer in the range from 0 to 255. Returns -1 if the end of the source string has been reached. If the internal buffer does not contain any available bytes then it is filled from the source stream and the first byte is returned.- Overrides:
readin classUnsynchronizedFilterInputStream- Returns:
- the byte read or -1 if the end of the source stream has been reached.
- Throws:
java.io.IOException- if this stream is closed or another IOException occurs.
-
read
public int read(byte[] dest, int offset, int length) throws java.io.IOExceptionReads at mostlengthbytes from this stream and stores them in byte arraybufferstarting at offsetoffset. Returns the number of bytes actually read or -1 if no bytes were read and the end of the stream was encountered. If all the buffered bytes have been used, a mark has not been set and the requested number of bytes is larger than the receiver's buffer size, this implementation bypasses the buffer and simply places the results directly intobuffer.- Overrides:
readin classUnsynchronizedFilterInputStream- Parameters:
dest- the byte array in which to store the bytes read.offset- the initial position inbufferto store the bytes read from this stream.length- the maximum number of bytes to store inbuffer.- Returns:
- the number of bytes actually read or -1 if end of stream.
- Throws:
java.lang.IndexOutOfBoundsException- ifoffset < 0orlength < 0, or ifoffset + lengthis greater than the size ofbuffer.java.io.IOException- if the stream is already closed or another IOException occurs.
-
reset
public void reset() throws java.io.IOExceptionResets this stream to the last marked location.- Overrides:
resetin classUnsynchronizedFilterInputStream- Throws:
java.io.IOException- if this stream is closed, no mark has been set or the mark is no longer valid because more thanreadLimitbytes have been read since setting the mark.- See Also:
mark(int)
-
skip
public long skip(long amount) throws java.io.IOExceptionSkipsamountnumber of bytes in this stream. Subsequentread()'s will not return these bytes unlessreset()is used.- Overrides:
skipin classUnsynchronizedFilterInputStream- Parameters:
amount- the number of bytes to skip.skipdoes nothing and returns 0 ifamountis less than zero.- Returns:
- the number of bytes actually skipped.
- Throws:
java.io.IOException- if this stream is closed or another IOException occurs.- See Also:
UnsynchronizedFilterInputStream.mark(int),UnsynchronizedFilterInputStream.reset()
-
-