org.gradle.internal.classpath.DefaultCachedClasspathTransformer 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 2016 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.internal.classpath;
import org.gradle.api.Transformer;
import org.gradle.cache.CacheRepository;
import org.gradle.cache.PersistentCache;
import org.gradle.internal.UncheckedException;
import org.gradle.internal.file.FileAccessTimeJournal;
import org.gradle.internal.file.JarCache;
import org.gradle.internal.resource.local.FileAccessTracker;
import org.gradle.internal.vfs.AdditiveCacheLocations;
import org.gradle.util.CollectionUtils;
import java.io.Closeable;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.Collection;
public class DefaultCachedClasspathTransformer implements CachedClasspathTransformer, Closeable {
private final PersistentCache cache;
private final Transformer jarFileTransformer;
public DefaultCachedClasspathTransformer(
CacheRepository cacheRepository,
ClasspathTransformerCacheFactory classpathTransformerCacheFactory,
FileAccessTimeJournal fileAccessTimeJournal,
JarCache jarCache,
AdditiveCacheLocations additiveCacheLocations
) {
this.cache = classpathTransformerCacheFactory.createCache(cacheRepository, fileAccessTimeJournal);
FileAccessTracker fileAccessTracker = classpathTransformerCacheFactory.createFileAccessTracker(fileAccessTimeJournal);
this.jarFileTransformer = new FileAccessTrackingJarFileTransformer(new CachedJarFileTransformer(jarCache, additiveCacheLocations), fileAccessTracker);
}
@Override
public ClassPath transform(ClassPath classPath) {
return DefaultClassPath.of(CollectionUtils.collect(classPath.getAsFiles(), jarFileTransformer));
}
@Override
public Collection transform(Collection urls) {
return CollectionUtils.collect(urls, url -> {
if (url.getProtocol().equals("file")) {
try {
return jarFileTransformer.transform(new File(url.toURI())).toURI().toURL();
} catch (URISyntaxException | MalformedURLException e) {
throw UncheckedException.throwAsUncheckedException(e);
}
} else {
return url;
}
});
}
private class CachedJarFileTransformer implements Transformer {
private final JarCache jarCache;
private final AdditiveCacheLocations additiveCacheLocations;
CachedJarFileTransformer(JarCache jarCache, AdditiveCacheLocations additiveCacheLocations) {
this.jarCache = jarCache;
this.additiveCacheLocations = additiveCacheLocations;
}
@Override
public File transform(final File original) {
if (shouldUseFromCache(original)) {
return cache.useCache(() -> jarCache.getCachedJar(original, cache.getBaseDir()));
}
return original;
}
private boolean shouldUseFromCache(File original) {
if (!original.isFile()) {
return false;
}
String absolutePath = original.getAbsolutePath();
return !additiveCacheLocations.isInsideAdditiveCache(absolutePath);
}
}
private static class FileAccessTrackingJarFileTransformer implements Transformer {
private final Transformer delegate;
private final FileAccessTracker fileAccessTracker;
FileAccessTrackingJarFileTransformer(Transformer delegate, FileAccessTracker fileAccessTracker) {
this.delegate = delegate;
this.fileAccessTracker = fileAccessTracker;
}
@Override
public File transform(File file) {
File result = delegate.transform(file);
fileAccessTracker.markAccessed(result);
return result;
}
}
@Override
public void close() {
cache.close();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy