AutoCloseInputStream
open class AutoCloseInputStream : ParcelFileDescriptor.AutoCloseInputStream
| kotlin.Any | ||||
| ↳ | java.io.InputStream | |||
| ↳ | java.io.FileInputStream | |||
| ↳ | android.os.ParcelFileDescriptor.AutoCloseInputStream | |||
| ↳ | android.content.res.AssetFileDescriptor.AutoCloseInputStream | |||
An InputStream you can create on a ParcelFileDescriptor, which will take care of calling android.os.ParcelFileDescriptor#close for you when the stream is closed. It has a ParcelFileDescriptor.AutoCloseInputStream member to make delegate calls and during definition it will create seekable or non seekable child object AssetFileDescriptor.AutoCloseInputStream depends on the type of file descriptor to provide different solution.
Summary
| Public constructors | |
|---|---|
| Public methods | |
|---|---|
| open 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. |
| open Unit |
close()Closes this file input stream and releases any system resources associated with the stream. |
| open FileChannel! |
Returns the unique |
| open Unit |
Marks the current position in this input stream. |
| open Boolean |
Tests if this input stream supports the |
| open Int |
read()Reads a byte of data from this input stream. |
| open Int |
Reads up to |
| open Int |
Reads up to |
| open Unit |
reset()Repositions this stream to the position at the time the |
| open Long |
Skips over and discards |
Public constructors
Public methods
available
open fun available(): 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. 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.
| Return | |
|---|---|
Int |
an estimate of the number of remaining bytes that can be read (or skipped over) from this input stream without blocking. |
| Exceptions | |
|---|---|
java.io.IOException |
if this file input stream has been closed by calling close or an I/O error occurs. |
close
open fun close(): Unit
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.
| Exceptions | |
|---|---|
java.lang.Exception |
if this resource cannot be closed |
java.io.IOException |
if an I/O error occurs. |
getChannel
open fun getChannel(): FileChannel!
Returns the unique FileChannel object associated with this 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.
| Return | |
|---|---|
FileChannel! |
the file channel associated with this file input stream |
mark
open fun mark(readlimit: Int): Unit
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.
| Parameters | |
|---|---|
readlimit |
Int: the maximum limit of bytes that can be read before the mark position becomes invalid. |
markSupported
open fun markSupported(): Boolean
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.
| Return | |
|---|---|
Boolean |
true if this stream instance supports the mark and reset methods; false otherwise. |
read
open fun read(): Int
Reads a byte of data from this input stream. This method blocks if no input is yet available.
| Return | |
|---|---|
Int |
the next byte of data, or -1 if the end of the file is reached. |
| Exceptions | |
|---|---|
java.io.IOException |
if an I/O error occurs. |
read
open fun read(buffer: ByteArray!): Int
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.
| Parameters | |
|---|---|
b |
the buffer into which the data is read. |
| Return | |
|---|---|
Int |
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. |
| Exceptions | |
|---|---|
java.io.IOException |
if an I/O error occurs. |
java.lang.NullPointerException |
if b is null. |
read
open fun read(
buffer: ByteArray!,
offset: Int,
count: Int
): Int
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.
| 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. |
| Return | |
|---|---|
Int |
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. |
| Exceptions | |
|---|---|
java.io.IOException |
if an I/O error occurs. |
java.lang.IndexOutOfBoundsException |
If off is negative, len is negative, or len is greater than b.length - off |
java.lang.NullPointerException |
If b is null. |
reset
open fun reset(): Unit
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
markSupportedreturnstrue, then:- If the method
markhas not been called since the stream was created, or the number of bytes read from the stream sincemarkwas last called is larger than the argument tomarkat that last call, then anIOExceptionmight be thrown. - If such an
IOExceptionis not thrown, then the stream is reset to a state such that all the bytes read since the most recent call tomark(or since the start of the file, ifmarkhas not been called) will be resupplied to subsequent callers of thereadmethod, followed by any bytes that otherwise would have been the next input data as of the time of the call toreset.
- If the method
- If the method
markSupportedreturnsfalse, then:- The call to
resetmay throw anIOException. - If an
IOExceptionis 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 thereadmethod depend on the particular type of the input stream.
- The call to
The method reset for class InputStream does nothing except throw an IOException.
| Exceptions | |
|---|---|
java.io.IOException |
if this stream has not been marked or if the mark has been invalidated. |
skip
open fun skip(count: Long): Long
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.
| Parameters | |
|---|---|
n |
the number of bytes to be skipped. |
| Return | |
|---|---|
Long |
the actual number of bytes skipped. |
| Exceptions | |
|---|---|
java.io.IOException |
if n is negative, if the stream does not support seek, or if an I/O error occurs. |