/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.container.internal; import static java.util.Collections.emptySet; import static java.util.stream.Collectors.toList; import static org.mule.runtime.container.internal.JreExplorer.exploreJdk; import static org.mule.runtime.core.util.CollectionUtils.singletonList; import org.mule.runtime.container.api.MuleModule; import org.mule.runtime.module.artifact.classloader.ExportedService; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Discovers the module corresponding to the JRE by creating a new {@link MuleModule} with the Java packages, resources and * services found on the used JRE. * * @since 4.0 */ public class JreModuleDiscoverer implements ModuleDiscoverer { protected static final Logger logger = LoggerFactory.getLogger(JreModuleDiscoverer.class); protected static final String JRE_MODULE_NAME = "jre"; @Override public List<MuleModule> discover() { Set<String> packages = new HashSet<>(1024); Set<String> resources = new HashSet<>(1024); List<ExportedService> services = new ArrayList<>(128); exploreJdk(packages, resources, services); if (logger.isDebugEnabled()) { logger.debug("Discovered JRE:\npackages: {}\nresources: {}\nservices: {}", packages, resources, services.stream().map(p -> p.getServiceInterface() + ":" + p.getResource().toString()).collect(toList())); } MuleModule jdkModule = new MuleModule(JRE_MODULE_NAME, packages, resources, emptySet(), emptySet(), services); return singletonList(jdkModule); } }