Class UnsynchronizedFilterInputStream

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable
    Direct Known Subclasses:
    UnsynchronizedBufferedInputStream

    public class UnsynchronizedFilterInputStream
    extends java.io.InputStream
    An unsynchronized version of FilterInputStream, not thread-safe.

    Wraps an existing InputStream and performs some transformation on the input data while it is being read. Transformations can be anything from a simple byte-wise filtering input data to an on-the-fly compression or decompression of the underlying stream. Input streams that wrap another input stream and provide some additional functionality on top of it usually inherit from this class.

    To build an instance, see UnsynchronizedFilterInputStream.Builder.

    Provenance: Apache Harmony and modified.

    Since:
    2.12.0
    See Also:
    FilterInputStream
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int available()
      Returns the number of bytes that are available before this stream will block.
      static UnsynchronizedFilterInputStream.Builder builder()
      void close()
      Closes this stream.
      void mark​(int readlimit)
      Sets a mark position in this stream.
      boolean markSupported()
      Indicates whether this stream supports mark() and reset().
      int read()
      Reads a single byte from the filtered stream and returns it as an integer in the range from 0 to 255.
      int read​(byte[] buffer)
      Reads bytes from this stream and stores them in the byte array buffer.
      int read​(byte[] buffer, int offset, int count)
      Reads at most count bytes from this stream and stores them in the byte array buffer starting at offset.
      void reset()
      Resets this stream to the last marked location.
      long skip​(long count)
      Skips count number of bytes in this stream.
      • Methods inherited from class java.io.InputStream

        nullInputStream, readAllBytes, readNBytes, readNBytes, transferTo
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • available

        public int available()
                      throws java.io.IOException
        Returns the number of bytes that are available before this stream will block.
        Overrides:
        available in class java.io.InputStream
        Returns:
        the number of bytes available before blocking.
        Throws:
        java.io.IOException - if an error occurs in this stream.
      • close

        public void close()
                   throws java.io.IOException
        Closes this stream. This implementation closes the filtered stream.
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Overrides:
        close in class java.io.InputStream
        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 parameter readlimit indicates how many bytes can be read before the mark is invalidated. Sending reset() will reposition this stream back to the marked position, provided that readlimit has not been surpassed.

        This implementation sets a mark in the filtered stream.

        Overrides:
        mark in class java.io.InputStream
        Parameters:
        readlimit - the number of bytes that can be read from this stream before the mark is invalidated.
        See Also:
        markSupported(), reset()
      • markSupported

        public boolean markSupported()
        Indicates whether this stream supports mark() and reset(). This implementation returns whether or not the filtered stream supports marking.
        Overrides:
        markSupported in class java.io.InputStream
        Returns:
        true if mark() and reset() are supported, false otherwise.
        See Also:
        mark(int), reset(), skip(long)
      • read

        public int read()
                 throws java.io.IOException
        Reads a single byte from the filtered 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.
        Specified by:
        read in class java.io.InputStream
        Returns:
        the byte read or -1 if the end of the filtered stream has been reached.
        Throws:
        java.io.IOException - if the stream is closed or another IOException occurs.
      • read

        public int read​(byte[] buffer)
                 throws java.io.IOException
        Reads bytes from this stream and stores them in the byte array buffer. Returns the number of bytes actually read or -1 if no bytes were read and the end of this stream was encountered. This implementation reads bytes from the filtered stream.
        Overrides:
        read in class java.io.InputStream
        Parameters:
        buffer - the byte array in which to store the read bytes.
        Returns:
        the number of bytes actually read or -1 if the end of the filtered stream has been reached while reading.
        Throws:
        java.io.IOException - if this stream is closed or another IOException occurs.
      • read

        public int read​(byte[] buffer,
                        int offset,
                        int count)
                 throws java.io.IOException
        Reads at most count bytes from this stream and stores them in the byte array buffer starting at offset. Returns the number of bytes actually read or -1 if no bytes have been read and the end of this stream has been reached. This implementation reads bytes from the filtered stream.
        Overrides:
        read in class java.io.InputStream
        Parameters:
        buffer - the byte array in which to store the bytes read.
        offset - the initial position in buffer to store the bytes read from this stream.
        count - the maximum number of bytes to store in buffer.
        Returns:
        the number of bytes actually read or -1 if the end of the filtered stream has been reached while reading.
        Throws:
        java.io.IOException - if this stream is closed or another I/O error occurs.
      • reset

        public void reset()
                   throws java.io.IOException
        Resets this stream to the last marked location. This implementation resets the target stream.
        Overrides:
        reset in class java.io.InputStream
        Throws:
        java.io.IOException - if this stream is already closed, no mark has been set or the mark is no longer valid because more than readlimit bytes have been read since setting the mark.
        See Also:
        mark(int), markSupported()
      • skip

        public long skip​(long count)
                  throws java.io.IOException
        Skips count number of bytes in this stream. Subsequent read()'s will not return these bytes unless reset() is used. This implementation skips count number of bytes in the filtered stream.
        Overrides:
        skip in class java.io.InputStream
        Parameters:
        count - the number of bytes to skip.
        Returns:
        the number of bytes actually skipped.
        Throws:
        java.io.IOException - if this stream is closed or another IOException occurs.
        See Also:
        mark(int), reset()