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

com.bluenimble.platform.ArchiveUtils Maven / Gradle / Ivy

There is a newer version: 2.50.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 com.bluenimble.platform;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.zip.Deflater;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import java.util.zip.ZipOutputStream;

public class ArchiveUtils {
	
	public interface CompressVisitor {
		boolean onAdd (File file);
	}

	public static void decompress (final InputStream inputStream, final File folder) throws IOException {
		final ZipInputStream zis = new ZipInputStream (new BufferedInputStream (inputStream));
		ZipEntry ze;
		try {
			while (null != (ze = zis.getNextEntry ())) {
				final File f = new File (folder, ze.getName ());
				if (f.exists ()) {
					f.delete ();
				}

				if (ze.isDirectory ()) {
					f.mkdirs ();
					continue;
				}
				f.getParentFile ().mkdirs ();
				final OutputStream fos = new BufferedOutputStream (new FileOutputStream (f));

				try {
					try {
						final byte [] buf = new byte [8192];
						int bytesRead;
						while (-1 != (bytesRead = zis.read (buf))) {
							fos.write(buf, 0, bytesRead);
						}
					} finally {
						fos.close ();
					}
				} catch (final IOException ioe) {
					f.delete ();
					throw ioe;
				}
			}
		} finally {
			zis.close();
		}
	}
	
	public static void decompress (final File file, final File folder, final boolean deleteZipAfter) throws IOException {
		decompress (new FileInputStream (file), folder);
		if (deleteZipAfter) {
			file.delete ();
		}
	}

	public static void decompress (final String fileName,
			final String folderName, final boolean deleteZipAfter)
			throws IOException {
		decompress(new File(fileName), new File(folderName), deleteZipAfter);
	}

	public static void decompress (final String fileName, final String folderName)
			throws IOException {
		decompress(new File(fileName), new File(folderName), false);
	}

	public static void decompress (final File file, final boolean deleteZipAfter)
			throws IOException {
		decompress(file, file.getCanonicalFile().getParentFile(),
				deleteZipAfter);
	}

	public static void decompress (final String fileName,
			final boolean deleteZipAfter) throws IOException {
		decompress(new File(fileName), deleteZipAfter);
	}

	public static void decompress (final File file) throws IOException {
		decompress(file, file.getCanonicalFile().getParentFile(), false);
	}

	public static void decompress (final String fileName) throws IOException {
		decompress(new File(fileName));
	}
	
	public static void compress (File folder, File zipFile) throws IOException {
		compress (folder, zipFile, true);
	}
	
	public static void compress (File folder, File zipFile, boolean contentOnly) throws IOException {
		compress (folder, zipFile, contentOnly, null);
	}
	
	public static void compress (File folder, File zipFile, boolean contentOnly, CompressVisitor visitor) throws IOException {
		
		ZipOutputStream zip = new ZipOutputStream (new FileOutputStream (zipFile));
						zip.setMethod 	(ZipOutputStream.DEFLATED);
						zip.setLevel 	(Deflater.BEST_COMPRESSION);
		
		if (contentOnly) {
			File [] files = folder.listFiles ();
			if (files != null && files.length > 0) {
				for (File f : files) {
					addEntry (null, f, zip, visitor);
				}
			}
		} else {
			addEntry (null, folder, zip, visitor);
		}
		
		IOUtils.closeQuietly (zip);
		
	}
	
	private static void addEntry (String parent, File file, ZipOutputStream zip, CompressVisitor visitor) throws IOException {
		
		boolean add = visitor != null ? visitor.onAdd (file) : true;
		if (!add) {
			return;
		}
		
		String name = file.getName () +	(file.isDirectory () ? Lang.SLASH : Lang.BLANK);
		if (parent != null) {
			if (parent.endsWith (Lang.SLASH)) {
				parent = parent.substring (0, parent.length () - 1);
			}
			name = parent + Lang.SLASH + name;
		}
		
		if (file.isDirectory ()) {
			File [] files = file.listFiles ();
			if (files == null || files.length == 0) {
				ZipEntry entry = new ZipEntry (name);
				entry.setTime (file.lastModified ());
				zip.putNextEntry (entry);
			} else {
				for (File f : files) {
					addEntry (name, f, zip, visitor);
				}
			}
		} else {
			final ZipEntry entry = new ZipEntry (name);
			entry.setTime (file.lastModified ());
			entry.setSize (file.length ());
			
			zip.putNextEntry (entry);
			
			InputStream in = null;
			try {
				in = new BufferedInputStream (new FileInputStream (file));
				IOUtils.copy (in, zip);
			} finally {
				IOUtils.closeQuietly (in);
			}
			zip.closeEntry ();
		}
		
	}
	
	public static void main (String[] args) throws IOException {
		
		compress (new File ("/bluenimble/workspace/alpha"), new File ("/tmp/myapi.api"), true, new ArchiveUtils.CompressVisitor () {
			
			@Override
			public boolean onAdd (File file) {
				return !file.getName ().startsWith (Lang.DOT);
			}
			
		});
		
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy