1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
/*
* Plugins.java
*
* Created on April 18, 2003, 10:57 AM
*/
/*****************************************************************************
* Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistribution of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* - Redistribution in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materails provided with the distribution.
*
* Neither the name Sun Microsystems, Inc. or the names of the contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* This software is provided "AS IS," without a warranty of any kind.
* ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
* ANY IMPLIED WARRANT OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
* NON-INFRINGEMEN, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND
* ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS
* A RESULT OF USING, MODIFYING OR DESTRIBUTING THIS SOFTWARE OR ITS
* DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
* REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
* INCIDENTAL OR PUNITIVE DAMAGES. HOWEVER CAUSED AND REGARDLESS OF THE THEORY
* OF LIABILITY, ARISING OUT OF THE USE OF OUR INABILITY TO USE THIS SOFTWARE,
* EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
*
* You acknowledge that this software is not designed or intended for us in
* the design, construction, operation or maintenance of any nuclear facility
*
*****************************************************************************/
package net.java.games.util.plugins;
/**
*
* @author jeff
*/
import java.io.*;
import java.util.*;
import java.util.jar.*;
/** This is the application interface to the Plugin system.
* One Plugins object should be created for each plug-in
* directory tree root.
*
* On creation the Plugins object will scan its assigned
* directory tree and examine all Jar files in that tree to
* see if they qualify as Plug-ins.
*
* The Plugin classes may then be retrived from the Plugins object by calling
* the appropriate get function (see below).
*
* If a plugin requires a native code library, that library must be present
* in the same directory as the plugin Jar file.
*
*/
public class Plugins {
static final boolean DEBUG = true;
List pluginList= new ArrayList();
/** Creates a new instance of Plugins
* @param pluginRoot The root od the directory tree to scan for Jars
* containing plugins.
*/
public Plugins(File pluginRoot) throws IOException {
scanPlugins(pluginRoot);
}
private void scanPlugins(File dir) throws IOException {
File[] files = dir.listFiles();
if (files == null) {
throw new FileNotFoundException("Plugin directory "+dir.getName()+
" not found.");
}
for(int i=0;i<files.length;i++){
File f = files[i];
if (f.getName().endsWith(".jar")) { // process JAR file
processJar(f);
} else if (f.isDirectory()) {
scanPlugins(f); // recurse
}
}
}
private void processJar(File f) {
try {
//JarFile jf = new JarFile(f);
if (DEBUG) {
System.out.println("Scanning jar: "+f.getName());
}
PluginLoader loader = new PluginLoader(f);
JarFile jf = new JarFile(f);
for (Enumeration enum = jf.entries();enum.hasMoreElements();){
JarEntry je = (JarEntry)enum.nextElement();
if (DEBUG) {
System.out.println("Examining file : "+je.getName());
}
if (je.getName().endsWith("Plugin.class")) {
if (DEBUG) {
System.out.println("Found candidate class: "+je.getName());
}
String cname = je.getName();
cname = cname.substring(0,cname.length()-6);
Class pc = loader.loadClass(cname);
if (loader.attemptPluginDefine(pc)) {
if (DEBUG) {
System.out.println("Adding class to plugins:"+pc.getName());
}
pluginList.add(pc);
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
/** This method returns all the Plugins found in the
* directory passed in at object creation time or any of its
* sub-directories.
* @return
*/
public Class[] get(){
Class[] pluginArray = new Class[pluginList.size()];
return (Class[])pluginList.toArray(pluginArray);
}
/** This method returns a sub-list of all the found Plugin
* classes that implement <B>any</B> of the passed in set of
* Interfaces (either directly or through inheritance.)
* @param interfaces A set of interfaces to match against the interfaces
* implemented by the plugin classes.
* @return The list of plugin classes that implement at least
* one member of the passed in set of interfaces.
*/
public Class[] getImplementsAny(Class[] interfaces){
List matchList = new ArrayList(pluginList.size());
Set interfaceSet = new HashSet();
for(int i=0;i<interfaces.length;i++){
interfaceSet.add(interfaces[i]);
}
for(Iterator i = pluginList.iterator();i.hasNext();){
Class pluginClass = (Class)i.next();
if (classImplementsAny(pluginClass,interfaceSet)){
matchList.add(pluginClass);
}
}
Class[] pluginArray = new Class[matchList.size()];
return (Class[])matchList.toArray(pluginArray);
}
private boolean classImplementsAny(Class testClass,Set interfaces){
if (testClass == null) return false; // end of tree
Class[] implementedInterfaces = testClass.getInterfaces();
for(int i=0;i<implementedInterfaces.length;i++){
if (interfaces.contains(implementedInterfaces[i])) {
return true;
}
}
for(int i=0;i<implementedInterfaces.length;i++){
if (classImplementsAny(implementedInterfaces[i],interfaces)){
return true;
}
}
return classImplementsAny(testClass.getSuperclass(),interfaces);
}
/** This method returns a sub-list of all the found Plugin
* classes that implement <B>all</B> of the passed in set of
* Interfaces (either directly or through inheritance.)
* @param interfaces A set of interfaces to match against the interfaces
* implemented by the plugin classes.
* @return The list of plugin classes that implement at least
* one member of the passed in set of interfaces.
*/
public Class[] getImplementsAll(Class[] interfaces){
List matchList = new ArrayList(pluginList.size());
Set interfaceSet = new HashSet();
for(int i=0;i<interfaces.length;i++){
interfaceSet.add(interfaces[i]);
}
for(Iterator i = pluginList.iterator();i.hasNext();){
Class pluginClass = (Class)i.next();
if (classImplementsAll(pluginClass,interfaceSet)){
matchList.add(pluginClass);
}
}
Class[] pluginArray = new Class[matchList.size()];
return (Class[])matchList.toArray(pluginArray);
}
private boolean classImplementsAll(Class testClass,Set interfaces){
if (testClass == null) return false; // end of tree
Class[] implementedInterfaces = testClass.getInterfaces();
for(int i=0;i<implementedInterfaces.length;i++){
if (interfaces.contains(implementedInterfaces[i])) {
interfaces.remove(implementedInterfaces[i]);
if (interfaces.size() == 0) { // found them all
return true;
}
}
}
for(int i=0;i<implementedInterfaces.length;i++){
if (classImplementsAll(implementedInterfaces[i],interfaces)){
return true;
}
}
return classImplementsAll(testClass.getSuperclass(),interfaces);
}
/** This method returns a sub-list of all the found Plugin
* classes that extend the passed in Class
* (either directly or through inheritance.)
* @param superclass The class to match.
* @return The list of plugin classes that extend the passed
* in class.
*/
public Class[] getExtends(Class superclass){
List matchList = new ArrayList(pluginList.size());
for(Iterator i = pluginList.iterator();i.hasNext();){
Class pluginClass = (Class)i.next();
if (classExtends(pluginClass,superclass)){
matchList.add(pluginClass);
}
}
Class[] pluginArray = new Class[matchList.size()];
return (Class[])matchList.toArray(pluginArray);
}
private boolean classExtends(Class testClass,Class superclass){
if (testClass == null) { // end of hirearchy
return false;
}
if (testClass == superclass) {
return true;
}
return classExtends(testClass.getSuperclass(),superclass);
}
}
|