Package org.jboss.ejb3.kernel

Source Code of org.jboss.ejb3.kernel.JNDIKernelRegistryPlugin

/*
* JBoss, Home of Professional Open Source
* Copyright 2007, Red Hat Middleware LLC, and individual contributors as indicated
* 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.ejb3.kernel;

import java.util.Hashtable;

import javax.naming.Context;
import javax.naming.NameNotFoundException;
import javax.naming.NamingException;

import org.jboss.ejb3.InitialContextFactory;
import org.jboss.kernel.plugins.registry.AbstractKernelRegistryEntry;
import org.jboss.kernel.spi.registry.KernelRegistryEntry;
import org.jboss.kernel.spi.registry.KernelRegistryPlugin;
import org.jboss.logging.Logger;

/**
* A kernel registry plugin which checks for JNDI names.
*
* @author <a href="mailto:carlo.dewolf@jboss.com">Carlo de Wolf</a>
* @author <a href="mailto:ajustin@redhat.com">Ales Justin</a>
* @version $Revision: 65435 $
*/
public class JNDIKernelRegistryPlugin implements KernelRegistryPlugin
{
   private static final Logger log = Logger.getLogger(JNDIKernelRegistryPlugin.class);
  
   public static final String JNDI_DEPENDENCY_PREFIX = "jndi:";
  
   private Context context;
   private Hashtable<?, ?> environment;
  
   public JNDIKernelRegistryPlugin()
   {
   }
  
   public JNDIKernelRegistryPlugin(Hashtable environment)
   {
      this.environment = environment;
   }
  
   public void create() throws NamingException
   {
      log.debug("Creating JNDIKernelRegistryPlugin");
      this.context = InitialContextFactory.getInitialContext(environment);
   }
  
   public void destroy() throws NamingException
   {
      log.debug("Destroying JNDIKernelRegistryPlugin");
      if(context != null)
         context.close();
      context = null;
   }
  
   public KernelRegistryEntry getEntry(Object name)
   {
      assert name != null : "name is null";
     
      String s = String.valueOf(name);
      if(!s.startsWith(JNDI_DEPENDENCY_PREFIX))
         return null;
     
      if(log.isTraceEnabled())
         log.trace("get entry for " + name);
     
      try
      {
         Object target = context.lookup(s.substring(JNDI_DEPENDENCY_PREFIX.length()));
         if(log.isTraceEnabled())
            log.trace("found: " + target);
         // target could be null, but if the entry exists continue.
         return new AbstractKernelRegistryEntry(name, target);
//         NamingEnumeration<NameClassPair> e = context.list(s.substring(JNDI_DEPENDENCY_PREFIX.length()));
//         if(e.hasMore())
//         {
//            Object target = e.next();
//            // target could be null, but if the entry exists continue.
//            return new AbstractKernelRegistryEntry(name, target);
//         }
//         return null;
      }
      catch(NameNotFoundException e)
      {
         log.trace("not found");
         return null;
      }
      catch (NamingException e)
      {
         log.trace("entry can't be resolved", e);
         throw new RuntimeException(e);
      }
      catch(RuntimeException e)
      {
         log.trace("entry can't be resolved", e);
         throw e;
      }
   }

   public void setEnvironment(Hashtable<?, ?> env)
   {
      if(context != null)
         throw new IllegalStateException("context already initialized");
      this.environment = env;
   }
}
TOP

Related Classes of org.jboss.ejb3.kernel.JNDIKernelRegistryPlugin

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.