Package org.codehaus.plexus.archiver.zip
Class OffloadingOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.commons.io.output.ThresholdingOutputStream
-
- org.codehaus.plexus.archiver.zip.OffloadingOutputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
class OffloadingOutputStream extends org.apache.commons.io.output.ThresholdingOutputStreamOffloads to disk when a given memory consumption has been reached
-
-
Field Summary
Fields Modifier and Type Field Description private java.io.OutputStreamcurrentOutputStreamThe output stream to which data will be written at any given time.private ByteArrayOutputStreammemoryOutputStreamThe output stream to which data will be written prior to the threshold being reached.private java.nio.file.PathoutputPathThe path to which output will be directed if the threshold is exceeded.private java.lang.StringprefixThe temporary file prefix.private java.lang.StringsuffixThe temporary file suffix.
-
Constructor Summary
Constructors Constructor Description OffloadingOutputStream(int threshold, java.lang.String prefix, java.lang.String suffix)Constructs an instance of this class which will trigger an event at the specified threshold, and save data to a temporary file beyond that point.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclose()Closes underlying output stream.byte[]getData()Returns the data for this output stream as an array of bytes, assuming that the data has been retained in memory.java.io.FilegetFile()Returns either the output file specified in the constructor or the temporary file created or null.java.io.InputStreamgetInputStream()protected java.io.OutputStreamgetStream()Deprecated.protected voidthresholdReached()Switches the underlying output stream from a memory based stream to one that is backed by disk.
-
-
-
Field Detail
-
memoryOutputStream
private ByteArrayOutputStream memoryOutputStream
The output stream to which data will be written prior to the threshold being reached.
-
currentOutputStream
private java.io.OutputStream currentOutputStream
The output stream to which data will be written at any given time. This will always be one ofmemoryOutputStreamordiskOutputStream.
-
outputPath
private java.nio.file.Path outputPath
The path to which output will be directed if the threshold is exceeded.
-
prefix
private final java.lang.String prefix
The temporary file prefix.
-
suffix
private final java.lang.String suffix
The temporary file suffix.
-
-
Constructor Detail
-
OffloadingOutputStream
public OffloadingOutputStream(int threshold, java.lang.String prefix, java.lang.String suffix)Constructs an instance of this class which will trigger an event at the specified threshold, and save data to a temporary file beyond that point.- Parameters:
threshold- The number of bytes at which to trigger an event.prefix- Prefix to use for the temporary file.suffix- Suffix to use for the temporary file.- Since:
- 1.4
-
-
Method Detail
-
getStream
@Deprecated protected java.io.OutputStream getStream() throws java.io.IOExceptionDeprecated.Returns the current output stream. This may be memory based or disk based, depending on the current state with respect to the threshold.- Overrides:
getStreamin classorg.apache.commons.io.output.ThresholdingOutputStream- Returns:
- The underlying output stream.
- Throws:
java.io.IOException- if an error occurs.
-
thresholdReached
protected void thresholdReached() throws java.io.IOExceptionSwitches the underlying output stream from a memory based stream to one that is backed by disk. This is the point at which we realise that too much data is being written to keep in memory, so we elect to switch to disk-based storage.- Overrides:
thresholdReachedin classorg.apache.commons.io.output.ThresholdingOutputStream- Throws:
java.io.IOException- if an error occurs.
-
getInputStream
public java.io.InputStream getInputStream() throws java.io.IOException- Throws:
java.io.IOException
-
getData
public byte[] getData()
Returns the data for this output stream as an array of bytes, assuming that the data has been retained in memory. If the data was written to disk, this method returnsnull.- Returns:
- The data for this output stream, or
nullif no such data is available.
-
getFile
public java.io.File getFile()
Returns either the output file specified in the constructor or the temporary file created or null.If the constructor specifying the file is used then it returns that same output file, even when threshold has not been reached.
If constructor specifying a temporary file prefix/suffix is used then the temporary file created once the threshold is reached is returned If the threshold was not reached then
nullis returned.- Returns:
- The file for this output stream, or
nullif no such file exists.
-
close
public void close() throws java.io.IOExceptionCloses underlying output stream.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classorg.apache.commons.io.output.ThresholdingOutputStream- Throws:
java.io.IOException- if an error occurs.
-
-