Package org.jboss.classpool.plugins.jbosscl

Source Code of org.jboss.classpool.plugins.jbosscl.JBossClRegistryHandler

/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., 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.classpool.plugins.jbosscl;

import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.Collections;
import java.util.Map;
import java.util.WeakHashMap;

import javassist.ClassPool;

import org.jboss.classloading.spi.dependency.ClassLoading;
import org.jboss.classloading.spi.dependency.Module;
import org.jboss.classpool.scoped.ScopedClassPool;
import org.jboss.classpool.spi.ClassLoaderRegistryHandler;
import org.jboss.logging.Logger;

/**
* Handler for registering JBoss ClassLoaders.
*
* @author <a href="mailto:flavia.rainone@jboss.org">Flavia Rainone</a>
*
* @version $Revision: 104194 $
*/

class JBossClRegistryHandler implements ClassLoaderRegistryHandler
{
   private final Logger log = Logger.getLogger(JBossClRegistryHandler.class);
   private ClassLoaderRegistryHandler successor;
  
   private final static JBossClRegistryHandler instance = new JBossClRegistryHandler();
  
   /**
    * Returns the singleton instance.
    *
    * @return the singleton repository instance
    */
   public static JBossClRegistryHandler getInstance()
   {
      return instance;
   }
  
   /** The registered modules */
   protected Map<Module, ScopedClassPool> registeredModules =
      Collections.synchronizedMap(new WeakHashMap<Module, ScopedClassPool>());
  
  
  
   public ClassPool registerClassLoader(ClassLoader classLoader)
   {
      ScopedClassPool classPool = (ScopedClassPool) successor.registerClassLoader(classLoader);
      if (classPool == null)
      {
         // TODO check this works; was delegate before
         successor.unregisterClassLoader(classLoader);
      }
      else
      {
         Module module = getModuleForClassLoader(classLoader);
         this.registeredModules.put(module, classPool);
      }
      return classPool;
   }
  

   public void unregisterClassLoader(ClassLoader classLoader, Module module)
   {
      ScopedClassPool classPool = registeredModules.remove(module);
      if (classLoader == null)
      {
         if (classPool == null)
         {
            //throw new IllegalStateException("Module " + module + " is not registered");
            //TODO JBREFLECT-116
           if (log.isDebugEnabled())
              log.warn("Module " + module + " is not registered");
           return;
         }
         classPool.close();
      }
      else
      {
         unregisterClassLoader(classLoader);
      }
   }
  
   private Module getModuleForClassLoader(final ClassLoader classLoader)
   {
      return AccessController.doPrivileged(new PrivilegedAction<Module>()
      {
         public Module run()
         {
            return ClassLoading.getModuleForClassLoader(classLoader);
         }
      });
   }


   public void setSuccessor(ClassLoaderRegistryHandler handler)
   {
      this.successor = handler;
   }

   public void unregisterClassLoader(ClassLoader classLoader)
   {
      successor.unregisterClassLoader(classLoader);
   }
}
TOP

Related Classes of org.jboss.classpool.plugins.jbosscl.JBossClRegistryHandler

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.