Java tutorial
// // Copyright (C) 2010-2016 Roger Rene Kommer & Micromata GmbH // // 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.micromata.genome.gdbfs; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.List; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; import org.apache.commons.io.IOUtils; import de.micromata.genome.util.matcher.Matcher; import de.micromata.genome.util.runtime.CallableX; import de.micromata.genome.util.runtime.RuntimeIOException; /** * FileSystem only used to write (not to read) into a zip file. * * The reason why not support read operations is, that implementation can write the zip file as stream. * * For reading file system from zip file, use RamFileSystem and FileSystemUtils.copyFromZip * * @author Roger Rene Kommer (r.kommer@micromata.de) * */ public class ZipWriteFileSystem extends AbstractFileSystem { /** * The output stream. */ private OutputStream outputStream; /** * The zout. */ private ZipOutputStream zout; /** * Instantiates a new zip write file system. * * @param os the os */ public ZipWriteFileSystem(OutputStream os) { this.outputStream = os; zout = new ZipOutputStream(outputStream); } /** * Close. */ public void close() { IOUtils.closeQuietly(zout); IOUtils.closeQuietly(outputStream); } @Override public void writeBinaryFile(String file, InputStream is, boolean overWrite) { ZipEntry ze = new ZipEntry(file); try { // if (source.isFile() == true) { zout.putNextEntry(ze); IOUtils.copy(is, zout); zout.closeEntry(); } catch (IOException ex) { throw new RuntimeIOException(ex); } } /** * Unsupported op. */ protected void unsupportedOp() { StackTraceElement[] els = new Throwable().getStackTrace(); throw new FsException("Unsupported operation: " + els[1].getMethodName()); } @Override public void cleanupTempDirs() { unsupportedOp(); } @Override public FsDirectoryObject createTempDir(String name, long timeToLive) { unsupportedOp(); return null; } @Override public boolean delete(String name) { unsupportedOp(); return false; } @Override public boolean deleteRecursive(String name) { unsupportedOp(); return false; } @Override public void erase() { unsupportedOp(); } @Override public boolean exists(String name) { return false; } @Override public FsObject getFileObject(String name) { unsupportedOp(); return null; } @Override public String getFileSystemName() { unsupportedOp(); return ""; } @Override public long getModificationCounter() { unsupportedOp(); return 0; } @Override public boolean isReadOnly() { return false; } @Override public List<FsObject> listFiles(String name, Matcher<String> matcher, Character searchType, boolean recursive) { unsupportedOp(); return null; } @Override public boolean mkdir(String name) { return true; } @Override public boolean mkdirs(String name) { return true; } @Override public void readBinaryFile(String file, OutputStream os) { unsupportedOp(); } @Override public byte[] readBinaryFile(String file) { unsupportedOp(); return null; } @Override public String readTextFile(String file) { unsupportedOp(); return null; } @Override public boolean rename(String oldName, String newName) { unsupportedOp(); return false; } @Override public long getLastModified(final String name) { return 0; } @Override public <R> R runInTransaction(String lockFile, long timeOut, boolean noModFs, CallableX<R, RuntimeException> callback) { return callback.call(); } @Override public void setReadOnly(boolean readOnly) { unsupportedOp(); } }