Class PipedInputStream
- All Implemented Interfaces:
Closeable,AutoCloseable
public class PipedInputStream extends InputStream
- See Also:
PipedOutputStream
-
Field Summary
Fields Modifier and Type Field Description protected byte[]bufferThe circular buffer through which data is passed.protected intinThe index inbufferwhere the next byte will be written.protected intoutThe index inbufferwhere the next byte will be read.protected static intPIPE_SIZEThe size of the default pipe in bytes. -
Constructor Summary
Constructors Constructor Description PipedInputStream()Constructs a new unconnectedPipedInputStream.PipedInputStream(int pipeSize)Constructs a new unconnectedPipedInputStreamwith the given buffer size.PipedInputStream(PipedOutputStream out)PipedInputStream(PipedOutputStream out, int pipeSize)Constructs a newPipedInputStreamconnected to the givenPipedOutputStream, with the given buffer size. -
Method Summary
Modifier and Type Method Description intavailable()Returns an estimated number of bytes that can be read or skipped without blocking for more input.voidclose()Closes this stream.voidconnect(PipedOutputStream src)Connects thisPipedInputStreamto aPipedOutputStream.intread()Reads a single byte from this stream and returns it as an integer in the range from 0 to 255.intread(byte[] bytes, int byteOffset, int byteCount)Reads up tobyteCountbytes from this stream and stores them in the byte arraybytesstarting atbyteOffset.protected voidreceive(int oneByte)Receives a byte and stores it in this stream'sbuffer.Methods inherited from class java.io.InputStream
mark, markSupported, read, reset, skip
-
Field Details
-
buffer
protected byte[] bufferThe circular buffer through which data is passed. Data is read from the range[out, in)and written to the range[in, out). Data in the buffer is either sequential:{ - - - X X X X X X X - - - - - } ^ ^ | | out in...or wrapped around the buffer's end:{ X X X X - - - - - - - - X X X } ^ ^ | | in outWhen the buffer is empty,in == -1. Reading when the buffer is empty will block until data is available. When the buffer is full,in == out. Writing when the buffer is full will block until free space is available. -
in
protected int inThe index inbufferwhere the next byte will be written. -
out
protected int outThe index inbufferwhere the next byte will be read. -
PIPE_SIZE
protected static final int PIPE_SIZEThe size of the default pipe in bytes.- See Also:
- Constant Field Values
-
-
Constructor Details
-
PipedInputStream
public PipedInputStream()Constructs a new unconnectedPipedInputStream. The resulting stream must be connected to aPipedOutputStreambefore data may be read from it. -
PipedInputStream
Constructs a newPipedInputStreamconnected to thePipedOutputStreamout. Any data written to the output stream can be read from the this input stream.- Parameters:
out- the piped output stream to connect to.- Throws:
IOException- if this stream oroutare already connected.
-
PipedInputStream
public PipedInputStream(int pipeSize)Constructs a new unconnectedPipedInputStreamwith the given buffer size. The resulting stream must be connected to aPipedOutputStreambefore data may be read from it.- Parameters:
pipeSize- the size of the buffer in bytes.- Throws:
IllegalArgumentException- if pipeSize is less than or equal to zero.- Since:
- 1.6
-
PipedInputStream
Constructs a newPipedInputStreamconnected to the givenPipedOutputStream, with the given buffer size. Any data written to the output stream can be read from this input stream.- Parameters:
out- thePipedOutputStreamto connect to.pipeSize- the size of the buffer in bytes.- Throws:
IOException- if an I/O error occurs.IllegalArgumentException- if pipeSize is less than or equal to zero.- Since:
- 1.6
-
-
Method Details
-
available
Returns an estimated number of bytes that can be read or skipped without blocking for more input.Note that this method provides such a weak guarantee that it is not very useful in practice.
Firstly, the guarantee is "without blocking for more input" rather than "without blocking": a read may still block waiting for I/O to complete — the guarantee is merely that it won't have to wait indefinitely for data to be written. The result of this method should not be used as a license to do I/O on a thread that shouldn't be blocked.
Secondly, the result is a conservative estimate and may be significantly smaller than the actual number of bytes available. In particular, an implementation that always returns 0 would be correct. In general, callers should only use this method if they'd be satisfied with treating the result as a boolean yes or no answer to the question "is there definitely data ready?".
Thirdly, the fact that a given number of bytes is "available" does not guarantee that a read or skip will actually read or skip that many bytes: they may read or skip fewer.
It is particularly important to realize that you must not use this method to size a container and assume that you can read the entirety of the stream without needing to resize the container. Such callers should probably write everything they read to a
ByteArrayOutputStreamand convert that to a byte array. Alternatively, if you're reading from a file,File.length()returns the current length of the file (though assuming the file's length can't change may be incorrect, reading a file is inherently racy).The default implementation of this method in
InputStreamalways returns 0. Subclasses should override this method if they are able to indicate the number of bytes available.Unlike most streams,
PipedInputStreamreturns 0 rather than throwingIOExceptionif the stream has been closed. Unconnected and broken pipes also return 0.- Overrides:
availablein classInputStream- Returns:
- the estimated number of bytes available
- Throws:
IOException- if an I/O error occurs
-
close
Closes this stream. This implementation releases the buffer used for the pipe and notifies all threads waiting to read or write.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classInputStream- Throws:
IOException- if an error occurs while closing this stream.
-
connect
Connects thisPipedInputStreamto aPipedOutputStream. Any data written to the output stream becomes readable in this input stream.- Parameters:
src- the source output stream.- Throws:
IOException- if either stream is already connected.
-
read
Reads 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 this stream has been reached. If there is no data in the pipe, this method blocks until data is available, the end of the stream is detected or an exception is thrown.Separate threads should be used to read from a
PipedInputStreamand to write to the connectedPipedOutputStream. If the same thread is used, a deadlock may occur.- Specified by:
readin classInputStream- Returns:
- the byte read or -1 if the end of the source stream has been reached.
- Throws:
IOException- if this stream is closed or not connected to an output stream, or if the thread writing to the connected output stream is no longer alive.
-
read
Reads up tobyteCountbytes from this stream and stores them in the byte arraybytesstarting atbyteOffset. Blocks until at least one byte has been read, the end of the stream is detected or an exception is thrown.Separate threads should be used to read from a
PipedInputStreamand to write to the connectedPipedOutputStream. If the same thread is used, a deadlock may occur.Returns the number of bytes actually read or -1 if the end of the stream has been reached.
- Overrides:
readin classInputStream- Throws:
IndexOutOfBoundsException- ifbyteOffset < 0 || byteCount < 0 || byteOffset + byteCount > bytes.length.InterruptedIOException- if the thread reading from this stream is interrupted.IOException- if this stream is closed or not connected to an output stream, or if the thread writing to the connected output stream is no longer alive.NullPointerException- ifbytesisnull.
-
receive
Receives a byte and stores it in this stream'sbuffer. This method is called byPipedOutputStream.write(int). The least significant byte of the integeroneByteis stored at indexinin thebuffer.This method blocks as long as
bufferis full.- Parameters:
oneByte- the byte to store in this pipe.- Throws:
InterruptedIOException- if thebufferis full and the thread that has called this method is interrupted.IOException- if this stream is closed or the thread that has last read from this stream is no longer alive.
-