/* * (C) Copyright 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * 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. * * Contributors: * bstefanescu * * $Id$ */ package org.nuxeo.common.utils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import java.io.File; import java.io.IOException; import java.util.Enumeration; import java.util.Iterator; import java.util.NoSuchElementException; import java.util.zip.ZipEntry; import java.util.zip.ZipFile; /** * An iterator over the entries in a zip file. * <p> * The iterator support filtering using {@link ZipEntryFilter} * * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> */ public class ZipFileIterator implements Iterator<ZipEntry> { private static final Log log = LogFactory.getLog(ZipFileIterator.class); private final ZipFile zip; private final ZipEntryFilter filter; private final Enumeration<? extends ZipEntry> entries; // the current entry private ZipEntry zentry; public ZipFileIterator(ZipFile zip, ZipEntryFilter filter) { this.zip = zip; this.filter = filter; entries = zip.entries(); initNextEntry(); } public ZipFileIterator(File file) throws IOException { this(new ZipFile(file), null); } public ZipFileIterator(File file, ZipEntryFilter filter) throws IOException { this(new ZipFile(file), filter); } public ZipFileIterator(ZipFile zip) { this(zip, null); } public boolean hasNext() { return zentry != null; } public ZipEntry next() { if (zentry == null) { throw new NoSuchElementException("There no more elements to iterate over"); } ZipEntry ze = zentry; // the current entry to return initNextEntry(); return ze; } private void initNextEntry() { // get next entry if (entries.hasMoreElements()) { zentry = entries.nextElement(); } else { zentry = null; return; } // do filtering if needed if (filter != null) { while (!filter.accept(zentry.getName())) { if (entries.hasMoreElements()) { zentry = entries.nextElement(); } else { zentry = null; break; } } } } public void remove() { throw new UnsupportedOperationException("remove is not supported by this iterator"); } public ZipFile getZipFile() { return zip; } public void close() { if (zip != null) { try { zip.close(); } catch (IOException e) { log.error(e); } } } }