Package org.mule.module.launcher.log4j2

Source Code of org.mule.module.launcher.log4j2.ArtifactAwareContextSelector$NewContextParameters

/*
* 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.module.launcher.log4j2;

import org.mule.api.MuleRuntimeException;
import org.mule.config.i18n.MessageFactory;
import org.mule.module.launcher.DirectoryResourceLocator;
import org.mule.module.launcher.LocalResourceLocator;
import org.mule.module.launcher.artifact.ArtifactClassLoader;
import org.mule.module.launcher.artifact.ShutdownListener;
import org.mule.module.reboot.MuleContainerBootstrapUtils;

import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.RemovalListener;
import com.google.common.cache.RemovalNotification;
import com.google.common.collect.ImmutableList;

import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;

import org.apache.logging.log4j.core.LoggerContext;
import org.apache.logging.log4j.core.selector.ContextSelector;
import org.apache.logging.log4j.status.StatusLogger;

/**
* Implementation of {@link org.apache.logging.log4j.core.selector.ContextSelector}
* which is used to implement log separation based on provided or current
* {@link java.lang.ClassLoader}
* <p/>
* This component is responsible for managing the {@link org.apache.logging.log4j.core.LoggerContext}
* that corresponds to each artifact (aka applications, domains, container), using its classloader as
* an identifier. The same classloader always gets the same {@link org.apache.logging.log4j.core.LoggerContext}
* <p/>
* This component also overrides log4j2's default algorithm for locating configuration files, although it
* does it in a way consistent with the replaced behavior:
* <ul>
* <li>A file called log4j2-test.xml is fetched from the corresponding search path</li>
* <li>If log4j2-test.xml is not found, then log4j2.xml is attempted</li>
* <li>If not found, a default configuration consisting of a single rolling file appender is used</li>
* <li>The search path is derived from the artifact for which a logging context is being requested, following
* a child first strategy (artifact - domain - container). Each artifact starts looking in the phase that makes
* sense for it</li>
* </ul>
* <p/>
* If the classloader is an artifact one, then it adds a {@link org.mule.module.launcher.artifact.ShutdownListener}
* to destroy the logging context when the app is undeployed, preventing memory leaks.
* <p/>
* If mule is running in embedded mode, then all of this logic described above is discarded and it simply logs
* to a file called mule-main.log
*
* @since 3.6.0
*/
final class ArtifactAwareContextSelector implements ContextSelector
{

    private static final int NO_CCL_CLASSLOADER = 0;
    private static final StatusLogger logger = StatusLogger.getLogger();

    private LoggerContextCache cache = new LoggerContextCache();


    ArtifactAwareContextSelector()
    {
    }

    @Override
    public LoggerContext getContext(String fqcn, ClassLoader loader, boolean currentContext)
    {
        return getContext(fqcn, loader, currentContext, null);
    }

    @Override
    public LoggerContext getContext(String fqcn, ClassLoader classLoader, boolean currentContext, URI configLocation)
    {
        return cache.getLoggerContext(resolveClassLoader(classLoader));
    }

    @Override
    public List<LoggerContext> getLoggerContexts()
    {
        return cache.getAllLoggerContexts();
    }

    @Override
    public void removeContext(LoggerContext context)
    {
        cache.remove(context);
    }

    private ClassLoader resolveClassLoader(ClassLoader classLoader)
    {
        return classLoader == null ? Thread.currentThread().getContextClassLoader() : classLoader;
    }

    private void destroyLoggersFor(ClassLoader classLoader)
    {
        cache.remove(classLoader);
    }

    private NewContextParameters resolveContextParameters(ClassLoader classLoader)
    {
        if (classLoader instanceof ArtifactClassLoader)
        {
            ArtifactClassLoader artifactClassLoader = (ArtifactClassLoader) classLoader;
            return new NewContextParameters(getArtifactLoggingConfig(artifactClassLoader), artifactClassLoader.getArtifactName());
        }
        else
        {
            // this is not an app init, use the top-level defaults
            if (MuleContainerBootstrapUtils.getMuleConfDir() != null)
            {
                return new NewContextParameters(
                        getLogConfig(new DirectoryResourceLocator(MuleContainerBootstrapUtils.getMuleConfDir().getAbsolutePath())),
                        classLoader.toString());
            }
        }

        return null;
    }

    private LoggerContext buildContext(final ClassLoader classLoader)
    {
        NewContextParameters parameters = resolveContextParameters(classLoader);
        if (parameters == null)
        {
            return getDefaultContext();
        }

        MuleLoggerContext loggerContext = new MuleLoggerContext(parameters.contextName,
                                                                parameters.loggerConfigFile,
                                                                classLoader,
                                                                this,
                                                                isStandalone());

        if (classLoader instanceof ArtifactClassLoader)
        {
            final ArtifactClassLoader artifactClassLoader = (ArtifactClassLoader) classLoader;

            artifactClassLoader.addShutdownListener(new ShutdownListener()
            {
                @Override
                public void execute()
                {
                    destroyLoggersFor(classLoader);
                }
            });
        }

        return loggerContext;
    }


    private URI getArtifactLoggingConfig(ArtifactClassLoader muleCL)
    {
        // Checks if there's an app-specific logging configuration available,
        // scope the lookup to this classloader only, as getResource() will delegate to parents
        // locate xml config first, fallback to properties format if not found
        URI appLogConfig = getLogConfig(muleCL);

        if (appLogConfig != null && logger.isInfoEnabled())
        {
            logger.info("Found logging config for application '{}' at '{}'", muleCL.getArtifactName(), appLogConfig);
        }

        return appLogConfig;
    }

    private URI getLogConfig(LocalResourceLocator localResourceLocator)
    {
        URL appLogConfig = localResourceLocator.findLocalResource("log4j2-test.xml");

        if (appLogConfig == null)
        {
            appLogConfig = localResourceLocator.findLocalResource("log4j2.xml");
        }

        if (appLogConfig == null)
        {
            return null;
        }

        try
        {
            return appLogConfig.toURI();
        }
        catch (URISyntaxException e)
        {
            throw new MuleRuntimeException(
                    MessageFactory.createStaticMessage("Could not read log file " + appLogConfig), e);
        }
    }

    private class LoggerContextCache
    {

        private Cache<Integer, LoggerContext> contexts;

        private LoggerContextCache()
        {
            contexts = CacheBuilder.newBuilder()
                    .removalListener(new RemovalListener<Integer, LoggerContext>()
                    {
                        @Override
                        public void onRemoval(RemovalNotification<Integer, LoggerContext> notification)
                        {
                            LoggerContext context = notification.getValue();
                            if (context != null && !context.isStopping() && !context.isStopped())
                            {
                                context.stop();
                            }
                        }
                    })
                    .build();
        }

        private LoggerContext getLoggerContext(final ClassLoader classLoader)
        {
            try
            {
                return contexts.get(computeKey(classLoader), new Callable<LoggerContext>()
                {
                    @Override
                    public LoggerContext call() throws Exception
                    {
                        return buildContext(classLoader);
                    }
                });
            }
            catch (ExecutionException e)
            {
                throw new MuleRuntimeException(
                        MessageFactory.createStaticMessage("Could not init logger context "), e);
            }
        }

        private void remove(ClassLoader classLoader)
        {
            contexts.invalidate(computeKey(classLoader));
        }

        private void remove(LoggerContext context)
        {
            for (Map.Entry<Integer, LoggerContext> entry : contexts.asMap().entrySet())
            {
                if (entry.getValue() == context)
                {
                    contexts.invalidate(entry.getKey());
                    return;
                }
            }
        }

        private int computeKey(ClassLoader classLoader)
        {
            return classLoader == null ? NO_CCL_CLASSLOADER : classLoader.hashCode();
        }

        private List<LoggerContext> getAllLoggerContexts()
        {
            return ImmutableList.copyOf(contexts.asMap().values());
        }
    }

    private LoggerContext getDefaultContext()
    {
        return new MuleLoggerContext("Default", this, isStandalone());
    }

    private boolean isStandalone()
    {
        return MuleContainerBootstrapUtils.getMuleConfDir() != null;
    }

    private class NewContextParameters
    {

        private final URI loggerConfigFile;
        private final String contextName;

        private NewContextParameters(URI loggerConfigFile, String contextName)
        {
            this.loggerConfigFile = loggerConfigFile;
            this.contextName = contextName;
        }
    }
}
TOP

Related Classes of org.mule.module.launcher.log4j2.ArtifactAwareContextSelector$NewContextParameters

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.