|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.io.OutputStream
org.apache.commons.io.output.ThresholdingOutputStream
com.atlassian.core.spool.DeferredFileOutputStream
public class DeferredFileOutputStream
An output stream which will retain data in memory until a specified threshold is reached, and only then commit it to disk. If the stream is closed before the threshold is reached, the data will not be written to disk at all.
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).
MODIFICATION: Made this class a bit more extensible and less stupid
| Field Summary | |
|---|---|
protected boolean |
closed
True when close() has been called successfully. |
protected File |
outputFile
The file to which output will be directed if the threshold is exceeded. |
| Constructor Summary | |
|---|---|
DeferredFileOutputStream(int threshold,
File outputFile)
Constructs an instance of this class which will trigger an event at the specified threshold, and save data to a file beyond that point. |
|
| Method Summary | |
|---|---|
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. |
File |
getFile()
Returns the same output file specified in the constructor, even when threashold has not been reached. |
InputStream |
getInputStream()
|
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 |
thresholdReached()
Switches the underlying output stream from a memory based stream to one that is backed by disk. |
void |
writeTo(OutputStream out)
Writes the data from this output stream to the specified output stream, after it has been closed. |
| Methods inherited from class org.apache.commons.io.output.ThresholdingOutputStream |
|---|
checkThreshold, flush, getByteCount, getThreshold, isThresholdExceeded, resetByteCount, write, write, write |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected File outputFile
protected boolean closed
| Constructor Detail |
|---|
public DeferredFileOutputStream(int threshold,
File outputFile)
threshold - The number of bytes at which to trigger an event.outputFile - The file to which data is saved beyond the threshold.| Method Detail |
|---|
protected OutputStream getStream()
throws IOException
getStream in class org.apache.commons.io.output.ThresholdingOutputStreamIOException - if an error occurs.
protected void thresholdReached()
throws IOException
thresholdReached in class org.apache.commons.io.output.ThresholdingOutputStreamIOException - if an error occurs.public boolean isInMemory()
true if the data is available in memory; false otherwise.public byte[] getData()
null.
null if no such data is available.public File getFile()
null if no such file exists.
public void close()
throws IOException
close in interface Closeableclose in class org.apache.commons.io.output.ThresholdingOutputStreamIOException - if an error occurs.
public InputStream getInputStream()
throws IOException
IOException
public void writeTo(OutputStream out)
throws IOException
out - output stream to write to.
IOException - if this stream is not yet closed or an error occurs.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||