Index (Frames) | Index (No Frames) | Package | Package Tree | Tree
java.io

Class PushbackInputStream

java.lang.Object
|
+--java.io.InputStream
   |
   +--java.io.FilterInputStream
      |
      +--java.io.PushbackInputStream


public class PushbackInputStream

extends FilterInputStream

This subclass of FilterInputStream provides the ability to unread data from a stream. It maintains an internal buffer of unread data that is supplied to the next read operation. This is conceptually similar to mark/reset functionality, except that in this case the position to reset the stream to does not need to be known in advance.

The default pushback buffer size one byte, but this can be overridden by the creator of the stream.

Authors:

Field Summary

byte[]buf

This is the buffer that is used to store the pushed back data
intpos

This is the position in the buffer from which the next byte will be read.

Constructor Summary

PushbackInputStream(java.io.InputStream in)

This method initializes a PushbackInputStream to read from the * specified subordinate InputStream with a default pushback buffer * size of 1.
PushbackInputStream(java.io.InputStream in, int size)

This method initializes a PushbackInputStream to read from the specified subordinate InputStream with the specified buffer size

Method Summary

intavailable()

This method returns the number of bytes that can be read from this stream before a read can block.
synchronized voidclose()

This method closes the stream and releases any associated resources.
booleanmarkSupported()

This method returns false to indicate that it does not support mark/reset functionality.
synchronized intread()

This method reads an unsigned byte from the input stream and returns it as an int in the range of 0-255.
synchronized intread(byte[] b, int off, int len)

This method read bytes from a stream and stores them into a caller supplied buffer.
voidreset()

This method always throws an IOException in this class because mark/reset functionality is not supported.
synchronized longskip(long n)

This method skips the specified number of bytes in the stream.
synchronized voidunread(int b)

This method pushes a single byte of data into the pushback buffer.
synchronized voidunread(byte[] b)

This method pushes all of the bytes in the passed byte array into the pushback bfer.
synchronized voidunread(byte[] b, int off, int len)

This method pushed back bytes from the passed in array into the pushback buffer.

Field Details

buf

protected byte[] buf

This is the buffer that is used to store the pushed back data


pos

protected int pos

This is the position in the buffer from which the next byte will be read. Bytes are stored in reverse order in the buffer, starting from buf[buf.length - 1] to buf[0]. Thus when pos is 0 the buffer is full and buf.length when it is empty


Constructor Details

PushbackInputStream

public PushbackInputStream(java.io.InputStream in)

This method initializes a PushbackInputStream to read from the * specified subordinate InputStream with a default pushback buffer * size of 1.

Parameters:


PushbackInputStream

public PushbackInputStream(java.io.InputStream in, int size)

This method initializes a PushbackInputStream to read from the specified subordinate InputStream with the specified buffer size

Parameters:


Method Details

available

public int available()

This method returns the number of bytes that can be read from this stream before a read can block. A return of 0 indicates that blocking might (or might not) occur on the very next read attempt.

This method will return the number of bytes available from the pushback buffer plus the number of bytes available from the underlying stream.

Returns:

Throws:


close

public synchronized void close()

This method closes the stream and releases any associated resources.

Throws:


markSupported

public boolean markSupported()

This method returns false to indicate that it does not support mark/reset functionality.

Returns:


read

public synchronized int read()

This method reads an unsigned byte from the input stream and returns it as an int in the range of 0-255. This method also will return -1 if the end of the stream has been reached. The byte returned will be read from the pushback buffer, unless the buffer is empty, in which case the byte will be read from the underlying stream.

This method will block until the byte can be read.

Returns:

Throws:


read

public synchronized int read(byte[] b, int off, int len)

This method read bytes from a stream and stores them into a caller supplied buffer. It starts storing the data at index offset into the buffer and attempts to read len bytes. This method can return before reading the number of bytes requested. The actual number of bytes read is returned as an int. A -1 is returned to indicate the end of the stream.

This method will block until some data can be read.

This method first reads bytes from the pushback buffer in order to satisfy the read request. If the pushback buffer cannot provide all of the bytes requested, the remaining bytes are read from the underlying stream.

Parameters:

Returns:

Throws:


reset

public void reset()

This method always throws an IOException in this class because mark/reset functionality is not supported.

Throws:


skip

public synchronized long skip(long n)

This method skips the specified number of bytes in the stream. It returns the actual number of bytes skipped, which may be less than the requested amount.

This method first discards bytes from the buffer, then calls the skip method on the underlying InputStream to skip additional bytes if necessary.

Since:Parameters:

Returns:

Throws:


unread

public synchronized void unread(byte[] b)

This method pushes all of the bytes in the passed byte array into the pushback bfer. These bytes are pushed in reverse order so that the next byte read from the stream after this operation will be b[0] followed by b[1], etc.

If the pushback buffer cannot hold all of the requested bytes, an exception is thrown.

Parameters:

Throws:


unread

public synchronized void unread(byte[] b, int off, int len)

This method pushed back bytes from the passed in array into the pushback buffer. The bytes from b[offset] to b[offset + len] are pushed in reverse order so that the next byte read from the stream after this operation will be b[offset] followed by b[offset + 1], etc.

If the pushback buffer cannot hold all of the requested bytes, an exception is thrown.

Parameters:

Throws:


unread

public synchronized void unread(int b)

This method pushes a single byte of data into the pushback buffer. The byte pushed back is the one that will be returned as the first byte of the next read.

If the pushback buffer is full, this method throws an exception.

The argument to this method is an int. Only the low eight bits of this value are pushed back.

Parameters:

Throws: