Search in sources :

Example 1 with PluginArchive

use of com.alipay.sofa.ark.spi.archive.PluginArchive in project sofa-ark by alipay.

the class HandleArchiveStage method process.

@Override
public void process(PipelineContext pipelineContext) throws ArkRuntimeException {
    try {
        if (ArkConfigs.isEmbedEnable()) {
            processEmbed(pipelineContext);
            return;
        }
        ExecutableArchive executableArchive = pipelineContext.getExecutableArchive();
        List<BizArchive> bizArchives = executableArchive.getBizArchives();
        List<PluginArchive> pluginArchives = executableArchive.getPluginArchives();
        if (useDynamicConfig()) {
            AssertUtils.isFalse(StringUtils.isEmpty(ArkConfigs.getStringValue(Constants.MASTER_BIZ)), "Master biz should be configured when using dynamic config.");
        }
        int bizCount = 0;
        for (BizArchive bizArchive : bizArchives) {
            Biz biz = bizFactoryService.createBiz(bizArchive);
            if (bizArchive instanceof DirectoryBizArchive) {
                if (!((DirectoryBizArchive) bizArchive).isTestMode()) {
                    bizManagerService.registerBiz(biz);
                    bizCount += 1;
                }
            } else if (useDynamicConfig()) {
                if (biz.getBizName().equals(ArkConfigs.getStringValue(Constants.MASTER_BIZ))) {
                    bizManagerService.registerBiz(biz);
                    bizCount += 1;
                } else {
                    LOGGER.warn("The biz of {} is ignored when using dynamic config.", biz.getIdentity());
                }
            } else {
                if (!isBizExcluded(biz)) {
                    bizManagerService.registerBiz(biz);
                    bizCount += 1;
                } else {
                    LOGGER.warn(String.format("The biz of %s is excluded.", biz.getIdentity()));
                }
            }
        }
        // master biz should be specified when deploy multi biz, otherwise the only biz would be token as master biz
        if (bizCount > 1) {
            AssertUtils.isFalse(StringUtils.isEmpty(ArkConfigs.getStringValue(Constants.MASTER_BIZ)), "Master biz should be configured when deploy multi biz.");
            String masterBizName = ArkConfigs.getStringValue(Constants.MASTER_BIZ);
            for (Biz biz : bizManagerService.getBizInOrder()) {
                if (masterBizName.equals(biz.getBizName())) {
                    ArkClient.setMasterBiz(biz);
                }
            }
        } else {
            List<Biz> bizList = bizManagerService.getBizInOrder();
            if (!bizList.isEmpty() && StringUtils.isEmpty(ArkConfigs.getStringValue(Constants.MASTER_BIZ))) {
                ArkConfigs.putStringValue(Constants.MASTER_BIZ, bizList.get(0).getBizName());
                ArkClient.setMasterBiz(bizList.get(0));
            }
        }
        URL[] exportUrls = null;
        Set<String> exportPackages = new HashSet<>();
        Biz masterBiz = ArkClient.getMasterBiz();
        for (BizArchive bizArchive : bizArchives) {
            Attributes mainAttributes = bizArchive.getManifest().getMainAttributes();
            String bizName = mainAttributes.getValue(ARK_BIZ_NAME);
            // extension from master biz
            if (bizArchive instanceof JarBizArchive && masterBiz.getBizName().equalsIgnoreCase(bizName)) {
                String exportPackageStr = mainAttributes.getValue(INJECT_EXPORT_PACKAGES);
                exportPackages.addAll(StringUtils.strToSet(exportPackageStr, MANIFEST_VALUE_SPLIT));
                exportUrls = ((JarBizArchive) bizArchive).getExportUrls();
            }
        }
        for (PluginArchive pluginArchive : pluginArchives) {
            Plugin plugin = pluginFactoryService.createPlugin(pluginArchive, exportUrls, exportPackages);
            if (!isPluginExcluded(plugin)) {
                pluginManagerService.registerPlugin(plugin);
            } else {
                LOGGER.warn(String.format("The plugin of %s is excluded.", plugin.getPluginName()));
            }
        }
    } catch (Throwable ex) {
        throw new ArkRuntimeException(ex.getMessage(), ex);
    }
}
Also used : ExecutableArchive(com.alipay.sofa.ark.spi.archive.ExecutableArchive) DirectoryBizArchive(com.alipay.sofa.ark.loader.DirectoryBizArchive) PluginArchive(com.alipay.sofa.ark.spi.archive.PluginArchive) Attributes(java.util.jar.Attributes) URL(java.net.URL) ArkRuntimeException(com.alipay.sofa.ark.exception.ArkRuntimeException) Biz(com.alipay.sofa.ark.spi.model.Biz) JarBizArchive(com.alipay.sofa.ark.loader.JarBizArchive) BizArchive(com.alipay.sofa.ark.spi.archive.BizArchive) DirectoryBizArchive(com.alipay.sofa.ark.loader.DirectoryBizArchive) JarBizArchive(com.alipay.sofa.ark.loader.JarBizArchive) HashSet(java.util.HashSet) Plugin(com.alipay.sofa.ark.spi.model.Plugin)

Example 2 with PluginArchive

use of com.alipay.sofa.ark.spi.archive.PluginArchive in project sofa-ark by alipay.

the class EmbedClassPathArchive method getPluginArchives.

@Override
public List<PluginArchive> getPluginArchives() throws Exception {
    List<URL> urlList = filterUrls(Constants.ARK_PLUGIN_MARK_ENTRY);
    List<PluginArchive> pluginArchives = new ArrayList<>();
    for (URL url : urlList) {
        pluginArchives.add(new JarPluginArchive(getUrlJarFileArchive(url)));
    }
    return pluginArchives;
}
Also used : PluginArchive(com.alipay.sofa.ark.spi.archive.PluginArchive) ArrayList(java.util.ArrayList) URL(java.net.URL)

Example 3 with PluginArchive

use of com.alipay.sofa.ark.spi.archive.PluginArchive in project sofa-ark by alipay.

the class PluginFactoryServiceTest method testCreateEmbedPlugin.

@Test
public void testCreateEmbedPlugin() throws IOException {
    ClassLoader cl = Thread.currentThread().getContextClassLoader();
    URL samplePlugin = cl.getResource("sample-plugin.jar");
    PluginArchive archive = new JarPluginArchive(new JarFileArchive(new File(samplePlugin.getFile())));
    Plugin plugin = pluginFactoryService.createEmbedPlugin(archive, this.getClass().getClassLoader());
    Assert.assertNotNull(plugin);
}
Also used : JarPluginArchive(com.alipay.sofa.ark.loader.JarPluginArchive) PluginArchive(com.alipay.sofa.ark.spi.archive.PluginArchive) JarFileArchive(com.alipay.sofa.ark.loader.archive.JarFileArchive) JarFile(com.alipay.sofa.ark.loader.jar.JarFile) File(java.io.File) URL(java.net.URL) JarPluginArchive(com.alipay.sofa.ark.loader.JarPluginArchive) Plugin(com.alipay.sofa.ark.spi.model.Plugin) Test(org.junit.Test) BaseTest(com.alipay.sofa.ark.container.BaseTest)

Example 4 with PluginArchive

use of com.alipay.sofa.ark.spi.archive.PluginArchive in project sofa-ark by alipay.

the class HandleArchiveStage method processEmbed.

protected void processEmbed(PipelineContext pipelineContext) throws Exception {
    ClassLoader masterBizClassLoader = pipelineContext.getClass().getClassLoader();
    Biz masterBiz = bizFactoryService.createEmbedMasterBiz(masterBizClassLoader);
    bizManagerService.registerBiz(masterBiz);
    ArkClient.setMasterBiz(masterBiz);
    ArkConfigs.putStringValue(Constants.MASTER_BIZ, masterBiz.getBizName());
    ExecutableArchive executableArchive = pipelineContext.getExecutableArchive();
    List<PluginArchive> pluginArchives = executableArchive.getPluginArchives();
    for (PluginArchive pluginArchive : pluginArchives) {
        Plugin plugin = pluginFactoryService.createEmbedPlugin(pluginArchive, masterBizClassLoader);
        if (!isPluginExcluded(plugin)) {
            pluginManagerService.registerPlugin(plugin);
        } else {
            LOGGER.warn(String.format("The plugin of %s is excluded.", plugin.getPluginName()));
        }
    }
    return;
}
Also used : Biz(com.alipay.sofa.ark.spi.model.Biz) ExecutableArchive(com.alipay.sofa.ark.spi.archive.ExecutableArchive) PluginArchive(com.alipay.sofa.ark.spi.archive.PluginArchive) Plugin(com.alipay.sofa.ark.spi.model.Plugin)

Aggregations

PluginArchive (com.alipay.sofa.ark.spi.archive.PluginArchive)4 Plugin (com.alipay.sofa.ark.spi.model.Plugin)3 URL (java.net.URL)3 ExecutableArchive (com.alipay.sofa.ark.spi.archive.ExecutableArchive)2 Biz (com.alipay.sofa.ark.spi.model.Biz)2 BaseTest (com.alipay.sofa.ark.container.BaseTest)1 ArkRuntimeException (com.alipay.sofa.ark.exception.ArkRuntimeException)1 DirectoryBizArchive (com.alipay.sofa.ark.loader.DirectoryBizArchive)1 JarBizArchive (com.alipay.sofa.ark.loader.JarBizArchive)1 JarPluginArchive (com.alipay.sofa.ark.loader.JarPluginArchive)1 JarFileArchive (com.alipay.sofa.ark.loader.archive.JarFileArchive)1 JarFile (com.alipay.sofa.ark.loader.jar.JarFile)1 BizArchive (com.alipay.sofa.ark.spi.archive.BizArchive)1 File (java.io.File)1 ArrayList (java.util.ArrayList)1 HashSet (java.util.HashSet)1 Attributes (java.util.jar.Attributes)1 Test (org.junit.Test)1