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

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

Go to download

The core XML data binding framework with support for marshalling Java objects to and unmarshalling from XML documents.

The newest version!
/*
 * 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.ResolverException;
import org.exolab.castor.xml.XMLConstants;

/**
 * Resolve a class by looking for a descriptor class 'nearby'. The descriptor class has to follow
 * some specific naming conventions (and maybe be in a special package).
 * 
 * @author Joachim Grueneis
 * @author Steven Dolg
 * @version $Revision$ $Date$
 * @since 1.2
 */
public class ByDescriptorClass extends AbstractResolverClassCommand {
  private static final Log LOG = LogFactory.getLog(ByDescriptorClass.class);

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

  /**
   * Tries to load an XMLClassDescriptor directly from an existing .class file. 
* The file that is searched for must be located in the classpath, have the name * className + "Descriptor", and contain a valid XMLClassDescriptor.
* If a descriptor is found it is added to the internal descriptor cache.
* {@inheritDoc} */ protected Map internalResolve(final String className, final ClassLoader classLoader, final Map properties) throws ResolverException { HashMap results = new HashMap(); if (classLoader == null) { LOG.debug("No class loader available."); return results; } StringBuilder descriptorClassName = new StringBuilder(className); descriptorClassName.append(XMLConstants.DESCRIPTOR_SUFFIX); Class descriptorClass = ResolveHelpers.loadClass(classLoader, descriptorClassName.toString()); // If we didn't find the descriptor, look in descriptor package if (descriptorClass == null) { int offset = descriptorClassName.lastIndexOf("."); if (offset != -1) { descriptorClassName.insert(offset, "."); descriptorClassName.insert(offset + 1, XMLConstants.DESCRIPTOR_PACKAGE); descriptorClass = ResolveHelpers.loadClass(classLoader, descriptorClassName.toString()); } } if (descriptorClass != null) { try { LOG.debug("Found descriptor: " + descriptorClass); results.put(className, descriptorClass.newInstance()); } catch (InstantiationException e) { LOG.debug("Ignored exception: " + e + "at loading descriptor class for: " + className); } catch (IllegalAccessException e) { LOG.debug("Ignored exception: " + e + "at loading descriptor class for: " + className); } } return results; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy