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

de.schlichtherle.io.archive.zip.ZipDriver 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) 2009-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.zip;

import de.schlichtherle.io.archive.Archive;
import de.schlichtherle.io.archive.spi.AbstractArchiveDriver;
import de.schlichtherle.io.archive.spi.ArchiveEntry;
import de.schlichtherle.io.archive.spi.InputArchive;
import de.schlichtherle.io.archive.spi.MultiplexedOutputArchive;
import de.schlichtherle.io.archive.spi.OutputArchive;
import de.schlichtherle.io.rof.ReadOnlyFile;
import java.io.CharConversionException;
import java.io.IOException;
import java.io.OutputStream;
import java.util.zip.Deflater;
import javax.swing.Icon;

/**
 * An archive driver which builds ZIP files.
 * Note that this driver does not check the CRC value of any entries in
 * existing archives.
 * 

* Instances of this class are immutable. * * @see CheckedZipDriver * @author Christian Schlichtherle * @version $Id: ZipDriver.java,v 1.4 2010/08/20 13:09:51 christian_schlichtherle Exp $ * @since TrueZIP 6.0 */ public class ZipDriver extends AbstractArchiveDriver { private static final long serialVersionUID = -7061546656075796996L; /** Prefix for temporary files created by this driver. */ static final String TEMP_FILE_PREFIX = "tzp-zip"; /** * The default character set to use for entry names and comments, * which is {@value}. */ public static final String DEFAULT_CHARSET = "IBM437"; /** * The default compression level to use when writing a ZIP output stream, * which is {@value}. */ public static final int DEFAULT_LEVEL = Deflater.BEST_COMPRESSION; private final boolean preambled, postambled; private final int level; /** * Equivalent to {@link #ZipDriver(String, Icon, Icon, boolean, boolean, int) * this(DEFAULT_CHARSET, null, null, false, false, DEFAULT_LEVEL)}. */ public ZipDriver() { this(DEFAULT_CHARSET, null, null, false, false, DEFAULT_LEVEL); } /** * Equivalent to {@link #ZipDriver(String, Icon, Icon, boolean, boolean, int) * this(charset, null, null, false, false, DEFAULT_LEVEL)}. */ public ZipDriver(String charset) { this(charset, null, null, false, false, DEFAULT_LEVEL); } /** * Equivalent to {@link #ZipDriver(String, Icon, Icon, boolean, boolean, int) * this(DEFAULT_CHARSET, null, null, false, false, level)}. */ public ZipDriver(int level) { this(DEFAULT_CHARSET, null, null, false, false, level); } public ZipDriver( final String charset, final boolean preambled, final boolean postambled, final Icon openIcon, final Icon closedIcon) { this(charset, openIcon, closedIcon, preambled, postambled, DEFAULT_LEVEL); } /** * Constructs a new ZIP driver. * * @param preambled {@code true} if and only if a prospective ZIP * compatible file is allowed to contain preamble data before the * actual ZIP file data. * Self Extracting Archives typically use the preamble to store the * application code that is required to extract the ZIP file contents. *

* Please note that any ZIP compatible file may actually have a * preamble. However, for performance reasons this parameter should * be set to {@code false}, unless required. * @param postambled {@code true} if and only if a prospective ZIP * compatible file is allowed to have a postamble of arbitrary * length. * If set to {@code false}, the ZIP compatible file may still * have a postamble. However, the postamble must not exceed 64KB * size, including the End Of Central Directory record and thus * the ZIP file comment. This causes the initial ZIP file * compatibility test to fail fast if the file is not compatible * to the ZIP File Format Specification. * For performance reasons, this parameter should be set to * {@code false} unless you need to support Self Extracting * Archives with very large postambles. * @param level The compression level to use when deflating an entry to * a ZIP output stream. * @throws IllegalArgumentException If {@code level} is not in the * range [{@value java.util.zip.Deflater#NO_COMPRESSION}, {@value java.util.zip.Deflater#BEST_COMPRESSION}] * and is not {@value java.util.zip.Deflater#DEFAULT_COMPRESSION}. */ public ZipDriver( final String charset, final Icon openIcon, final Icon closedIcon, final boolean preambled, final boolean postambled, final int level) { super(charset, openIcon, closedIcon); if ( ( level < Deflater.NO_COMPRESSION || level > Deflater.BEST_COMPRESSION) && level != Deflater.DEFAULT_COMPRESSION) throw new IllegalArgumentException(); this.preambled = preambled; this.postambled = postambled; this.level = level; } // // Properties: // /** * Returns the value of the property {@code preambled} which was * provided to the constructor. */ public final boolean getPreambled() { return preambled; } /** * Returns the value of the property {@code postambled} which was * provided to the constructor. */ public final boolean getPostambled() { return postambled; } /** * Returns the value of the property {@code level} which was * provided to the constructor. */ public final int getLevel() { return level; } // // Factory methods: // public ArchiveEntry createArchiveEntry( final Archive archive, final String entryName, final ArchiveEntry template) throws CharConversionException { ensureEncodable(entryName); final ZipEntry entry; if (template != null) { if (template instanceof ZipEntry) { entry = createZipEntry((ZipEntry) template); entry.setName(entryName); } else { entry = createZipEntry(entryName); entry.setTime(template.getTime()); entry.setSize(template.getSize()); } } else { entry = createZipEntry(entryName); } return entry; } protected ZipEntry createZipEntry(ZipEntry template) { return new ZipEntry(template); } protected ZipEntry createZipEntry(String entryName) { return new ZipEntry(entryName); } /** * {@inheritDoc} *

* The implementation in {@link ZipDriver} simply forwards the call to * {@link #createZipInputArchive}. */ public InputArchive createInputArchive(Archive archive, ReadOnlyFile rof) throws IOException { return createZipInputArchive(archive, rof); } protected ZipInputArchive createZipInputArchive( Archive archive, ReadOnlyFile rof) throws IOException { return new ZipInputArchive( rof, getCharset(), getPreambled(), getPostambled()); } /** @deprecated Use {@link #createZipInputArchive} instead. */ protected ZipInputArchive createZip32InputArchive( Archive archive, ReadOnlyFile rof) throws IOException { return createZipInputArchive(archive, rof); } /** * {@inheritDoc} *

* The implementation in {@link ZipDriver} simply forwards the call to * {@link #createZipOutputArchive} and wraps the result in a new * {@link MultiplexedOutputArchive}. */ public OutputArchive createOutputArchive( Archive archive, OutputStream out, InputArchive source) throws IOException { return new MultiplexedOutputArchive(createZipOutputArchive( archive, out, (ZipInputArchive) source)); } protected ZipOutputArchive createZipOutputArchive( Archive archive, OutputStream out, ZipInputArchive source) throws IOException { return new ZipOutputArchive(out, getCharset(), level, source); } /** @deprecated Use {@link #createZipOutputArchive} instead. */ protected ZipOutputArchive createZip32OutputArchive( Archive archive, OutputStream out, ZipInputArchive source) throws IOException { return createZipOutputArchive(archive, out, source); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy