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

com.github.junrar.extract.ExtractArchive Maven / Gradle / Ivy

The newest version!
package com.github.junrar.extract;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;

import org.apache.commons.logging.Log;

import com.github.junrar.Archive;
import com.github.junrar.exception.RarException;
import com.github.junrar.rarfile.FileHeader;

/**
 * extract an archive to the given location
 * 
 * @author edmund wagner
 * 
 */
public class ExtractArchive {

	private Log logger;

	public void setLogger(Log logger) {
		this.logger = logger;
	}
	
	public void extractArchive(File archive, File destination) {
		Archive arch = null;
		try {
			arch = new Archive(archive);
		} catch (RarException e) {
			logError(e);
		} catch (IOException e1) {
			logError(e1);
		}
		if (arch != null) {
			if (arch.isEncrypted()) {
				logWarn("archive is encrypted cannot extract");
				return;
			}
			try{
				FileHeader fh = null;
				while (true) {
					fh = arch.nextFileHeader();
					if (fh == null) {
						break;
					}
					String fileNameString = fh.getFileNameString();
					if (fh.isEncrypted()) {
						logWarn("file is encrypted cannot extract: "+ fileNameString);
						continue;
					}
					logInfo("extracting: " + fileNameString);
					try {
						if (fh.isDirectory()) {
							createDirectory(fh, destination);
						} else {
							File f = createFile(fh, destination);
							OutputStream stream = new FileOutputStream(f);
							arch.extractFile(fh, stream);
							stream.close();
						}
					} catch (IOException e) {
						logError(e, "error extracting the file");
					} catch (RarException e) {
						logError(e,"error extraction the file");
					}
				}
			}finally {
				try {
					arch.close();
				} catch (IOException e) {
					logError(e);
				}
			}
		}
	}

	private void logWarn(String warning) {
		if(logger!=null) logger.warn(warning);
	}

	private void logInfo(String info) {
		if(logger!=null) logger.info(info);
	}

	private void logError(Exception e, String errorMessage) {
		if(logger!=null) logger.error(errorMessage, e);
	}

	private void logError(Exception e) {
		if(logger!=null) logger.error(e);
	}

	private File createFile(FileHeader fh, File destination) {
		File f = null;
		String name = null;
		if (fh.isFileHeader() && fh.isUnicode()) {
			name = fh.getFileNameW();
		} else {
			name = fh.getFileNameString();
		}
		f = new File(destination, name);
		if (!f.exists()) {
			try {
				f = makeFile(destination, name);
			} catch (IOException e) {
				logError(e, "error creating the new file: " + f.getName());
			}
		}
		return f;
	}

	private static File makeFile(File destination, String name)
			throws IOException {
		String[] dirs = name.split("\\\\");
		if (dirs == null) {
			return null;
		}
		String path = "";
		int size = dirs.length;
		if (size == 1) {
			return new File(destination, name);
		} else if (size > 1) {
			for (int i = 0; i < dirs.length - 1; i++) {
				path = path + File.separator + dirs[i];
				new File(destination, path).mkdir();
			}
			path = path + File.separator + dirs[dirs.length - 1];
			File f = new File(destination, path);
			f.createNewFile();
			return f;
		} else {
			return null;
		}
	}

	private static void createDirectory(FileHeader fh, File destination) {
		File f = null;
		if (fh.isDirectory() && fh.isUnicode()) {
			f = new File(destination, fh.getFileNameW());
			if (!f.exists()) {
				makeDirectory(destination, fh.getFileNameW());
			}
		} else if (fh.isDirectory() && !fh.isUnicode()) {
			f = new File(destination, fh.getFileNameString());
			if (!f.exists()) {
				makeDirectory(destination, fh.getFileNameString());
			}
		}
	}

	private static void makeDirectory(File destination, String fileName) {
		String[] dirs = fileName.split("\\\\");
		if (dirs == null) {
			return;
		}
		String path = "";
		for (String dir : dirs) {
			path = path + File.separator + dir;
			new File(destination, path).mkdir();
		}

	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy