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

org.simpleframework.xml.core.ParameterFactory Maven / Gradle / Ivy

Go to download

Simple is a high performance XML serialization and configuration framework for Java

There is a newer version: 2.7.1
Show newest version
/*
 * ParameterFactory.java July 2006
 *
 * Copyright (C) 2006, Niall Gallagher 
 *
 * This library 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.
 *
 * This library 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 library; if not, write to the 
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330, 
 * Boston, MA  02111-1307  USA
 */

package org.simpleframework.xml.core;

import java.lang.annotation.Annotation;
import java.lang.reflect.Constructor;

import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.ElementArray;
import org.simpleframework.xml.ElementList;
import org.simpleframework.xml.ElementMap;

/**
 * The ParameterFactory object is used to create instances 
 * of the Parameter object. Each parameter created can be
 * used to validate against the annotated fields and methods to ensure
 * that the annotations are compatible. 
 * 

* The Parameter objects created by this are selected * using the XML annotation type. If the annotation type is not known * the factory will throw an exception, otherwise a parameter instance * is created that will expose the properties of the annotation. * * @author Niall Gallagher */ final class ParameterFactory { /** * Creates a Parameter using the provided constructor * and the XML annotation. The parameter produced contains all * information related to the constructor parameter. It knows the * name of the XML entity, as well as the type. * * @param method this is the constructor the parameter exists in * @param label represents the XML annotation for the contact * * @return returns the parameter instantiated for the field */ public static Parameter getInstance(Constructor method, Annotation label, int index) throws Exception { Constructor factory = getConstructor(label); if(!factory.isAccessible()) { factory.setAccessible(true); } return (Parameter)factory.newInstance(method, label, index); } /** * Creates a constructor that is used to instantiate the parameter * used to represent the specified annotation. The constructor * created by this method takes three arguments, a constructor, * an annotation, and the parameter index. * * @param label the XML annotation representing the label * * @return returns a constructor for instantiating the parameter * * @throws Exception thrown if the annotation is not supported */ private static Constructor getConstructor(Annotation label) throws Exception { return getEntry(label).getConstructor(); } /** * Creates an entry that is used to select the constructor for the * parameter. Each parameter must implement a constructor that takes * a constructor, and annotation, and the index of the parameter. If * the annotation is not know this method throws an exception. * * @param label the XML annotation used to create the parameter * * @return this returns the entry used to create a suitable * constructor for the parameter * * @throws Exception thrown if the annotation is not supported */ private static Entry getEntry(Annotation label) throws Exception{ if(label instanceof Element) { return new Entry(ElementParameter.class, Element.class); } if(label instanceof ElementList) { return new Entry(ElementListParameter.class, ElementList.class); } if(label instanceof ElementArray) { return new Entry(ElementArrayParameter.class, ElementArray.class); } if(label instanceof ElementMap) { return new Entry(ElementMapParameter.class, ElementMap.class); } if(label instanceof Attribute) { return new Entry(AttributeParameter.class, Attribute.class); } throw new PersistenceException("Annotation %s not supported", label); } /** * The Entry object is used to create a constructor * that can be used to instantiate the correct parameter for the * XML annotation specified. The constructor requires three * arguments, the constructor, the annotation, and the index. * * @see java.lang.reflect.Constructor */ private static class Entry { /** * This is the parameter type that is to be instantiated. */ public Class create; /** * This is the XML annotation type within the constructor. */ public Class type; /** * Constructor for the Entry object. This pairs * the parameter type with the annotation argument used within * the constructor. This allows constructor to be selected. * * @param create this is the label type to be instantiated * @param type the type that is used within the constructor */ public Entry(Class create, Class type) { this.create = create; this.type = type; } /** * Creates the constructor used to instantiate the parameter * for the XML annotation. The constructor returned will take * two arguments, a contact and the XML annotation type. * * @return returns the constructor for the parameter object */ public Constructor getConstructor() throws Exception { return getConstructor(Constructor.class, type, int.class); } /** * Creates the constructor used to instantiate the parameter * for the XML annotation. The constructor returned will take * three arguments, a constructor, an annotation and a type. * * @param types these are the arguments for the constructor * * @return returns the constructor for the parameter object */ private Constructor getConstructor(Class... types) throws Exception { return create.getConstructor(types); } } }