Package org.datanucleus.plugin
Class NonManagedPluginRegistry
- java.lang.Object
-
- org.datanucleus.plugin.NonManagedPluginRegistry
-
- All Implemented Interfaces:
PluginRegistry
public class NonManagedPluginRegistry extends Object implements PluginRegistry
Manages the registry of Extensions and Extension Points outside any OSGI container. This implementation cannot handle multiple versions of the same plugin, so it either raises an exception or logs the issue as a warning. This is different to that mandated by the OSGi specification 3.0 $3.5.2.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classNonManagedPluginRegistry.ExtensionSorterSorter for extensions that puts DataNucleus extensions first, then any vendor extension.
-
Constructor Summary
Constructors Constructor Description NonManagedPluginRegistry(ClassLoaderResolver clr, String bundleCheckType, boolean allowUserBundles)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectcreateExecutableExtension(ConfigurationElement confElm, String name, Class[] argTypes, Object[] args)Loads a class (do not initialize) from an attribute ofConfigurationElementBundle[]getBundles()Accessor for all registered bundlesExtensionPointgetExtensionPoint(String id)Acessor for the ExtensionPointExtensionPoint[]getExtensionPoints()Acessor for the currently registed ExtensionPointsClassloadClass(String pluginId, String className)Loads a class (do not initialize)protected BundleregisterBundle(URL manifest)Register the plugin bundle.protected BundleregisterBundle(Manifest mf, URL manifest)Register the plugin bundle.voidregisterExtensionPoints()Look for Bundles/Plugins and register them.protected voidregisterExtensionPointsForPluginInternal(List<ExtensionPoint> extPoints, boolean updateExtensionPointsArray)Register extension-points for the specified plugin.voidregisterExtensions()Look for Bundles/Plugins and register them.voidregisterExtensionsForPlugin(URL pluginURL, Bundle bundle)Register extension and extension points for the specified plugin.voidresolveConstraints()Resolve constraints declared in bundle manifest.mf files.URLresolveURLAsFileURL(URL url)Converts a URL that uses a user-defined protocol into a URL that uses the file protocol.
-
-
-
Constructor Detail
-
NonManagedPluginRegistry
public NonManagedPluginRegistry(ClassLoaderResolver clr, String bundleCheckType, boolean allowUserBundles)
Constructor.- Parameters:
clr- the ClassLoaderResolverbundleCheckType- Type of check on bundles (EXCEPTION, LOG, NONE)allowUserBundles- Whether to only load DataNucleus bundles (org.datanucleus).
-
-
Method Detail
-
getExtensionPoint
public ExtensionPoint getExtensionPoint(String id)
Description copied from interface:PluginRegistryAcessor for the ExtensionPoint- Specified by:
getExtensionPointin interfacePluginRegistry- Parameters:
id- the unique id of the extension point- Returns:
- null if the ExtensionPoint is not registered
-
getExtensionPoints
public ExtensionPoint[] getExtensionPoints()
Description copied from interface:PluginRegistryAcessor for the currently registed ExtensionPoints- Specified by:
getExtensionPointsin interfacePluginRegistry- Returns:
- array of ExtensionPoints
-
registerExtensionPoints
public void registerExtensionPoints()
Description copied from interface:PluginRegistryLook for Bundles/Plugins and register them. Register also ExtensionPoints and Extensions declared in /plugin.xml files- Specified by:
registerExtensionPointsin interfacePluginRegistry
-
registerExtensions
public void registerExtensions()
Description copied from interface:PluginRegistryLook for Bundles/Plugins and register them. Register also ExtensionPoints and Extensions declared in /plugin.xml files- Specified by:
registerExtensionsin interfacePluginRegistry
-
registerExtensionPointsForPluginInternal
protected void registerExtensionPointsForPluginInternal(List<ExtensionPoint> extPoints, boolean updateExtensionPointsArray)
Register extension-points for the specified plugin.- Parameters:
extPoints- ExtensionPoints for this pluginupdateExtensionPointsArray- Whether to update "extensionPoints" array
-
registerBundle
protected Bundle registerBundle(URL manifest)
Register the plugin bundle.- Parameters:
manifest- the url to the "meta-inf/manifest.mf" file or a jar file- Returns:
- the Plugin
-
registerBundle
protected Bundle registerBundle(Manifest mf, URL manifest)
Register the plugin bundle.- Parameters:
mf- the Manifestmanifest- the url to the "meta-inf/manifest.mf" file or a jar file- Returns:
- the Plugin
-
createExecutableExtension
public Object createExecutableExtension(ConfigurationElement confElm, String name, Class[] argTypes, Object[] args) throws ClassNotFoundException, SecurityException
Description copied from interface:PluginRegistryLoads a class (do not initialize) from an attribute ofConfigurationElement- Specified by:
createExecutableExtensionin interfacePluginRegistry- Parameters:
confElm- the configuration elementname- the attribute nameargTypes- Types of the constructor argumentsargs- The arguments- Returns:
- the instance
- Throws:
ClassNotFoundException- If an error occursSecurityException- If an error occurs
-
loadClass
public Class loadClass(String pluginId, String className) throws ClassNotFoundException
Description copied from interface:PluginRegistryLoads a class (do not initialize)- Specified by:
loadClassin interfacePluginRegistry- Parameters:
pluginId- the plugin idclassName- the class name- Returns:
- the Class
- Throws:
ClassNotFoundException- if an error occurs in loading
-
resolveURLAsFileURL
public URL resolveURLAsFileURL(URL url) throws IOException
Description copied from interface:PluginRegistryConverts a URL that uses a user-defined protocol into a URL that uses the file protocol.- Specified by:
resolveURLAsFileURLin interfacePluginRegistry- Parameters:
url- the url to be converted- Returns:
- the converted URL
- Throws:
IOException- if an error occurs
-
resolveConstraints
public void resolveConstraints()
Description copied from interface:PluginRegistryResolve constraints declared in bundle manifest.mf files. This must be invoked after registering all bundles. Should log errors if bundles are not resolvable, or raise runtime exceptions.- Specified by:
resolveConstraintsin interfacePluginRegistry
-
getBundles
public Bundle[] getBundles()
Description copied from interface:PluginRegistryAccessor for all registered bundles- Specified by:
getBundlesin interfacePluginRegistry- Returns:
- the bundles
-
registerExtensionsForPlugin
public void registerExtensionsForPlugin(URL pluginURL, Bundle bundle)
Register extension and extension points for the specified plugin. Note that this is only present for testing purposes, hence also why it is public.- Parameters:
pluginURL- the URL to the pluginbundle- the bundle
-
-