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

de.schlichtherle.io.archive.zip.CheckedReadOnlySfxDriver 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.zip;

import de.schlichtherle.io.archive.Archive;
import de.schlichtherle.io.rof.ReadOnlyFile;
import java.io.IOException;
import javax.swing.Icon;

/**
 * An archive driver for SFX/EXE files which checks the CRC-32 value for all
 * ZIP entries in input archives.
 * The additional CRC-32 computation makes this class slower than its super
 * class.
 * 

* If there is a mismatch of the CRC-32 values for a ZIP entry in an input * archive, the {@link java.io.InputStream#close} method of the corresponding * stream for the archive entry will throw a * {@link de.schlichtherle.util.zip.CRC32Exception}. * This exception is then propagated through the stack up to the corresponding * file operation in the package {@code de.schlichtherle.io} where it is * either allowed to pass on or is catched and processed accordingly. * For example, the {@link de.schlichtherle.io.FileInputStream#close()} * method would allow the {@code CRC32Exception} to pass on to the * client application, whereas the * {@link de.schlichtherle.io.File#catTo(OutputStream)} method would simply * return {@code false}. * Other than this, the archive entry will be processed normally. * So if just the CRC-32 value for the entry in the archive file has been * modified, you can still read its entire contents. *

* Instances of this class are immutable. * * @author Christian Schlichtherle * @version $Id: CheckedReadOnlySfxDriver.java,v 1.4 2010/08/20 13:09:50 christian_schlichtherle Exp $ * @since TrueZIP 6.1 * @see ReadWriteSfxDriver * @see CheckedZipInputArchive */ public class CheckedReadOnlySfxDriver extends ReadOnlySfxDriver { private static final long serialVersionUID = -940108057195872802L; /** * Equivalent to {@link #CheckedReadOnlySfxDriver(String, Icon, Icon, boolean, int) * this(DEFAULT_CHARSET, null, null, false, DEFAULT_LEVEL)}. */ public CheckedReadOnlySfxDriver() { this(DEFAULT_CHARSET, null, null, false, DEFAULT_LEVEL); } /** * Equivalent to {@link #CheckedReadOnlySfxDriver(String, Icon, Icon, boolean, int) * this(charset, null, null, false, DEFAULT_LEVEL)}. */ public CheckedReadOnlySfxDriver(String charset) { this(charset, null, null, false, DEFAULT_LEVEL); } /** * Equivalent to {@link #CheckedReadOnlySfxDriver(String, Icon, Icon, boolean, int) * this(DEFAULT_CHARSET, null, null, false, level)}. */ public CheckedReadOnlySfxDriver(int level) { this(DEFAULT_CHARSET, null, null, false, level); } /** Constructs a new checked read-only SFX/EXE driver. */ public CheckedReadOnlySfxDriver( String charset, Icon openIcon, Icon closedIcon, boolean postambled, final int level) { super(charset, openIcon, closedIcon, postambled, level); } protected ZipInputArchive createZipInputArchive( Archive archive, ReadOnlyFile rof) throws IOException { return new CheckedZipInputArchive( rof, getCharset(), getPreambled(), getPostambled()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy