org.jboss.aop.microcontainer.aspects.jndi.JndiIntroduction Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2006, Red Hat Middleware LLC, and individual contributors
* by the @authors tag. See the copyright.txt 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.aop.microcontainer.aspects.jndi;
import java.io.Serializable;
import java.util.Properties;
import javax.naming.InitialContext;
import org.jboss.aop.advice.Interceptor;
import org.jboss.aop.joinpoint.Invocation;
import org.jboss.aop.joinpoint.MethodInvocation;
import org.jboss.kernel.spi.dependency.KernelControllerContext;
import org.jboss.logging.Logger;
import org.jboss.util.naming.Util;
/**
* A JNDI binding aspect that creates bindings on interception of the kernel setKernelControllerContext
* callback, and removes them on any other method. The expectation is that this is applied to the
* org.jboss.kernel.spi.dependency.KernelControllerContextAware interface so that unbinding occurs on
* the unsetKernelControllerContext method.
*
* @author [email protected]
* @version $Revision: 46386 $
* @deprecated Should use JndiLifecycleCallback instead
*/
public class JndiIntroduction implements Interceptor, Serializable
{
private static final long serialVersionUID = 1;
private static final Logger log = Logger.getLogger(JndiIntroduction.class);
private Properties env;
public String getName()
{
return getClass().getName();
}
/**
* Get the InitialContext properties to use for binding/unbinding
* @return the InitialContext ctor env
*/
public Properties getEnv()
{
return env;
}
/**
* Set the InitialContext properties to use for binding/unbinding
* @param env - the InitialContext ctor env
*/
public void setEnv(Properties env)
{
this.env = env;
}
/**
* Bind the target on setKernelControllerContext, unbind on any other method provided that
* the invocation has a JndiBinding annotation.
*/
public Object invoke(Invocation invocation) throws Throwable
{
MethodInvocation mi = (MethodInvocation) invocation;
KernelControllerContext context = (KernelControllerContext) mi.getArguments()[0];
boolean trace = log.isTraceEnabled();
JndiBinding bindingInfo = (JndiBinding) invocation.resolveClassAnnotation(JndiBinding.class);
if( trace )
log.trace("Checking method: "+mi.getMethod()+", bindingInfo: "+bindingInfo);
// If this is the setKernelControllerContext callback, bind the target into jndi
if ("setKernelControllerContext".equals(mi.getMethod().getName()) && bindingInfo != null)
{
InitialContext ctx = new InitialContext(env);
Object target = context.getTarget();
Util.bind(ctx, bindingInfo.name(), target);
if( trace )
log.trace("Bound to: "+bindingInfo.name());
String[] aliases = bindingInfo.aliases();
if( aliases != null )
{
for(String name : aliases)
{
Util.bind(ctx, name, target);
if( trace )
log.trace("Bound to alias: "+bindingInfo.name());
}
}
}
// If this is the unsetKernelControllerContext callback, unbind the target
else if( bindingInfo != null )
{
InitialContext ctx = new InitialContext(env);
Util.unbind(ctx, bindingInfo.name());
if( trace )
log.trace("Unbound: "+bindingInfo.name());
String[] aliases = bindingInfo.aliases();
if( aliases != null )
{
for(String name : aliases)
{
Util.unbind(ctx, name);
if( trace )
log.trace("Unbound alias: "+bindingInfo.name());
}
}
}
else if ( trace )
{
log.trace("Ignoring null binding info");
}
return null;
}
}