Coverage Report - org.kuali.rice.kew.plugin.BasePluginLoader
 
Classes in this File Line Coverage Branch Coverage Complexity
BasePluginLoader
0%
0/69
0%
0/16
2.067
 
 1  
 /*
 2  
  * Copyright 2006-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 
 17  
 package org.kuali.rice.kew.plugin;
 18  
 
 19  
 import org.apache.log4j.Logger;
 20  
 import org.kuali.rice.core.api.config.property.Config;
 21  
 import org.kuali.rice.core.api.config.property.ConfigContext;
 22  
 import org.kuali.rice.core.util.ClassLoaderUtils;
 23  
 import org.kuali.rice.core.util.ContextClassLoaderBinder;
 24  
 import org.kuali.rice.core.xml.XmlException;
 25  
 
 26  
 import javax.xml.namespace.QName;
 27  
 import java.io.File;
 28  
 import java.io.FileNotFoundException;
 29  
 import java.io.IOException;
 30  
 import java.net.MalformedURLException;
 31  
 import java.net.URL;
 32  
 
 33  
 
 34  
 /**
 35  
  * Abstract base PluginLoader implementation.
 36  
  * Delegates to template methods to obtain plugin ClassLoader and plugin config file URL,
 37  
  * then load the config under the plugin ClassLoader, and constructs a Plugin object.
 38  
  *
 39  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 40  
  */
 41  
 public abstract class BasePluginLoader implements PluginLoader {
 42  0
     private static final Logger LOG = Logger.getLogger(BasePluginLoader.class);
 43  
 
 44  
     private static final String META_INF_PATH = "META-INF";
 45  
     private static final String PLUGIN_CONFIG_PATH = META_INF_PATH + "/workflow.xml";
 46  
 
 47  
     protected final String simplePluginName;
 48  
     protected String logPrefix;
 49  
 
 50  
     protected final ClassLoader parentClassLoader;
 51  
     protected final Config parentConfig;
 52  
     protected final File sharedPluginDirectory;
 53  0
     protected String pluginConfigPath = PLUGIN_CONFIG_PATH;
 54  
 
 55  0
     public BasePluginLoader(String simplePluginName, File sharedPluginDirectory, ClassLoader parentClassLoader, Config parentConfig) {
 56  0
         this.sharedPluginDirectory = sharedPluginDirectory;
 57  0
         if (parentClassLoader == null) {
 58  0
             parentClassLoader = ClassLoaderUtils.getDefaultClassLoader();
 59  
         }
 60  0
         this.parentClassLoader = parentClassLoader;
 61  0
         this.parentConfig = parentConfig;
 62  0
         this.simplePluginName = simplePluginName;
 63  0
         this.logPrefix = simplePluginName;
 64  0
     }
 65  
 
 66  
     protected String getLogPrefix() {
 67  0
         return logPrefix;
 68  
     }
 69  
     
 70  
     public String getPluginName() {
 71  0
         return simplePluginName;
 72  
     }
 73  
 
 74  
     public void setPluginConfigPath(String pluginConfigPath) {
 75  0
         this.pluginConfigPath = pluginConfigPath;
 76  0
     }
 77  
 
 78  
     protected String getSimplePluginName() {
 79  0
             return simplePluginName;
 80  
     }
 81  
 
 82  
     /**
 83  
      * Template method that subclasses should implement to supply an appropriate
 84  
      * plugin ClassLoader
 85  
      * @return an appropriate PluginClassLoader
 86  
      * @throws IOException if anything goes awry
 87  
      */
 88  
     protected abstract PluginClassLoader createPluginClassLoader() throws IOException;
 89  
     /**
 90  
      * Template method that subclasses should implement to supply an appropriate
 91  
      * URL to the plugin's configuration
 92  
      * @return an appropriate URL to the plugin's configuration
 93  
      * @throws IOException if anything goes awry
 94  
      */
 95  
     protected abstract URL getPluginConfigURL() throws PluginException, IOException;
 96  
 
 97  
     /**
 98  
      * Loads and creates the Plugin.
 99  
      */
 100  
     public Plugin load() throws Exception {
 101  0
         PluginClassLoader classLoader = createPluginClassLoader();
 102  0
         LOG.info("Created plugin ClassLoader: " + classLoader);
 103  0
         ContextClassLoaderBinder.bind(classLoader);
 104  
         try {
 105  0
             return loadWithinContextClassLoader(classLoader);
 106  
         } finally {
 107  0
             ContextClassLoaderBinder.unbind();
 108  
         }
 109  
     }
 110  
 
 111  
     public boolean isRemoved() {
 112  0
             return false;
 113  
     }
 114  
 
 115  
     /**
 116  
      * Executes loading of the plugin within the current context classloader set to the Plugin's classloader.
 117  
      */
 118  
     protected Plugin loadWithinContextClassLoader(PluginClassLoader classLoader) throws PluginException, IOException {
 119  0
             URL url = getPluginConfigURL();
 120  0
         PluginConfig pluginConfig = loadPluginConfig(url);
 121  0
         QName qPluginName = getPluginName(pluginConfig);
 122  0
         classLoader.setConfig(pluginConfig);
 123  0
         ConfigContext.init(classLoader, pluginConfig);
 124  0
         configureExtraClasspath(classLoader, pluginConfig);
 125  0
         this.logPrefix = PluginUtils.getLogPrefix(qPluginName).toString();
 126  0
         LOG.info("Constructing plugin '" + simplePluginName + "' with classloader: " + classLoader);
 127  0
         Plugin plugin = new Plugin(qPluginName, pluginConfig, classLoader);
 128  0
         installResourceLoader(plugin);
 129  0
         installPluginListeners(plugin);
 130  0
         return plugin;
 131  
     }
 132  
 
 133  
     protected void installResourceLoader(Plugin plugin) {
 134  0
             PluginUtils.installResourceLoader(plugin);
 135  0
     }
 136  
 
 137  
     protected void installPluginListeners(Plugin plugin) {
 138  0
             PluginUtils.installPluginListeners(plugin);
 139  0
     }
 140  
 
 141  
     protected void configureExtraClasspath(PluginClassLoader classLoader, PluginConfig config) throws MalformedURLException {
 142  0
                 String extraClassesDirs = config.getProperty(Config.EXTRA_CLASSES_DIR);
 143  0
                 if (!org.apache.commons.lang.StringUtils.isEmpty(extraClassesDirs)) {
 144  0
                         String[] extraClasses = extraClassesDirs.split(",");
 145  0
                         for (int index = 0; index < extraClasses.length; index++) {
 146  0
                                 File extraClassesDir = new File(extraClasses[index]);
 147  0
                                 if (extraClassesDir.exists()) {
 148  0
                                         classLoader.addClassesDirectory(extraClassesDir);
 149  
                                 }
 150  
                         }
 151  
                 }
 152  0
                 String extraLibDirs = config.getProperty(Config.EXTRA_LIB_DIR);
 153  0
                 if (!org.apache.commons.lang.StringUtils.isEmpty(extraLibDirs)) {
 154  0
                         String[] extraLibs = extraLibDirs.split(",");
 155  0
                         for (int index = 0; index < extraLibs.length; index++) {
 156  0
                                 File extraLibDir = new File(extraLibs[index]);
 157  0
                                 if (extraLibDir.exists()) {
 158  0
                                         classLoader.addLibDirectory(extraLibDir);
 159  
                                 }
 160  
                         }
 161  
                 }
 162  0
         }
 163  
 
 164  
 
 165  
     protected QName getPluginName(PluginConfig pluginConfig) {
 166  0
             String serviceNamespace = pluginConfig.getServiceNamespace();
 167  0
             QName qPluginName = null;
 168  0
         if (serviceNamespace == null) {
 169  0
                 qPluginName = new QName(ConfigContext.getCurrentContextConfig().getServiceNamespace(), simplePluginName);
 170  
         } else {
 171  0
                 qPluginName = new QName(serviceNamespace, simplePluginName);
 172  
         }
 173  0
             return qPluginName;
 174  
     }
 175  
 
 176  
     protected PluginConfig loadPluginConfig(URL url) {
 177  0
         PluginConfigParser parser = new PluginConfigParser();
 178  
         try {
 179  0
             PluginConfig pluginConfig  = parser.parse(url, parentConfig);
 180  0
             pluginConfig.parseConfig();
 181  0
             return pluginConfig;
 182  0
         } catch (FileNotFoundException e) {
 183  0
             throw new PluginException(getLogPrefix() + " Could not locate the plugin config file at path " + url, e);
 184  0
         } catch (IOException ioe) {
 185  0
             throw new PluginException(getLogPrefix() + " Could not read the plugin config file", ioe);
 186  0
         } catch (XmlException ixe) {
 187  0
             throw new PluginException(getLogPrefix() + " Could not parse the plugin config file", ixe);
 188  
         }
 189  
     }
 190  
 }