All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.exolab.castor.xml.util.resolvers.ByIntrospection Maven / Gradle / Ivy

/*
 * Copyright 2007 Joachim Grueneis
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
package org.exolab.castor.xml.util.resolvers;

import java.util.HashMap;
import java.util.Map;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.exolab.castor.xml.Introspector;
import org.exolab.castor.xml.MarshalException;
import org.exolab.castor.xml.ResolverException;
import org.exolab.castor.xml.XMLClassDescriptor;
import org.exolab.castor.xml.util.ResolverStrategy;

/**
 * Resolve a class by creating a generic descriptor based on the informations read from the class
 * with introspection.
 * 
 * @author Joachim Grueneis
 * @author Steven Dolg
 * @version $Revision$ $Date$
 * @since 1.2
 */
public class ByIntrospection extends AbstractResolverClassCommand {
  /**
   * Logger to be used.
   */
  private static final Log LOG = LogFactory.getLog(ByIntrospection.class);

  /**
   * No specific stuff needed.
   */
  public ByIntrospection() {
    super();
  }

  /**
   * Creates an XMLClassDescriptor for the given type by using introspection. This method will rely
   * on the Introspector set with setIntrospector. If a descriptor is
   * successfully created it will be added to the DescriptorCache. 
* NOTE: If this XMLClassDescriptorResolver is NOT configured to use introspection this * method will NOT create an descriptor.
*
* {@inheritDoc} */ protected Map internalResolve(final String className, final ClassLoader classLoader, final Map properties) throws ResolverException { Boolean useIntrospector = (Boolean) properties.get(ResolverStrategy.PROPERTY_USE_INTROSPECTION); HashMap results = new HashMap(); if (classLoader == null) { LOG.debug("No class loader available."); return results; } if ((useIntrospector != null) && (!useIntrospector.booleanValue())) { // I know the logic is a bit weired... either introspection is explicitly // disabled or it is ok! LOG.debug("Introspection is disabled!"); return results; } Introspector introspector = (Introspector) properties.get(ResolverStrategy.PROPERTY_INTROSPECTOR); if (introspector == null) { String message = "No Introspector defined in properties!"; LOG.warn(message); throw new IllegalStateException(message); } Class clazz = ResolveHelpers.loadClass(classLoader, className); if (clazz != null) { try { XMLClassDescriptor descriptor = introspector.generateClassDescriptor(clazz); if (descriptor != null) { if (LOG.isDebugEnabled()) { LOG.debug("Found descriptor: " + descriptor); } results.put(clazz.getName(), descriptor); } } catch (MarshalException e) { String message = "Failed to generate class descriptor for: " + clazz + " with exception: " + e; LOG.warn(message); throw new ResolverException(message); } } return results; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy