Package org.apache.pdfbox.io
Class IOUtils
java.lang.Object
org.apache.pdfbox.io.IOUtils
This class contains various I/O-related methods.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final org.apache.commons.logging.LogLog instance.private static final RandomAccessStreamCache.StreamCacheCreateFunctionprivate static final Optional<Consumer<ByteBuffer>> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic IOExceptioncloseAndLogException(Closeable closeable, org.apache.commons.logging.Log logger, String resourceName, IOException initialException) Try to close an IO resource and log and return if there was an exception.static voidcloseQuietly(Closeable closeable) Null safe close of the givenCloseablesuppressing any exception.static longcopy(InputStream input, OutputStream output) Copies all the contents from the given input stream to the given output stream.Provides a function to create an instance of a memory only StreamCache using unrestricted main memory.Provides a function to create an instance of a temp file only StreamCache using unrestricted size.private static Consumer<ByteBuffer> newBufferCleaner(Class<?> unmappableBufferClass, MethodHandle unmapper) static longpopulateBuffer(InputStream in, byte[] buffer) Populates the given buffer with data read from the input stream.static byte[]Reads the input stream and returns its contents as a byte array.static voidunmap(ByteBuffer buf) Unmap memory mapped byte buffers.private static Consumer<ByteBuffer> unmapper()This is adapted from org.apache.lucene.store.MMapDirectory
-
Field Details
-
LOG
private static final org.apache.commons.logging.Log LOGLog instance. -
streamCache
-
UNMAPPER
-
-
Constructor Details
-
IOUtils
private IOUtils()
-
-
Method Details
-
toByteArray
Reads the input stream and returns its contents as a byte array.- Parameters:
in- the input stream to read from.- Returns:
- the byte array
- Throws:
IOException- if an I/O error occurs
-
copy
Copies all the contents from the given input stream to the given output stream.- Parameters:
input- the input streamoutput- the output stream- Returns:
- the number of bytes that have been copied
- Throws:
IOException- if an I/O error occurs
-
populateBuffer
Populates the given buffer with data read from the input stream. If the data doesn't fit the buffer, only the data that fits in the buffer is read. If the data is less than fits in the buffer, the buffer is not completely filled.- Parameters:
in- the input stream to read frombuffer- the buffer to fill- Returns:
- the number of bytes written to the buffer
- Throws:
IOException- if an I/O error occurs
-
closeQuietly
Null safe close of the givenCloseablesuppressing any exception.- Parameters:
closeable- to be closed
-
closeAndLogException
public static IOException closeAndLogException(Closeable closeable, org.apache.commons.logging.Log logger, String resourceName, IOException initialException) Try to close an IO resource and log and return if there was an exception.An exception is only returned if the IOException passed in is null.
- Parameters:
closeable- to be closedlogger- the logger to be used so that logging appears under that log instanceresourceName- the name to appear in the log outputinitialException- if set, this exception will be returned even where there is another exception while closing the IO resource- Returns:
- the IOException is there was any but only if initialException is null
-
unmap
Unmap memory mapped byte buffers. This is a hack waiting for a proper JVM provided solution mentioned in JDK-4724038: Add unmap method to MappedByteBuffer. The issue here is that even when closed, memory mapped byte buffers hold a lock on the underlying file until GC is executing and this in turns result in an error if the user tries to move or delete the file.- Parameters:
buf- the buffer to be unmapped
-
unmapper
This is adapted from org.apache.lucene.store.MMapDirectory- Returns:
-
newBufferCleaner
private static Consumer<ByteBuffer> newBufferCleaner(Class<?> unmappableBufferClass, MethodHandle unmapper) -
createMemoryOnlyStreamCache
Provides a function to create an instance of a memory only StreamCache using unrestricted main memory. RandomAccessReadWriteBuffer is used as current default implementation.- Returns:
- a function to create an instance of a memory only StreamCache using unrestricted main memory
-
createTempFileOnlyStreamCache
Provides a function to create an instance of a temp file only StreamCache using unrestricted size. ScratchFile is used as current default implementation.- Returns:
- a function to create an instance of a temp file only StreamCache using unrestricted size
-