de.schlichtherle.truezip.file.TFileOutputStream Maven / Gradle / Ivy
Show all versions of truezip-file Show documentation
/*
* Copyright (C) 2005-2015 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package de.schlichtherle.truezip.file;
import static de.schlichtherle.truezip.fs.FsOutputOption.APPEND;
import de.schlichtherle.truezip.io.DecoratingOutputStream;
import de.schlichtherle.truezip.socket.OutputSocket;
import edu.umd.cs.findbugs.annotations.CreatesObligation;
import java.io.*;
import javax.annotation.concurrent.Immutable;
/**
* A replacement for the class {@link FileOutputStream} for writing plain old
* files or entries in an archive file.
* Mind that applications cannot write archive files directly - just their
* entries!
*
* To prevent exceptions to be thrown subsequently, applications should
* always close their streams using the following idiom:
*
{@code
* TFileOutputStream out = new TFileOutputStream(file);
* try {
* // Do I/O here...
* } finally {
* out.close(); // ALWAYS close the stream!
* }
* }
*
* Note that the {@link #close()} method may throw an {@link IOException}, too.
* Applications need to deal with this appropriately, for example by enclosing
* the entire block with another {@code try-catch}-block:
*
{@code
* try {
* TFileOutputStream out = new TFileOutputStream(file);
* try {
* // Do I/O here...
* } finally {
* out.close(); // ALWAYS close the stream!
* }
* } catch (IOException ex) {
* ex.printStackTrace();
* }
* }
*
* Applications cannot write to an entry in an archive file if an implicit
* {@link TFile#umount() unmount} is required but cannot get performed because
* another {@link TFileInputStream} or {@link TFileOutputStream} object hasn't
* been closed or garbage collected yet.
* A {@link FileNotFoundException} is thrown by the constructors of this class
* in this case.
*
* If you would like to use this class in order to cp files,
* please consider using one of the
* cp methods of the class {@link TFile}
* instead.
* These methods provide ease of use, enhanced features, superior performance
* and require less space in the temp file folder.
*
* @see TFile#cat(InputStream, OutputStream)
* @see TConfig#setLenient
* @see TFileInputStream
* @author Christian Schlichtherle
*/
@Immutable
public final class TFileOutputStream extends DecoratingOutputStream {
/**
* Constructs a new output stream for writing plain old files or entries
* in an archive file.
* This constructor calls {@link TFile#TFile(String) new TFile(path)} for
* the given path.
*
* @param path the path of the plain old file or entry in an archive file
* to write.
* @throws FileNotFoundException on any I/O failure.
*/
@CreatesObligation
@edu.umd.cs.findbugs.annotations.SuppressWarnings("OBL_UNSATISFIED_OBLIGATION")
public TFileOutputStream(String path)
throws FileNotFoundException {
super(newOutputStream(new TFile(path), false));
}
/**
* Constructs a new output stream for writing plain old files or entries
* in an archive file.
* This constructor calls {@link TFile#TFile(String) new TFile(path)} for
* the given path.
*
* @param path the path of the plain old file or entry in an archive file
* to write.
* @param append if the data shall get appended to the file rather than
* replacing it.
* @throws FileNotFoundException on any I/O failure.
*/
@CreatesObligation
@edu.umd.cs.findbugs.annotations.SuppressWarnings("OBL_UNSATISFIED_OBLIGATION")
public TFileOutputStream(String path, boolean append)
throws FileNotFoundException {
super(newOutputStream(new TFile(path), append));
}
/**
* Constructs a new output stream for writing plain old files or entries
* in an archive file.
*
* @param file the plain old file or entry in an archive file to write.
* @throws FileNotFoundException on any I/O failure.
*/
@CreatesObligation
@edu.umd.cs.findbugs.annotations.SuppressWarnings("OBL_UNSATISFIED_OBLIGATION")
public TFileOutputStream(File file)
throws FileNotFoundException {
super(newOutputStream(file, false));
}
/**
* Constructs a new output stream for writing plain old files or entries
* in an archive file.
*
* @param file the plain old file or entry in an archive file to write.
* @param append if the data shall get appended to the file rather than
* replacing it.
* @throws FileNotFoundException on any I/O failure.
*/
@CreatesObligation
@edu.umd.cs.findbugs.annotations.SuppressWarnings("OBL_UNSATISFIED_OBLIGATION")
public TFileOutputStream(File file, boolean append)
throws FileNotFoundException {
super(newOutputStream(file, append));
}
@CreatesObligation
private static OutputStream newOutputStream(final File dst,
final boolean append)
throws FileNotFoundException {
final OutputSocket> output = TBIO.getOutputSocket(dst,
TConfig.get().getOutputPreferences().set(APPEND, append),
null);
try {
return output.newOutputStream();
} catch (FileNotFoundException ex) {
throw ex;
} catch (IOException ex) {
throw (FileNotFoundException) new FileNotFoundException(
dst.toString()).initCause(ex);
}
}
}