blob: 8a24d24569680069cc0b92a2df8660bf1410595a [file] [log] [blame]
package org.apache.log4j.chainsaw.plugins;
import java.io.File;
import java.io.FilenameFilter;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.ArrayList;
import java.util.List;
import org.apache.log4j.LogManager;
import org.apache.log4j.Logger;
import org.apache.log4j.chainsaw.prefs.SettingsManager;
/**
* A factory class to create a Classloader that can refenerence jars/classes/resources
* within a users plugin directory.
*
* Currently a work in progress to see if this allows external jars required by
* some 3rd party vendors for things like the JMSReceiver.
*
* @author psmith
*
*
*/
public class PluginClassLoaderFactory {
private final ClassLoader pluginClassLoader;
private static final Logger logger = LogManager.getLogger(PluginClassLoaderFactory.class);
private static final PluginClassLoaderFactory instance = new PluginClassLoaderFactory();
/**
* @param urls
*/
private PluginClassLoaderFactory() {
this.pluginClassLoader= PluginClassLoaderFactory.create(new File(SettingsManager.getInstance().getSettingsDirectory() + File.separator + "plugins"));
}
public static PluginClassLoaderFactory getInstance() {
return instance;
}
public ClassLoader getClassLoader() {
return this.pluginClassLoader;
}
/**
* Creates a Classloader that will be able to access any of the classes found
* in any .JAR file contained within the specified directory path, PLUS
* the actual Plugin directory itself, so it acts like the WEB-INF/classes directory,
* any class file in the directory will be accessible
*
* @param pluginDirectory
* @throws IllegalArgumentException if the pluginDirectory is null, does not exist, or cannot be read
* @throws RuntimeException if turning a File into a URL failed, which would be very unexpected
* @return
*/
private static final ClassLoader create(File pluginDirectory) {
if(pluginDirectory == null || !pluginDirectory.exists() || !pluginDirectory.canRead()) {
logger.error("pluginDirectory cannot be null, and it must exist and must be readable, using the normal Classloader");
return PluginClassLoaderFactory.class.getClassLoader();
}
String[] strings = pluginDirectory.list(new FilenameFilter() {
public boolean accept(File dir, String name) {
return name.toUpperCase().endsWith(".JAR");
}});
List list = new ArrayList();
// add the plugin directory as a resource loading path
try {
list.add(pluginDirectory.toURL());
} catch (Exception e) {
throw new RuntimeException(e.getMessage());
}
if (strings !=null) {
for (int i = 0; i < strings.length; i++) {
String name = strings[i];
File file = new File(pluginDirectory, name);
try {
list.add(file.toURL());
logger.info("Added " + file.getAbsolutePath()
+ " to Plugin class loader list");
} catch (Exception e) {
logger.error("Failed to retrieve the URL for file: "
+ file.getAbsolutePath());
throw new RuntimeException(e.getMessage());
}
}
}
ClassLoader parent = PluginClassLoaderFactory.class.getClassLoader();
URL[] urls = (URL[]) list.toArray(new URL[list.size()]);
return new URLClassLoader(urls, parent);
}
}