/*
 * The Apache Software License, Version 1.1
 *
 *
 * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
 * reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. The end-user documentation included with the redistribution,
 *    if any, must include the following acknowledgment:
 *       "This product includes software developed by the
 *        Apache Software Foundation (http://www.apache.org/)."
 *    Alternately, this acknowledgment may appear in the software itself,
 *    if and wherever such third-party acknowledgments normally appear.
 *
 * 4. The names "Axis" and "Apache Software Foundation" must
 *    not be used to endorse or promote products derived from this
 *    software without prior written permission. For written
 *    permission, please contact apache@apache.org.
 *
 * 5. Products derived from this software may not be called "Apache",
 *    nor may "Apache" appear in their name, without prior written
 *    permission of the Apache Software Foundation.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * <http://www.apache.org/>.
 */

package org.jboss.axis.utils;

import org.jboss.axis.attachments.AttachmentPartImpl;
import org.jboss.axis.attachments.OctetStream;
import org.jboss.axis.components.image.ImageIO;
import org.jboss.axis.components.image.ImageIOFactory;
import org.jboss.axis.types.HexBinary;
import org.jboss.axis.types.UnsignedByte;
import org.jboss.axis.types.UnsignedInt;
import org.jboss.axis.types.UnsignedLong;
import org.jboss.axis.types.UnsignedShort;
import org.jboss.logging.Logger;

import javax.activation.DataHandler;
import javax.xml.namespace.QName;
import javax.xml.rpc.holders.*;
import javax.xml.soap.SOAPException;
import javax.xml.transform.Source;
import javax.xml.transform.stream.StreamSource;
import java.awt.*;
import java.beans.Introspector;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringReader;
import java.lang.reflect.Array;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.text.Collator;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Collection;
import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Set;

/**
 * Utility class to deal with Java language related issues, such
 * as type conversions.
 *
 * @author Glen Daniels (gdaniels@macromedia.com)
 */
public class JavaUtils
{
   private static Logger log = Logger.getLogger(JavaUtils.class.getName());

   public static final char NL = '\n';

   public static final char CR = '\r';

   /**
    * The prefered line separator
    */
   public static final String LS = System.getProperty("line.separator",
           (new Character(NL)).toString());


   public static Class getWrapperClass(Class primitive)
   {
      if (primitive == int.class)
         return java.lang.Integer.class;
      else if (primitive == short.class)
         return java.lang.Short.class;
      else if (primitive == boolean.class)
         return java.lang.Boolean.class;
      else if (primitive == byte.class)
         return java.lang.Byte.class;
      else if (primitive == long.class)
         return java.lang.Long.class;
      else if (primitive == double.class)
         return java.lang.Double.class;
      else if (primitive == float.class)
         return java.lang.Float.class;
      else if (primitive == char.class)
         return java.lang.Character.class;

      return null;
   }

   public static String getWrapper(String primitive)
   {
      if (primitive.equals("int"))
         return "Integer";
      else if (primitive.equals("short"))
         return "Short";
      else if (primitive.equals("boolean"))
         return "Boolean";
      else if (primitive.equals("byte"))
         return "Byte";
      else if (primitive.equals("long"))
         return "Long";
      else if (primitive.equals("double"))
         return "Double";
      else if (primitive.equals("float"))
         return "Float";
      else if (primitive.equals("char"))
         return "Character";

      return null;
   }

   public static Class getUnsignedClass(Class primitive)
   {
      if (primitive == int.class)
         return UnsignedShort.class;
      else if (primitive == short.class)
         return UnsignedByte.class;
      else if (primitive == long.class)
         return UnsignedInt.class;
      else if (primitive == BigInteger.class)
         return UnsignedLong.class;

      return null;
   }

   public static Class getPrimitiveClass(Class wrapper)
   {
      if (wrapper == java.lang.Integer.class)
         return int.class;
      else if (wrapper == java.lang.Short.class)
         return short.class;
      else if (wrapper == java.lang.Boolean.class)
         return boolean.class;
      else if (wrapper == java.lang.Byte.class)
         return byte.class;
      else if (wrapper == java.lang.Long.class)
         return long.class;
      else if (wrapper == java.lang.Double.class)
         return double.class;
      else if (wrapper == java.lang.Float.class)
         return float.class;
      else if (wrapper == java.lang.Character.class)
         return char.class;

      return null;
   }

   public static Class getPrimitiveClass(String javaType)
   {
      if ("int".equals(javaType))
         return int.class;
      else if ("short".equals(javaType))
         return short.class;
      else if ("boolean".equals(javaType))
         return boolean.class;
      else if ("byte".equals(javaType))
         return byte.class;
      else if ("long".equals(javaType))
         return long.class;
      else if ("double".equals(javaType))
         return double.class;
      else if ("float".equals(javaType))
         return float.class;
      else if ("char".equals(javaType))
         return char.class;

      return null;
   }

   /**
    * It the argument to the convert(...) method implements
    * the ConvertCache interface, the convert(...) method
    * will use the set/get methods to store and retrieve
    * converted values.
    */
   public interface ConvertCache
   {
      /**
       * Set/Get converted values of the convert method.
       */
      public void setConvertedValue(Class cls, Object value);

      public Object getConvertedValue(Class cls);

      /**
       * Get the destination array class described by the xml
       */
      public Class getDestClass();
   }

   /**
    * Utility function to convert an Object to some desired Class.
    * <p/>
    * Right now this works for:
    * arrays <-> Lists,
    * Holders <-> held values
    *
    * @param arg       the array to convert
    * @param destClass the actual class we want
    */
   public static Object convert(Object arg, Class destClass)
   {
      if (destClass == null)
      {
         return arg;
      }

      Class argHeldType = null;
      if (arg != null)
      {
         argHeldType = getHolderValueType(arg.getClass());
      }

      if (arg != null && argHeldType == null && destClass.isAssignableFrom(arg.getClass()))
      {
         return arg;
      }

      if (arg != null && destClass != null)
         assertClassLoaders(arg.getClass(), destClass);

      if (log.isDebugEnabled())
      {
         String clsName = "null";
         if (arg != null) clsName = arg.getClass().getName();
         log.debug(Messages.getMessage("convert00", clsName, destClass.getName()));
      }

      // See if a previously converted value is stored in the argument.
      Object destValue = null;
      if (arg instanceof ConvertCache)
      {
         destValue = ((ConvertCache)arg).getConvertedValue(destClass);
         if (destValue != null)
            return destValue;
      }

      // Get the destination held type or the argument held type if they exist
      Class destHeldType = getHolderValueType(destClass);

      // Convert between Axis special purpose HexBinary and byte[]
      if (arg instanceof HexBinary && destClass == byte[].class)
         return ((HexBinary)arg).getBytes();
      if (arg instanceof byte[] && destClass == HexBinary.class)
         return new HexBinary((byte[])arg);
      if (arg instanceof HexBinary && destClass == Byte[].class)
         return convert(((HexBinary)arg).getBytes(), Byte[].class);
      if (arg instanceof Byte[] && destClass == HexBinary.class)
         return new HexBinary((Byte[])arg);

      // Convert between Calendar and Date
      if (arg instanceof Calendar && destClass.isAssignableFrom(java.util.Date.class))
      {
         return ((Calendar)arg).getTime();
      }
      if (arg instanceof java.util.Date && destClass.isAssignableFrom(Calendar.class))
      {
         GregorianCalendar gregorianCalendar = new GregorianCalendar();
         gregorianCalendar.setTime((java.util.Date)arg);
         return gregorianCalendar;
      }

      // Convert between Calendar and org.jboss.axis.types.Time
      if (arg instanceof Calendar && destClass.isAssignableFrom(org.jboss.axis.types.Time.class))
         return new org.jboss.axis.types.Time((Calendar)arg);
      if (arg instanceof org.jboss.axis.types.Time && destClass.isAssignableFrom(Calendar.class))
         return ((org.jboss.axis.types.Time)arg).getAsCalendar();

      // Convert between HashMap and Hashtable
      if (arg instanceof HashMap && destClass == Hashtable.class)
      {
         return new Hashtable((HashMap)arg);
      }

      if (arg instanceof org.jboss.axis.types.UnsignedByte && destClass == short.class)
         return new Short(arg.toString());

      if (arg instanceof org.jboss.axis.types.UnsignedShort && destClass == int.class)
         return new Integer(arg.toString());

      if (arg instanceof org.jboss.axis.types.UnsignedInt && destClass == long.class)
         return new Long(arg.toString());

      if (arg instanceof org.jboss.axis.types.UnsignedLong && destClass == BigInteger.class)
         return new BigInteger(arg.toString());

      // Allow mapping of String to org.jboss.axis.types.Language
      if (arg instanceof org.jboss.axis.types.Language && destClass == String.class)
         return arg.toString();
      if (arg instanceof String && destClass == org.jboss.axis.types.Language.class)
         return new org.jboss.axis.types.Language((String)arg);

      // Allow mapping of String to org.jboss.axis.types.Token
      if (arg instanceof org.jboss.axis.types.Token && destClass == String.class)
         return arg.toString();
      if (arg instanceof String && destClass == org.jboss.axis.types.Token.class)
         return new org.jboss.axis.types.Token((String)arg);

      // Do fuzzy bean conversion arg -> wrapperBean(dest)
      if (arg != null && isBeanCompatible(destClass))
      {
         try
         {
            Constructor ctor = getConstructorForClass(destClass, arg.getClass());
            Object ctorArg = convert(arg, ctor.getParameterTypes()[0]);
            return ctor.newInstance(new Object[]{ctorArg});
         }
         catch (Exception ignore)
         {
            // ignore
         }
      }
      // Do fuzzy bean conversion wrapperBean -> dest
      if (arg != null && isBeanCompatible(arg.getClass()))
      {
         try
         {
            Method getter = getAccessorForClass(arg.getClass(), destClass);
            return getter.invoke(arg, null);
         }
         catch (Exception ignore)
         {
            // ignore
         }
      }

      // Convert an AttachmentPart to the given destination class.
      if (isAttachmentSupported() &&
              (arg instanceof InputStream || arg instanceof AttachmentPartImpl || arg instanceof DataHandler))
      {
         try
         {
            String destName = destClass.getName();
            if (destClass == String.class
                    || destClass == OctetStream.class
                    || destClass == byte[].class
                    || destClass == Image.class
                    || destClass == Source.class
                    || destClass == DataHandler.class
                    || destName.equals("javax.mail.internet.MimeMultipart"))
            {
               DataHandler handler = null;
               if (arg instanceof AttachmentPartImpl)
               {
                  handler = ((AttachmentPartImpl)arg).getDataHandler();
               }
               else if (arg instanceof DataHandler)
               {
                  handler = (DataHandler)arg;
               }
               if (destClass == Image.class)
               {
                  // Note:  An ImageIO component is required to process an Image
                  // attachment, but if the image would be null
                  // (is.available == 0) then ImageIO component isn't needed
                  // and we can return null.
                  InputStream is = (InputStream)handler.getContent();
                  if (is.available() == 0)
                  {
                     return null;
                  }
                  else
                  {
                     ImageIO imageIO = ImageIOFactory.getImageIO();
                     if (imageIO != null)
                     {
                        return getImageFromStream(is);
                     }
                     else
                     {
                        log.info(Messages.getMessage("needImageIO"));
                        return arg;
                     }
                  }
               }
               else if (destClass == Source.class)
               {
                  // For a reason unknown to me, the handler's
                  // content is a String.  Convert it to a
                  // StreamSource.
                  return new StreamSource(new StringReader((String)handler.getContent()));
               }
               else if ((arg instanceof InputStream) && (destClass == OctetStream.class || destClass == byte[].class))
               {
                  InputStream in = (InputStream)arg;
                  ByteArrayOutputStream baos = new ByteArrayOutputStream();
                  int byte1 = -1;
                  while ((byte1 = in.read()) != -1)
                     baos.write(byte1);
                  return new OctetStream(baos.toByteArray());
               }
               else if (destClass == DataHandler.class)
               {
                  return handler;
               }
               else
               {
                  return handler.getContent();
               }
            }
         }
         catch (IOException ioe)
         {
         }
         catch (SOAPException se)
         {
         }
      }

      // If the destination is an array and the source
      // is a suitable component, return an array with
      // the single item.
      if (arg != null &&
              destClass.isArray() &&
              !destClass.getComponentType().equals(Object.class) &&
              !destClass.getComponentType().isArray() &&
              destClass.getComponentType().isAssignableFrom(arg.getClass()))
      {
         Object array =
                 Array.newInstance(destClass.getComponentType(), 1);
         Array.set(array, 0, arg);
         return array;
      }

      // Return if no conversion is available
      if (!(arg instanceof Collection ||
              (arg != null && arg.getClass().isArray())) &&
              ((destHeldType == null && argHeldType == null) ||
              (destHeldType != null && argHeldType != null)))
      {
         return arg;
      }

      // Take care of Holder conversion
      if (destHeldType != null)
      {
         // Convert arg into Holder holding arg.
         Object newArg = convert(arg, destHeldType);
         Object argHolder = null;
         try
         {
            argHolder = destClass.newInstance();
            setHolderValue(argHolder, newArg);
            return argHolder;
         }
         catch (Exception e)
         {
            return arg;
         }
      }
      else if (argHeldType != null)
      {
         // Convert arg into the held type
         try
         {
            Object newArg = getHolderValue(arg);
            return convert(newArg, destClass);
         }
         catch (HolderException e)
         {
            return arg;
         }
      }

      // Flow to here indicates that neither arg or destClass is a Holder

      // Check to see if the argument has a prefered destination class.
      if (arg instanceof ConvertCache &&
              ((ConvertCache)arg).getDestClass() != destClass)
      {
         Class hintClass = ((ConvertCache)arg).getDestClass();
         if (hintClass != null &&
                 hintClass.isArray() &&
                 destClass.isArray() &&
                 destClass.isAssignableFrom(hintClass))
         {
            destClass = hintClass;
            destValue = ((ConvertCache)arg).getConvertedValue(destClass);
            if (destValue != null)
               return destValue;
         }
      }

      if (arg == null)
      {
         return arg;
      }

      // The arg may be an array or List
      int length = 0;
      if (arg.getClass().isArray())
      {
         length = Array.getLength(arg);
      }
      else
      {
         length = ((Collection)arg).size();
      }
      if (destClass.isArray())
      {
         Class componentType = destClass.getComponentType();
         if (componentType.isPrimitive())
         {

            Object array = Array.newInstance(componentType, length);
            // Assign array elements
            if (arg.getClass().isArray())
            {
               for (int i = 0; i < length; i++)
               {
                  Object srcObj = Array.get(arg, i);
                  Object valObj = convert(srcObj, componentType);
                  Array.set(array, i, valObj);
               }
            }
            else
            {
               int idx = 0;
               for (Iterator i = ((Collection)arg).iterator();
                    i.hasNext();)
               {
                  Array.set(array, idx++, i.next());
               }
            }
            destValue = array;

         }
         else
         {
            Object[] array;
            try
            {
               array = (Object[])Array.newInstance(destClass.getComponentType(),
                       length);
            }
            catch (Exception e)
            {
               return arg;
            }

            // Use convert to assign array elements.
            if (arg.getClass().isArray())
            {
               for (int i = 0; i < length; i++)
               {
                  array[i] = convert(Array.get(arg, i),
                          destClass.getComponentType());
               }
            }
            else
            {
               int idx = 0;
               for (Iterator i = ((Collection)arg).iterator();
                    i.hasNext();)
               {
                  array[idx++] = convert(i.next(),
                          destClass.getComponentType());
               }
            }
            destValue = array;
         }
      }
      else if (Collection.class.isAssignableFrom(destClass))
      {
         Collection newList = null;
         try
         {
            // if we are trying to create an interface, build something
            // that implements the interface
            if (destClass == Collection.class || destClass == List.class)
            {
               newList = new ArrayList();
            }
            else if (destClass == Set.class)
            {
               newList = new HashSet();
            }
            else
            {
               newList = (Collection)destClass.newInstance();
            }
         }
         catch (Exception e)
         {
            // Couldn't build one for some reason... so forget it.
            return arg;
         }

         if (arg.getClass().isArray())
         {
            for (int j = 0; j < length; j++)
            {
               newList.add(Array.get(arg, j));
            }
         }
         else
         {
            for (Iterator j = ((Collection)arg).iterator();
                 j.hasNext();)
            {
               newList.add(j.next());
            }
         }
         destValue = newList;
      }
      else
      {
         destValue = arg;
      }

      // Store the converted value in the argument if possible.
      if (arg instanceof ConvertCache)
      {
         ((ConvertCache)arg).setConvertedValue(destClass, destValue);
      }
      return destValue;
   }

   public static boolean isConvertable(Object obj, Class dest)
   {
      return isConvertable(obj, dest, false);
   }

   public static boolean isConvertable(Object obj, Class dest, boolean isEncoded)
   {
      Class src = null;

      if (obj != null)
      {
         if (obj instanceof Class)
         {
            src = (Class)obj;
         }
         else
         {
            src = obj.getClass();
         }
      }
      else
      {
         if (!dest.isPrimitive())
            return true;
      }

      if (dest == null)
         return false;

      if (src != null)
      {
         // If we're directly assignable, we're good.
         if (dest.isAssignableFrom(src))
            return true;

         assertClassLoaders(src, dest);

         if (src.getName().equals(dest.getName()))
         {
            log.error("Conflicting classloaders detected: [src=" + src.getClassLoader() + ",dest=" + dest.getClassLoader() + "]");
            return false;
         }

         //Allow mapping of Map's to Map's
         if (java.util.Map.class.isAssignableFrom(dest) &&
                 java.util.Map.class.isAssignableFrom(src))
         {
            return true;
         }

         // If it's a wrapping conversion, we're good.
         if (getWrapperClass(src) == dest)
            return true;
         if (getWrapperClass(dest) == src)
            return true;

         // If it's a unsigned conversion, we're good.
         if (getUnsignedClass(src) == dest)
            return true;
         if (getUnsignedClass(dest) == src)
            return true;

         // If it's List -> Array or vice versa, we're good.
         if ((Collection.class.isAssignableFrom(src) || src.isArray()) &&
                 (Collection.class.isAssignableFrom(dest) || dest.isArray()) &&
                 (src.getComponentType() == Object.class ||
                 src.getComponentType() == null ||
                 dest.getComponentType() == Object.class ||
                 dest.getComponentType() == null ||
                 isConvertable(src.getComponentType(), dest.getComponentType())))
            return true;

         // If destination is an array, and src is a component, we're good
         // if we're not encoded!
         if (!isEncoded && dest.isArray() &&
                 !dest.getComponentType().equals(Object.class) &&
                 dest.getComponentType().isAssignableFrom(src))
            return true;

         if (src == HexBinary.class && dest == byte[].class)
            return true;
         if (src == byte[].class && dest == HexBinary.class)
            return true;
         if (src == HexBinary.class && dest == Byte[].class)
            return true;
         if (src == Byte[].class && dest == HexBinary.class)
            return true;

         // Hack to allow attachments to function
         if (src == byte[].class || dest == byte[].class)
             return true;

         // Allow mapping of Calendar to Date
         if (Calendar.class.isAssignableFrom(src) && java.util.Date.class.isAssignableFrom(dest))
            return true;
         if (Calendar.class.isAssignableFrom(dest) && java.util.Date.class.isAssignableFrom(src))
            return true;

         // Allow mapping of Calendar to org.jboss.axis.types.Time
         if (org.jboss.axis.types.Time.class.isAssignableFrom(src) && Calendar.class.isAssignableFrom(dest))
            return true;
         if (org.jboss.axis.types.Time.class.isAssignableFrom(dest) && Calendar.class.isAssignableFrom(src))
            return true;

         // Allow mapping of String to org.jboss.axis.types.Language
         if (org.jboss.axis.types.Language.class.isAssignableFrom(src) && String.class.isAssignableFrom(dest))
            return true;
         if (org.jboss.axis.types.Language.class.isAssignableFrom(dest) && String.class.isAssignableFrom(src))
            return true;

         // Allow mapping of String to org.jboss.axis.types.Token
         if (org.jboss.axis.types.Token.class.isAssignableFrom(src) && String.class.isAssignableFrom(dest))
            return true;
         if (org.jboss.axis.types.Token.class.isAssignableFrom(dest) && String.class.isAssignableFrom(src))
            return true;
      }

      Class destHeld = JavaUtils.getHolderValueType(dest);
      // Can always convert a null to an empty holder
      if (src == null)
         return (destHeld != null);

      if (destHeld != null)
      {
         if (destHeld.isAssignableFrom(src) || isConvertable(src, destHeld))
            return true;
      }

      // If it's holder -> held or held -> holder, we're good
      Class srcHeld = JavaUtils.getHolderValueType(src);
      if (srcHeld != null)
      {
         if (dest.isAssignableFrom(srcHeld) || isConvertable(srcHeld, dest))
            return true;
      }

      if (isEncoded == false)
      {
         if (isBeanCompatible(dest) && getConstructorForClass(dest, src) != null && getAccessorForClass(dest, src) != null)
            return true;
         if (isBeanCompatible(src) && getConstructorForClass(src, dest) != null && getAccessorForClass(src, dest) != null)
            return true;
      }

      // convert will always unwrap an attachment, so this is ok
      if (src.isAssignableFrom(AttachmentPartImpl.class))
         return true;

      // If it's a MIME type mapping and we want a DataHandler,
      // then we're good.
      if (dest.getName().equals("javax.activation.DataHandler"))
      {
         String name = src.getName();
         if (src == String.class
                 || src == java.awt.Image.class
                 || src == OctetStream.class
                 || name.equals("javax.mail.internet.MimeMultipart")
                 || name.equals("javax.xml.transform.Source"))
            return true;
      }

      if (src.getName().equals("javax.activation.DataHandler"))
      {
         if (dest == byte[].class)
            return true;
         if (dest.isArray() && dest.getComponentType() == byte[].class)
            return true;
      }

      if (dest.getName().equals("javax.activation.DataHandler"))
      {
         if (src == Object[].class)
            return true;
         if (src.isArray() && src.getComponentType() == Object[].class)
            return true;
      }

      if (obj instanceof java.io.InputStream)
      {
         if (dest == OctetStream.class)
            return true;
      }

      if (src.isPrimitive())
      {
         return isConvertable(getWrapperClass(src), dest);
      }

      log.debug("Not convertible: [src=" + src + ",dest=" + dest + "]");
      return false;
   }

   /** Throws an IllegalStateException if class names correspond but ClassLoaders do not.
    */
   private static void assertClassLoaders(Class src, Class dest)
   {
      if (src.getName().equals(dest.getName()) && src.getClassLoader() != dest.getClassLoader())
      {
         throw new IllegalStateException("Class loading conflict detected: " + src.getName() +
                 "\nsrcCL=" + src.getClassLoader() +
                 "\ndestCL=" + dest.getClassLoader());
      }
   }

   private static Method getAccessorForClass(Class bean, Class param)
   {
      try
      {
         Method[] methods = bean.getMethods();
         for (int i = 0; i < methods.length; i++)
         {
            Method getter = methods[i];
            String name = getter.getName();
            Class returnType = getter.getReturnType();
            if (name.startsWith("get") && getter.getParameterTypes().length == 0 && isConvertable(returnType, param))
            {
               name = "set" + name.substring(3);
               bean.getMethod(name, new Class[]{returnType});
               return getter;
            }
         }
         return null;
      }
      catch (NoSuchMethodException e)
      {
         return null;
      }
   }

   private static Constructor getConstructorForClass(Class bean, Class param)
   {
      Constructor[] ctors = bean.getConstructors();
      for (int i = 0; i < ctors.length; i++)
      {
         Constructor ctor = ctors[i];
         Class[] paramTypes = ctor.getParameterTypes();
         if (paramTypes != null && paramTypes.length == 1)
         {
            if (isConvertable(param, paramTypes[0]))
               return ctor;
         }
      }
      return null;
   }

   /**
    * isBeanCompatible
    *
    * @param javaType Class
    */
   public static boolean isBeanCompatible(Class javaType)
   {

      // Must be a non-primitive and non array
      if (javaType.isArray() || javaType.isPrimitive())
      {
         return false;
      }

      // Anything in the java or javax package that
      // does not have a defined mapping is excluded.
      if (javaType.getName().startsWith("java.") || javaType.getName().startsWith("javax."))
      {
         return false;
      }

      // Return true if appears to be an enums class
      if (JavaUtils.isEnumClass(javaType))
      {
         return true;
      }

      // Must have a default public constructor if not Throwable
      if (!java.lang.Throwable.class.isAssignableFrom(javaType))
      {
         try
         {
            javaType.getConstructor(new Class[]{});
         }
         catch (java.lang.NoSuchMethodException e)
         {
            return false;
         }
      }

      // Make sure superclass is compatible
      Class superClass = javaType.getSuperclass();
      if (superClass != null &&
              superClass != java.lang.Object.class &&
              superClass != java.lang.Exception.class &&
              superClass != java.lang.Throwable.class &&
              superClass != java.rmi.RemoteException.class &&
              superClass != org.jboss.axis.AxisFault.class)
      {

         if (!isBeanCompatible(superClass))
         {
            return false;
         }
      }
      return true;
   }

   public static Image getImageFromStream(InputStream is)
   {
      try
      {
         return ImageIOFactory.getImageIO().loadImage(is);
      }
      catch (Throwable t)
      {
         return null;
      }
   } // getImageFromStream

   /**
    * These are java keywords as specified at the following URL (sorted alphabetically).
    * http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#229308
    * Note that false, true, and null are not strictly keywords; they are literal values,
    * but for the purposes of this array, they can be treated as literals.
    * ****** PLEASE KEEP THIS LIST SORTED IN ASCENDING ORDER ******
    */
   static final String keywords[] =
           {
              "abstract", "assert", "boolean", "break", "byte", "case",
              "catch", "char", "class", "const", "continue",
              "default", "do", "double", "else", "extends",
              "false", "final", "finally", "float", "for",
              "goto", "if", "implements", "import", "instanceof",
              "int", "interface", "long", "native", "new",
              "null", "package", "private", "protected", "public",
              "return", "short", "static", "strictfp", "super",
              "switch", "synchronized", "this", "throw", "throws",
              "transient", "true", "try", "void", "volatile",
              "while"
           };

   /**
    * Collator for comparing the strings
    */
   static final Collator englishCollator = Collator.getInstance(Locale.ENGLISH);

   /**
    * Use this character as suffix
    */
   static final char keywordPrefix = '_';

   /**
    * isJavaId
    * Returns true if the name is a valid java identifier.
    *
    * @param id to check
    * @return boolean true/false
    */
   public static boolean isJavaId(String id)
   {
      if (id == null || id.equals("") || isJavaKeyword(id))
         return false;
      if (!Character.isJavaIdentifierStart(id.charAt(0)))
         return false;
      for (int i = 1; i < id.length(); i++)
         if (!Character.isJavaIdentifierPart(id.charAt(i)))
            return false;
      return true;
   }

   /**
    * checks if the input string is a valid java keyword.
    *
    * @return boolean true/false
    */
   public static boolean isJavaKeyword(String keyword)
   {
      return (Arrays.binarySearch(keywords, keyword, englishCollator) >= 0);
   }

   /**
    * Turn a java keyword string into a non-Java keyword string.  (Right now
    * this simply means appending an underscore.)
    */
   public static String makeNonJavaKeyword(String keyword)
   {
      return keywordPrefix + keyword;
   }

   /**
    * Converts text of the form
    * Foo[] to the proper class name for loading [LFoo
    */
   public static String getLoadableClassName(String text)
   {
      if (text == null ||
              text.indexOf("[") < 0 ||
              text.charAt(0) == '[')
         return text;
      String className = text.substring(0, text.indexOf("["));
      if (className.equals("byte"))
         className = "B";
      else if (className.equals("char"))
         className = "C";
      else if (className.equals("double"))
         className = "D";
      else if (className.equals("float"))
         className = "F";
      else if (className.equals("int"))
         className = "I";
      else if (className.equals("long"))
         className = "J";
      else if (className.equals("short"))
         className = "S";
      else if (className.equals("boolean"))
         className = "Z";
      else
         className = "L" + className + ";";
      int i = text.indexOf("]");
      while (i > 0)
      {
         className = "[" + className;
         i = text.indexOf("]", i + 1);
      }
      return className;
   }

   /**
    * Converts text of the form
    * [LFoo to the Foo[]
    */
   public static String getTextClassName(String text)
   {
      if (text == null ||
              text.indexOf("[") != 0)
         return text;
      String className = "";
      int index = 0;
      while (index < text.length() &&
              text.charAt(index) == '[')
      {
         index++;
         className += "[]";
      }
      if (index < text.length())
      {
         if (text.charAt(index) == 'B')
            className = "byte" + className;
         else if (text.charAt(index) == 'C')
            className = "char" + className;
         else if (text.charAt(index) == 'D')
            className = "double" + className;
         else if (text.charAt(index) == 'F')
            className = "float" + className;
         else if (text.charAt(index) == 'I')
            className = "int" + className;
         else if (text.charAt(index) == 'J')
            className = "long" + className;
         else if (text.charAt(index) == 'S')
            className = "short" + className;
         else if (text.charAt(index) == 'Z')
            className = "boolean" + className;
         else
         {
            className = text.substring(index + 1, text.indexOf(";")) + className;
         }
      }
      return className;
   }

   /**
    * Map an XML name to a Java identifier per
    * the mapping rules of JSR 101 (in version 1.0 this is
    * "Chapter 20: Appendix: Mapping of XML Names"
    *
    * @param name is the xml name
    * @return the java name per JSR 101 specification
    */
   public static String xmlNameToJava(String name)
   {
      // protect ourselves from garbage
      if (name == null || name.equals(""))
         return name;

      char[] nameArray = name.toCharArray();
      int nameLen = name.length();
      StringBuffer result = new StringBuffer(nameLen);
      boolean wordStart = false;

      // The mapping indicates to convert first character.
      int i = 0;
      while (i < nameLen
              && (isPunctuation(nameArray[i])
              || !Character.isJavaIdentifierStart(nameArray[i])))
      {
         i++;
      }
      if (i < nameLen)
      {
         // Decapitalization code used to be here, but we use the
         // Introspector function now after we filter out all bad chars.

         result.append(nameArray[i]);
         //wordStart = !Character.isLetter(nameArray[i]);
         wordStart = !Character.isLetter(nameArray[i]) && nameArray[i] != "_".charAt(0);
      }
      else
      {
         // The identifier cannot be mapped strictly according to JSR 101
         if (Character.isJavaIdentifierPart(nameArray[0]))
         {
            result.append("_" + nameArray[0]);
         }
         else
         {
            // The XML identifier does not contain any characters
            // we can map to Java.  Using the length of the string
            // will make it somewhat unique.
            result.append("_" + nameArray.length);
         }
      }

      // The mapping indicates to skip over all characters that are not letters or digits.
      // The first letter/digit following a skipped character is upper-cased.
      for (++i; i < nameLen; ++i)
      {
         char c = nameArray[i];

         // if this is a bad char, skip it and remember to capitalize next good character we encounter
         if (isPunctuation(c) || !Character.isJavaIdentifierPart(c))
         {
            wordStart = true;
            continue;
         }
         if (wordStart && Character.isLowerCase(c))
         {
            result.append(Character.toUpperCase(c));
         }
         else
         {
            result.append(c);
         }
         // If c is not a character, but is a legal Java identifier character, capitalize the next character.
         // For example:  "22hi" becomes "22Hi"
         wordStart = !Character.isLetter(c) && c != "_".charAt(0);
      }

      // covert back to a String
      String newName = result.toString();

      // Follow JavaBean rules, but we need to check if the first
      // letter is uppercase first
      if (Character.isUpperCase(newName.charAt(0)))
         newName = Introspector.decapitalize(newName);

      // check for Java keywords
      if (isJavaKeyword(newName))
         newName = makeNonJavaKeyword(newName);

      return newName;
   } // xmlNameToJava

   /**
    * Is this an XML punctuation character?
    */
   private static boolean isPunctuation(char c)
   {
      return '-' == c
              || '.' == c
              || ':' == c
              || '\u00B7' == c
              || '\u0387' == c
              || '\u06DD' == c
              || '\u06DE' == c;
   } // isPunctuation


   /**
    * replace:
    * Like String.replace except that the old new items are strings.
    *
    * @param name string
    * @param oldT old text to replace
    * @param newT new text to use
    * @return replacement string
    */
   public static final String replace(String name,
                                      String oldT, String newT)
   {

      if (name == null) return "";

// Create a string buffer that is twice initial length.
// This is a good starting point.
      StringBuffer sb = new StringBuffer(name.length() * 2);

      int len = oldT.length();
      try
      {
         int start = 0;
         int i = name.indexOf(oldT, start);

         while (i >= 0)
         {
            sb.append(name.substring(start, i));
            sb.append(newT);
            start = i + len;
            i = name.indexOf(oldT, start);
         }
         if (start < name.length())
            sb.append(name.substring(start));
      }
      catch (NullPointerException e)
      {
      }

      return new String(sb);
   }

   /**
    * Determines if the Holder Class for a given held class.
    *
    * @param type the held class
    * @return holder class or null
    */
   public static Class getHolderType(Class type)
   {
      if (javax.xml.rpc.holders.Holder.class.isAssignableFrom(type))
         throw new IllegalArgumentException("Is already a holder type: " + type);

      if (type == BigDecimal.class)
         return BigDecimalHolder.class;
      if (type == BigInteger.class)
         return BigIntegerHolder.class;
      if (type == boolean.class)
         return BooleanHolder.class;
      if (type == Boolean.class)
         return BooleanWrapperHolder.class;
      if (type == byte[].class)
         return ByteArrayHolder.class;
      if (type == byte.class)
         return ByteHolder.class;
      if (type == Byte.class)
         return ByteWrapperHolder.class;
      if (type == Calendar.class)
         return CalendarHolder.class;
      if (type == double.class)
         return DoubleHolder.class;
      if (type == Double.class)
         return DoubleWrapperHolder.class;
      if (type == float.class)
         return FloatHolder.class;
      if (type == Float.class)
         return FloatWrapperHolder.class;
      if (type == int.class)
         return IntHolder.class;
      if (type == Integer.class)
         return IntegerWrapperHolder.class;
      if (type == long.class)
         return LongHolder.class;
      if (type == Long.class)
         return LongWrapperHolder.class;
      if (type == QName.class)
         return QNameHolder.class;
      if (type == short.class)
         return ShortHolder.class;
      if (type == Short.class)
         return ShortWrapperHolder.class;
      if (type == String.class)
         return StringHolder.class;
      if (type == Object.class)
         return ObjectHolder.class;

      return null;
   }

   /**
    * Determines if the Class is a Holder class. If so returns Class of held type
    * else returns null
    *
    * @param type the suspected Holder Class
    * @return class of held type or null
    */
   public static Class getHolderValueType(Class type)
   {
      if (type != null)
      {
         Class[] intf = type.getInterfaces();
         boolean isHolder = false;
         for (int i = 0; i < intf.length && !isHolder; i++)
         {
            if (intf[i] == javax.xml.rpc.holders.Holder.class)
            {
               isHolder = true;
            }
         }
         if (isHolder == false)
         {
            return null;
         }

// Holder is supposed to have a public value field.
         java.lang.reflect.Field field;
         try
         {
            field = type.getField("value");
         }
         catch (Exception e)
         {
            field = null;
         }
         if (field != null)
         {
            return field.getType();
         }
      }
      return null;
   }

   /**
    * Gets the Holder value.
    *
    * @param holder Holder object
    * @return value object
    */
   public static Object getHolderValue(Object holder) throws HolderException
   {
      if (!(holder instanceof javax.xml.rpc.holders.Holder))
      {
         throw new HolderException(Messages.getMessage("badHolder00"));
      }
      try
      {
         Field valueField = holder.getClass().getField("value");
         return valueField.get(holder);
      }
      catch (Exception e)
      {
         throw new HolderException(Messages.getMessage("exception01", e.getMessage()));
      }
   }

   /**
    * Sets the Holder value.
    *
    * @param holder Holder object
    * @param value  is the object value
    */
   public static void setHolderValue(Object holder, Object value) throws HolderException
   {
      if (!(holder instanceof javax.xml.rpc.holders.Holder))
      {
         throw new HolderException(Messages.getMessage("badHolder00"));
      }
      try
      {
         Field valueField = holder.getClass().getField("value");
         if (valueField.getType().isPrimitive())
         {
            if (value == null)
               ;  // Don't need to set anything
            else
               valueField.set(holder, value);  // Automatically unwraps value to primitive
         }
         else
         {
            valueField.set(holder, value);
         }
      }
      catch (Exception e)
      {
         log.error("Cannot set holder value '" + value + "' on " + holder.getClass().getName(), e);
         throw new HolderException(Messages.getMessage("exception01", e.getMessage()));
      }
   }

   public static class HolderException extends Exception
   {
      public HolderException(String msg)
      {
         super(msg);
      }
   }


   /**
    * Determine if the class is a JAX-RPC enums class.
    * An enumeration class is recognized by
    * a getValue() method, a toString() method, a fromString(String) method
    * a fromValue(type) method and the lack
    * of a setValue(type) method
    */
   public static boolean isEnumClass(Class cls)
   {
      try
      {
         java.lang.reflect.Method m = cls.getMethod("getValue", null);
         java.lang.reflect.Method m2 = cls.getMethod("toString", null);
         java.lang.reflect.Method m3 = cls.getMethod("fromString",
                 new Class[]{java.lang.String.class});

         if (m != null && m2 != null && m3 != null &&
                 cls.getMethod("fromValue", new Class[]{m.getReturnType()}) != null)
         {
            try
            {
               if (cls.getMethod("setValue", new Class[]{m.getReturnType()}) == null)
                  return true;
               return false;
            }
            catch (java.lang.NoSuchMethodException e)
            {
               return true;  // getValue & fromValue exist.  setValue does not exist.  Thus return true.
            }
         }
      }
      catch (java.lang.NoSuchMethodException e)
      {
      }
      return false;
   }

   /**
    * Determine if the class is an array
    * TDI 20-June-2004
    */
   public static boolean isArrayClass(Class cls)
   {
      String className = cls.getName();
      return className.startsWith("[");
   }

   public static String stackToString(Throwable e)
   {
      java.io.StringWriter sw = new java.io.StringWriter(1024);
      java.io.PrintWriter pw = new java.io.PrintWriter(sw);
      e.printStackTrace(pw);
      pw.close();
      return sw.toString();
   }

   /**
    * Tests the String 'value':
    * return 'false' if its 'false', '0', or 'no' - else 'true'
    * <p/>
    * Follow in 'C' tradition of boolean values:
    * false is specific (0), everything else is true;
    */
   public static final boolean isTrue(String value)
   {
      return !isFalseExplicitly(value);
   }

   /**
    * Tests the String 'value':
    * return 'true' if its 'true', '1', or 'yes' - else 'false'
    */
   public static final boolean isTrueExplicitly(String value)
   {
      return value != null &&
              (value.equalsIgnoreCase("true") ||
              value.equals("1") ||
              value.equalsIgnoreCase("yes"));
   }

   /**
    * Tests the Object 'value':
    * if its null, return default.
    * if its a Boolean, return booleanValue()
    * if its an Integer,  return 'false' if its '0' else 'true'
    * if its a String, return isTrueExplicitly((String)value).
    * All other types return 'true'
    */
   public static final boolean isTrueExplicitly(Object value, boolean defaultVal)
   {
      if (value == null) return defaultVal;
      if (value instanceof Boolean)
      {
         return ((Boolean)value).booleanValue();
      }
      if (value instanceof Integer)
      {
         return ((Integer)value).intValue() != 0;
      }
      if (value instanceof String)
      {
         return isTrueExplicitly((String)value);
      }
      return true;
   }

   public static final boolean isTrueExplicitly(Object value)
   {
      return isTrueExplicitly(value, false);
   }

   /**
    * Tests the Object 'value':
    * if its null, return default.
    * if its a Boolean, return booleanValue()
    * if its an Integer,  return 'false' if its '0' else 'true'
    * if its a String, return 'false' if its 'false', 'no', or '0' - else 'true'
    * All other types return 'true'
    */
   public static final boolean isTrue(Object value, boolean defaultVal)
   {
      return !isFalseExplicitly(value, !defaultVal);
   }

   public static final boolean isTrue(Object value)
   {
      return isTrue(value, false);
   }

   /**
    * Tests the String 'value':
    * return 'true' if its 'false', '0', or 'no' - else 'false'
    * <p/>
    * Follow in 'C' tradition of boolean values:
    * false is specific (0), everything else is true;
    */
   public static final boolean isFalse(String value)
   {
      return isFalseExplicitly(value);
   }

   /**
    * Tests the String 'value':
    * return 'true' if its null, 'false', '0', or 'no' - else 'false'
    */
   public static final boolean isFalseExplicitly(String value)
   {
      return value == null ||
              value.equalsIgnoreCase("false") ||
              value.equals("0") ||
              value.equalsIgnoreCase("no");
   }

   /**
    * Tests the Object 'value':
    * if its null, return default.
    * if its a Boolean, return !booleanValue()
    * if its an Integer,  return 'true' if its '0' else 'false'
    * if its a String, return isFalseExplicitly((String)value).
    * All other types return 'false'
    */
   public static final boolean isFalseExplicitly(Object value, boolean defaultVal)
   {
      if (value == null) return defaultVal;
      if (value instanceof Boolean)
      {
         return !((Boolean)value).booleanValue();
      }
      if (value instanceof Integer)
      {
         return ((Integer)value).intValue() == 0;
      }
      if (value instanceof String)
      {
         return isFalseExplicitly((String)value);
      }
      return false;
   }

   public static final boolean isFalseExplicitly(Object value)
   {
      return isFalseExplicitly(value, true);
   }

   /**
    * Tests the Object 'value':
    * if its null, return default.
    * if its a Boolean, return booleanValue()
    * if its an Integer,  return 'false' if its '0' else 'true'
    * if its a String, return 'false' if its 'false', 'no', or '0' - else 'true'
    * All other types return 'true'
    */
   public static final boolean isFalse(Object value, boolean defaultVal)
   {
      return isFalseExplicitly(value, defaultVal);
   }

   public static final boolean isFalse(Object value)
   {
      return isFalse(value, true);
   }

   /**
    * Given the MIME type string, return the Java mapping.
    */
   public static String mimeToJava(String mime)
   {
      if ("image/gif".equals(mime) || "image/jpeg".equals(mime))
      {
         return "java.awt.Image";
      }
      else if ("text/plain".equals(mime))
      {
         return "java.lang.String";
      }
      else if ("text/xml".equals(mime) || "application/xml".equals(mime))
      {
         return "javax.xml.transform.Source";
      }
      else if ("application/octetstream".equals(mime))
      {
         return "org.jboss.axis.attachments.OctetStream";
      }
      else if (mime != null && mime.startsWith("multipart/"))
      {
         return "javax.mail.internet.MimeMultipart";
      }
      else
      {
         return null;
      }
   } // mimeToJava

//avoid testing and possibly failing everytime.
   private static boolean checkForAttachmentSupport = true;
   private static boolean attachmentSupportEnabled = false;

   /**
    * Determine whether attachments are supported by checking if the following
    * classes are available:  javax.activation.DataHandler,
    * javax.mail.internet.MimeMultipart.
    */
   public static synchronized boolean isAttachmentSupported()
   {

      if (checkForAttachmentSupport)
      {
         //aviod testing and possibly failing everytime.
         checkForAttachmentSupport = false;
         try
         {
// Attempt to resolve DataHandler and MimeMultipart and
// javax.xml.transform.Source, all necessary for full
// attachment support
            ClassUtils.forName("javax.activation.DataHandler");
            ClassUtils.forName("javax.mail.internet.MimeMultipart");
            attachmentSupportEnabled = true;
         }
         catch (Throwable t)
         {
         }
         log.debug(Messages.getMessage("attachEnabled") + "  " +
                 attachmentSupportEnabled);
      }

      return attachmentSupportEnabled;
   } // isAttachmentSupported
}