public class DeferredFileOutputStream extends AbstractThresholdingOutputStream
This class originated in FileUpload processing. In this use case, you do not know in advance the size of the file being uploaded. If the file is small you want to store it in memory (for speed), but if the file is large you want to store it to file (to avoid memory issues).
| Constructor and Description |
|---|
DeferredFileOutputStream(int nThreshold,
File aOutputFile)
Constructs an instance of this class which will trigger an event at the
specified threshold, and save data to a file beyond that point.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes underlying output stream, and mark this as closed
|
byte[] |
getData()
Returns the data for this output stream as an array of bytes, assuming that
the data has been retained in memory.
|
int |
getDataLength()
Returns the length of the data for this output stream as number of bytes,
assuming that the data has been retained in memory.
|
File |
getFile()
Returns either the output file specified in the constructor or the
temporary file created or null.
|
com.helger.commons.io.stream.NonBlockingByteArrayOutputStream |
getMemoryOS() |
protected OutputStream |
getStream()
Returns the current output stream.
|
boolean |
isInMemory()
Determines whether or not the data for this output stream has been retained
in memory.
|
protected void |
onThresholdReached()
Switches the underlying output stream from a memory based stream to one
that is backed by disk.
|
void |
writeTo(OutputStream aOS)
Writes the data from this output stream to the specified output stream,
after it has been closed.
|
checkThreshold, flush, getByteCount, getThreshold, isThresholdExceeded, resetByteCount, write, write, writepublic DeferredFileOutputStream(@Nonnegative int nThreshold, @Nonnull File aOutputFile)
nThreshold - The number of bytes at which to trigger an event.aOutputFile - The file to which data is saved beyond the threshold.protected OutputStream getStream() throws IOException
getStream in class AbstractThresholdingOutputStreamIOException - if an error occurs.protected void onThresholdReached()
throws IOException
onThresholdReached in class AbstractThresholdingOutputStreamIOException - if an error occurs.@Nullable public final com.helger.commons.io.stream.NonBlockingByteArrayOutputStream getMemoryOS()
public boolean isInMemory()
true if the data is available in memory;
false otherwise.@Nullable @ReturnsMutableCopy public byte[] getData()
null.null if no such
data is available.isInMemory()@Nonnegative public int getDataLength()
0.0 if
no such data is available.isInMemory()@Nonnull public File getFile()
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 null is returned.
null if no such
file exists.public void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class AbstractThresholdingOutputStreamIOException - if an error occurs.public void writeTo(@Nonnull @WillNotClose OutputStream aOS) throws IOException
aOS - output stream to write to.IOException - if this stream is not yet closed or an error occurs.Copyright © 2014–2019 Philip Helger. All rights reserved.