Java Keyword - Fix

From: Fabricio Voznika (fabricio.voznik..artmouth.EDU)
Date: Fri Jul 25 2003 - 14:15:29 EDT

  • Next message: Holger Hoffstätte: "Re: Java Keyword - Fix"

    Hi,

        I had a problem in the modeller because I'm unlucky enough to have
    an attribute named "abstract" (unfortunatelly I can't change the DB),
    and as it is a java keyword, I get a compilation error after generating
    the class. I made a fix and attached it to this message. Please, fell
    free to change it as you like.

    Thanks,

    -- 
    Fabricio Voznika
    Senior Programmer/Analyst
    Administrative Computing
    Dartmouth College
    Phone: 603-646-2007
    

    /* ==================================================================== * * The ObjectStyle Group Software License, Version 1.0 * * Copyright (c) 2002-2003 The ObjectStyle Group * and individual authors of the software. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, if * any, must include the following acknowlegement: * "This product includes software developed by the * ObjectStyle Group (http://objectstyle.org/)." * Alternately, this acknowlegement may appear in the software itself, * if and wherever such third-party acknowlegements normally appear. * * 4. The names "ObjectStyle Group" and "Cayenne" * must not be used to endorse or promote products derived * from this software without prior written permission. For written * permission, please contact andru..bjectstyle.org. * * 5. Products derived from this software may not be called "ObjectStyle" * nor may "ObjectStyle" appear in their names without prior written * permission of the ObjectStyle Group. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE OBJECTSTYLE GROUP OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the ObjectStyle Group. For more * information on the ObjectStyle Group, please see * <http://objectstyle.org/>. * */

    package org.objectstyle.cayenne.gen;

    import java.io.Writer; import java.util.*;

    import org.apache.velocity.Template; import org.apache.velocity.VelocityContext; import org.apache.velocity.app.Velocity; import org.apache.velocity.context.Context; import org.objectstyle.cayenne.CayenneRuntimeException; import org.objectstyle.cayenne.map.ObjEntity; import org.objectstyle.cayenne.util.ResourceLocator;

    /** Generates Java class source code using VTL (Velocity template engine) based on * template and ObjEntity. * *..uthor Andrei Adamchik */ public class ClassGenerator {

    private static boolean initDone;

    private static Set keywords = new HashSet(Arrays.asList(new Object[] { "abstract", "default", "if", "private", "this", "boolean", "do", "implements", "protected", "throw", "break", "double", "import", "public", "throws", "byte", "else", "instanceof", "return", "transient", "case", "extends", "int", "short", "try", "catch", "final", "interface", "static", "void", "char", "finally", "long", "strictfp", "volatile", "class", "float", "native", "super", "while", "const", "for", "new", "switch", "continue", "goto", "package", "synchronized" } ));

    /** * Allows to configure ClassGenerator to load class * templates using ClassLoader of a specified class. * It is a responsibility of a class caller to invoke this * method before ClassGenerator is used. * * <p>This method affects Velocity configuration when called * for the first time, since Velocity.init() is done only * once. Subsequent calls have no effect on ClassLoader behavior. * </p> */ public static final void bootstrapVelocity(Class cl) { if (initDone) { return; }

    try { String classLoaderUrl = ResourceLocator.classBaseUrl(cl);

    // use ClasspathResourceLoader for velocity templates lookup // if Cayenne URL is not null, load resource from this URL Properties props = new Properties(); String loaderProp = null; // init special loaders if (classLoaderUrl != null && classLoaderUrl.startsWith("jar:")) { loaderProp = "jar"; props.put( "jar.resource.loader.class", "org.apache.velocity.runtime.resource.loader.JarResourceLoader"); props.put("jar.resource.loader.path", classLoaderUrl); } else if (classLoaderUrl != null && classLoaderUrl.startsWith("file:")) { loaderProp = "file"; props.put("file.resource.loader.path", classLoaderUrl.substring(5)); }

    // always add Filesystem loader for default templates if (loaderProp != null) { if (loaderProp.indexOf("file") < 0) { loaderProp += ",file"; } }

    // use custom file loader props.put( "file.resource.loader.class", "org.objectstyle.cayenne.gen.AbsFileResourceLoader");

    // always add Classpath loader for default templates loaderProp = (loaderProp != null) ? loaderProp + ",class" : "class"; props.put("resource.loader", loaderProp);

    Velocity.init(props); } catch (Exception ex) { throw new CayenneRuntimeException("Can't initialize VTL", ex); } finally { initDone = true; } }

    protected Template classTemplate; protected Context velCtxt;

    protected ObjEntity entity;

    // template substitution values protected String packageName; protected String className; protected String superPrefix; protected String prop; protected String superPackageName; protected String superClassName;

    /** Loads Velocity template used for class generation. */ public ClassGenerator(String template) throws Exception { if (!initDone) { bootstrapVelocity(this.getClass()); } velCtxt = new VelocityContext(); velCtxt.put("classGen", this);

    classTemplate = Velocity.getTemplate(template); }

    /** Generates code for <code>entity</code> ObjEntity. Source code is written to * <code>out</code> Writer.*/ public void generateClass(Writer out, ObjEntity entity) throws Exception { this.entity = entity; classTemplate.merge(velCtxt, out); }

    /** * Returns Java package name of the class associated with * this generator. */ public String getPackageName() { return packageName; } public void setPackageName(String packageName) { this.packageName = packageName; }

    /** * Returns <code>superPackageName</code> property that defines * a superclass's package name. */ public String getSuperPackageName() { return superPackageName; }

    /** * Sets <code>superPackageName</code> property that defines * a superclass's package name. */ public void setSuperPackageName(String superPackageName) { this.superPackageName = superPackageName; }

    /** Returns class name (without a package) * of the class associated with this generator. */ public String getClassName() { return className; } public void setClassName(String className) { this.className = className; }

    public void setSuperPrefix(String superPrefix) { this.superPrefix = superPrefix; }

    public String formatJavaType(String type) { if (type != null) { if (type.startsWith("java.lang.") && type.indexOf(10, '.') < 0) { return type.substring("java.lang.".length()); }

    if (packageName != null && type.startsWith(packageName + '.') && type.indexOf(packageName.length() + 1, '.') < 0) { return type.substring(packageName.length() + 1); } }

    return type; }

    public String formatVarName(String var) { return keywords.contains(var) ? "_"+var : var; }

    /** Returns prefix used to distinguish between superclass * and subclass when generating classes in pairs. */ public String getSuperPrefix() { return superPrefix; }

    /** Sets current class property name. This method * is called during template parsing for each of the * class properties. */ public void setProp(String prop) { this.prop = prop; } public String getProp() { return prop; }

    /** Returns current property name with capitalized first letter */ public String getCappedProp() { if (prop == null || prop.length() == 0) return prop;

    char c = Character.toUpperCase(prop.charAt(0)); return (prop.length() == 1) ? Character.toString(c) : c + prop.substring(1); }

    /** * Returns <code>true</code> if a class associated with * this generator is located in a package. */ public boolean isUsingPackage() { return packageName != null; }

    /** * Returns <code>true</code> if a superclass class associated with * this generator is located in a package. */ public boolean isUsingSuperPackage() { return superPackageName != null; }

    /** Returns entity for the class associated with this generator. */ public ObjEntity getEntity() { return entity; }

    /** Returns the fully qualified super class of the data object class associated with this generator*/ public String getSuperClassName() { return superClassName; }

    /** Sets the fully qualified super class of the data object class associated with this generator*/ public void setSuperClassName(String value) { this.superClassName = value; }

    }

    #if( $classGen.isUsingPackage() ) package $classGen.packageName; #end

    import java.util.List;

    public class $classGen.className extends $classGen.superClassName {

    ## Create attribute set/get methods #foreach( $attr in ${classGen.Entity.Attributes} ) #set( $classGen.Prop = $attr.Name )## let controller know about current property public void set${classGen.cappedProp}($classGen.formatJavaType(${attr.Type}) $classGen.formatVarName(${attr.Name})) { writeProperty("${attr.Name}", $classGen.formatVarName(${attr.Name})); } public $classGen.formatJavaType(${attr.Type}) get${classGen.cappedProp}() { return ($classGen.formatJavaType(${attr.Type}))readProperty("${attr.Name}"); } #end ## ## Create list add/remove/get methods #foreach( $rel in ${classGen.Entity.Relationships} ) #set( $classGen.Prop = $rel.Name )## let controller know about current property #if( $rel.ToMany ) public void addTo${classGen.cappedProp}($classGen.formatJavaType(${rel.TargetEntity.ClassName}) obj) { addToManyTarget("${rel.name}", obj, true); } public void removeFrom${classGen.cappedProp}($classGen.formatJavaType(${rel.TargetEntity.ClassName}) obj) { removeToManyTarget("${rel.name}", obj, true); } public List get${classGen.cappedProp}() { return (List)readProperty("${rel.name}"); } #else public void set${classGen.cappedProp}($classGen.formatJavaType(${rel.TargetEntity.ClassName}) $classGen.formatVarName(${rel.name})) { setToOneTarget("${rel.name}", $classGen.formatVarName(${rel.name}), true); } public $classGen.formatJavaType(${rel.TargetEntity.ClassName}) get${classGen.cappedProp}() { return ($classGen.formatJavaType(${rel.TargetEntity.ClassName}))readProperty("${rel.name}"); } #end #end }

    #if( ${classGen.isUsingPackage()} ) package ${classGen.packageName}; #end

    public class ${classGen.className} extends #if(${classGen.isUsingSuperPackage()})${classGen.superPackageName}.#end${classGen.superPrefix}${classGen.className} {

    }

    #if( ${classGen.isUsingPackage()} ) package ${classGen.packageName}; #end

    import java.util.List;

    /** Class ${classGen.superPrefix}${classGen.className} was generated by Cayenne. * It is probably a good idea to avoid changing this class manually, * since it may be overwritten next time code is regenerated. * If you need to make any customizations, please use subclass. */ public class ${classGen.superPrefix}${classGen.className} extends $classGen.superClassName {

    ## Create attribute set/get methods #foreach( $attr in ${classGen.Entity.Attributes} ) #set( $classGen.Prop = $attr.Name )## let controller know about current property public void set${classGen.cappedProp}($classGen.formatJavaType(${attr.Type}) $classGen.formatVarName(${attr.Name})) { writeProperty("${attr.Name}", $classGen.formatVarName(${attr.Name})); } public $classGen.formatJavaType(${attr.Type}) get${classGen.cappedProp}() { return ($classGen.formatJavaType(${attr.Type}))readProperty("${attr.Name}"); } #end ## ## Create list add/remove/get methods #foreach( $rel in ${classGen.Entity.Relationships} ) #set( $classGen.Prop = $rel.Name )## let controller know about current property #if( $rel.ToMany ) public void addTo${classGen.cappedProp}($classGen.formatJavaType(${rel.TargetEntity.ClassName}) obj) { addToManyTarget("${rel.name}", obj, true); } public void removeFrom${classGen.cappedProp}($classGen.formatJavaType(${rel.TargetEntity.ClassName}) obj) { removeToManyTarget("${rel.name}", obj, true); } public List get${classGen.cappedProp}() { return (List)readProperty("${rel.name}"); } #else public void set${classGen.cappedProp}($classGen.formatJavaType(${rel.TargetEntity.ClassName}) $classGen.formatVarName(${rel.name})) { setToOneTarget("${rel.name}", $classGen.formatVarName(${rel.name}), true); } public $classGen.formatJavaType(${rel.TargetEntity.ClassName}) get${classGen.cappedProp}() { return ($classGen.formatJavaType(${rel.TargetEntity.ClassName}))readProperty("${rel.name}"); } #end #end }



    This archive was generated by hypermail 2.0.0 : Fri Jul 25 2003 - 14:12:32 EDT