All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mycore.common.events.MCRServletContainerInitializer Maven / Gradle / Ivy

There is a newer version: 2024.05
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * MyCoRe is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MyCoRe.  If not, see .
 */

package org.mycore.common.events;

import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.security.CodeSource;
import java.security.ProtectionDomain;
import java.util.Enumeration;
import java.util.Set;

import javax.servlet.ServletContainerInitializer;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.mycore.common.MCRClassTools;

import se.jiderhamn.classloader.leak.prevention.ClassLoaderLeakPreventor;
import se.jiderhamn.classloader.leak.prevention.ClassLoaderLeakPreventorFactory;

/**
 * @author Thomas Scheffler (yagee)
 */
public class MCRServletContainerInitializer implements ServletContainerInitializer {

    /* (non-Javadoc)
     * @see javax.servlet.ServletContainerInitializer#onStartup(java.util.Set, javax.servlet.ServletContext)
     */
    @Override
    public void onStartup(final Set> c, final ServletContext ctx) throws ServletException {
        final ClassLoaderLeakPreventorFactory leakPreventorFactory = new ClassLoaderLeakPreventorFactory();
        ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
        ClassLoaderLeakPreventor leakPreventor = leakPreventorFactory.newLeakPreventor(classLoader);
        leakPreventor.runPreClassLoaderInitiators();
        MCRShutdownHandler shutdownHandler = MCRShutdownHandler.getInstance();
        shutdownHandler.isWebAppRunning = true;
        shutdownHandler.leakPreventor = leakPreventor;
        MCRStartupHandler.startUp(ctx);
        //Make sure logging is configured
        final Logger logger = LogManager.getLogger();
        if (logger.isDebugEnabled()) {
            try {
                Enumeration resources = MCRClassTools.getClassLoader().getResources("META-INF/web-fragment.xml");
                while (resources.hasMoreElements()) {
                    logger.debug("Found: {}", resources.nextElement());
                }
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            logger.debug("This class is here: {}", getSource(this.getClass()));
        }
    }

    private static String getSource(final Class clazz) {
        if (clazz == null) {
            return null;
        }
        ProtectionDomain protectionDomain = clazz.getProtectionDomain();
        CodeSource codeSource = protectionDomain.getCodeSource();
        if (codeSource == null) {
            LogManager.getLogger().warn("Cannot get CodeSource.");
            return null;
        }
        URL location = codeSource.getLocation();
        String fileName = location.getFile();
        File sourceFile = new File(fileName);
        return sourceFile.getName();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy