/* * JBoss, Home of Professional Open Source. * Copyright 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.ee.concurrent.handle; import org.jboss.as.ee.logging.EeLogger; import org.wildfly.security.manager.WildFlySecurityManager; import javax.enterprise.concurrent.ContextService; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.util.Map; /** * A context handle factory which is responsible for saving and setting proper classloading context. * * @author Eduardo Martins */ public class ClassLoaderContextHandleFactory implements ContextHandleFactory { public static final String NAME = "CLASSLOADER"; private final ClassLoader classLoader; public ClassLoaderContextHandleFactory(ClassLoader classLoader) { this.classLoader = classLoader; } @Override public SetupContextHandle saveContext(ContextService contextService, Map<String, String> contextObjectProperties) { return new ClassLoaderSetupContextHandle(classLoader); } @Override public String getName() { return NAME; } @Override public int getChainPriority() { return 100; } @Override public void writeSetupContextHandle(SetupContextHandle contextHandle, ObjectOutputStream out) throws IOException { } @Override public SetupContextHandle readSetupContextHandle(ObjectInputStream in) throws IOException, ClassNotFoundException { return new ClassLoaderSetupContextHandle(classLoader); } private static class ClassLoaderSetupContextHandle implements SetupContextHandle { private final ClassLoader classLoader; private ClassLoaderSetupContextHandle(ClassLoader classLoader) { this.classLoader = classLoader; } @Override public ResetContextHandle setup() throws IllegalStateException { final ClassLoaderResetContextHandle resetContextHandle = new ClassLoaderResetContextHandle(WildFlySecurityManager.getCurrentContextClassLoaderPrivileged()); WildFlySecurityManager.setCurrentContextClassLoaderPrivileged(classLoader); return resetContextHandle; } @Override public String getFactoryName() { return NAME; } // serialization private void writeObject(ObjectOutputStream out) throws IOException { throw EeLogger.ROOT_LOGGER.serializationMustBeHandledByTheFactory(); } private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { throw EeLogger.ROOT_LOGGER.serializationMustBeHandledByTheFactory(); } } private static class ClassLoaderResetContextHandle implements ResetContextHandle { private final ClassLoader previous; private ClassLoaderResetContextHandle(ClassLoader previous) { this.previous = previous; } @Override public void reset() { WildFlySecurityManager.setCurrentContextClassLoaderPrivileged(previous); } @Override public String getFactoryName() { return NAME; } // serialization private void writeObject(ObjectOutputStream out) throws IOException { throw EeLogger.ROOT_LOGGER.serializationMustBeHandledByTheFactory(); } private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { throw EeLogger.ROOT_LOGGER.serializationMustBeHandledByTheFactory(); } } }