com.gemstone.gemfire.internal.ClassPathLoader Maven / Gradle / Ivy
Show all versions of gemfire-core Show documentation
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 com.gemstone.gemfire.internal;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Proxy;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Enumeration;
import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import java.util.concurrent.atomic.AtomicReference;
import org.apache.logging.log4j.Logger;
import com.gemstone.gemfire.internal.logging.LogService;
import com.gemstone.gemfire.internal.util.CollectionUtils;
/**
* The delegating ClassLoader used by GemFire to load classes and other resources. This ClassLoader
* delegates to any ClassLoaders added to the list of custom class loaders, thread context ClassLoader
* s unless they have been excluded}, the ClassLoader which loaded the GemFire classes, and finally the system
* ClassLoader.
*
* The thread context class loaders can be excluded by setting the system property
* gemfire.excludeThreadContextClassLoader:
*
* - -Dgemfire.excludeThreadContextClassLoader=true
*
- System.setProperty("gemfire.excludeThreadContextClassLoader", "true");
*
*
*
* Class loading and resource loading order:
*
* - 1. Any custom loaders in the order they were added
*
- 2. Thread.currentThread().getContextClassLoader() unless excludeTCCL == true
*
- 3. ClassPathLoader.class.getClassLoader()
*
- 4. ClassLoader.getSystemClassLoader() If the attempt to acquire any of the above class loaders results
* in either a {@link java.lang.SecurityException SecurityException} or a null, then that class loader is quietly
* skipped. Duplicate class loaders will be skipped.
*
* @author Kirk Lund
* @since 6.5.1.4
*/
public final class ClassPathLoader {
/*
* This class it not an extension of ClassLoader due to reasons outlined in
* https://svn.gemstone.com/trac/gemfire/ticket/43080
*
* See also http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-5.html
*/
public static final String ENABLE_TRACE_PROPERTY = "gemfire.ClassPathLoader.enableTrace";
public static final String ENABLE_TRACE_DEFAULT_VALUE = "false";
private final boolean ENABLE_TRACE = false;
private static final Logger logger = LogService.getLogger();
public static final String EXCLUDE_TCCL_PROPERTY = "gemfire.excludeThreadContextClassLoader";
public static final boolean EXCLUDE_TCCL_DEFAULT_VALUE = false;
private boolean excludeTCCL;
// This calculates the location of the extlib directory relative to the
// location of the gemfire jar file. If for some reason the ClassPathLoader
// class is found in a directory instead of a JAR file (as when testing),
// then it will be relative to the location of the root of the package and
// class.
public static final File EXT_LIB_DIR = new File((new File(ClassPathLoader.class.getProtectionDomain().getCodeSource()
.getLocation().getPath())).getParent(), "ext");
// This token is placed into the list of class loaders to determine where
// to insert the TCCL when in forName(...), getResource(...), etc.
private static final ClassLoader TCCL_PLACEHOLDER = new ClassLoader() { // This is never used for class loading
};
private static final AtomicReference
latest = new AtomicReference();
private final List classLoaders;
private static final Set defaultLoaders;
static {
defaultLoaders = new HashSet();
try {
ClassLoader classLoader = ClassPathLoader.class.getClassLoader();
if (classLoader != null) {
defaultLoaders.add(classLoader);
}
} catch (SecurityException sex) {
// Nothing to do, just don't add it
}
try {
ClassLoader classLoader = ClassLoader.getSystemClassLoader();
if (classLoader != null) {
defaultLoaders.add(classLoader);
}
} catch (SecurityException sex) {
// Nothing to do, just don't add it
}
setLatestToDefault();
}
/**
* Starting at the files or directories identified by 'files', search for valid
* JAR files and return a list of their URLs. Sub-directories will also be
* searched.
*
* @param files Files or directories to search for valid JAR content.
*
* @return A list of URLs for all JAR files found.
*/
private static List getJarURLsFromFiles(final File... files) {
final List urls = new ArrayList();
Assert.assertTrue(files != null, "file list cannot be null");
for (File file : files) {
if (file.exists()) {
if (file.isDirectory()) {
urls.addAll(getJarURLsFromFiles(file.listFiles()));
} else {
if (!JarClassLoader.hasValidJarContent(file)) {
logger.warn("Invalid JAR content when attempting to create ClassLoader for file: {}", file.getAbsolutePath());
continue;
}
try {
urls.add(file.toURI().toURL());
} catch (MalformedURLException muex) {
logger.warn("Encountered invalid URL when attempting to create ClassLoader for file: {}:{}", file.getAbsolutePath(), muex.getMessage());
continue;
}
}
}
}
return urls;
}
private ClassPathLoader(final List classLoaders, final boolean excludeTCCL) {
Assert.assertTrue(classLoaders != null, "custom loaders must not be null");
for (ClassLoader classLoader : classLoaders) {
Assert.assertTrue(classLoader != null, "null classloaders not allowed");
}
this.classLoaders = new ArrayList(classLoaders);
this.excludeTCCL = excludeTCCL;
}
/**
* Get a copy of the collection of ClassLoaders currently in use.
*
* @return Collection of ClassLoaders currently in use.
*/
public Collection getClassLoaders() {
List classLoadersCopy = new ArrayList(this.classLoaders);
for (int i = 0; i < classLoadersCopy.size(); i++) {
if (classLoadersCopy.get(i).equals(TCCL_PLACEHOLDER)) {
if (excludeTCCL) {
classLoadersCopy.remove(i);
} else {
classLoadersCopy.set(i, Thread.currentThread().getContextClassLoader());
}
break;
}
}
return classLoadersCopy;
}
// This is exposed for testing.
static ClassPathLoader createWithDefaults(final boolean excludeTCCL) {
List classLoaders = new LinkedList();
classLoaders.add(TCCL_PLACEHOLDER);
for (final ClassLoader classLoader : defaultLoaders) {
classLoaders.add(classLoader);
}
// Add user JAR files from the EXT_LIB_DIR directory using a single ClassLoader
try {
if (EXT_LIB_DIR.exists()) {
if (!EXT_LIB_DIR.isDirectory() || !EXT_LIB_DIR.canRead()) {
logger.warn("Cannot read from directory when attempting to load JAR files: {}", EXT_LIB_DIR.getAbsolutePath());
} else {
List extLibJarURLs = getJarURLsFromFiles(EXT_LIB_DIR);
ClassLoader classLoader = new URLClassLoader(extLibJarURLs.toArray(new URL[extLibJarURLs.size()]));
classLoaders.add(classLoader);
}
}
} catch (SecurityException sex) {
// Nothing to do, just don't add it
}
return new ClassPathLoader(classLoaders, excludeTCCL);
}
public static ClassPathLoader setLatestToDefault() {
return setLatestToDefault(Boolean.getBoolean(EXCLUDE_TCCL_PROPERTY));
}
public static ClassPathLoader setLatestToDefault(final boolean excludeTCCL) {
ClassPathLoader classPathLoader = createWithDefaults(excludeTCCL);
// Clean up JarClassLoaders that attached to the previous ClassPathLoader
ClassPathLoader oldClassPathLoader = latest.getAndSet(classPathLoader);
if (oldClassPathLoader != null) {
for (ClassLoader classLoader : oldClassPathLoader.classLoaders) {
if (classLoader instanceof JarClassLoader) {
((JarClassLoader) classLoader).cleanUp();
}
}
}
return classPathLoader;
}
// This is exposed for testing.
ClassPathLoader addOrReplace(final ClassLoader classLoader) {
final boolean isDebugEnabled = logger.isTraceEnabled();
if (isDebugEnabled) {
logger.trace("adding classLoader: {}", classLoader);
}
List classLoadersCopy = new ArrayList(this.classLoaders);
classLoadersCopy.add(0, classLoader);
// Ensure there is only one instance of this class loader in the list
ClassLoader removingClassLoader = null;
int index = classLoadersCopy.lastIndexOf(classLoader);
if (index != 0) {
removingClassLoader = classLoadersCopy.get(index);
if (isDebugEnabled) {
logger.trace("removing previous classLoader: {}", removingClassLoader);
}
classLoadersCopy.remove(index);
}
if (removingClassLoader != null && removingClassLoader instanceof JarClassLoader) {
((JarClassLoader) removingClassLoader).cleanUp();
}
return new ClassPathLoader(classLoadersCopy, this.excludeTCCL);
}
/**
* Add or replace the provided {@link ClassLoader} to the list held by this ClassPathLoader. Then use the resulting
* list to create a new ClassPathLoader and set it as the latest.
*
* @param classLoader
* {@link ClassLoader} to add
*/
public ClassPathLoader addOrReplaceAndSetLatest(final ClassLoader classLoader) {
ClassPathLoader classPathLoader = addOrReplace(classLoader);
latest.set(classPathLoader);
return classPathLoader;
}
// This is exposed for testing.
ClassPathLoader remove(final ClassLoader classLoader) {
final boolean isDebugEnabled = logger.isTraceEnabled();
if (isDebugEnabled) {
logger.trace("removing classLoader: {}", classLoader);
}
List classLoadersCopy = new ArrayList();
classLoadersCopy.addAll(this.classLoaders);
if (!classLoadersCopy.contains(classLoader)) {
if (isDebugEnabled) {
logger.trace("cannot remove classLoader since it doesn't exist: {}", classLoader);
}
return this;
}
classLoadersCopy.remove(classLoader);
if (classLoader instanceof JarClassLoader) {
((JarClassLoader) classLoader).cleanUp();
}
return new ClassPathLoader(classLoadersCopy, this.excludeTCCL);
}
/**
* Remove the provided {@link ClassLoader} from the list held by this ClassPathLoader. Then use the resulting list to
* create a new ClassPathLoader and set it as the latest. Silently ignores requests to remove non-existent
* ClassLoaders.
*
* @param classLoader
* {@link ClassLoader} to remove
*/
public ClassPathLoader removeAndSetLatest(final ClassLoader classLoader) {
ClassPathLoader classPathLoader = remove(classLoader);
latest.set(classPathLoader);
return classPathLoader;
}
public URL getResource(final String name) {
final boolean isDebugEnabled = logger.isTraceEnabled();
if (isDebugEnabled) {
logger.trace("getResource({})", name);
}
URL url = null;
ClassLoader tccl = null;
if (!excludeTCCL) {
tccl = Thread.currentThread().getContextClassLoader();
}
for (ClassLoader classLoader : this.classLoaders) {
if (classLoader == TCCL_PLACEHOLDER) {
try {
if (tccl != null) {
if (isDebugEnabled) {
logger.trace("getResource trying TCCL: {}", tccl);
}
url = tccl.getResource(name);
if (url != null) {
if (isDebugEnabled) {
logger.trace("getResource found by TCCL");
}
return url;
}
} else {
if (isDebugEnabled) {
logger.trace("getResource skipping TCCL because it's null");
}
}
} catch (SecurityException sex) {
// Continue to next ClassLoader
}
} else if (excludeTCCL || !classLoader.equals(tccl)) {
if (isDebugEnabled) {
logger.trace("getResource trying classLoader: {}", classLoader);
}
url = classLoader.getResource(name);
if (url != null) {
if (isDebugEnabled) {
logger.trace("getResource found by classLoader: {}", classLoader);
}
return url;
}
}
}
if (isDebugEnabled) {
logger.trace("getResource returning null");
}
return url;
}
public Class> forName(final String name) throws ClassNotFoundException {
final boolean isDebugEnabled = logger.isTraceEnabled();
if (isDebugEnabled) {
logger.trace("forName({})", name);
}
Class> clazz = null;
ClassLoader tccl = null;
if (!excludeTCCL) {
tccl = Thread.currentThread().getContextClassLoader();
}
for (ClassLoader classLoader : this.classLoaders) {
try {
if (classLoader == TCCL_PLACEHOLDER) {
if (tccl != null) {
if (isDebugEnabled) {
logger.trace("forName trying TCCL: {}", tccl);
}
clazz = Class.forName(name, true, tccl);
if (clazz != null) {
if (isDebugEnabled) {
logger.trace("forName found by TCCL");
}
return clazz;
} else {
if (isDebugEnabled) {
logger.trace("forName skipping TCCL because it's null");
}
}
}
} else if (excludeTCCL || !classLoader.equals(tccl)) {
if (isDebugEnabled) {
logger.trace("forName trying classLoader: {}", classLoader);
}
clazz = Class.forName(name, true, classLoader);
if (clazz != null) {
if (isDebugEnabled) {
logger.trace("forName found by classLoader: {}", classLoader);
}
return clazz;
}
}
} catch (SecurityException sex) {
// Continue to next ClassLoader
} catch (ClassNotFoundException cnfex) {
// Continue to next ClassLoader
}
}
if (isDebugEnabled) {
logger.trace("forName throwing ClassNotFoundException");
}
throw new ClassNotFoundException(name);
}
/**
* See {@link Proxy#getProxyClass(ClassLoader, Class...)}
*/
public Class> getProxyClass(final Class>[] classObjs) {
IllegalArgumentException ex = null;
ClassLoader tccl = null;
if (!excludeTCCL) {
tccl = Thread.currentThread().getContextClassLoader();
}
for (ClassLoader classLoader : this.classLoaders) {
try {
if (classLoader == TCCL_PLACEHOLDER) {
if (tccl != null) {
return Proxy.getProxyClass(tccl, classObjs);
}
} else if (excludeTCCL || !classLoader.equals(tccl)) {
return Proxy.getProxyClass(classLoader, classObjs);
}
} catch (SecurityException sex) {
// Continue to next classloader
} catch (IllegalArgumentException iaex) {
ex = iaex;
// Continue to next classloader
}
}
assert ex != null;
if (ex != null) {
throw ex;
}
return null;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder(getClass().getName());
sb.append("@").append(System.identityHashCode(this)).append("{");
sb.append("isLatest=").append(getLatest() == this);
sb.append(", excludeTCCL=").append(this.excludeTCCL);
sb.append(", classLoaders=[");
for (int i = 0; i < this.classLoaders.size(); i++) {
if (i > 0) {
sb.append(", ");
}
sb.append(this.classLoaders.get(i).toString());
}
sb.append("]");
if (!this.excludeTCCL) {
sb.append(", TCCL=").append(Thread.currentThread().getContextClassLoader());
}
sb.append("]}");
return sb.toString();
}
/**
* Finds the resource with the given name. This method will first search the class loader of the context class for the
* resource. That failing, this method will invoke {@link #getResource(String)} to find the resource.
*
* @param contextClass
* The class whose class loader will first be searched
* @param name
* The resource name
* @return A URL object for reading the resource, or null if the resource could not be found or the
* invoker doesn't have adequate privileges to get the resource.
*/
public URL getResource(final Class> contextClass, final String name) {
if (contextClass != null) {
URL url = contextClass.getResource(name);
if (url != null) {
return url;
}
}
return getResource(name);
}
/**
* Returns an input stream for reading the specified resource.
*
*
* The search order is described in the documentation for {@link #getResource(String)}.
*
*
* @param name
* The resource name
*
* @return An input stream for reading the resource, or null if the resource could not be found
*/
public InputStream getResourceAsStream(final String name) {
URL url = getResource(name);
try {
return url != null ? url.openStream() : null;
} catch (IOException e) {
return null;
}
}
/**
* Returns an input stream for reading the specified resource.
*
* The search order is described in the documentation for {@link #getResource(Class, String)}.
*
* @param contextClass
* The class whose class loader will first be searched
* @param name
* The resource name
* @return An input stream for reading the resource, or null if the resource could not be found
*/
public InputStream getResourceAsStream(final Class> contextClass, final String name) {
if (contextClass != null) {
InputStream is = contextClass.getResourceAsStream(name);
if (is != null) {
return is;
}
}
return getResourceAsStream(name);
}
/**
* Finds all the resources with the given name. This method will first search
* the class loader of the context class for the resource before searching all
* other {@link ClassLoader}s.
*
* @param contextClass
* The class whose class loader will first be searched
*
* @param name
* The resource name
*
* @return An enumeration of {@link java.net.URL URL} objects for
* the resource. If no resources could be found, the enumeration
* will be empty. Resources that the class loader doesn't have
* access to will not be in the enumeration.
*
* @throws IOException
* If I/O errors occur
*
* @see ClassLoader#getResources(String)
*/
public Enumeration getResources(final Class> contextClass, final String name) throws IOException {
final boolean isDebugEnabled = logger.isTraceEnabled();
if (isDebugEnabled) {
logger.trace(new StringBuilder("getResources(").append(name).append(")"));
}
final LinkedHashSet urls = new LinkedHashSet();
try {
if (contextClass != null) {
CollectionUtils.addAll(urls, contextClass.getClassLoader().getResources(name));
}
} catch (IOException ignore) {
// ignore and search others
}
Enumeration resources = null;
ClassLoader tccl = null;
if (!excludeTCCL) {
tccl = Thread.currentThread().getContextClassLoader();
}
IOException ioException = null;
for (ClassLoader classLoader : this.classLoaders) {
ioException = null; // reset to null for next ClassLoader
if (classLoader == TCCL_PLACEHOLDER) {
try {
if (tccl != null) {
if (isDebugEnabled) {
logger.trace("getResources trying TCCL: {}", tccl);
}
resources = tccl.getResources(name);
if (resources != null && resources.hasMoreElements()) {
if (isDebugEnabled) {
logger.trace("getResources found by TCCL");
}
CollectionUtils.addAll(urls, resources);
}
} else {
if (isDebugEnabled) {
logger.trace("getResources skipping TCCL because it's null");
}
}
} catch (SecurityException ignore) {
// Continue to next ClassLoader
} catch (IOException ignore) {
ioException = ignore;
// Continue to next ClassLoader
}
} else if (excludeTCCL || !classLoader.equals(tccl)) {
try {
if (isDebugEnabled) {
logger.trace("getResources trying classLoader: {}", classLoader);
}
resources = classLoader.getResources(name);
if (resources != null && resources.hasMoreElements()) {
if (logger.isTraceEnabled()) {
logger.trace(new StringBuilder("getResources found by classLoader: ").append(classLoader));
}
CollectionUtils.addAll(urls, resources);
}
} catch (IOException ignore) {
ioException = ignore;
// Continue to next ClassLoader
}
}
}
if (ioException != null) {
if (isDebugEnabled) {
logger.trace("getResources throwing IOException");
}
throw ioException;
}
if (isDebugEnabled) {
logger.trace("getResources returning empty enumeration");
}
return Collections.enumeration(urls);
}
/**
* Finds all the resources with the given name.
*
* @param name
* The resource name
*
* @return An enumeration of {@link java.net.URL URL} objects for
* the resource. If no resources could be found, the enumeration
* will be empty. Resources that the class loader doesn't have
* access to will not be in the enumeration.
*
* @throws IOException
* If I/O errors occur
*
* @see ClassLoader#getResources(String)
*/
public Enumeration getResources(String name) throws IOException {
return getResources(null, name);
}
/**
* Wrap this {@link ClassPathLoader} with a {@link ClassLoader} facade.
*
* @return {@link ClassLoader} facade.
* @since 8.1
*/
public ClassLoader asClassLoader() {
return new ClassLoader() {
@Override
public Class> loadClass(String name) throws ClassNotFoundException {
return ClassPathLoader.this.forName(name);
}
@Override
protected Class> loadClass(String name, boolean resolve) throws ClassNotFoundException {
return ClassPathLoader.this.forName(name);
}
@Override
public URL getResource(String name) {
return ClassPathLoader.this.getResource(name);
}
@Override
public Enumeration getResources(String name) throws IOException {
return ClassPathLoader.this.getResources(name);
}
@Override
public InputStream getResourceAsStream(String name) {
return ClassPathLoader.this.getResourceAsStream(name);
}
};
}
public static ClassPathLoader getLatest() {
return latest.get();
}
/**
* Helper method equivalent to
* ClassPathLoader.getLatest().asClassLoader();
.
*
* @return {@link ClassLoader} for current {@link ClassPathLoader}.
* @since 8.1
*/
public static final ClassLoader getLatestAsClassLoader() {
return latest.get().asClassLoader();
}
}