Package org.jboss.kernel.plugins.config

Source Code of org.jboss.kernel.plugins.config.Configurator

/*
* 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.kernel.plugins.config;

import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;

import org.jboss.beans.info.spi.BeanInfo;
import org.jboss.beans.info.spi.PropertyInfo;
import org.jboss.beans.metadata.spi.BeanMetaData;
import org.jboss.beans.metadata.spi.ClassLoaderMetaData;
import org.jboss.beans.metadata.spi.ConstructorMetaData;
import org.jboss.beans.metadata.spi.ParameterMetaData;
import org.jboss.beans.metadata.spi.PropertyMetaData;
import org.jboss.beans.metadata.spi.ValueMetaData;
import org.jboss.joinpoint.plugins.config.Config;
import org.jboss.joinpoint.spi.ConstructorJoinpoint;
import org.jboss.joinpoint.spi.Joinpoint;
import org.jboss.joinpoint.spi.JoinpointException;
import org.jboss.joinpoint.spi.JoinpointFactory;
import org.jboss.joinpoint.spi.MethodJoinpoint;
import org.jboss.joinpoint.spi.TargettedJoinpoint;
import org.jboss.kernel.spi.config.KernelConfig;
import org.jboss.reflect.spi.ConstructorInfo;
import org.jboss.reflect.spi.MethodInfo;
import org.jboss.reflect.spi.TypeInfo;

/**
* Configuration utilities.
*
* @author <a href="adrian@jboss.com">Adrian Brock</a>
* @version $Revision: 1.29 $
*/
public class Configurator extends Config
{
   /**
    * Instantiate and configure a bean
    *
    * @param info the bean info
    * @param metaData the bean metadata
    * @return the instantiated and configured object
    * @throws Throwable for any error
    */
   public static Object instantiateAndConfigure(KernelConfig config, BeanInfo info, BeanMetaData metaData) throws Throwable
   {
      Object result = instantiate(config, info, metaData);
      if (metaData != null)
         configure(result, info, metaData);
      return result;
   }
  
   /**
    * Instantiate a bean
    *
    * @param config the kernel config
    * @param info the bean info
    * @param metaData the bean metadata
    * @return the instantiated object
    * @throws Throwable for any error
    */
   public static Object instantiate(KernelConfig config, BeanInfo info, BeanMetaData metaData) throws Throwable
   {
      boolean trace = log.isTraceEnabled();
      if (trace)
         log.trace("Instantiating info=" + info + " metaData=" + metaData);

      ConstructorMetaData constructor = null;
      if (metaData != null)
         constructor = metaData.getConstructor();
      Joinpoint joinPoint = getConstructorJoinPoint(config, info, constructor, metaData);
      return joinPoint.dispatch();
   }
  
   /**
    * Get a constructor joinpoint
    *
    * @param config the kernel config
    * @param info the bean info
    * @param metaData the constructor metadata
    * @param beanMetaData
    * @return the joinpoint
    * @throws Throwable for any error
    */
   public static Joinpoint getConstructorJoinPoint(KernelConfig config, BeanInfo info, ConstructorMetaData metaData, BeanMetaData beanMetaData)
      throws Throwable
   {
      boolean trace = log.isTraceEnabled();
     
      if (trace)
         log.trace("Get constructor joinpoint info=" + info + " constructor=" + metaData);

      if (config == null)
         throw new IllegalArgumentException("Null config");

      if (metaData != null)
      {
         ClassLoader cl = getClassLoader(beanMetaData);

         ValueMetaData vmd = metaData.getFactory();
         if (vmd != null)
         {
            // Get the factory
            Object factory = vmd.getValue(null, cl);

            // Get the parameters
            List parameters = metaData.getParameters();

            // Describe the factory
            BeanInfo factoryInfo = config.getBeanInfo(factory.getClass());
           
            // Find the method
            MethodJoinpoint joinPoint = findMethod(trace, factoryInfo, cl, metaData.getFactoryMethod(), parameters, false, true);
            joinPoint.setTarget(factory);
            MethodInfo minfo = joinPoint.getMethodInfo();

            // Set the parameters
            if (minfo != null)
            {
               TypeInfo[] pinfos = minfo.getParameterTypes();
               Object[] params = getParameters(trace, cl, pinfos, parameters);
               joinPoint.setArguments(params);
            }
            return joinPoint;
         }
        
         String factoryClassName = metaData.getFactoryClass();
         if (factoryClassName != null)
         {
            // Get the parameters
            List parameters = metaData.getParameters();

            BeanInfo factoryInfo = config.getBeanInfo(factoryClassName, cl);

            // Find the method
            MethodJoinpoint joinPoint = findMethod(trace, factoryInfo, cl, metaData.getFactoryMethod(), parameters, true, true);
            MethodInfo minfo = joinPoint.getMethodInfo();

            // Set the parameters
            if (minfo != null)
            {
               TypeInfo[] pinfos = minfo.getParameterTypes();
               Object[] params = getParameters(trace, cl, pinfos, parameters);
               joinPoint.setArguments(params);
            }
            return joinPoint;
         }
        
         // Find the constructor
         ConstructorJoinpoint joinPoint = findConstructor(trace, info, metaData, beanMetaData);
         ConstructorInfo cinfo = joinPoint.getConstructorInfo();
        
         // Set the parameters
         if (cinfo != null)
         {
            TypeInfo[] pinfos = cinfo.getParameterTypes();
            Object[] params = getParameters(trace, cl, pinfos, metaData.getParameters());
            joinPoint.setArguments(params);
         }
         return joinPoint;
      }
     
      // Default constructor
      return findConstructor(trace, info, metaData, beanMetaData);
   }
  
   /**
    * Find a constructor
    *
    * @param trace whether trace is enabled
    * @param info the bean info
    * @param metaData the constructor metadata
    * @param beanMetaData
    * @return the constructor join point
    * @throws Exception for any error
    */
   public static ConstructorJoinpoint findConstructor(boolean trace, BeanInfo info, ConstructorMetaData metaData, BeanMetaData beanMetaData) throws Exception
   {
      ConstructorInfo cinfo = resolveConstructor(trace, info, metaData);
      JoinpointFactory jpf = info.getJoinpointFactory();
      return jpf.getConstructorJoinpoint(cinfo);
   }
  
   /**
    * Resolve a constructor
    *
    * @param trace whether trace is enabled
    * @param info the bean info
    * @param metaData the constructor metadata
    * @return the constructor info
    */
   public static ConstructorInfo resolveConstructor(boolean trace, BeanInfo info, ConstructorMetaData metaData)
   {
      if (info == null)
         throw new IllegalArgumentException("Null bean info");

      List params = Collections.EMPTY_LIST;
      if (metaData != null && metaData.getParameters() != null)
         params = metaData.getParameters();
      String[] paramTypes = new String[params.size()];
      if (params.isEmpty() == false)
      {
         int x = 0;
         for (Iterator i = params.iterator(); i.hasNext();)
         {
            ParameterMetaData pdata = (ParameterMetaData) i.next();
            paramTypes[x++] = pdata.getType();
         }
      }
      return findConstructorInfo(info.getClassInfo(), paramTypes);
   }

   /**
    * Configure a bean
    *
    * @param object the object to configure
    * @param info the bean info
    * @param metaData the bean metadata
    * @throws Throwable for any error
    */
   public static void configure(Object object, BeanInfo info, BeanMetaData metaData) throws Throwable
   {
      boolean trace = log.isTraceEnabled();

      if (object == null)
         throw new IllegalArgumentException("Null object");
      if (info == null)
         throw new IllegalArgumentException("Null bean info");
      if (metaData == null)
         throw new IllegalArgumentException("Null bean metadata");

      Set properties = metaData.getProperties();
      if (properties != null && properties.isEmpty() == false)
      {
         ClassLoader cl = getClassLoader(metaData);
        
         for (Iterator i = metaData.getProperties().iterator(); i.hasNext();)
         {
            PropertyMetaData property = (PropertyMetaData) i.next();
            configure(trace, object, info, cl, property);
         }
      }
   }

   /**
    * Configure a bean property
    *
    * @param object the object to configure
    * @param info the bean info
    * @param cl the classloader
    * @param metaData the property metadata
    * @throws Throwable for any error
    */
   public static void configure(Object object, BeanInfo info, ClassLoader cl, PropertyMetaData metaData) throws Throwable
   {
      boolean trace = log.isTraceEnabled();
      configure(trace, object, info, cl, metaData);
   }

   /**
    * Configure a bean property
    *
    * @param trace whether trace is enabled
    * @param object the object to configure
    * @param info the bean info
    * @param cl the classloader
    * @param metaData the property metadata
    * @throws Throwable for any error
    */
   public static void configure(boolean trace, Object object, BeanInfo info, ClassLoader cl, PropertyMetaData metaData) throws Throwable
   {
      PropertyInfo ainfo = resolveProperty(trace, info, metaData.getName());
      configure(trace, object, ainfo, cl, metaData);
   }

   /**
    * Configure a bean property
    *
    * @param object the object to configure
    * @param info the property info
    * @param cl the classloader
    * @param metaData the property metadata
    * @throws Throwable for any error
    */
   public static void configure(Object object, PropertyInfo info, ClassLoader cl, PropertyMetaData metaData) throws Throwable
   {
      boolean trace = log.isTraceEnabled();
      configure(trace, object, info, cl, metaData);
   }

   /**
    * Configure a bean property
    *
    * @param trace whether trace is enabled
    * @param object the object to configure
    * @param info the property info
    * @param cl the classloader
    * @param metaData the property metadata
    * @throws Throwable for any error
    */
   public static void configure(boolean trace, Object object, PropertyInfo info, ClassLoader cl, PropertyMetaData metaData) throws Throwable
   {
      if (trace)
         log.trace("Configuring info=" + info + " metaData=" + metaData);
     
      TargettedJoinpoint joinPoint = getPropertySetterJoinPoint(trace, info, cl, metaData.getValue());
      joinPoint.setTarget(object);
     
      if (trace)
         log.trace("Setting property " + joinPoint);
     
      joinPoint.dispatch();
   }

   /**
    * Get property getter for an property
    *
    * @param info the bean info
    * @param property the property name
    * @return the joinpoint
    * @throws Throwable for any error
    */
   public static TargettedJoinpoint getPropertyGetterJoinPoint(BeanInfo info, String property) throws Throwable
   {
      boolean trace = log.isTraceEnabled();
      PropertyInfo ainfo = resolveProperty(trace, info, property);
      return getPropertyGetterJoinPoint(trace, ainfo);
   }

   /**
    * Get an property getter joinpoint
    *
    * @param trace whether trace is enabled
    * @param info the property info
    * @return the joinpoint
    * @throws Throwable for any error
    */
   public static TargettedJoinpoint getPropertyGetterJoinPoint(boolean trace, PropertyInfo info) throws Throwable
   {
      if (trace)
         log.trace("Get property setter join point info=" + info);

      if (info == null)
         throw new IllegalArgumentException("Null property info");
     
      JoinpointFactory jpf = info.getBeanInfo().getJoinpointFactory();
      MethodInfo minfo = info.getGetter();
      return getMethodJoinpoint(null, jpf, minfo.getName(), null, null);
   }

   /**
    * Get the property setters for a bean
    *
    * @param info the bean info
    * @param metaData the bean metadata
    * @return the property setters
    * @throws Throwable for any error
    */
   public static Set getPropertySetterJoinPoints(BeanInfo info, BeanMetaData metaData) throws Throwable
   {
      boolean trace = log.isTraceEnabled();

      if (info == null)
         throw new IllegalArgumentException("Null bean info");
      if (metaData == null)
         throw new IllegalArgumentException("Null bean metadata");
     
      Set result = new HashSet();
      Set propertys = metaData.getProperties();
      if (propertys != null && propertys.isEmpty() == false)
      {
         ClassLoader cl = getClassLoader(metaData);
        
         for (Iterator i = metaData.getProperties().iterator(); i.hasNext();)
         {
            PropertyMetaData property = (PropertyMetaData) i.next();
            TargettedJoinpoint joinPoint = getPropertySetterJoinPoint(trace, info, cl, property);
            result.add(joinPoint);
         }
      }
     
      return result;
   }

   /**
    * Get property setter for an property
    *
    * @param info the bean info
    * @param cl the classloader
    * @param metaData the property metadata
    * @return the joinpoint
    * @throws Throwable for any error
    */
   public static TargettedJoinpoint getPropertySetterJoinPoint(BeanInfo info, ClassLoader cl, PropertyMetaData metaData) throws Throwable
   {
      boolean trace = log.isTraceEnabled();
      return getPropertySetterJoinPoint(trace, info, cl, metaData);
   }

   /**
    * Get property setter for an property
    *
    * @param trace whether trace is enabled
    * @param info the bean info
    * @param cl the classloader
    * @param metaData the property metadata
    * @return the joinpoint
    * @throws Throwable for any error
    */
   public static TargettedJoinpoint getPropertySetterJoinPoint(boolean trace, BeanInfo info, ClassLoader cl, PropertyMetaData metaData) throws Throwable
   {
      PropertyInfo ainfo = resolveProperty(trace, info, metaData.getName());
      return getPropertySetterJoinPoint(trace, ainfo, cl, metaData.getValue());
   }

   /**
    * Get property setter for an property
    *
    * @param info the property info
    * @param cl the classloader
    * @param metaData the property metadata
    * @return the joinpoint
    * @throws Throwable for any error
    */
   public static TargettedJoinpoint getPropertySetterJoinPoint(PropertyInfo info, ClassLoader cl, PropertyMetaData metaData) throws Throwable
   {
      boolean trace = log.isTraceEnabled();
      return getPropertySetterJoinPoint(trace, info, cl, metaData.getValue());
   }

   /**
    * Get property setter for an property
    *
    * @param info the bean info
    * @param property the property name
    * @param cl the classloader
    * @param vmd the value meta data
    * @return the joinpoint
    * @throws Throwable for any error
    */
   public static TargettedJoinpoint getPropertySetterJoinPoint(BeanInfo info, String property, ClassLoader cl, ValueMetaData vmd) throws Throwable
   {
      boolean trace = log.isTraceEnabled();
      PropertyInfo ainfo = resolveProperty(trace, info, property);
      return getPropertySetterJoinPoint(trace, ainfo, cl, vmd);
   }

   /**
    * Get an property setter joinpoint
    *
    * @param trace whether trace is enabled
    * @param info the property info
    * @param cl the classloader
    * @param metaData the value metadata
    * @return the joinpoint
    * @throws Throwable for any error
    */
   public static TargettedJoinpoint getPropertySetterJoinPoint(boolean trace, PropertyInfo info, ClassLoader cl, ValueMetaData metaData) throws Throwable
   {
      if (trace)
         log.trace("Get property setter join point info=" + info + " metaData=" + metaData);

      if (info == null)
         throw new IllegalArgumentException("Null property info");
      if (metaData == null)
         throw new IllegalArgumentException("Null value metadata");
     
      TypeInfo type = info.getType();
      Object value = metaData.getValue(type, cl);
      JoinpointFactory jpf = info.getBeanInfo().getJoinpointFactory();
      MethodInfo minfo = info.getSetter();
      if (minfo == null)
         throw new IllegalArgumentException("No setter configured for property: " + info);
      String[] parameterTypes = getParameterTypes(trace, minfo.getParameterTypes());
      return getMethodJoinpoint(null, jpf, minfo.getName(), parameterTypes, new Object[] { value });
   }
  
   /**
    * Unconfigure a bean
    *
    * @param object the object to unconfigure
    * @param info the bean info
    * @param metaData the bean metadata
    * @throws Throwable for any error
    */
   public static void unconfigure(Object object, BeanInfo info, BeanMetaData metaData) throws Throwable
   {
      if (object == null)
         throw new IllegalArgumentException("Null object");
      if (info == null)
         throw new IllegalArgumentException("Null bean info");
      if (metaData == null)
         throw new IllegalArgumentException("Null bean metadata");

      Set propertys = metaData.getProperties();
      if (propertys != null && propertys.isEmpty() == false)
      {
         for (Iterator i = metaData.getProperties().iterator(); i.hasNext();)
         {
            PropertyMetaData property = (PropertyMetaData) i.next();
            unconfigure(object, info, property);
         }
      }
   }

   /**
    * Unconfigure a bean property
    *
    * @param object the object to unconfigure
    * @param info the bean info
    * @param metaData the property metadata
    * @throws Throwable for any error
    */
   public static void unconfigure(Object object, BeanInfo info, PropertyMetaData metaData) throws Throwable
   {
      boolean trace = log.isTraceEnabled();
      PropertyInfo ainfo = resolveProperty(trace, info, metaData.getName());
      unconfigure(trace, object, ainfo, metaData);
   }

   /**
    * UnConfigure a bean property
    *
    * @param trace whether trace is enabled
    * @param object the object to configure
    * @param info the property info
    * @param metaData the property metadata
    * @throws Throwable for any error
    */
   public static void unconfigure(boolean trace, Object object, PropertyInfo info, PropertyMetaData metaData) throws Throwable
   {
      if (trace)
         log.trace("Unconfiguring info=" + info + " metaData=" + metaData);
     
      TargettedJoinpoint joinPoint = getPropertyNullerJoinPoint(info, metaData);
      joinPoint.setTarget(object);
     
      if (trace)
         log.trace("Unsetting property " + joinPoint);
     
      joinPoint.dispatch();
   }
  
   /**
    * Get property nuller joinpoints for a bean
    *
    * @param info the bean info
    * @param metaData the bean metadata
    * @return the join points
    * @throws Throwable for any error
    */
   public static Set getPropertyNullerJoinPoints(BeanInfo info, BeanMetaData metaData) throws Throwable
   {
      if (info == null)
         throw new IllegalArgumentException("Null bean info");
      if (metaData == null)
         throw new IllegalArgumentException("Null bean metadata");
     
      Set result = new HashSet();
      Set propertys = metaData.getProperties();
      if (propertys != null && propertys.isEmpty() == false)
      {
         for (Iterator i = metaData.getProperties().iterator(); i.hasNext();)
         {
            PropertyMetaData property = (PropertyMetaData) i.next();
            TargettedJoinpoint joinPoint = getPropertyNullerJoinPoint(info, property);
            result.add(joinPoint);
         }
      }
      return result;
   }

   /**
    * Get property nuller joinpoint for a property
    *
    * @param info the bean info
    * @param metaData the property metadata
    * @return the join point
    * @throws Throwable for any error
    */
   public static TargettedJoinpoint getPropertyNullerJoinPoint(BeanInfo info, PropertyMetaData metaData) throws Throwable
   {
      boolean trace = log.isTraceEnabled();
      PropertyInfo ainfo = resolveProperty(trace, info, metaData.getName());
      return getPropertyNullerJoinPoint(ainfo, metaData);
   }

   /**
    * Get property nuller joinpoint for a property
    *
    * @param info the property info
    * @param metaData the property metadata
    * @return the join point
    * @throws Throwable for any error
    */
   public static TargettedJoinpoint getPropertyNullerJoinPoint(PropertyInfo info, PropertyMetaData metaData) throws Throwable
   {
      boolean trace = log.isTraceEnabled();
      if (trace)
         log.trace("Get property nuller join point info=" + info + " metaData=" + metaData);
     
      if (info == null)
         throw new IllegalArgumentException("Null property info");
     
      JoinpointFactory jpf = info.getBeanInfo().getJoinpointFactory();
      MethodInfo minfo = info.getSetter();
      String[] parameterTypes = getParameterTypes(trace, minfo.getParameterTypes());
      return getMethodJoinpoint(null, jpf, minfo.getName(), parameterTypes, new Object[] { null });
   }
  
   /**
    * Get the property info
    *
    * @param trace whether trace is enabled
    * @param info the bean info
    * @param name the property name
    * @return the property info
    * @throws Throwable for any error
    */
   public static PropertyInfo resolveProperty(boolean trace, BeanInfo info, String name) throws Throwable
   {
      if (info == null)
         throw new IllegalArgumentException("Null bean info");
      if (name == null)
         throw new IllegalArgumentException("Null name");
     
      Set properties = info.getProperties();
      if (properties != null && properties.size() > 0)
      {
         for (Iterator i = properties.iterator(); i.hasNext();)
         {
            PropertyInfo ainfo = (PropertyInfo) i.next();
            if (name.equals(ainfo.getName()))
               return ainfo;
         }
      }
     
      throw new JoinpointException("Property " + name + " not found for " + info);
   }
  
   /**
    * Find a method
    *
    * @param info the bean info
    * @param cl the classloader
    * @param name the method name
    * @param parameters the parameter metadata
    * @param isStatic whether the method is static
    * @param isPublic whether the method is public
    * @return the method join point
    * @throws Throwable for any error
    */
   public static MethodJoinpoint findMethod(BeanInfo info, ClassLoader cl, String name, List parameters, boolean isStatic, boolean isPublic) throws Throwable
   {
      boolean trace = log.isTraceEnabled();
      return findMethod(trace, info, cl, name, parameters, isStatic, isPublic);
   }
  
   /**
    * Find a method
    *
    * @param trace whether trace is enabled
    * @param info the bean info
    * @param cl the classloader
    * @param name the method name
    * @param parameters the parameter metadata
    * @param isStatic whether the method is static
    * @param isPublic whether the method is public
    * @return the method join point
    * @throws Throwable for any error
    */
   public static MethodJoinpoint findMethod(boolean trace, BeanInfo info, ClassLoader cl, String name, List parameters, boolean isStatic, boolean isPublic) throws Throwable
   {
      if (info == null)
         throw new IllegalArgumentException("Null bean info");
      if (name == null)
         throw new IllegalArgumentException("Null name");

      String[] paramTypes = getParameterTypes(trace, parameters);
      MethodInfo minfo = findMethodInfo(info.getClassInfo(), name, paramTypes); // FIXME isStatic, isPublic);
      JoinpointFactory jpf = info.getJoinpointFactory();
      MethodJoinpoint joinPoint = jpf.getMethodJoinpoint(minfo);

      // Set the parameters
      if (minfo != null)
      {
         TypeInfo[] pinfos = minfo.getParameterTypes();
         Object[] params = getParameters(trace, cl, pinfos, parameters);
         joinPoint.setArguments(params);
      }
     
      return joinPoint;
   }
  
   /**
    * Get the parameters types
    *
    * @param trace whether trace is enabled
    * @param parameters the parameter metadata
    * @return an array of parameter types
    * @throws Throwable for any error
    */
   public static String[] getParameterTypes(boolean trace, List parameters) throws Throwable
   {
      if (parameters == null)
         return null;
     
      String[] paramTypes = new String[parameters.size()];
      int x = 0;
      for (Iterator i = parameters.iterator(); i.hasNext();)
      {
         ParameterMetaData pmd = (ParameterMetaData) i.next();
         paramTypes[x++] = pmd.getType();
      }
      return paramTypes;
   }
  
   /**
    * Get the parameters types
    *
    * @param trace whether trace is enabled
    * @param parameters the parameter types
    * @return an array of parameter types
    * @throws Throwable for any error
    */
   public static String[] getParameterTypes(boolean trace, TypeInfo[] parameters) throws Throwable
   {
      if (parameters == null)
         return null;
     
      String[] paramTypes = new String[parameters.length];
      int x = 0;
      for (int i = 0; i < parameters.length; ++i)
         paramTypes[x++] = parameters[i].getName();
      return paramTypes;
   }
  
   /**
    * Get the parameters
    *
    * @param trace whether trace is enabled
    * @param cl the classloader
    * @param pinfos the parameter infos
    * @param parameters the parameter metadata
    * @return an array of parameters
    * @throws Throwable for any error
    */
   public static Object[] getParameters(boolean trace, ClassLoader cl, TypeInfo[] pinfos, List parameters) throws Throwable
   {
      if (parameters == null)
         return null;
     
      Object[] params = new Object[parameters.size()];
      int x = 0;
      for (Iterator i = parameters.iterator(); i.hasNext();)
      {
         ParameterMetaData pdata = (ParameterMetaData) i.next();
         ValueMetaData vmd = pdata.getValue();
         Object param = vmd.getValue(pinfos[x], cl);
         params[x++] = param;
      }
      return params;
   }

   /**
    * Get the classloader for some BeanMetaData
    *
    * @param metaData the metaData
    * @return the classloader
    * @throws Throwable for any error
    */
   public static ClassLoader getClassLoader(BeanMetaData metaData) throws Throwable
   {
      ClassLoaderMetaData clmd = null;
      if (metaData != null)
         clmd = metaData.getClassLoader();
      return getClassLoader(clmd);
   }

   /**
    * Get the classloader for some ClassLoaderMetaData
    *
    * @param metaData the metaData
    * @return the classloader
    * @throws Throwable for any error
    */
   public static ClassLoader getClassLoader(ClassLoaderMetaData metaData) throws Throwable
   {
      ClassLoader tcl = Thread.currentThread().getContextClassLoader();
      ClassLoader cl = null;
      if (metaData != null)
      {
            ValueMetaData clVMD = metaData.getClassLoader();
            if (clVMD != null)
            {
               Object object = clVMD.getValue(null, tcl);
               if (object != null && object instanceof ClassLoader == false)
                  throw new IllegalArgumentException("Configured object is not a classloader " + metaData);
               cl = (ClassLoader) object;
            }
      }
      if (cl == null)
         cl = tcl;
      return cl;
   }
}
TOP

Related Classes of org.jboss.kernel.plugins.config.Configurator

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.