Package org.apache.pdfbox.io
Class RandomAccessReadMemoryMappedFile
java.lang.Object
org.apache.pdfbox.io.RandomAccessReadMemoryMappedFile
- All Implemented Interfaces:
Closeable,AutoCloseable,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
FieldsModifier and TypeFieldDescriptionprivate final FileChannelprivate ByteBufferprivate final longprivate final Consumer<? super ByteBuffer> -
Constructor Summary
ConstructorsModifierConstructorDescriptionCreate a random access memory mapped file instance for the given file.RandomAccessReadMemoryMappedFile(String filename) Create a random access memory mapped file instance for the file with the given name.Create a random access memory mapped file instance using the given path.private -
Method Summary
Modifier and TypeMethodDescriptionprivate voidEnsure that the RandomAccessReadMemoryMappedFile is not closedvoidclose()createView(long startPosition, long streamLength) Creates a random access read view starting at the given position with the given length.longReturns 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 Details
-
mappedByteBuffer
-
size
private final long size -
fileChannel
-
unmapper
-
-
Constructor Details
-
RandomAccessReadMemoryMappedFile
Create 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:
IOException- If there is an IO error opening the file.
-
RandomAccessReadMemoryMappedFile
Create a random access memory mapped file instance for the given file.- Parameters:
file- the file to be read- Throws:
IOException- If there is an IO error opening the file.
-
RandomAccessReadMemoryMappedFile
Create a random access memory mapped file instance using the given path.- Parameters:
path- path of the file to be read.- Throws:
IOException- If there is an IO error opening the file.
-
RandomAccessReadMemoryMappedFile
-
-
Method Details
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-
seek
Seek to a position in the data.- Specified by:
seekin interfaceRandomAccessRead- Parameters:
position- The position to seek to.- Throws:
IOException- If there is an error while seeking.
-
getPosition
Returns 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:
IOException- If there was an error while getting the current position
-
read
Read a single byte of data.- Specified by:
readin interfaceRandomAccessRead- Returns:
- The byte of data that is being read.
- Throws:
IOException- If there is an error while reading the data.
-
read
Read 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:
IOException- If there was an error while reading the data.
-
length
The total number of bytes that are available.- Specified by:
lengthin interfaceRandomAccessRead- Returns:
- The number of bytes available.
- Throws:
IOException- If there is an IO error while determining the length of the data stream.
-
checkClosed
Ensure that the RandomAccessReadMemoryMappedFile is not closed- Throws:
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
A 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:
IOException- If there is an error reading the next byte.
-
createView
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
-