
net.java.truevfs.driver.tar.xz.TarXZDriver Maven / Gradle / Ivy
Show all versions of truevfs-driver-tar-xz Show documentation
/*
* Copyright © 2005 - 2021 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package net.java.truevfs.driver.tar.xz;
import net.java.truecommons.cio.InputService;
import net.java.truecommons.cio.OutputService;
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.*;
import net.java.truevfs.kernel.spec.*;
import net.java.truevfs.kernel.spec.cio.MultiplexingOutputService;
import org.tukaani.xz.LZMA2Options;
import org.tukaani.xz.XZInputStream;
import org.tukaani.xz.XZOutputStream;
import javax.annotation.CheckForNull;
import javax.annotation.WillNotClose;
import javax.annotation.concurrent.Immutable;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import static net.java.truevfs.kernel.spec.FsAccessOption.STORE;
/**
* An archive driver for XZ compressed TAR files (TAR.XZ).
*
* Subclasses must be thread-safe and should be immutable!
*
* @author Christian Schlichtherle
*/
@Immutable
public class TarXZDriver extends TarDriver {
/**
* Returns the size of the I/O buffer.
*
* The implementation in the class {@link TarXZDriver} 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 an XZ output stream.
*
* The implementation in the class {@link TarXZDriver} returns
* {@link LZMA2Options#PRESET_DEFAULT}.
*
* @return The compression level to use when writing a XZ output stream.
*/
public int getPreset() {
return LZMA2Options.PRESET_DEFAULT;
}
@Override
protected InputService newInput(
final FsModel model,
final FsInputSocketSource source)
throws IOException {
class Source extends AbstractSource {
@Override
public InputStream stream() throws IOException {
final InputStream in = source.stream();
try {
return new XZInputStream(
new BufferedInputStream(in, getBufferSize()));
} catch (final Throwable t1) {
try {
in.close();
} catch (final Throwable t2) {
t1.addSuppressed(t2);
}
throw t1;
}
}
}
return new TarInputService(model, new Source(), this);
}
@Override
protected OutputService newOutput(
final FsModel model,
final FsOutputSocketSink sink,
final @CheckForNull @WillNotClose InputService input)
throws IOException {
class Sink extends AbstractSink {
@Override
public OutputStream stream() throws IOException {
final OutputStream out = sink.stream();
try {
return new FixedXZOutputStream(
new FixedBufferedOutputStream(out, getBufferSize()),
new LZMA2Options(getPreset()));
} catch (final Throwable t1) {
try {
out.close();
} catch (Throwable t2) {
t1.addSuppressed(t2);
}
throw t1;
}
}
}
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 FixedXZOutputStream extends XZOutputStream {
final OutputStream out;
boolean closed;
FixedXZOutputStream(final OutputStream out, final LZMA2Options options) throws IOException {
super(out, options);
this.out = out;
}
@Override
public void close() throws IOException {
if (closed) {
out.close(); // enable recovery
} else {
closed = true;
super.close();
}
}
}
}