/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat Middleware LLC, 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.webservices.deployers; import org.jboss.as.server.deployment.DeploymentPhaseContext; import org.jboss.as.server.deployment.DeploymentUnit; import org.jboss.as.server.deployment.DeploymentUnitProcessingException; import org.jboss.as.server.deployment.DeploymentUnitProcessor; import org.jboss.as.webservices.logging.WSLogger; import org.jboss.as.webservices.util.ASHelper; import org.jboss.as.webservices.util.WSAttachmentKeys; import org.jboss.msc.service.ServiceTarget; import org.jboss.wsf.spi.classloading.ClassLoaderProvider; import org.jboss.wsf.spi.deployment.Deployment; import org.jboss.wsf.spi.deployment.DeploymentAspect; import org.wildfly.security.manager.WildFlySecurityManager; /** * Adaptor of DeploymentAspect to DeploymentUnitProcessor * * @author <a href="mailto:alessio.soldano@jboss.com">Alessio Soldano</a> * @author <a href="mailto:ropalka@redhat.com">Richard Opalka</a> */ public final class AspectDeploymentProcessor implements DeploymentUnitProcessor { private Class<? extends DeploymentAspect> clazz; private String aspectClass; private DeploymentAspect aspect; public AspectDeploymentProcessor(final Class<? extends DeploymentAspect> aspectClass) { this.clazz = aspectClass; } public AspectDeploymentProcessor(final String aspectClass) { this.aspectClass = aspectClass; } public AspectDeploymentProcessor(final DeploymentAspect aspect) { this.aspect = aspect; this.clazz = aspect.getClass(); } @Override public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit unit = phaseContext.getDeploymentUnit(); if (isWebServiceDeployment(unit)) { ensureAspectInitialized(); final Deployment dep = ASHelper.getRequiredAttachment(unit, WSAttachmentKeys.DEPLOYMENT_KEY); WSLogger.ROOT_LOGGER.tracef("%s start: %s", aspect, unit.getName()); ClassLoader origClassLoader = WildFlySecurityManager.getCurrentContextClassLoaderPrivileged(); try { WildFlySecurityManager.setCurrentContextClassLoaderPrivileged(aspect.getLoader()); dep.addAttachment(ServiceTarget.class, phaseContext.getServiceTarget()); aspect.start(dep); dep.removeAttachment(ServiceTarget.class); } finally { WildFlySecurityManager.setCurrentContextClassLoaderPrivileged(origClassLoader); } } } @Override public void undeploy(final DeploymentUnit unit) { if (isWebServiceDeployment(unit)) { final Deployment dep = ASHelper.getRequiredAttachment(unit, WSAttachmentKeys.DEPLOYMENT_KEY); WSLogger.ROOT_LOGGER.tracef("%s stop: %s", aspect, unit.getName()); ClassLoader origClassLoader = WildFlySecurityManager.getCurrentContextClassLoaderPrivileged(); try { WildFlySecurityManager.setCurrentContextClassLoaderPrivileged(aspect.getLoader()); aspect.stop(dep); } finally { WildFlySecurityManager.setCurrentContextClassLoaderPrivileged(origClassLoader); } } } @SuppressWarnings("unchecked") private void ensureAspectInitialized() throws DeploymentUnitProcessingException { if (aspect == null) { try { if (clazz == null) { clazz = (Class<? extends DeploymentAspect>) ClassLoaderProvider.getDefaultProvider() .getServerIntegrationClassLoader().loadClass(aspectClass); } aspect = clazz.newInstance(); } catch (Exception e) { throw new DeploymentUnitProcessingException(e); } } } private static boolean isWebServiceDeployment(final DeploymentUnit unit) { return unit.getAttachment(WSAttachmentKeys.DEPLOYMENT_KEY) != null; } }