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

org.codehaus.modello.plugins.xml.XmlModelHelpers Maven / Gradle / Ivy

Go to download

Modello XML Plugin contains shared code for every plugins working on XML representation of the model.

The newest version!
package org.codehaus.modello.plugins.xml;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import org.codehaus.modello.ModelloRuntimeException;
import org.codehaus.modello.model.ModelClass;
import org.codehaus.modello.model.ModelField;
import org.codehaus.modello.model.Version;
import org.codehaus.modello.plugin.AbstractModelloGenerator;
import org.codehaus.modello.plugins.xml.metadata.XmlAssociationMetadata;
import org.codehaus.modello.plugins.xml.metadata.XmlClassMetadata;
import org.codehaus.modello.plugins.xml.metadata.XmlFieldMetadata;

/*
 * Copyright (c) 2004, Codehaus.org
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
 * of the Software, and to permit persons to whom the Software is furnished to do
 * so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

/**
 * Helper methods to deal with XML representation of the model.
 *
 * @author Hervé Boutemy
 */
class XmlModelHelpers {
    /**
     * Resolve XML tag name for a class. Note: only root class needs such a resolution.
     *
     * @param modelClass the model class
     * @return the XML tag name for the class
     */
    static String resolveTagName(ModelClass modelClass) {
        XmlClassMetadata xmlClassMetadata = (XmlClassMetadata) modelClass.getMetadata(XmlClassMetadata.ID);

        String tagName;
        if ((xmlClassMetadata == null) || (xmlClassMetadata.getTagName() == null)) {
            tagName = AbstractModelloGenerator.uncapitalise(modelClass.getName());
        } else {
            // tag name is overridden by xml.tagName attribute
            tagName = xmlClassMetadata.getTagName();
        }
        return tagName;
    }

    /**
     * Resolve XML tag name for a field.
     *
     * @param modelField the model field
     * @param xmlFieldMetadata the XML metadata of the field
     * @return the XML tag name for the field
     */
    static String resolveTagName(ModelField modelField, XmlFieldMetadata xmlFieldMetadata) {
        String tagName;
        if ((xmlFieldMetadata == null) || (xmlFieldMetadata.getTagName() == null)) {
            tagName = modelField.getName();
        } else {
            // tag name is overridden by xml.tagName attribute
            tagName = xmlFieldMetadata.getTagName();
        }
        return tagName;
    }

    /**
     * Resolve XML tag name for an item in an association with many multiplicity.
     *
     * @param fieldTagName the XML tag name of the field containing the association
     * @param xmlAssociationMetadata the XML metadata of the association
     * @return the XML tag name for items
     */
    static String resolveTagName(String fieldTagName, XmlAssociationMetadata xmlAssociationMetadata) {
        String tagName;
        if ((xmlAssociationMetadata == null) || (xmlAssociationMetadata.getTagName() == null)) {
            tagName = AbstractModelloGenerator.singular(fieldTagName);
        } else {
            // tag name is overridden by xml.tagName attribute
            tagName = xmlAssociationMetadata.getTagName();
        }
        return tagName;
    }

    /**
     * Get the field which type is Content if any.
     *
     * @param modelFields the fields to check
     * @return the field, or null if no field is Content
     */
    static ModelField getContentField(List modelFields) {
        if (modelFields == null) {
            return null;
        }
        for (ModelField field : modelFields) {
            XmlFieldMetadata xmlFieldMetadata = (XmlFieldMetadata) field.getMetadata(XmlFieldMetadata.ID);

            if (xmlFieldMetadata.isContent()) {
                return field;
            }
        }
        return null;
    }

    /**
     * Gets all fields that are not marked as XML attribute.
     *
     * @param modelFields The collection of model fields from which to extract the XML attributes, must not be
     *            null.
     * @return The list of XML attributes fields, can be empty but never null.
     */
    static List getXmlAttributeFields(List modelFields) {
        List xmlAttributeFields = new ArrayList();

        for (ModelField field : modelFields) {
            XmlFieldMetadata xmlFieldMetadata = (XmlFieldMetadata) field.getMetadata(XmlFieldMetadata.ID);

            if (xmlFieldMetadata.isAttribute()) {
                xmlAttributeFields.add(field);
            }
        }

        return xmlAttributeFields;
    }

    /**
     * Return the XML fields of this class, with proper XML order and no XML transient fields.
     *
     * @param modelClass current class
     * @param version the version of the class to use
     * @return the list of XML fields of this class
     */
    static List getFieldsForXml(ModelClass modelClass, Version version) {
        List classes = new ArrayList();

        // get the full inheritance
        while (modelClass != null) {
            classes.add(modelClass);

            String superClass = modelClass.getSuperClass();
            if (superClass != null) {
                // superClass can be located outside (not generated by modello)
                modelClass = modelClass.getModel().getClass(superClass, version, true);
            } else {
                modelClass = null;
            }
        }

        List fields = new ArrayList();

        for (int i = classes.size() - 1; i >= 0; i--) {
            modelClass = classes.get(i);

            Iterator parentIter = fields.iterator();

            fields = new ArrayList();

            for (ModelField field : modelClass.getFields(version)) {
                XmlFieldMetadata xmlFieldMetadata = (XmlFieldMetadata) field.getMetadata(XmlFieldMetadata.ID);

                if (xmlFieldMetadata.isTransient()) {
                    // just ignore xml.transient fields
                    continue;
                }

                if (xmlFieldMetadata.getInsertParentFieldsUpTo() != null) {
                    // insert fields from parent up to the specified field
                    boolean found = false;

                    while (!found && parentIter.hasNext()) {
                        ModelField parentField = parentIter.next();

                        fields.add(parentField);

                        found = parentField.getName().equals(xmlFieldMetadata.getInsertParentFieldsUpTo());
                    }

                    if (!found) {
                        // interParentFieldsUpTo not found
                        throw new ModelloRuntimeException("parent field not found: class " + modelClass.getName()
                                + " xml.insertParentFieldUpTo='" + xmlFieldMetadata.getInsertParentFieldsUpTo() + "'");
                    }
                }

                fields.add(field);
            }

            // add every remaining fields from parent class
            while (parentIter.hasNext()) {
                fields.add(parentIter.next());
            }
        }

        return fields;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy