All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.schlichtherle.io.archive.tar.TarDriver Maven / Gradle / Ivy

Go to download

TrueZIP is a Java based Virtual File System (VFS) to enable transparent, multi-threaded read/write access to archive files (ZIP, TAR etc.) as if they were directories. Archive files may be arbitrarily nested and the nesting level is only limited by heap and file system size.

The newest version!
/*
 * Copyright (C) 2006-2010 Schlichtherle IT Services
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package de.schlichtherle.io.archive.tar;

import de.schlichtherle.io.archive.*;
import de.schlichtherle.io.archive.spi.*;
import de.schlichtherle.io.rof.*;

import java.io.*;
import java.util.logging.*;

import javax.swing.*;

/**
 * An archive driver which builds TAR files.
 * 

* Instances of this class are immutable. * * @author Christian Schlichtherle * @version $Id$ * @since TrueZIP 6.0 */ public class TarDriver extends AbstractArchiveDriver { private static final long serialVersionUID = 6622746562629104174L; /** Prefix for temporary files created by this driver. */ static final String TEMP_FILE_PREFIX = "tzp-tar"; /** * The character set to use for entry names, which is {@value}. * TAR files should actually be able to use the system's native character * set charset. However, the low level TAR code as of Ant 1.6.5 doesn't * support that, hence this constraint. */ public static final String DEFAULT_CHARSET = "US-ASCII"; /** * Equivalent to {@link #TarDriver(String, Icon, Icon) * this(DEFAULT_CHARSET, null, null)}. */ public TarDriver() { this(DEFAULT_CHARSET, null, null); } /** * Equivalent to {@link #TarDriver(String, Icon, Icon) * this(charset, null, null)}. */ public TarDriver(String charset) { this(charset, null, null); } /** * Constructs a new TAR driver. * * @param charset The name of a character set to use for all entry names * when reading or writing TAR files. * Warning: Due to limitations in Apache's Ant code, using * anything else than {@value #DEFAULT_CHARSET} is currently not * supported! */ public TarDriver( String charset, Icon openIcon, Icon closedIcon) { super(charset, openIcon, closedIcon); } // // Factory methods: // public ArchiveEntry createArchiveEntry( final Archive archive, final String entryName, final ArchiveEntry template) throws CharConversionException { ensureEncodable(entryName); final TarEntry entry; if (template instanceof TarEntry) { entry = new TarEntry((TarEntry) template); entry.setName(entryName); } else { entry = new TarEntry(entryName); if (null != template) { entry.setTime(template.getTime()); entry.setSize(template.getSize()); } } return entry; } /** * {@inheritDoc} *

* This implementation calls {@link #createInputStream(Archive, ReadOnlyFile) * createInputStream(archive, rof)} and passes the resulting stream to * {@link #createTarInputArchive(Archive, InputStream)}. */ public InputArchive createInputArchive( Archive archive, ReadOnlyFile rof) throws IOException { final InputStream in = createInputStream(archive, rof); try { return createTarInputArchive(archive, in); } finally { in.close(); } } /** * Returns a new {@code InputStream} to read the contents from the * given {@code ReadOnlyFile} from. * Override this method in order to decorate the stream returned by the * implementation in this class in order to have the driver read the TAR * file from wrapper file formats such as GZIP or BZIP2. *

* Note that the returned stream should support marking for best * performance and will always be closed early by * {@link #createInputArchive(Archive, ReadOnlyFile)}. */ protected InputStream createInputStream( Archive archive, ReadOnlyFile rof) throws IOException { return new ReadOnlyFileInputStream(rof); } /** * Returns a new {@code TarInputArchive} to read the contents from * the given {@code InputStream}. * The implementation in this class simply returns * {@code new TarInputArchive(in)}. */ protected TarInputArchive createTarInputArchive( Archive archive, InputStream in) throws IOException { return new TarInputArchive(in); } /** * {@inheritDoc} *

* This implementation forwards the call to {@link #createTarOutputArchive} * and wraps the result in a new {@link MultiplexedOutputArchive}. */ public OutputArchive createOutputArchive( Archive archive, OutputStream out, InputArchive source) throws IOException { return new MultiplexedOutputArchive(createTarOutputArchive( archive, out, (TarInputArchive) source)); } protected TarOutputArchive createTarOutputArchive( Archive archive, OutputStream out, TarInputArchive source) throws IOException { return new TarOutputArchive(out); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy