public class NonSeekableRandomAccessReadInputStream extends Object implements RandomAccessRead
| Modifier and Type | Field and Description |
|---|---|
protected int |
currentBufferPointer |
protected long |
position |
protected long |
size |
| Constructor and Description |
|---|
NonSeekableRandomAccessReadInputStream(InputStream inputStream)
Default constructor.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
checkClosed()
Ensure that the RandomAccessBuffer is not closed
|
void |
close() |
RandomAccessReadView |
createView(long startPosition,
long streamLength)
Creates a random access read view starting at the given position with the given length.
|
long |
getPosition()
Returns offset of next byte to be returned by a read method.
|
boolean |
isClosed()
Returns true if this source has been closed.
|
boolean |
isEOF()
A simple test to see if we are at the end of the data.
|
long |
length()
The total number of bytes that are available.
|
int |
read()
Read a single byte of data.
|
int |
read(byte[] b,
int offset,
int length)
Read a buffer of data.
|
void |
rewind(int bytes)
Seek backwards the given number of bytes.
|
void |
seek(long position)
Seek to a position in the data.
|
void |
skip(int length)
Skips a given number of bytes.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitavailable, peek, readprotected long position
protected int currentBufferPointer
protected long size
public NonSeekableRandomAccessReadInputStream(InputStream inputStream)
public void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableIOExceptionpublic void seek(long position)
throws IOException
seek in interface RandomAccessReadposition - The position to seek to.IOException - If there is an error while seeking.public void skip(int length)
throws IOException
RandomAccessReadskip in interface RandomAccessReadlength - the number of bytes to be skippedIOException - if an I/O error occurs while reading datapublic long getPosition()
throws IOException
getPosition in interface RandomAccessReadRandomAccessRead.read() (if no more bytes are left it
returns a value >= length of source)IOException - If there was an error while getting the current positionpublic int read()
throws IOException
read in interface RandomAccessReadIOException - If there is an error while reading the data.public int read(byte[] b,
int offset,
int length)
throws IOException
read in interface RandomAccessReadb - The buffer to write the data to.offset - Offset into the buffer to start writing.length - The amount of data to attempt to read.IOException - If there was an error while reading the data.public long length()
throws IOException
length in interface RandomAccessReadIOException - If there is an IO error while determining the length of the data stream.public void rewind(int bytes)
throws IOException
RandomAccessReadrewind in interface RandomAccessReadbytes - the number of bytes to be seeked backwardsIOException - If there is an error while seekingprotected void checkClosed()
throws IOException
IOException - If RandomAccessBuffer already closedpublic boolean isClosed()
isClosed in interface RandomAccessReadpublic boolean isEOF()
throws IOException
isEOF in interface RandomAccessReadIOException - If there is an error reading the next byte.public RandomAccessReadView createView(long startPosition, long streamLength) throws IOException
RandomAccessReadcreateView in interface RandomAccessReadstartPosition - start position within the underlying random access readstreamLength - stream lengthIOException - if something went wrong when creating the view for the RandomAccessReadCopyright © 2002–2025 The Apache Software Foundation. All rights reserved.