net.java.truevfs.driver.tar.bzip2.TarBZip2Driver Maven / Gradle / Ivy
/*
* Copyright (C) 2005-2015 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package net.java.truevfs.driver.tar.bzip2;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import javax.annotation.concurrent.Immutable;
import net.java.truecommons.io.AbstractSink;
import net.java.truecommons.io.AbstractSource;
import net.java.truecommons.io.Streams;
import net.java.truecommons.shed.BitField;
import net.java.truevfs.comp.tardriver.FixedBufferedOutputStream;
import net.java.truevfs.comp.tardriver.TarDriver;
import net.java.truevfs.comp.tardriver.TarDriverEntry;
import net.java.truevfs.comp.tardriver.TarInputService;
import net.java.truevfs.comp.tardriver.TarOutputService;
import net.java.truevfs.kernel.spec.*;
import static net.java.truevfs.kernel.spec.FsAccessOption.STORE;
import net.java.truecommons.cio.InputService;
import net.java.truevfs.kernel.spec.cio.MultiplexingOutputService;
import net.java.truecommons.cio.OutputService;
import org.apache.commons.compress.compressors.bzip2.BZip2CompressorInputStream;
import org.apache.commons.compress.compressors.bzip2.BZip2CompressorOutputStream;
/**
* An archive driver for BZIP2 compressed TAR files (TAR.BZIP2).
*
* Subclasses must be thread-safe and should be immutable!
*
* @author Christian Schlichtherle
*/
@Immutable
public class TarBZip2Driver extends TarDriver {
/**
* Returns the size of the I/O buffer.
*
* The implementation in the class {@link TarBZip2Driver} returns
* {@link Streams#BUFFER_SIZE}.
*
* @return The size of the I/O buffer.
*/
public int getBufferSize() {
return Streams.BUFFER_SIZE;
}
/**
* Returns the compression level to use when writing a BZIP2 sink stream.
*
* The implementation in the class {@link TarBZip2Driver} returns
* {@link org.apache.commons.compress.compressors.bzip2.BZip2CompressorOutputStream#MAX_BLOCKSIZE}.
*
* @return The compression level to use when writing a BZIP2 sink stream.
*/
public int getLevel() {
return FixedBZip2CompressorOutputStream.MAX_BLOCKSIZE;
}
@Override
protected InputService newInput(
final FsModel model,
final FsInputSocketSource source)
throws IOException {
final class Source extends AbstractSource {
@Override
public InputStream stream() throws IOException {
final InputStream in = source.stream();
try {
return new BZip2CompressorInputStream(
new BufferedInputStream(in, getBufferSize()));
} catch (final Throwable ex) {
try {
in.close();
} catch (final Throwable ex2) {
ex.addSuppressed(ex2);
}
throw ex;
}
}
} // Source
return new TarInputService(model, new Source(), this);
}
@Override
protected OutputService newOutput(
final FsModel model,
final FsOutputSocketSink sink,
final InputService input)
throws IOException {
final class Sink extends AbstractSink {
@Override
public OutputStream stream() throws IOException {
final OutputStream out = sink.stream();
try {
return new FixedBZip2CompressorOutputStream(
new FixedBufferedOutputStream(out, getBufferSize()),
getLevel());
} catch (final Throwable ex) {
try {
out.close();
} catch (final Throwable ex2) {
ex.addSuppressed(ex2);
}
throw ex;
}
}
} // Sink
return new MultiplexingOutputService<>(getPool(),
new TarOutputService(model, new Sink(), this));
}
/**
* Sets {@link FsAccessOption#STORE} in {@code options} before
* forwarding the call to {@code controller}.
*/
@Override
protected FsOutputSocketSink sink(
BitField options,
final FsController controller,
final FsNodeName name) {
// Leave FsAccessOption.COMPRESS untouched - the driver shall be given
// opportunity to apply its own preferences to sort out such a conflict.
options = options.set(STORE);
return new FsOutputSocketSink(options,
controller.output(options, name, null));
}
private static final class FixedBZip2CompressorOutputStream
extends BZip2CompressorOutputStream {
final FixedBufferedOutputStream out;
FixedBZip2CompressorOutputStream(
final FixedBufferedOutputStream out,
final int level)
throws IOException {
super(out, level);
this.out = out;
}
@Override
public void close() throws IOException {
// Workaround for super class implementation which fails to close
// the decorated stream on a subsequent call if the initial attempt
// failed with a throwable.
// See http://java.net/jira/browse/TRUEZIP-234
out.setIgnoreClose(true);
super.close();
out.setIgnoreClose(false);
out.close();
}
} //FixedBZip2CompressorOutputStream
}