org.gradle.api.internal.file.archive.ZipFileTree Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2010 the original author or authors.
*
* 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 org.gradle.api.internal.file.archive;
import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipFile;
import org.gradle.api.GradleException;
import org.gradle.api.InvalidUserDataException;
import org.gradle.api.UncheckedIOException;
import org.gradle.api.file.FileVisitDetails;
import org.gradle.api.file.FileVisitor;
import org.gradle.api.file.RelativePath;
import org.gradle.api.internal.file.AbstractFileTreeElement;
import org.gradle.api.internal.file.collections.DirectoryFileTree;
import org.gradle.api.internal.file.collections.DirectoryFileTreeFactory;
import org.gradle.internal.file.Chmod;
import org.gradle.internal.hash.FileHasher;
import org.gradle.internal.nativeintegration.filesystem.FileSystem;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.Map;
import java.util.TreeMap;
import java.util.concurrent.atomic.AtomicBoolean;
public class ZipFileTree extends AbstractArchiveFileTree {
private final File zipFile;
private final File tmpDir;
private final Chmod chmod;
private final DirectoryFileTreeFactory directoryFileTreeFactory;
private final FileHasher fileHasher;
public ZipFileTree(File zipFile, File tmpDir, Chmod chmod, DirectoryFileTreeFactory directoryFileTreeFactory, FileHasher fileHasher) {
this.zipFile = zipFile;
this.tmpDir = tmpDir;
this.chmod = chmod;
this.directoryFileTreeFactory = directoryFileTreeFactory;
this.fileHasher = fileHasher;
}
@Override
public String toString() {
return getDisplayName();
}
@Override
public String getDisplayName() {
return String.format("ZIP '%s'", zipFile);
}
@Override
public DirectoryFileTree getMirror() {
return directoryFileTreeFactory.create(getExpandedDir());
}
@Override
public void visit(FileVisitor visitor) {
if (!zipFile.exists()) {
throw new InvalidUserDataException(String.format("Cannot expand %s as it does not exist.", getDisplayName()));
}
if (!zipFile.isFile()) {
throw new InvalidUserDataException(String.format("Cannot expand %s as it is not a file.", getDisplayName()));
}
AtomicBoolean stopFlag = new AtomicBoolean();
try {
ZipFile zip = new ZipFile(zipFile);
File expandedDir = getExpandedDir();
try {
// The iteration order of zip.getEntries() is based on the hash of the zip entry. This isn't much use
// to us. So, collect the entries in a map and iterate over them in alphabetical order.
Map entriesByName = new TreeMap();
Enumeration entries = zip.getEntries();
while (entries.hasMoreElements()) {
ZipEntry entry = (ZipEntry) entries.nextElement();
entriesByName.put(entry.getName(), entry);
}
Iterator sortedEntries = entriesByName.values().iterator();
while (!stopFlag.get() && sortedEntries.hasNext()) {
ZipEntry entry = sortedEntries.next();
if (entry.isDirectory()) {
visitor.visitDir(new DetailsImpl(zipFile, expandedDir, entry, zip, stopFlag, chmod));
} else {
visitor.visitFile(new DetailsImpl(zipFile, expandedDir, entry, zip, stopFlag, chmod));
}
}
} finally {
zip.close();
}
} catch (Exception e) {
throw new GradleException(String.format("Could not expand %s.", getDisplayName()), e);
}
}
@Override
public File getBackingFile() {
return zipFile;
}
private File getExpandedDir() {
String expandedDirName = zipFile.getName() + "_" + fileHasher.hash(zipFile);
return new File(tmpDir, expandedDirName);
}
private static class DetailsImpl extends AbstractFileTreeElement implements FileVisitDetails {
private final File originalFile;
private final File expandedDir;
private final ZipEntry entry;
private final ZipFile zip;
private final AtomicBoolean stopFlag;
private File file;
public DetailsImpl(File originalFile, File expandedDir, ZipEntry entry, ZipFile zip, AtomicBoolean stopFlag, Chmod chmod) {
super(chmod);
this.originalFile = originalFile;
this.expandedDir = expandedDir;
this.entry = entry;
this.zip = zip;
this.stopFlag = stopFlag;
}
@Override
public String getDisplayName() {
return String.format("zip entry %s!%s", originalFile, entry.getName());
}
@Override
public void stopVisiting() {
stopFlag.set(true);
}
@Override
public File getFile() {
if (file == null) {
file = new File(expandedDir, entry.getName());
if (!file.exists()) {
copyTo(file);
}
}
return file;
}
@Override
public long getLastModified() {
return entry.getTime();
}
@Override
public boolean isDirectory() {
return entry.isDirectory();
}
@Override
public long getSize() {
return entry.getSize();
}
@Override
public InputStream open() {
try {
return zip.getInputStream(entry);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
@Override
public RelativePath getRelativePath() {
return new RelativePath(!entry.isDirectory(), entry.getName().split("/"));
}
@Override
public int getMode() {
int unixMode = entry.getUnixMode() & 0777;
if (unixMode == 0) {
//no mode infos available - fall back to defaults
if (isDirectory()) {
unixMode = FileSystem.DEFAULT_DIR_MODE;
} else {
unixMode = FileSystem.DEFAULT_FILE_MODE;
}
}
return unixMode;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy