Package org.apache.pdfbox.io
Class SequenceRandomAccessRead
- java.lang.Object
-
- org.apache.pdfbox.io.SequenceRandomAccessRead
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,RandomAccessRead
public class SequenceRandomAccessRead extends java.lang.Object implements RandomAccessRead
Wrapper class to combine several RandomAccessRead instances so that they can be accessed as one big RandomAccessRead.
-
-
Field Summary
Fields Modifier and Type Field Description private intcurrentIndexprivate longcurrentPositionprivate RandomAccessReadcurrentRandomAccessReadprivate long[]endPositionsprivate booleanisClosedprivate intnumberOfReaderprivate java.util.List<RandomAccessRead>readerListprivate long[]startPositionsprivate longtotalLength
-
Constructor Summary
Constructors Constructor Description SequenceRandomAccessRead(java.util.List<RandomAccessRead> randomAccessReadList)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private voidcheckClosed()Ensure that the SequenceRandomAccessRead is not closedvoidclose()RandomAccessReadViewcreateView(long startPosition, long streamLength)Creates a random access read view starting at the given position with the given length.private RandomAccessReadgetCurrentReader()longgetPosition()Returns offset of next byte to be returned by a read method.booleanisClosed()Returns true if this source has been closed.booleanisEOF()A simple test to see if we are at the end of the data.longlength()The total number of bytes that are available.intread()Read a single byte of data.intread(byte[] b, int offset, int length)Read a buffer of data.voidseek(long position)Seek to a position in the data.
-
-
-
Field Detail
-
readerList
private final java.util.List<RandomAccessRead> readerList
-
startPositions
private final long[] startPositions
-
endPositions
private final long[] endPositions
-
numberOfReader
private final int numberOfReader
-
currentIndex
private int currentIndex
-
currentPosition
private long currentPosition
-
totalLength
private long totalLength
-
isClosed
private boolean isClosed
-
currentRandomAccessRead
private RandomAccessRead currentRandomAccessRead
-
-
Constructor Detail
-
SequenceRandomAccessRead
public SequenceRandomAccessRead(java.util.List<RandomAccessRead> randomAccessReadList)
-
-
Method Detail
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
getCurrentReader
private RandomAccessRead getCurrentReader() throws java.io.IOException
- Throws:
java.io.IOException
-
read
public int read() throws java.io.IOExceptionDescription copied from interface:RandomAccessReadRead a single byte of data.- Specified by:
readin interfaceRandomAccessRead- Returns:
- The byte of data that is being read.
- Throws:
java.io.IOException- If there is an error while reading the data.
-
read
public int read(byte[] b, int offset, int length) throws java.io.IOExceptionDescription copied from interface:RandomAccessReadRead a buffer of data.- Specified by:
readin interfaceRandomAccessRead- Parameters:
b- The buffer to write the data to.offset- Offset into the buffer to start writing.length- The amount of data to attempt to read.- Returns:
- The number of bytes that were actually read.
- Throws:
java.io.IOException- If there was an error while reading the data.
-
getPosition
public long getPosition() throws java.io.IOExceptionDescription copied from interface:RandomAccessReadReturns offset of next byte to be returned by a read method.- Specified by:
getPositionin interfaceRandomAccessRead- Returns:
- offset of next byte which will be returned with next
RandomAccessRead.read()(if no more bytes are left it returns a value >= length of source) - Throws:
java.io.IOException- If there was an error while getting the current position
-
seek
public void seek(long position) throws java.io.IOExceptionDescription copied from interface:RandomAccessReadSeek to a position in the data.- Specified by:
seekin interfaceRandomAccessRead- Parameters:
position- The position to seek to.- Throws:
java.io.IOException- If there is an error while seeking.
-
length
public long length() throws java.io.IOExceptionDescription copied from interface:RandomAccessReadThe total number of bytes that are available.- Specified by:
lengthin interfaceRandomAccessRead- Returns:
- The number of bytes available.
- Throws:
java.io.IOException- If there is an IO error while determining the length of the data stream.
-
isClosed
public boolean isClosed()
Description copied from interface:RandomAccessReadReturns true if this source has been closed.- Specified by:
isClosedin interfaceRandomAccessRead- Returns:
- true if the source has been closed
-
checkClosed
private void checkClosed() throws java.io.IOExceptionEnsure that the SequenceRandomAccessRead is not closed- Throws:
java.io.IOException- If RandomAccessBuffer already closed
-
isEOF
public boolean isEOF() throws java.io.IOExceptionDescription copied from interface:RandomAccessReadA simple test to see if we are at the end of the data.- Specified by:
isEOFin interfaceRandomAccessRead- Returns:
- true if we are at the end of the data.
- Throws:
java.io.IOException- If there is an error reading the next byte.
-
createView
public RandomAccessReadView createView(long startPosition, long streamLength) throws java.io.IOException
Description copied from interface:RandomAccessReadCreates a random access read view starting at the given position with the given length.- Specified by:
createViewin interfaceRandomAccessRead- Parameters:
startPosition- start position within the underlying random access readstreamLength- stream length- Returns:
- the random access read view
- Throws:
java.io.IOException- if something went wrong when creating the view for the RandomAccessRead
-
-