use of com.alipay.sofa.ark.container.service.classloader.PluginClassLoader in project sofa-ark by alipay.
the class PluginFactoryServiceImpl method createPlugin.
@Override
public Plugin createPlugin(PluginArchive pluginArchive, URL[] extensions, Set<String> exportPackages) throws IOException, IllegalArgumentException {
AssertUtils.isTrue(isArkPlugin(pluginArchive), "Archive must be a ark plugin!");
if (extensions == null || extensions.length == 0) {
return createPlugin(pluginArchive);
}
PluginModel plugin = new PluginModel();
Attributes manifestMainAttributes = pluginArchive.getManifest().getMainAttributes();
plugin.setPluginName(manifestMainAttributes.getValue(PLUGIN_NAME_ATTRIBUTE)).setGroupId(manifestMainAttributes.getValue(GROUP_ID_ATTRIBUTE)).setArtifactId(manifestMainAttributes.getValue(ARTIFACT_ID_ATTRIBUTE)).setVersion(manifestMainAttributes.getValue(PLUGIN_VERSION_ATTRIBUTE)).setPriority(manifestMainAttributes.getValue(PRIORITY_ATTRIBUTE)).setPluginActivator(manifestMainAttributes.getValue(ACTIVATOR_ATTRIBUTE)).setClassPath(getFinalPluginUrls(pluginArchive, extensions, plugin.getPluginName())).setPluginUrl(pluginArchive.getUrl()).setExportClasses(manifestMainAttributes.getValue(EXPORT_CLASSES_ATTRIBUTE)).setExportPackages(manifestMainAttributes.getValue(EXPORT_PACKAGES_ATTRIBUTE), exportPackages).setImportClasses(manifestMainAttributes.getValue(IMPORT_CLASSES_ATTRIBUTE)).setImportPackages(manifestMainAttributes.getValue(IMPORT_PACKAGES_ATTRIBUTE)).setImportResources(manifestMainAttributes.getValue(IMPORT_RESOURCES_ATTRIBUTE)).setExportResources(manifestMainAttributes.getValue(EXPORT_RESOURCES_ATTRIBUTE)).setPluginClassLoader(new PluginClassLoader(plugin.getPluginName(), plugin.getClassPath())).setPluginContext(new PluginContextImpl(plugin));
return plugin;
}
use of com.alipay.sofa.ark.container.service.classloader.PluginClassLoader in project sofa-ark by alipay.
the class ServiceRegistrationTest method testPublishDuplicateServiceInPlugin.
@Test
public void testPublishDuplicateServiceInPlugin() throws Exception {
PluginModel pluginA = new PluginModel();
pluginA.setPluginName("plugin A").setPriority("10").setClassPath(new URL[] { classPathURL }).setImportClasses(StringUtils.EMPTY_STRING).setImportPackages(StringUtils.EMPTY_STRING).setExportPackages(ClassUtils.getPackageName(INTERFACE_CLASS)).setExportClasses(StringUtils.EMPTY_STRING).setImportResources(StringUtils.EMPTY_STRING).setExportResources(StringUtils.EMPTY_STRING).setPluginActivator(PluginActivatorADup.class.getName()).setPluginClassLoader(new PluginClassLoader(pluginA.getPluginName(), pluginA.getClassPath())).setPluginContext(new PluginContextImpl(pluginA));
pluginManagerService.registerPlugin(pluginA);
classloaderService.prepareExportClassAndResourceCache();
pluginDeployService.deploy();
Assert.assertEquals(1, registryService.referenceServices(pluginA.getPluginClassLoader().loadClass(ITest.class.getCanonicalName())).size());
int c = registryService.unPublishServices(new DefaultServiceFilter().setProviderType(ServiceProviderType.ARK_PLUGIN));
Assert.assertTrue(c == 1);
}
Aggregations