Package org.apache.pdfbox.io
Class RandomAccessReadMemoryMappedFile
- java.lang.Object
-
- org.apache.pdfbox.io.RandomAccessReadMemoryMappedFile
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,RandomAccessRead
public class RandomAccessReadMemoryMappedFile extends java.lang.Object implements RandomAccessRead
An implementation of the RandomAccess interface backed by a memory mapped file channel. The whole file is mapped to memory and the max size is limited to Integer.MAX_VALUE.
-
-
Field Summary
Fields Modifier and Type Field Description private java.nio.channels.FileChannelfileChannelprivate java.nio.ByteBuffermappedByteBufferprivate longsizeprivate java.util.function.Consumer<? super java.nio.ByteBuffer>unmapper
-
Constructor Summary
Constructors Modifier Constructor Description RandomAccessReadMemoryMappedFile(java.io.File file)Create a random access memory mapped file instance for the given file.RandomAccessReadMemoryMappedFile(java.lang.String filename)Create a random access memory mapped file instance for the file with the given name.RandomAccessReadMemoryMappedFile(java.nio.file.Path path)Create a random access memory mapped file instance using the given path.privateRandomAccessReadMemoryMappedFile(RandomAccessReadMemoryMappedFile parent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private voidcheckClosed()Ensure that the RandomAccessReadMemoryMappedFile is not closedvoidclose()RandomAccessReadViewcreateView(long startPosition, long streamLength)Creates a random access read view starting at the given position with the given length.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.
-
-
-
Constructor Detail
-
RandomAccessReadMemoryMappedFile
public RandomAccessReadMemoryMappedFile(java.lang.String filename) throws java.io.IOExceptionCreate a random access memory mapped file instance for the file with the given name.- Parameters:
filename- the filename of the file to be read- Throws:
java.io.IOException- If there is an IO error opening the file.
-
RandomAccessReadMemoryMappedFile
public RandomAccessReadMemoryMappedFile(java.io.File file) throws java.io.IOExceptionCreate a random access memory mapped file instance for the given file.- Parameters:
file- the file to be read- Throws:
java.io.IOException- If there is an IO error opening the file.
-
RandomAccessReadMemoryMappedFile
public RandomAccessReadMemoryMappedFile(java.nio.file.Path path) throws java.io.IOExceptionCreate a random access memory mapped file instance using the given path.- Parameters:
path- path of the file to be read.- Throws:
java.io.IOException- If there is an IO error opening the file.
-
RandomAccessReadMemoryMappedFile
private RandomAccessReadMemoryMappedFile(RandomAccessReadMemoryMappedFile parent)
-
-
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
-
seek
public void seek(long position) throws java.io.IOExceptionSeek 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.
-
getPosition
public long getPosition() throws java.io.IOExceptionReturns 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
-
read
public int read() throws java.io.IOExceptionRead 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.IOExceptionRead 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.
-
length
public long length() throws java.io.IOExceptionThe 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.
-
checkClosed
private void checkClosed() throws java.io.IOExceptionEnsure that the RandomAccessReadMemoryMappedFile is not closed- Throws:
java.io.IOException- If RandomAccessBuffer already closed
-
isClosed
public boolean isClosed()
Returns true if this source has been closed.- Specified by:
isClosedin interfaceRandomAccessRead- Returns:
- true if the source has been closed
-
isEOF
public boolean isEOF() throws java.io.IOExceptionA 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)
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
-
-