blob: 80ec47a77c30baceb4179557478384b2449f87f2 [file] [log] [blame]
/*
JSPWiki - a JSP-based WikiWiki clone.
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.ecyrd.jspwiki.plugin;
import java.io.*;
import java.lang.reflect.Modifier;
import java.text.MessageFormat;
import java.util.*;
import java.util.regex.MatchResult;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
import net.sourceforge.stripes.util.ResolverUtil;
import org.apache.commons.lang.ClassUtils;
import org.apache.ecs.xhtml.*;
import org.apache.jspwiki.api.ModuleData;
import org.apache.jspwiki.api.PluginException;
import com.ecyrd.jspwiki.*;
import com.ecyrd.jspwiki.log.Logger;
import com.ecyrd.jspwiki.log.LoggerFactory;
import com.ecyrd.jspwiki.modules.ModuleManager;
import com.ecyrd.jspwiki.modules.WikiModuleInfo;
import com.ecyrd.jspwiki.parser.PluginContent;
import com.ecyrd.jspwiki.util.ClassUtil;
import com.ecyrd.jspwiki.util.FileUtil;
import com.ecyrd.jspwiki.util.TextUtil;
/**
* Manages plugin classes. There exists a single instance of PluginManager
* per each instance of WikiEngine, that is, each JSPWiki instance.
* <P>
* A plugin is defined to have three parts:
* <OL>
* <li>The plugin class
* <li>The plugin parameters
* <li>The plugin body
* </ol>
*
* For example, in the following line of code:
* <pre>
* [{INSERT com.ecyrd.jspwiki.plugin.FunnyPlugin foo='bar'
* blob='goo'
*
* abcdefghijklmnopqrstuvw
* 01234567890}]
* </pre>
*
* The plugin class is "com.ecyrd.jspwiki.plugin.FunnyPlugin", the
* parameters are "foo" and "blob" (having values "bar" and "goo",
* respectively), and the plugin body is then
* "abcdefghijklmnopqrstuvw\n01234567890". The plugin body is
* accessible via a special parameter called "_body".
* <p>
* If the parameter "debug" is set to "true" for the plugin,
* JSPWiki will output debugging information directly to the page if there
* is an exception.
* <P>
* The class name can be shortened, and marked without the package.
* For example, "FunnyPlugin" would be expanded to
* "com.ecyrd.jspwiki.plugin.FunnyPlugin" automatically. It is also
* possible to define other packages, by setting the
* "jspwiki.plugin.searchPath" property. See the included
* jspwiki.properties file for examples.
* <P>
* Even though the nominal way of writing the plugin is
* <pre>
* [{INSERT pluginclass WHERE param1=value1...}],
* </pre>
* it is possible to shorten this quite a lot, by skipping the
* INSERT, and WHERE words, and dropping the package name. For
* example:
*
* <pre>
* [{INSERT com.ecyrd.jspwiki.plugin.Counter WHERE name='foo'}]
* </pre>
*
* is the same as
* <pre>
* [{Counter name='foo'}]
* </pre>
* <h3>Plugin annotations</h3>
* <p>
* As of JSPWiki 3.0, plugins may be annotated using the ModuleData
* annotation. Please see the javadoc for ModuleData.
*
* <h3>Adding plugins to the automatic search path</h3>
* <p>
* You may add a plugin by defining a deployment file "ini/jspwiki_module.xml"
* with a single modules-element:
* <pre>
* &lt;modules package="com.mycompany.plugins"/&gt;
* </pre>
* This adds the plugin path "com.mycompany.plugins" in the list of
* packages which are searched for WikiPlugin instances.
* <p>
* Another possibility is to use the <tt>jspwiki.plugin.searchPath</tt> -property.
* For example, the equivalent invocation to the previous example:
* <pre>
* jspwiki.plugin.searchPath = com.mycompany.plugins
* </pre>
* However, this needs you to modify the property file by hand for each installation.
* It is a recommended practice to create a deployment file for your plugin JAR.
*
* <h3>Plugin lifecycle</h3>
*
* <p>Plugin can implement multiple interfaces to let JSPWiki know at which stages they should
* be invoked:
* <ul>
* <li>InitializablePlugin: If your plugin implements this interface, the initialize()-method is
* called once for this class
* before any actual execute() methods are called. You should use the initialize() for e.g.
* precalculating things. But notice that this method is really called only once during the
* entire WikiEngine lifetime. The InitializablePlugin is available from 2.5.30 onwards.</li>
* <li>ParserStagePlugin: If you implement this interface, the executeParse() method is called
* when JSPWiki is forming the DOM tree. You will receive an incomplete DOM tree, as well
* as the regular parameters. However, since JSPWiki caches the DOM tree to speed up later
* places, which means that whatever this method returns would be irrelevant. You can do some DOM
* tree manipulation, though. The ParserStagePlugin is available from 2.5.30 onwards.</li>
* <li>WikiPlugin: The regular kind of plugin which is executed at every rendering stage. Each
* new page load is guaranteed to invoke the plugin, unlike with the ParserStagePlugins.</li>
* </ul>
*
* @since 1.6.1
*/
public class PluginManager extends ModuleManager
{
private static final String PLUGIN_INSERT_PATTERN = "\\{?(INSERT)?\\s*([\\w\\._]+)[ \\t]*(WHERE)?[ \\t]*";
private static Logger log = LoggerFactory.getLogger( PluginManager.class );
/**
* This is the default package to try in case the instantiation
* fails.
*/
public static final String DEFAULT_PACKAGE = "com.ecyrd.jspwiki.plugin";
private static final String DEFAULT_FORMS_PACKAGE = "com.ecyrd.jspwiki.forms";
/**
* The name of the body content. Current value is "_body".
*/
public static final String PARAM_BODY = "_body";
/**
* The name of the command line content parameter. The value is "_cmdline".
*/
public static final String PARAM_CMDLINE = "_cmdline";
/**
* The name of the parameter containing the start and end positions in the
* read stream of the plugin text (stored as a two-element int[], start
* and end resp.).
*/
public static final String PARAM_BOUNDS = "_bounds";
/**
* A special name to be used in case you want to see debug output
*/
public static final String PARAM_DEBUG = "debug";
private List<String> m_searchPath;
private Pattern m_pluginPattern;
private boolean m_pluginsEnabled = true;
/**
* Keeps a list of all known plugin classes.
*/
private Map<String, WikiPluginInfo> m_pluginClassMap = new HashMap<String, WikiPluginInfo>();
/**
* Create a new PluginManager.
*
* @param engine WikiEngine which owns this manager.
* @param props Contents of a "jspwiki.properties" file.
*/
public PluginManager( WikiEngine engine, Properties props )
{
super(engine);
m_searchPath = buildPluginSearchPath( props );
registerAllPlugins();
//
// The default packages are always added.
//
m_searchPath.add( DEFAULT_PACKAGE );
m_searchPath.add( DEFAULT_FORMS_PACKAGE );
try
{
m_pluginPattern = Pattern.compile( PLUGIN_INSERT_PATTERN );
}
catch( PatternSyntaxException e )
{
log.error("Internal error: someone messed with pluginmanager patterns.", e );
throw new InternalWikiException( "PluginManager patterns are broken" );
}
}
/**
* Enables or disables plugin execution.
*
* @param enabled True, if plugins should be globally enabled; false, if disabled.
*/
public void enablePlugins( boolean enabled )
{
m_pluginsEnabled = enabled;
}
/**
* Returns plugin execution status. If false, plugins are not
* executed when they are encountered on a WikiPage, and an
* empty string is returned in their place.
*
* @return True, if plugins are enabled; false otherwise.
*/
public boolean pluginsEnabled()
{
return m_pluginsEnabled;
}
/**
* Returns true if the link is really command to insert
* a plugin.
* <P>
* Currently we just check if the link starts with "{INSERT",
* or just plain "{" but not "{$".
*
* @param link Link text, i.e. the contents of text between [].
* @return True, if this link seems to be a command to insert a plugin here.
*/
public static boolean isPluginLink( String link )
{
return link.startsWith("{INSERT") ||
(link.startsWith("{") && !link.startsWith("{$"));
}
/**
* Attempts to locate a plugin class from the class path
* set in the property file.
*
* @param classname Either a fully fledged class name, or just
* the name of the file (that is,
* "com.ecyrd.jspwiki.plugin.Counter" or just plain "Counter").
*
* @return A found class.
*
* @throws ClassNotFoundException if no such class exists.
*/
@SuppressWarnings("unchecked")
private Class<? extends WikiPlugin> findPluginClass( String classname )
throws ClassNotFoundException
{
return ClassUtil.findClass( m_searchPath, classname );
}
/**
* Outputs a HTML-formatted version of a stack trace.
*/
private String stackTrace( Map params, Throwable t )
{
div d = new div();
d.setClass("debug");
d.addElement("Plugin execution failed, stack trace follows:");
StringWriter out = new StringWriter();
t.printStackTrace( new PrintWriter(out) );
d.addElement( new pre( out.toString() ) );
d.addElement( new b( "Parameters to the plugin" ) );
ul list = new ul();
for( Iterator i = params.entrySet().iterator(); i.hasNext(); )
{
Map.Entry e = (Map.Entry) i.next();
String key = (String)e.getKey();
list.addElement(new li( key+"'='"+e.getValue() ) );
}
d.addElement( list );
return d.toString();
}
/**
* Executes a plugin class in the given context.
* <P>Used to be private, but is public since 1.9.21.
*
* @param context The current WikiContext.
* @param classname The name of the class. Can also be a
* shortened version without the package name, since the class name is searched from the
* package search path.
*
* @param params A parsed map of key-value pairs.
*
* @return Whatever the plugin returns.
*
* @throws PluginException If the plugin execution failed for
* some reason.
*
* @since 2.0
*/
public String execute( WikiContext context,
String classname,
Map params )
throws PluginException
{
if( !m_pluginsEnabled )
return "";
ResourceBundle rb = context.getBundle(WikiPlugin.CORE_PLUGINS_RESOURCEBUNDLE);
Object[] args = { classname };
try
{
WikiPlugin plugin;
boolean debug = TextUtil.isPositive( (String) params.get( PARAM_DEBUG ) );
WikiPluginInfo pluginInfo = m_pluginClassMap.get(classname);
if(pluginInfo == null)
{
pluginInfo = WikiPluginInfo.newInstance(findPluginClass( classname ));
registerPlugin(pluginInfo);
}
if( !checkCompatibility(pluginInfo) )
{
String msg = "Plugin '"+pluginInfo.getName()+"' not compatible with this version of JSPWiki";
log.info(msg);
return msg;
}
//
// Create...
//
try
{
plugin = pluginInfo.newPluginInstance();
}
catch( InstantiationException e )
{
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.cannotinstantiate" ), args ), e );
}
catch( IllegalAccessException e )
{
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.notallowed" ), args ), e );
}
catch( Exception e )
{
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.instantationfailed" ), args), e );
}
//
// ...and launch.
//
try
{
return plugin.execute( context, params );
}
catch( PluginException e )
{
if( debug )
{
return stackTrace( params, e );
}
// Just pass this exception onward.
throw (PluginException) e.fillInStackTrace();
}
catch( Throwable t )
{
// But all others get captured here.
log.info( "Plugin failed while executing:", t );
if( debug )
{
return stackTrace( params, t );
}
throw new PluginException( rb.getString( "plugin.error.failed" ), t );
}
}
catch( ClassNotFoundException e )
{
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.couldnotfind" ), args ), e );
}
catch( ClassCastException e )
{
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.notawikiplugin" ), args ), e );
}
}
/**
* Parses plugin arguments. Handles quotes and all other kewl stuff.
*
* <h3>Special parameters</h3>
* The plugin body is put into a special parameter defined by {@link #PARAM_BODY};
* the plugin's command line into a parameter defined by {@link #PARAM_CMDLINE};
* and the bounds of the plugin within the wiki page text by a parameter defined
* by {@link #PARAM_BOUNDS}, whose value is stored as a two-element int[] array,
* i.e., <tt>[start,end]</tt>.
*
* @param argstring The argument string to the plugin. This is
* typically a list of key-value pairs, using "'" to escape
* spaces in strings, followed by an empty line and then the
* plugin body. In case the parameter is null, will return an
* empty parameter list.
*
* @return A parsed list of parameters.
*
* @throws IOException If the parsing fails.
*/
public Map parseArgs( String argstring )
throws IOException
{
HashMap<String, Object> arglist = new HashMap<String, Object>();
//
// Protection against funny users.
//
if( argstring == null ) return arglist;
arglist.put( PARAM_CMDLINE, argstring );
StringReader in = new StringReader(argstring);
StreamTokenizer tok = new StreamTokenizer(in);
int type;
String param = null;
String value = null;
tok.eolIsSignificant( true );
boolean potentialEmptyLine = false;
boolean quit = false;
while( !quit )
{
String s;
type = tok.nextToken();
switch( type )
{
case StreamTokenizer.TT_EOF:
quit = true;
s = null;
break;
case StreamTokenizer.TT_WORD:
s = tok.sval;
potentialEmptyLine = false;
break;
case StreamTokenizer.TT_EOL:
quit = potentialEmptyLine;
potentialEmptyLine = true;
s = null;
break;
case StreamTokenizer.TT_NUMBER:
s = Integer.toString( (int) tok.nval );
potentialEmptyLine = false;
break;
case '\'':
s = tok.sval;
break;
default:
s = null;
}
//
// Assume that alternate words on the line are
// parameter and value, respectively.
//
if( s != null )
{
if( param == null )
{
param = s;
}
else
{
value = s;
arglist.put( param, value );
// log.debug("ARG: "+param+"="+value);
param = null;
}
}
}
//
// Now, we'll check the body.
//
if( potentialEmptyLine )
{
StringWriter out = new StringWriter();
FileUtil.copyContents( in, out );
String bodyContent = out.toString();
if( bodyContent != null )
{
arglist.put( PARAM_BODY, bodyContent );
}
}
return arglist;
}
/**
* Parses a plugin. Plugin commands are of the form:
* [{INSERT myplugin WHERE param1=value1, param2=value2}]
* myplugin may either be a class name or a plugin alias.
* <P>
* This is the main entry point that is used.
*
* @param context The current WikiContext.
* @param commandline The full command line, including plugin
* name, parameters and body.
*
* @return HTML as returned by the plugin, or possibly an error
* message.
*
* @throws PluginException From the plugin itself, it propagates, waah!
*/
public String execute( WikiContext context,
String commandline )
throws PluginException
{
if( !m_pluginsEnabled )
return "";
ResourceBundle rb = context.getBundle(WikiPlugin.CORE_PLUGINS_RESOURCEBUNDLE);
Object[] obArgs = { commandline };
Matcher matcher = m_pluginPattern.matcher( commandline );
try
{
if( matcher.find( ) )
{
MatchResult res = matcher.toMatchResult();
String plugin = res.group( 2 );
String args = commandline.substring( res.end(), commandline.length()
- (commandline.charAt( commandline.length() - 1 ) == '}' ? 1 : 0) );
Map arglist = parseArgs( args );
return execute( context, plugin, arglist );
}
}
catch( NoSuchElementException e )
{
String msg = "Missing parameter in plugin definition: "+commandline;
log.warn( msg, e );
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.missingparameter" ), obArgs ) );
}
catch( IOException e )
{
String msg = "Zyrf. Problems with parsing arguments: "+commandline;
log.warn( msg, e );
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.parsingarguments" ), obArgs ) );
}
// FIXME: We could either return an empty string "", or
// the original line. If we want unsuccessful requests
// to be invisible, then we should return an empty string.
return commandline;
}
/**
* Parses a plugin invocation and returns a DOM element.
*
* @param context The WikiContext
* @param commandline The line to parse
* @param pos The position in the stream parsing.
* @return A DOM element
* @throws PluginException If plugin invocation is faulty
*/
@SuppressWarnings("unchecked")
public PluginContent parsePluginLine( WikiContext context, String commandline, int pos )
throws PluginException
{
Matcher matcher = m_pluginPattern.matcher( commandline );
try
{
if( matcher.find() )
{
MatchResult res = matcher.toMatchResult();
String plugin = res.group(2);
String args = commandline.substring( res.end( 0 ),
commandline.length()
- (commandline.charAt( commandline.length() - 1 ) == '}' ? 1 : 0) );
Map<String, Object> arglist = parseArgs( args );
// set wikitext bounds of plugin as '_bounds' parameter, e.g., [345,396]
if ( pos != -1 )
{
int end = pos + commandline.length() + 2;
int[] bounds = new int[] { pos, end };
arglist.put( PARAM_BOUNDS, bounds );
}
PluginContent result = new PluginContent( plugin, arglist );
return result;
}
}
catch( ClassCastException e )
{
log.error( "Invalid type offered in parsing plugin arguments.", e );
throw new InternalWikiException("Oops, someone offered !String!");
}
catch( NoSuchElementException e )
{
String msg = "Missing parameter in plugin definition: "+commandline;
log.warn( msg, e );
throw new PluginException( msg );
}
catch( IOException e )
{
String msg = "Zyrf. Problems with parsing arguments: "+commandline;
log.warn( msg, e );
throw new PluginException( msg );
}
return null;
}
/**
* Register a plugin.
*/
private void registerPlugin(WikiPluginInfo pluginClass)
{
String name;
// Registrar the plugin with the className without the package-part
name = pluginClass.getName();
if(name != null)
{
log.debug("Registering plugin [name]: %s", name);
m_pluginClassMap.put(name, pluginClass);
}
// Register the plugin with a short convenient name.
String[] aliases = pluginClass.getAliases();
if(aliases != null)
{
for( String a : aliases )
{
log.debug("Registering plugin [shortName]: %s", a);
m_pluginClassMap.put(a, pluginClass);
}
}
// Registrar the plugin with the className with the package-part
name = pluginClass.getClassName();
if(name != null)
{
log.debug("Registering plugin [className]: %s", name);
m_pluginClassMap.put(name, pluginClass);
}
pluginClass.initializePlugin( m_engine );
}
private void registerAllPlugins()
{
log.info( "Registering plugins" );
//
// We locate every single class which implements the "WikiPlugin" interface.
//
ResolverUtil<WikiPlugin> resolver = new ResolverUtil<WikiPlugin>();
String[] paths = m_searchPath.toArray( new String[0] );
resolver.findImplementations( WikiPlugin.class, paths );
Set<Class<? extends WikiPlugin>> resultSet = resolver.getClasses();
log.debug( "Found %d plugins", resultSet.size() );
for( Class<? extends WikiPlugin> clazz : resultSet )
{
if( !clazz.isInterface() & !Modifier.isAbstract( clazz.getModifiers() ) )
{
WikiPluginInfo pluginInfo = WikiPluginInfo.newInstance( clazz );
if( pluginInfo != null )
{
registerPlugin( pluginInfo );
}
}
else
{
log.debug( "Plugin class " + clazz.getName() +" not registered, it is either an interface or it is abstract");
}
}
}
/**
* Contains information about a bunch of plugins.
*
* @author Kees Kuip
*/
public static final class WikiPluginInfo
extends WikiModuleInfo
{
String[] m_aliases;
Class<? extends WikiPlugin> m_clazz;
boolean m_initialized = false;
/**
* Create a new WikiPluginInfo based on the Class information.
*
* @param clazz The class to check
* @return A WikiPluginInfo instance
*/
protected static WikiPluginInfo newInstance( Class<? extends WikiPlugin> clazz )
{
WikiPluginInfo info = new WikiPluginInfo( clazz );
return info;
}
private WikiPluginInfo( Class<? extends WikiPlugin> clazz )
{
super(clazz.getName());
setClassName( clazz.getName() );
initializeFromClass( clazz );
m_clazz = clazz;
ModuleData md = clazz.getAnnotation( ModuleData.class );
if( md != null )
{
m_aliases = md.aliases();
}
}
private void setClassName( String fullClassName )
{
m_name = ClassUtils.getShortClassName( fullClassName );
}
/**
* Returns the full class name of this object.
* @return The full class name of the object.
*/
public String getClassName()
{
return m_clazz.getCanonicalName();
}
/**
* Returns the alias name for this object.
* @return An alias name for the plugin.
*/
public String[] getAliases()
{
return m_aliases;
}
/**
* Creates a new plugin instance.
*
* @return A new plugin.
* @throws ClassNotFoundException If the class declared was not found.
* @throws InstantiationException If the class cannot be instantiated-
* @throws IllegalAccessException If the class cannot be accessed.
*/
public WikiPlugin newPluginInstance()
throws ClassNotFoundException,
InstantiationException,
IllegalAccessException
{
return m_clazz.newInstance();
}
/**
* Returns a text for IncludeResources.
*
* @param type Either "script" or "stylesheet"
* @return Text, or an empty string, if there is nothing to be included.
*/
public String getIncludeText(String type)
{
try
{
if( type.equals("script") )
{
return getScriptText();
}
else if( type.equals("stylesheet") )
{
return getStylesheetText();
}
}
catch( Exception ex )
{
// We want to fail gracefully here
return ex.getMessage();
}
return null;
}
private String getScriptText()
throws IOException
{
if( m_scriptText != null )
{
return m_scriptText;
}
if( m_scriptLocation == null )
{
return "";
}
try
{
m_scriptText = getTextResource(m_scriptLocation[0]);
}
catch( IOException ex )
{
// Only throw this exception once!
m_scriptText = "";
throw ex;
}
return m_scriptText;
}
private String getStylesheetText()
throws IOException
{
if( m_stylesheetText != null )
{
return m_stylesheetText;
}
if( m_stylesheetLocation == null )
{
return "";
}
try
{
m_stylesheetText = getTextResource(m_stylesheetLocation[0]);
}
catch( IOException ex )
{
// Only throw this exception once!
m_stylesheetText = "";
throw ex;
}
return m_stylesheetText;
}
/**
* Initializes a plugin, if it has not yet been initialized.
*
* @param engine The WikiEngine
*/
protected void initializePlugin( WikiEngine engine )
{
if( !m_initialized )
{
// This makes sure we only try once per class, even if init fails.
m_initialized = true;
try
{
WikiPlugin p = newPluginInstance();
if( p instanceof InitializablePlugin )
{
((InitializablePlugin)p).initialize( engine );
}
}
catch( Exception e )
{
log.info( "Cannot initialize plugin '%s'", e, m_clazz.getCanonicalName() );
}
}
}
/**
* Returns a string suitable for debugging. Don't assume that the format
* would stay the same.
*
* @return Something human-readable
*/
public String toString()
{
return "Plugin :[name=" + m_name + "][className=" + m_clazz.getCanonicalName() + "]";
}
} // WikiPluginClass
/**
* {@inheritDoc}
*/
public Collection<WikiPluginInfo> modules()
{
TreeSet<WikiPluginInfo> ls = new TreeSet<WikiPluginInfo>();
for( Iterator i = m_pluginClassMap.values().iterator(); i.hasNext(); )
{
WikiPluginInfo wmi = (WikiPluginInfo) i.next();
if( !ls.contains(wmi) ) ls.add(wmi);
}
return ls;
}
/**
* Executes parse stage, unless plugins are disabled.
*
* @param content The content item.
* @param context A WikiContext
* @throws PluginException If something goes wrong.
*/
// FIXME: This method needs to be reintegrated with execute() above, since they
// share plenty of code.
public void executeParse(PluginContent content, WikiContext context)
throws PluginException
{
if( !m_pluginsEnabled )
return;
ResourceBundle rb = context.getBundle(WikiPlugin.CORE_PLUGINS_RESOURCEBUNDLE);
Object[] args = { content.getPluginName() };
Map params = content.getParameters();
try
{
WikiPlugin plugin;
WikiPluginInfo pluginInfo = m_pluginClassMap.get( content.getPluginName() );
if(pluginInfo == null)
{
pluginInfo = WikiPluginInfo.newInstance(findPluginClass( content.getPluginName() ));
registerPlugin(pluginInfo);
}
if( !checkCompatibility(pluginInfo) )
{
String msg = "Plugin '"+pluginInfo.getName()+"' not compatible with this version of JSPWiki";
log.info(msg);
return;
}
plugin = pluginInfo.newPluginInstance();
if( plugin instanceof ParserStagePlugin )
{
((ParserStagePlugin)plugin).executeParser( content, context, params );
}
}
catch( InstantiationException e )
{
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.cannotinstantiate" ), args), e );
}
catch( IllegalAccessException e )
{
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.notallowed" ), args), e );
}
catch( ClassNotFoundException e )
{
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.couldnotfind" ), args) );
}
catch( ClassCastException e )
{
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.notawikiplugin" ), args), e );
}
catch( Exception e )
{
throw new PluginException( MessageFormat.format( rb.getString( "plugin.error.instantationfailed" ), args), e );
}
}
}