Class AssetFileInputStream

java.lang.Object
java.io.InputStream
com.tianscar.assetfile.AssetFileInputStream
All Implemented Interfaces:
Closeable, AutoCloseable

public class AssetFileInputStream extends InputStream
An InputStream that packaging an AssetFileDescriptor#AutoCloseInputStream for use.
  • Constructor Summary

    Constructors
    Constructor
    Description
    AssetFileInputStream​(android.content.res.AssetFileDescriptor fdObj)
    Creates a FileInputStream by using the asset file descriptor fdObj, which represents an existing connection to an actual file in assets.
    Creates a AssetFileInputStream by opening a connection to an actual file in assets, the file named by the AssetFile file.
    Creates a AssetFileInputStream by opening a connection to an actual file in assets, the file named by the name string.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns an estimate of the number of remaining 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.
    void
    Closes this file input stream and releases any system resources associated with the stream.
    boolean
    equals​(Object o)
     
    android.content.res.AssetFileDescriptor
    Returns the AssetFileDescriptor object that represents the connection to the actual file in assets being used by this AssetFileInputStream.
    Returns the unique FileChannel object associated with this asset file input stream.
    Returns the FileDescriptor object that represents the connection to the actual file in assets being used by this AssetFileInputStream.
    int
     
    void
    mark​(int readlimit)
    Marks the current position in this input stream.
    boolean
    Tests if this input stream supports the mark and reset methods.
    int
    Reads a byte of data from this input stream.
    int
    read​(byte[] b)
    Reads up to b.length bytes of data from this input stream into an array of bytes.
    int
    read​(byte[] b, int off, int len)
    Reads up to len bytes of data from this input stream into an array of bytes.
    void
    Repositions this stream to the position at the time the mark method was last called on this input stream.
    long
    skip​(long n)
    Skips over and discards n bytes of data from the input stream.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • AssetFileInputStream

      public AssetFileInputStream(@NonNull String name) throws IOException
      Creates a AssetFileInputStream by opening a connection to an actual file in assets, the file named by the name string. A new AssetFileDescriptor object is created to represent this file connection.
      Parameters:
      name - the assetFile name.
      Throws:
      IOException - If an I/O error occurred
    • AssetFileInputStream

      public AssetFileInputStream(@NonNull AssetFile file) throws IOException
      Creates a AssetFileInputStream by opening a connection to an actual file in assets, the file named by the AssetFile file. A new AssetFileDescriptor object is created to represent this file connection.
      Parameters:
      file - the assetFile to be opened for reading.
      Throws:
      IOException - If an I/O error occurred
    • AssetFileInputStream

      public AssetFileInputStream(@NonNull android.content.res.AssetFileDescriptor fdObj) throws IOException
      Creates a FileInputStream by using the asset file descriptor fdObj, which represents an existing connection to an actual file in assets.
      Parameters:
      fdObj - the asset file descriptor to be opened for reading.
      Throws:
      IOException - If an I/O error occurred
  • Method Details

    • reset

      public void reset() throws IOException
      Repositions this stream to the position at the time the mark method was last called on this input stream. The general contract of reset is: If the method markSupported returns true, then: If the method mark has not been called since the stream was created, or the number of bytes read from the stream since mark was last called is larger than the argument to mark at that last call, then an IOException might be thrown. If such an IOException is not thrown, then the stream is reset to a state such that all the bytes read since the most recent call to mark (or since the start of the file, if mark has not been called) will be resupplied to subsequent callers of the read method, followed by any bytes that otherwise would have been the next input data as of the time of the call to reset. If the method markSupported returns false, then: The call to reset may throw an IOException. If an IOException is not thrown, then the stream is reset to a fixed state that depends on the particular type of the input stream and how it was created. The bytes that will be supplied to subsequent callers of the read method depend on the particular type of the input stream. The method reset for class InputStream does nothing except throw an IOException.
      Overrides:
      reset in class InputStream
      Throws:
      IOException - If an I/O error occurred
    • markSupported

      public boolean markSupported()
      Tests if this input stream supports the mark and reset methods. Whether or not mark and reset are supported is an invariant property of a particular input stream instance. The markSupported method of InputStream returns false.
      Overrides:
      markSupported in class InputStream
      Returns:
      true if this stream instance supports the mark and reset methods; false otherwise.
    • mark

      public void mark(int readlimit)
      Marks the current position in this input stream. A subsequent call to the reset method repositions this stream at the last marked position so that subsequent reads re-read the same bytes. The readlimit arguments tells this input stream to allow that many bytes to be read before the mark position gets invalidated. The general contract of mark is that, if the method markSupported returns true, the stream somehow remembers all the bytes read after the call to mark and stands ready to supply those same bytes again if and whenever the method reset is called. However, the stream is not required to remember any data at all if more than readlimit bytes are read from the stream before reset is called. Marking a closed stream should not have any effect on the stream. The mark method of InputStream does nothing.
      Overrides:
      mark in class InputStream
      Parameters:
      readlimit - the maximum limit of bytes that can be read before the mark position becomes invalid.
    • available

      public int available() throws IOException
      Returns an estimate of the number of remaining 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. Returns 0 when the file position is beyond EOF. 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. In some cases, a non-blocking read (or skip) may appear to be blocked when it is merely slow, for example when reading large files over slow networks.
      Overrides:
      available in class InputStream
      Returns:
      an estimate of the number of remaining bytes that can be read (or skipped over) from this input stream without blocking.
      Throws:
      IOException - If an I/O error occurred
    • close

      public void close() throws IOException
      Closes this file input stream and releases any system resources associated with the stream. If this stream has an associated channel then the channel is closed as well.
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface Closeable
      Overrides:
      close in class InputStream
      Throws:
      IOException - if an I/O error occurs.
    • read

      public int read(byte[] b) throws IOException
      Reads up to b.length bytes of data from this input stream into an array of bytes. This method blocks until some input is available.
      Overrides:
      read in class InputStream
      Parameters:
      b - the buffer into which the data is read.
      Returns:
      the total number of bytes read into the buffer, or -1 if there is no more data because the end of the file has been reached.
      Throws:
      IOException - If an I/O error occurred
    • read

      public int read(byte[] b, int off, int len) throws IOException
      Reads up to len bytes of data from this input stream into an array of bytes. If len is not zero, the method blocks until some input is available; otherwise, no bytes are read and 0 is returned.
      Overrides:
      read in class InputStream
      Parameters:
      b - the buffer into which the data is read.
      off - the start offset in the destination array b
      len - the maximum number of bytes read.
      Returns:
      the total number of bytes read into the buffer, or -1 if there is no more data because the end of the file has been reached.
      Throws:
      IOException - If an I/O error occurred
    • read

      public int read() throws IOException
      Reads a byte of data from this input stream. This method blocks if no input is yet available.
      Specified by:
      read in class InputStream
      Returns:
      the next byte of data, or -1 if the end of the file is reached.
      Throws:
      IOException - If an I/O error occurred
    • skip

      public long skip(long n) throws IOException
      Skips over and discards n bytes of data from the input stream. The skip method may, for a variety of reasons, end up skipping over some smaller number of bytes, possibly 0. If n is negative, the method will try to skip backwards. In case the backing file does not support backward skip at its current position, an IOException is thrown. The actual number of bytes skipped is returned. If it skips forwards, it returns a positive value. If it skips backwards, it returns a negative value. This method may skip more bytes than what are remaining in the backing file. This produces no exception and the number of bytes skipped may include some number of bytes that were beyond the EOF of the backing file. Attempting to read from the stream after skipping past the end will result in -1 indicating the end of the file.
      Overrides:
      skip in class InputStream
      Parameters:
      n - the number of bytes to be skipped.
      Returns:
      the actual number of bytes skipped.
      Throws:
      IOException - If an I/O error occurred
    • getChannel

      public FileChannel getChannel()
      Returns the unique FileChannel object associated with this asset file input stream. The initial position of the returned channel will be equal to the number of bytes read from the file so far. Reading bytes from this stream will increment the channel's position. Changing the channel's position, either explicitly or by reading, will change this stream's file position.
      Returns:
      the file channel associated with this asset file input stream
    • getFD

      public final FileDescriptor getFD() throws IOException
      Returns the FileDescriptor object that represents the connection to the actual file in assets being used by this AssetFileInputStream.
      Returns:
      the file descriptor object associated with this stream.
      Throws:
      IOException - if an I/O error occurs.
    • getAFD

      public final android.content.res.AssetFileDescriptor getAFD()
      Returns the AssetFileDescriptor object that represents the connection to the actual file in assets being used by this AssetFileInputStream.
      Returns:
      the asset file descriptor object associated with this stream.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object