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

org.codehaus.modello.plugin.velocity.Helper Maven / Gradle / Ivy

Go to download

Modello Velocity Plugin generates files from the Modello model using Velocity templates.

The newest version!
package org.codehaus.modello.plugin.velocity;

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.
 */

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

import org.codehaus.modello.ModelloRuntimeException;
import org.codehaus.modello.model.ModelAssociation;
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;
import org.codehaus.plexus.util.StringUtils;

/**
 * Helper class to use inside velocity templates.
 * 

* This will be made available using {@code ${Helper}} inside the template. * For example, the following line will return the list of ancestors for a given modello class: *

*

* {@code #set ( $ancestors = $Helper.ancestors( $class ) )} *

*/ @SuppressWarnings("unused") public class Helper { private final Version version; public Helper(Version version) { this.version = version; } /** * Returns the capitalised version of the given string. */ public String capitalise(String str) { return StringUtils.isEmpty(str) ? str : Character.toTitleCase(str.charAt(0)) + str.substring(1); } /** * Returns the uncapitalised version of the given string. */ public String uncapitalise(String str) { return StringUtils.isEmpty(str) ? str : Character.toLowerCase(str.charAt(0)) + str.substring(1); } /** * Returns the singular name for the given string. */ public String singular(String str) { return AbstractModelloGenerator.singular(str); } /** * Returns the list of ancestors for the given {@code ModelClass}. */ public List ancestors(ModelClass clazz) { List ancestors = new ArrayList<>(); for (ModelClass cl = clazz; cl != null; cl = cl.getSuperClass() != null ? cl.getModel().getClass(cl.getSuperClass(), version) : null) { ancestors.add(0, cl); } return ancestors; } /** * Returns the {@code XmlClassMetadata} for the given {@code ModelClass}. */ public XmlClassMetadata xmlClassMetadata(ModelClass clazz) { return (XmlClassMetadata) clazz.getMetadata(XmlClassMetadata.ID); } /** * Returns the {@code XmlFieldMetadata} for the given {@code ModelField}. */ public XmlFieldMetadata xmlFieldMetadata(ModelField field) { return (XmlFieldMetadata) field.getMetadata(XmlFieldMetadata.ID); } /** * Returns the {@code XmlAssociationMetadata} for the given {@code ModelField}. */ public XmlAssociationMetadata xmAssociationMetadata(ModelField field) { return (XmlAssociationMetadata) ((ModelAssociation) field).getAssociationMetadata(XmlAssociationMetadata.ID); } /** * Checks if the given {@code ModelField} is a flat item. */ public boolean isFlatItems(ModelField field) { return field instanceof ModelAssociation && xmAssociationMetadata(field).isFlatItems(); } /** * Returns a list of all {@code ModelField} for a given {@code ModelClass}. * The list will contain all fields defined on the class and on its parents, * excluding any field flagged as being xml transient. */ public List xmlFields(ModelClass modelClass) { 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 - 2024 Weber Informatics LLC | Privacy Policy