org.gradle.internal.classloader.CachingClassLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-tooling-api Show documentation
Show all versions of gradle-tooling-api Show documentation
Gradle Tooling API - the programmatic API to invoke Gradle
The newest version!
/*
* Copyright 2013 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.classloader;
import com.google.common.collect.MapMaker;
import javax.annotation.Nullable;
import java.io.Closeable;
import java.io.IOException;
import java.net.URL;
import java.util.concurrent.ConcurrentMap;
public class CachingClassLoader extends ClassLoader implements ClassLoaderHierarchy, Closeable {
private static final Object MISSING = new Object();
private final ConcurrentMap loadedClasses = new MapMaker().weakValues().makeMap();
private final ConcurrentMap resources = new MapMaker().makeMap();
private final ClassLoader parent;
static {
try {
ClassLoader.registerAsParallelCapable();
} catch (NoSuchMethodError ignore) {
// Not supported on Java 6
}
}
public CachingClassLoader(ClassLoader parent) {
super(parent);
this.parent = parent;
}
@Override
protected Class> loadClass(String name, boolean resolve) throws ClassNotFoundException {
Object cachedValue = loadedClasses.get(name);
if (cachedValue instanceof Class) {
return (Class>) cachedValue;
} else if (cachedValue == MISSING) {
throw new ClassNotFoundException(name);
}
Class> result;
try {
result = super.loadClass(name, resolve);
} catch (ClassNotFoundException e) {
loadedClasses.putIfAbsent(name, MISSING);
throw e;
}
loadedClasses.putIfAbsent(name, result);
return result;
}
@Nullable
@Override
public URL getResource(String name) {
Object cachedValue = resources.get(name);
if (cachedValue == MISSING) {
return null;
}
if (cachedValue != null) {
return (URL) cachedValue;
}
URL result = super.getResource(name);
resources.putIfAbsent(name, result != null ? result : MISSING);
return result;
}
@Override
public void visit(ClassLoaderVisitor visitor) {
visitor.visitSpec(new Spec());
visitor.visitParent(getParent());
}
@Override
public void close() throws IOException {
loadedClasses.clear();
resources.clear();
}
@Override
public String toString() {
return CachingClassLoader.class.getSimpleName() + "(" + getParent() + ")";
}
public static class Spec extends ClassLoaderSpec {
@Override
public boolean equals(Object obj) {
return obj != null && obj.getClass().equals(Spec.class);
}
@Override
public int hashCode() {
return getClass().getName().hashCode();
}
}
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof CachingClassLoader)) {
return false;
}
CachingClassLoader that = (CachingClassLoader) o;
return parent.equals(that.parent);
}
public int hashCode() {
return parent.hashCode();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy