📄 standardpluginlifecyclehandler.java
字号:
/*****************************************************************************
* Java Plug-in Framework (JPF)
* Copyright (C) 2004-2006 Dmitry Olshansky
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*****************************************************************************/
package org.java.plugin.standard;
import java.lang.reflect.InvocationTargetException;
import java.security.AccessController;
import java.security.PrivilegedAction;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.java.plugin.Plugin;
import org.java.plugin.PluginLifecycleException;
import org.java.plugin.PluginManager;
import org.java.plugin.registry.PluginDescriptor;
import org.java.plugin.util.ExtendedProperties;
/**
* Standard implementation of plug-in life cycle handler.
* <p>
* <b>Configuration parameters</b>
* </p>
* <p>
* This life cycle handler implementation supports following configuration
* parameters:
* <dl>
* <dt>probeParentLoaderLast</dt>
* <dd>If <code>true</code>, plug-in classloader will try loading classes from
* system (boot) classpath <b>after</b> trying to load them from plug-in
* classpath. Otherwise system classpath will be used <b>first</b>. Default
* value is <code>false</code> that corresponds to standard delegation model
* for classloaders hierarchy.</dd>
* </dl>
* </p>
* @version $Id: StandardPluginLifecycleHandler.java,v 1.5 2006/08/26 15:14:08 ddimon Exp $
*/
public class StandardPluginLifecycleHandler extends PluginLifecycleHandler {
private final Log log = LogFactory.getLog(getClass());
private boolean probeParentLoaderLast;
/**
* Creates standard implementation of plug-in class loader.
* @see org.java.plugin.standard.PluginLifecycleHandler#createPluginClassLoader(
* org.java.plugin.registry.PluginDescriptor)
*/
protected org.java.plugin.PluginClassLoader createPluginClassLoader(
final PluginDescriptor descr) {
/*StandardPluginClassLoader result = new StandardPluginClassLoader(
getPluginManager(), descr, getClass().getClassLoader());*/
StandardPluginClassLoader result =
(StandardPluginClassLoader) AccessController.doPrivileged(
new PrivilegedAction() {
public Object run() {
return new StandardPluginClassLoader(getPluginManager(), descr,
StandardPluginLifecycleHandler.this.getClass()
.getClassLoader());
}
});
result.setProbeParentLoaderLast(probeParentLoaderLast);
return result;
}
/**
* Creates instance of plug-in class calling it's default (no-arguments)
* constructor. Class look-up is done with
* {@link PluginManager#getPluginClassLoader(PluginDescriptor) plug-in's class loader}.
* @see org.java.plugin.standard.PluginLifecycleHandler#createPluginInstance(
* org.java.plugin.registry.PluginDescriptor)
*/
protected Plugin createPluginInstance(final PluginDescriptor descr)
throws PluginLifecycleException {
String className = descr.getPluginClassName();
Class pluginClass;
try {
pluginClass =
getPluginManager().getPluginClassLoader(descr).loadClass(
className);
} catch (ClassNotFoundException cnfe) {
throw new PluginLifecycleException(
StandardObjectFactory.PACKAGE_NAME,
"pluginClassNotFound", className, cnfe); //$NON-NLS-1$
}
try {
try {
return (Plugin) pluginClass.newInstance();
} catch (Exception e) {
// ignore before 1.0 release
log.warn("attempt to instantiate Plugin class for plug-in " //$NON-NLS-1$
+ descr.getUniqueId() + " with no-arguments" //$NON-NLS-1$
+ " constructor failed, fall-back to the deprecated" //$NON-NLS-1$
+ " two-arguments constructor", e); //$NON-NLS-1$
return (Plugin) pluginClass.getConstructor(
new Class[] {PluginManager.class,
PluginDescriptor.class}).newInstance(
new Object[] {getPluginManager(),
descr});
}
} catch (InvocationTargetException ite) {
Throwable t = ite.getTargetException();
throw new PluginLifecycleException(
StandardObjectFactory.PACKAGE_NAME,
"pluginClassInstantiationFailed", descr.getId(), //$NON-NLS-1$
(t != null) ? t : ite);
} catch (Exception e) {
throw new PluginLifecycleException(
StandardObjectFactory.PACKAGE_NAME,
"pluginClassInstantiationFailed", descr.getId(), e); //$NON-NLS-1$
}
}
/**
* This method does nothing in this implementation.
* @see org.java.plugin.standard.PluginLifecycleHandler#beforePluginStart(
* org.java.plugin.Plugin)
*/
protected void beforePluginStart(final Plugin plugin) {
// no-op
}
/**
* This method does nothing in this implementation.
* @see org.java.plugin.standard.PluginLifecycleHandler#afterPluginStop(
* org.java.plugin.Plugin)
*/
protected void afterPluginStop(final Plugin plugin) {
// no-op
}
/**
* This method does nothing in this implementation.
* @see org.java.plugin.standard.PluginLifecycleHandler#dispose()
*/
protected void dispose() {
// no-op
}
/**
* @see org.java.plugin.standard.PluginLifecycleHandler#configure(
* ExtendedProperties)
*/
public void configure(ExtendedProperties config) {
probeParentLoaderLast = "true".equalsIgnoreCase( //$NON-NLS-1$
config.getProperty("probeParentLoaderLast", "false")); //$NON-NLS-1$ //$NON-NLS-2$
log.debug("probeParentLoaderLast parameter value is " //$NON-NLS-1$
+ probeParentLoaderLast);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -