/* * Copyright 2001-2002,2004 The Apache Software Foundation. * * 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. */ /* * NOTE : please see documentation at bottom of this file. (It was placed there its tiring * to always have to page past it... :) */ options { /** * The parser must be non-static in order for the * above option to work, otherwise the parser value * is passed in as null, which isn't all the useful ;) */ STATIC=false; /** * Declare that we are accepting unicode input and * that we are using a custom character stream class * Note that the char stream class is really a slightly * modified ASCII_CharStream, as it appears we are safe * because we only deal with pre-encoding-converted * Readers rather than raw input streams. */ UNICODE_INPUT=true; USER_CHAR_STREAM=true; /** * for debugging purposes. Keep false */ DEBUG_PARSER=false; DEBUG_TOKEN_MANAGER=false; } PARSER_BEGIN(Parser) package org.apache.velocity.runtime.parser; import java.io.*; import java.util.*; import org.apache.velocity.runtime.RuntimeServices; import org.apache.velocity.runtime.parser.node.*; import org.apache.velocity.runtime.directive.Directive; import org.apache.velocity.runtime.directive.Macro; import org.apache.velocity.runtime.directive.MacroParseException; import org.apache.velocity.util.StringUtils; /** * This class is responsible for parsing a Velocity * template. This class was generated by JavaCC using * the JJTree extension to produce an Abstract * Syntax Tree (AST) of the template. * * Please look at the Parser.jjt file which is * what controls the generation of this class. * * @author Jason van Zyl * @author Geir Magnusson Jr. * @version $Id: Parser.jj,v 1.70.4.1 2004/03/03 23:22:58 geirm Exp $ */ public class Parser/*@bgen(jjtree)*/implements ParserTreeConstants/*@egen*/ {/*@bgen(jjtree)*/ protected JJTParserState jjtree = new JJTParserState(); /*@egen*/ /** * This Hashtable contains a list of all of the dynamic directives. */ private Hashtable directives = new Hashtable(0); /** * Name of current template we are parsing. Passed to us in parse() */ String currentTemplateName = ""; VelocityCharStream velcharstream = null; private RuntimeServices rsvc = null; /** * This constructor was added to allow the re-use of parsers. * The normal constructor takes a single argument which * an InputStream. This simply creates a re-usable parser * object, we satisfy the requirement of an InputStream * by using a newline character as an input stream. */ public Parser( RuntimeServices rs) { /* * need to call the CTOR first thing. */ this( new VelocityCharStream( new ByteArrayInputStream("\n".getBytes()), 1, 1 )); /* * now setup a VCS for later use */ velcharstream = new VelocityCharStream( new ByteArrayInputStream("\n".getBytes()), 1, 1 ); /* * and save the RuntimeServices */ rsvc = rs; } /** * This was also added to allow parsers to be * re-usable. Normal JavaCC use entails passing an * input stream to the constructor and the parsing * process is carried out once. We want to be able * to re-use parsers: we do this by adding this * method and re-initializing the lexer with * the new stream that we want parsed. */ public SimpleNode parse( Reader reader, String templateName ) throws ParseException { SimpleNode sn = null; currentTemplateName = templateName; try { token_source.clearStateVars(); /* * reinitialize the VelocityCharStream * with the new reader */ velcharstream.ReInit( reader, 1, 1 ); /* * now reinit the Parser with this CharStream */ ReInit( velcharstream ); /* * do that voodoo... */ sn = process(); } catch (MacroParseException mee) { /* * thrown by the Macro class when something is amiss in the * Macro specification */ rsvc.error ("Parser Error: #macro() : " + templateName + " : " + StringUtils.stackTrace(mee)); throw new ParseException(mee.getMessage()); } catch (ParseException pe) { rsvc.error ("Parser Exception: " + templateName + " : " + StringUtils.stackTrace(pe)); throw new ParseException (pe.currentToken, pe.expectedTokenSequences, pe.tokenImage); } catch (TokenMgrError tme) { throw new ParseException("Lexical error: " + tme.toString()); } catch (Exception e) { rsvc.error ("Parser Error: " + templateName + " : " + StringUtils.stackTrace(e)); } currentTemplateName = ""; return sn; } /** * This method sets the directives Hashtable */ public void setDirectives(Hashtable directives) { this.directives = directives; } /** * This method gets a Directive from the directives Hashtable */ public Directive getDirective(String directive) { return (Directive) directives.get(directive); } /** * This method finds out of the directive exists in the directives * Hashtable. */ public boolean isDirective(String directive) { if (directives.containsKey(directive)) return true; else return false; } /** * Produces a processed output for an escaped control or * pluggable directive */ private String escapedDirective( String strImage ) { int iLast = strImage.lastIndexOf("\\"); String strDirective = strImage.substring(iLast + 1); boolean bRecognizedDirective = false; /* * is this a PD or a control directive? */ if ( isDirective( strDirective.substring(1))) { bRecognizedDirective = true; } else if ( rsvc.isVelocimacro( strDirective.substring(1), currentTemplateName)) { bRecognizedDirective = true; } else { /* order for speed? */ if ( strDirective.substring(1).equals("if") || strDirective.substring(1).equals("end") || strDirective.substring(1).equals("set") || strDirective.substring(1).equals("else") || strDirective.substring(1).equals("elseif") || strDirective.substring(1).equals("stop") ) { bRecognizedDirective = true; } } /* * if so, make the proper prefix string (let the escapes do their thing..) * otherwise, just return what it is.. */ if (bRecognizedDirective) return ( strImage.substring(0,iLast/2) + strDirective); else return ( strImage ); } } PARSER_END(Parser) TOKEN_MGR_DECLS: { private int fileDepth = 0; private int lparen = 0; private int rparen = 0; Stack stateStack = new Stack(); public boolean debugPrint = false; private boolean inReference; public boolean inDirective; private boolean inComment; public boolean inSet; /** * pushes the current state onto the 'state stack', * and maintains the parens counts * public because we need it in PD & VM handling * * @return boolean : success. It can fail if the state machine * gets messed up (do don't mess it up :) */ public boolean stateStackPop() { Hashtable h; try { h = (Hashtable) stateStack.pop(); } catch( EmptyStackException e) { lparen=0; SwitchTo(DEFAULT); return false; } if( debugPrint ) System.out.println( " stack pop (" + stateStack.size() + ") : lparen=" + ( (Integer) h.get("lparen")).intValue() + " newstate=" + ( (Integer) h.get("lexstate")).intValue() ); lparen = ( (Integer) h.get("lparen")).intValue(); rparen = ( (Integer) h.get("rparen")).intValue(); SwitchTo( ( (Integer) h.get("lexstate")).intValue() ); return true; } /** * pops a state off the stack, and restores paren counts * * @return boolean : success of operation */ public boolean stateStackPush() { if( debugPrint ) System.out.println(" (" + stateStack.size() + ") pushing cur state : " + curLexState ); Hashtable h = new Hashtable(); h.put("lexstate", new Integer( curLexState ) ); h.put("lparen", new Integer( lparen )); h.put("rparen", new Integer( rparen )); lparen = 0; stateStack.push( h ); return true; } /** * Clears all state variables, resets to * start values, clears stateStack. Call * before parsing. * @return void */ public void clearStateVars() { stateStack.clear(); lparen = 0; rparen = 0; inReference = false; inDirective = false; inComment = false; inSet = false; return; } /** * handles the dropdown logic when encountering a RPAREN */ private void RPARENHandler() { /* * Ultimately, we want to drop down to the state below * the one that has an open (if we hit bottom (DEFAULT), * that's fine. It's just text schmoo. */ boolean closed = false; if (inComment) closed = true; while( !closed ) { /* * look at current state. If we haven't seen a lparen * in this state then we drop a state, because this * lparen clearly closes our state */ if( lparen > 0) { /* * if rparen + 1 == lparen, then this state is closed. * Otherwise, increment and keep parsing */ if( lparen == rparen + 1) { stateStackPop(); } else { rparen++; } closed = true; } else { /* * now, drop a state */ if(!stateStackPop()) break; } } } } /* ------------------------------------------------------------------------ * * Tokens * * Note : we now have another state, REFMODIFIER. This is sort of a * type of REFERENCE state, simply use to use the DIRECTIVE token * set when we are processing a $foo.bar() construct * * ------------------------------------------------------------------------- */ TOKEN: { | | } TOKEN: { } TOKEN: { { if (!inComment) lparen++; /* * If in REFERENCE and we have seen the dot, then move * to REFMOD2 -> Modifier() */ if (curLexState == REFMODIFIER ) SwitchTo( REFMOD2 ); } } /* * we never will see a ')' in anything but DIRECTIVE and REFMOD2. * Each have their own */ TOKEN: { /* * We will eat any whitespace upto and including a newline for directives */ { RPARENHandler(); } } TOKEN: { /* * in REFMOD2, we don't want to bind the whitespace and \n like we * do when closing a directive. */ { /* * need to simply switch back to REFERENCE, not drop down the stack * because we can (infinitely) chain, ala * $foo.bar().blargh().woogie().doogie() */ SwitchTo( REFERENCE ); } } /*---------------------------------------------- * * escape "\\" handling for the built-in directives * *--------------------------------------------- */ TOKEN: { /* * We have to do this, because we want these to be a Text node, and * whatever follows to be peer to this text in the tree. * * We need to touch the ASTs for these, because we want an even # of \'s * to render properly in front of the block * * This is really simplistic. I actually would prefer to find them in * grammatical context, but I am neither smart nor rested, a receipe * for disaster, another long night with Mr. Parser, or both. */ )* "\\#" > } /* * needed because #set is so wacky in it's desired behavior. We want set * to eat any preceeding whitespace so it is invisible in formatting. * (As it should be.) If this works well, I am going to chuck the whole MORE: * token abomination. */ TOKEN: { { if (! inComment) { inDirective = true; if ( debugPrint ) System.out.print("#set : going to " + DIRECTIVE ); stateStackPush(); inSet = true; SwitchTo(DIRECTIVE); } } } <*> MORE : { /* * Note : DOLLARBANG is a duplicate of DOLLAR. They must be identical. */ { if (! inComment) { /* * if we find ourselves in REFERENCE, we need to pop down * to end the previous ref */ if (curLexState == REFERENCE) { inReference = false; stateStackPop(); } inReference = true; if ( debugPrint ) System.out.print( "$ : going to " + REFERENCE ); stateStackPush(); SwitchTo(REFERENCE); } } | { if (! inComment) { /* * if we find ourselves in REFERENCE, we need to pop down * to end the previous ref */ if (curLexState == REFERENCE) { inReference = false; stateStackPop(); } inReference = true; if ( debugPrint ) System.out.print( "$! : going to " + REFERENCE ); stateStackPush(); SwitchTo(REFERENCE); } } | "##" { if (!inComment) { if (curLexState == REFERENCE) { inReference = false; stateStackPop(); } inComment = true; stateStackPush(); SwitchTo(IN_SINGLE_LINE_COMMENT); } } | <"#**" ~["#"]> { input_stream.backup(1); inComment = true; stateStackPush(); SwitchTo( IN_FORMAL_COMMENT); } | "#*" { inComment=true; stateStackPush(); SwitchTo( IN_MULTI_LINE_COMMENT ); } | { if (! inComment) { /* * We can have the situation where #if($foo)$foo#end. * We need to transition out of REFERENCE before going to DIRECTIVE. * I don't really like this, but I can't think of a legal way * you are going into DIRECTIVE while in REFERENCE. -gmj */ if (curLexState == REFERENCE || curLexState == REFMODIFIER ) { inReference = false; stateStackPop(); } inDirective = true; if ( debugPrint ) System.out.print("# : going to " + DIRECTIVE ); stateStackPush(); SwitchTo(PRE_DIRECTIVE); } } } TOKEN : { | | } /* ----------------------------------------------------------------------- * * *_COMMENT Lexical tokens * *-----------------------------------------------------------------------*/ TOKEN : { { inComment = false; stateStackPop(); } } TOKEN : { { inComment = false; stateStackPop(); } } TOKEN : { { inComment = false; stateStackPop(); } } MORE : { < ~[] > } /* ----------------------------------------------------------------------- * * DIRECTIVE Lexical State (some of it, anyway) * * ---------------------------------------------------------------------- */ TOKEN: { } TOKEN : { // < STRING_LITERAL: ("\"" ( (~["\"","\\","\n","\r"]) | ("\\" ( ["n","t","b","r","f","\\","'","\""] | ["0"-"7"] ( ["0"-"7"] )? | ["0"-"3"] ["0"-"7"] ["0"-"7"] ) ) | ( "\\" (" ")* "\n") )* "\"" ) | ("\'" ( (~["\'","\n","\r"]) | ( "\\" (" ")* "\n") )* "\'" ) > { /* * - if we are in DIRECTIVE and haven't seen ( yet, then also drop out. * don't forget to account for the beloved yet wierd #set * - finally, if we are in REFMOD2 (remember : $foo.bar( ) then " is ok! */ if( curLexState == DIRECTIVE && !inSet && lparen == 0) stateStackPop(); } } TOKEN: { | } TOKEN : { { if ( debugPrint ) System.out.println(" NEWLINE :"); stateStackPop(); if (inSet) inSet = false; if (inDirective) inDirective = false; } } TOKEN : { | | | | | | | | "> | ="> | | | { inDirective = false; stateStackPop(); } | { SwitchTo(DIRECTIVE); } | { SwitchTo(DIRECTIVE); } | { inDirective = false; stateStackPop(); } | { matchedToken.kind = EOF; fileDepth = 0; } } TOKEN: { <#DIGIT: [ "0"-"9" ] > | )+ > { /* * check to see if we are in set * ex. #set $foo = $foo + 3 * because we want to handle the \n after */ if ( lparen == 0 && !inSet && curLexState != REFMOD2) { stateStackPop(); } } } TOKEN: { <#LETTER: [ "a"-"z", "A" - "Z" ] > | <#DIRECTIVE_CHAR: [ "a"-"z", "A"-"Z", "0"-"9", "_" ] > | | ["_"]) ()* > } /* ----------------------------------------------------------------------- * * REFERENCE Lexical States * * This is more than a single state, because of the structure of * the VTL references. We use three states because the set of tokens * for each state can be different. * * $foo.bar( "arg" ) * ^ ^ ^ * | | | * ----------- > REFERENCE : state initiated by the '$' character. Continues * | | until end of the reference, or the . character. * |------ > REFMODIFIER : state switched to when the is encountered. * | note that this is a switch, not a push. See notes at bottom * | re stateStack. * |-- > REFMOD2 : state switch to when the LPAREN is encountered. * again, this is a switch, not a push. * * ---------------------------------------------------------------------------- */ TOKEN : { <#ALPHA_CHAR: ["a"-"z", "A"-"Z"] > | <#ALPHANUM_CHAR: [ "a"-"z", "A"-"Z", "0"-"9" ] > | <#IDENTIFIER_CHAR: [ "a"-"z", "A"-"Z", "0"-"9", "-", "_" ] > | | ["_"]) ()* > | > { /* * push the alpha char back into the stream so the following identifier * is complete */ input_stream.backup(1); /* * and munge the so we just get a . when we have normal text that * looks like a ref.ident */ matchedToken.image = "."; if ( debugPrint ) System.out.print("DOT : switching to " + REFMODIFIER); SwitchTo(REFMODIFIER); } | | { stateStackPop(); } } SPECIAL_TOKEN : { { /* * push every terminator character back into the stream */ input_stream.backup(1); inReference = false; if ( debugPrint ) System.out.print("REF_TERM :"); stateStackPop(); } } SPECIAL_TOKEN : { { if ( debugPrint ) System.out.print("DIRECTIVE_TERM :"); input_stream.backup(1); inDirective = false; stateStackPop(); } } /** * This method is what starts the whole parsing * process. After the parsing is complete and * the template has been turned into an AST, * this method returns the root of AST which * can subsequently be traversed by a visitor * which implements the ParserVisitor interface * which is generated automatically by JavaCC */ SimpleNode process() : {/*@bgen(jjtree) process */ ASTprocess jjtn000 = new ASTprocess(this, JJTPROCESS); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) process */ try { /*@egen*/ ( Statement() )* /*@bgen(jjtree)*/ { jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; } /*@egen*/ { return jjtn000; }/*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } /** * These are the types of statements that * are acceptable in Velocity templates. */ void Statement() : {} { IfStatement() | StopStatement() | LOOKAHEAD(2) Reference() | Comment() | SetDirective() | EscapedDirective() | Escape() | Directive() | Text() } /** * used to separate the notion of a valid directive that has been * escaped, versus something that looks like a directive and * is just schmoo. This is important to do as a separate production * that creates a node, because we want this, in either case, to stop * the further parsing of the Directive() tree. */ void EscapedDirective() : {/*@bgen(jjtree) EscapedDirective */ ASTEscapedDirective jjtn000 = new ASTEscapedDirective(this, JJTESCAPEDDIRECTIVE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) EscapedDirective */ try { /*@egen*/ { Token t = null; } t = /*@bgen(jjtree)*/ { jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; } /*@egen*/ { /* * churn and burn.. */ t.image = escapedDirective( t.image ); }/*@bgen(jjtree)*/ } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } /** * Used to catch and process escape sequences in grammatical constructs * as escapes outside of VTL are just characters. Right now we have both * this and the EscapeDirective() construction because in the EscapeDirective() * case, we want to suck in the # and here we don't. We just want * the escapes to render correctly */ void Escape() : {/*@bgen(jjtree) Escape */ ASTEscape jjtn000 = new ASTEscape(this, JJTESCAPE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) Escape */ try { /*@egen*/ { Token t = null; int count = 0; boolean control = false; } ( LOOKAHEAD(2) t = { count++; } )+/*@bgen(jjtree)*/ { jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; } /*@egen*/ { /* * first, check to see if we have a control directive */ switch(t.next.kind ) { case IF_DIRECTIVE : case ELSE_DIRECTIVE : case ELSEIF_DIRECTIVE : case END : case STOP_DIRECTIVE : control = true; break; } /* * if that failed, lets lookahead to see if we matched a PD or a VM */ if ( isDirective( t.next.image.substring(1))) control = true; else if ( rsvc.isVelocimacro( t.next.image.substring(1), currentTemplateName)) control = true; jjtn000.val = ""; for( int i = 0; i < count; i++) jjtn000.val += ( control ? "\\" : "\\\\"); }/*@bgen(jjtree)*/ } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } void Comment() : {/*@bgen(jjtree) Comment */ ASTComment jjtn000 = new ASTComment(this, JJTCOMMENT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) Comment */ try { /*@egen*/ | | /*@bgen(jjtree)*/ } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } void NumberLiteral() : {/*@bgen(jjtree) NumberLiteral */ ASTNumberLiteral jjtn000 = new ASTNumberLiteral(this, JJTNUMBERLITERAL); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) NumberLiteral */ try { /*@egen*/ /*@bgen(jjtree)*/ } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } void StringLiteral() : {/*@bgen(jjtree) StringLiteral */ ASTStringLiteral jjtn000 = new ASTStringLiteral(this, JJTSTRINGLITERAL); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) StringLiteral */ try { /*@egen*/ /*@bgen(jjtree)*/ } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } /** * This method corresponds to variable * references in Velocity templates. * The following are examples of variable * references that may be found in a * template: * * $foo * $bar * */ void Identifier() : {/*@bgen(jjtree) Identifier */ ASTIdentifier jjtn000 = new ASTIdentifier(this, JJTIDENTIFIER); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) Identifier */ try { /*@egen*/ /*@bgen(jjtree)*/ } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } void Word() : {/*@bgen(jjtree) Word */ ASTWord jjtn000 = new ASTWord(this, JJTWORD); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) Word */ try { /*@egen*/ /*@bgen(jjtree)*/ } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } /** * Supports the arguments for the Pluggable Directives * We add whitespace in here as a token so the VMs can * easily reconstruct a macro body from the token stream * See Directive() */ int DirectiveArg() : {} { Reference() { return ParserTreeConstants.JJTREFERENCE; } | Word() { return ParserTreeConstants.JJTWORD; } | StringLiteral() { return ParserTreeConstants.JJTSTRINGLITERAL; } | NumberLiteral() | LOOKAHEAD( [] ( Reference() | NumberLiteral()) [] ) IntegerRange() { return ParserTreeConstants.JJTINTEGERRANGE; } | ObjectArray() { return ParserTreeConstants.JJTOBJECTARRAY; } | True() { return ParserTreeConstants.JJTTRUE; } | False() { return ParserTreeConstants.JJTFALSE; } } /** * Supports the Pluggable Directives * #foo( arg+ ) */ SimpleNode Directive() : {/*@bgen(jjtree) Directive */ ASTDirective jjtn000 = new ASTDirective(this, JJTDIRECTIVE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/ Token t = null; int argType; int argPos = 0; Directive d; int directiveType; boolean isVM = false; boolean doItNow = false; } {/*@bgen(jjtree) Directive */ try { /*@egen*/ /* * note that if we were escaped, that is now handled by * EscapedDirective() */ t = { String directiveName = t.image.substring(1); d = (Directive) directives.get(directiveName); /* * Velocimacro support : if the directive is macro directive * then set the flag so after the block parsing, we add the VM * right then. (So available if used w/in the current template ) */ if (directiveName.equals("macro")) { doItNow = true; } /* * set the directive name from here. No reason for the thing to know * about parser tokens */ jjtn000.setDirectiveName(directiveName); if ( d == null) { /* * if null, then not a real directive, but maybe a Velocimacro */ isVM = rsvc.isVelocimacro(directiveName, currentTemplateName); if (!isVM) { token_source.stateStackPop(); token_source.inDirective = false; return jjtn000; } /* * Currently, all VMs are LINE directives */ directiveType = Directive.LINE; } else { directiveType = d.getType(); } /* * now, switch us out of PRE_DIRECTIVE */ token_source.SwitchTo(DIRECTIVE); argPos = 0; } /* * if this is indeed a token, match the #foo ( arg ) pattern */ [] ( LOOKAHEAD(2) [] argType = DirectiveArg() { if (argType == ParserTreeConstants.JJTWORD) { if (doItNow && argPos == 0) { /* if a VM and it's the 0th arg... ok */ ; } else if( t.image.equals("#foreach") && argPos == 1) { /* if a foreach and it's the 2nd arg ok */ ; } else { throw new MacroParseException("Invalid arg #" + argPos + " in " + (isVM ? "VM " : "directive " ) + t.image + " at line " + t.beginLine + ", column " + t.beginColumn + " in template " + currentTemplateName); } } else { if (doItNow && argPos == 0) { /* if a VM and it's the 0th arg, not ok */ throw new MacroParseException("Invalid first arg " + " in #macro() directive - must be a" + " word token (no \' or \" surrounding)" + " at line " + t.beginLine + ", column " + t.beginColumn + " in template " + currentTemplateName); } } argPos++; } )* [] { if (directiveType == Directive.LINE) { return jjtn000; } }/*@bgen(jjtree) Block */ { ASTBlock jjtn001 = new ASTBlock(this, JJTBLOCK); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); } try { /*@egen*/ /* * and the following block if the PD needs it */ ( Statement() )+/*@bgen(jjtree)*/ } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { throw (RuntimeException)jjte001; } if (jjte001 instanceof ParseException) { throw (ParseException)jjte001; } throw (Error)jjte001; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, true); } } /*@egen*/ /*@bgen(jjtree)*/ { jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; } /*@egen*/ { /* * VM : if we are processing a #macro directive, we need to * process the block. In truth, I can just register the name * and do the work later when init-ing. That would work * as long as things were always defined before use. This way * we don't have to worry about forward references and such... */ if (doItNow) { Macro.processAndRegister(rsvc, jjtn000, currentTemplateName); } /* * VM : end */ return jjtn000; }/*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } void ObjectArray() : {/*@bgen(jjtree) ObjectArray */ ASTObjectArray jjtn000 = new ASTObjectArray(this, JJTOBJECTARRAY); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) ObjectArray */ try { /*@egen*/ [ Parameter() ( Parameter() )* ] /*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } /** * supports the [n..m] vector generator for use in * the #foreach() to generate measured ranges w/o * needing explicit support from the app/servlet */ void IntegerRange() : {/*@bgen(jjtree) IntegerRange */ ASTIntegerRange jjtn000 = new ASTIntegerRange(this, JJTINTEGERRANGE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) IntegerRange */ try { /*@egen*/ [] ( Reference() | NumberLiteral()) [] [] (Reference() | NumberLiteral()) [] /*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } /** * This method has yet to be fully implemented * but will allow arbitrarily nested method * calls */ void Parameter() : {} { [] ( StringLiteral() | LOOKAHEAD( [] ( Reference() | NumberLiteral()) [] ) IntegerRange() | ObjectArray() | True() | False() | Reference() | NumberLiteral() ) [ ] } /** * This method has yet to be fully implemented * but will allow arbitrarily nested method * calls */ void Method() : {/*@bgen(jjtree) Method */ ASTMethod jjtn000 = new ASTMethod(this, JJTMETHOD); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) Method */ try { /*@egen*/ Identifier() [ Parameter() ( Parameter() )* ] /*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } void Reference() : {/*@bgen(jjtree) Reference */ ASTReference jjtn000 = new ASTReference(this, JJTREFERENCE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) Reference */ try { /*@egen*/ /* * A reference is either ${} or $ */ ( (LOOKAHEAD(2) (LOOKAHEAD(3) Method() | Identifier() ))* ) | ( (LOOKAHEAD(2) (LOOKAHEAD(3) Method() | Identifier() ))* )/*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } void True() : {/*@bgen(jjtree) True */ ASTTrue jjtn000 = new ASTTrue(this, JJTTRUE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) True */ try { /*@egen*/ /*@bgen(jjtree)*/ } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } void False() : {/*@bgen(jjtree) False */ ASTFalse jjtn000 = new ASTFalse(this, JJTFALSE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) False */ try { /*@egen*/ /*@bgen(jjtree)*/ } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } /** * This method is responsible for allowing * all non-grammar text to pass through * unscathed. */ void Text() : {/*@bgen(jjtree) Text */ ASTText jjtn000 = new ASTText(this, JJTTEXT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) Text */ try { /*@egen*/ | | | | | | | | /*@bgen(jjtree)*/ } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } /* ----------------------------------------------------------------------- * * Defined Directive Syntax * * ----------------------------------------------------------------------*/ void IfStatement() : {/*@bgen(jjtree) IfStatement */ ASTIfStatement jjtn000 = new ASTIfStatement(this, JJTIFSTATEMENT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) IfStatement */ try { /*@egen*/ [] Expression() /*@bgen(jjtree) Block */ { ASTBlock jjtn001 = new ASTBlock(this, JJTBLOCK); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); } try { /*@egen*/ ( Statement() )+/*@bgen(jjtree)*/ } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { throw (RuntimeException)jjte001; } if (jjte001 instanceof ParseException) { throw (ParseException)jjte001; } throw (Error)jjte001; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, true); } } /*@egen*/ [ LOOKAHEAD(1) ( ElseIfStatement() )+ ] [ LOOKAHEAD(1) ElseStatement() ] /*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } void ElseStatement() : {/*@bgen(jjtree) ElseStatement */ ASTElseStatement jjtn000 = new ASTElseStatement(this, JJTELSESTATEMENT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) ElseStatement */ try { /*@egen*/ /*@bgen(jjtree) Block */ { ASTBlock jjtn001 = new ASTBlock(this, JJTBLOCK); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); } try { /*@egen*/ ( Statement() )+/*@bgen(jjtree)*/ } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { throw (RuntimeException)jjte001; } if (jjte001 instanceof ParseException) { throw (ParseException)jjte001; } throw (Error)jjte001; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, true); } } /*@egen*//*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } void ElseIfStatement() : {/*@bgen(jjtree) ElseIfStatement */ ASTElseIfStatement jjtn000 = new ASTElseIfStatement(this, JJTELSEIFSTATEMENT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) ElseIfStatement */ try { /*@egen*/ [] Expression() /*@bgen(jjtree) Block */ { ASTBlock jjtn001 = new ASTBlock(this, JJTBLOCK); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); } try { /*@egen*/ ( Statement() )+/*@bgen(jjtree)*/ } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { throw (RuntimeException)jjte001; } if (jjte001 instanceof ParseException) { throw (ParseException)jjte001; } throw (Error)jjte001; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, true); } } /*@egen*//*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } /** * Currently support both types of set : * #set( expr ) * #set expr */ void SetDirective() : {/*@bgen(jjtree) SetDirective */ ASTSetDirective jjtn000 = new ASTSetDirective(this, JJTSETDIRECTIVE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) SetDirective */ try { /*@egen*/ [ LOOKAHEAD(2) ] ( [] Reference() [] Expression() { /* * ensure that inSet is false. Leads to some amusing bugs... */ token_source.inSet = false; } [] )/*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } /** * This method corresponds to the #stop * directive which just simulates and EOF * so that parsing stops. The #stop directive * is useful for end-user debugging * purposes. */ void StopStatement() : {} { } /* ----------------------------------------------------------------------- * * Expression Syntax * * ----------------------------------------------------------------------*/ void Expression() : {/*@bgen(jjtree) Expression */ ASTExpression jjtn000 = new ASTExpression(this, JJTEXPRESSION); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) Expression */ try { /*@egen*/ // LOOKAHEAD( PrimaryExpression() ) Assignment() //| ConditionalOrExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } /*@egen*/ } void Assignment() : {/*@bgen(jjtree) #Assignment( 2) */ ASTAssignment jjtn000 = new ASTAssignment(this, JJTASSIGNMENT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); /*@egen*/} {/*@bgen(jjtree) #Assignment( 2) */ try { /*@egen*/ PrimaryExpression() Expression()/*@bgen(jjtree)*/ } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { throw (RuntimeException)jjte000; } if (jjte000 instanceof ParseException) { throw (ParseException)jjte000; } throw (Error)jjte000; } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, 2); } } /*@egen*/ } void ConditionalOrExpression() : {} { ConditionalAndExpression() ( /*@bgen(jjtree) #OrNode( 2) */ { ASTOrNode jjtn001 = new ASTOrNode(this, JJTORNODE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); } try { /*@egen*/ ConditionalAndExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { throw (RuntimeException)jjte001; } if (jjte001 instanceof ParseException) { throw (ParseException)jjte001; } throw (Error)jjte001; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); } } /*@egen*/ )* } void ConditionalAndExpression() : {} { EqualityExpression() ( /*@bgen(jjtree) #AndNode( 2) */ { ASTAndNode jjtn001 = new ASTAndNode(this, JJTANDNODE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); } try { /*@egen*/ EqualityExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { throw (RuntimeException)jjte001; } if (jjte001 instanceof ParseException) { throw (ParseException)jjte001; } throw (Error)jjte001; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); } } /*@egen*/ )* } void EqualityExpression() : {} { RelationalExpression() ( /*@bgen(jjtree) #EQNode( 2) */ { ASTEQNode jjtn001 = new ASTEQNode(this, JJTEQNODE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); } try { /*@egen*/ RelationalExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { throw (RuntimeException)jjte001; } if (jjte001 instanceof ParseException) { throw (ParseException)jjte001; } throw (Error)jjte001; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); } } /*@egen*/ | /*@bgen(jjtree) #NENode( 2) */ { ASTNENode jjtn002 = new ASTNENode(this, JJTNENODE); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); } try { /*@egen*/ RelationalExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { throw (RuntimeException)jjte002; } if (jjte002 instanceof ParseException) { throw (ParseException)jjte002; } throw (Error)jjte002; } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 2); } } /*@egen*/ )* } void RelationalExpression() : {} { AdditiveExpression() ( /*@bgen(jjtree) #LTNode( 2) */ { ASTLTNode jjtn001 = new ASTLTNode(this, JJTLTNODE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); } try { /*@egen*/ AdditiveExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { throw (RuntimeException)jjte001; } if (jjte001 instanceof ParseException) { throw (ParseException)jjte001; } throw (Error)jjte001; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); } } /*@egen*/ | /*@bgen(jjtree) #GTNode( 2) */ { ASTGTNode jjtn002 = new ASTGTNode(this, JJTGTNODE); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); } try { /*@egen*/ AdditiveExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { throw (RuntimeException)jjte002; } if (jjte002 instanceof ParseException) { throw (ParseException)jjte002; } throw (Error)jjte002; } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 2); } } /*@egen*/ | /*@bgen(jjtree) #LENode( 2) */ { ASTLENode jjtn003 = new ASTLENode(this, JJTLENODE); boolean jjtc003 = true; jjtree.openNodeScope(jjtn003); } try { /*@egen*/ AdditiveExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte003) { if (jjtc003) { jjtree.clearNodeScope(jjtn003); jjtc003 = false; } else { jjtree.popNode(); } if (jjte003 instanceof RuntimeException) { throw (RuntimeException)jjte003; } if (jjte003 instanceof ParseException) { throw (ParseException)jjte003; } throw (Error)jjte003; } finally { if (jjtc003) { jjtree.closeNodeScope(jjtn003, 2); } } /*@egen*/ | /*@bgen(jjtree) #GENode( 2) */ { ASTGENode jjtn004 = new ASTGENode(this, JJTGENODE); boolean jjtc004 = true; jjtree.openNodeScope(jjtn004); } try { /*@egen*/ AdditiveExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte004) { if (jjtc004) { jjtree.clearNodeScope(jjtn004); jjtc004 = false; } else { jjtree.popNode(); } if (jjte004 instanceof RuntimeException) { throw (RuntimeException)jjte004; } if (jjte004 instanceof ParseException) { throw (ParseException)jjte004; } throw (Error)jjte004; } finally { if (jjtc004) { jjtree.closeNodeScope(jjtn004, 2); } } /*@egen*/ )* } void AdditiveExpression() : {} { MultiplicativeExpression() ( /*@bgen(jjtree) #AddNode( 2) */ { ASTAddNode jjtn001 = new ASTAddNode(this, JJTADDNODE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); } try { /*@egen*/ MultiplicativeExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { throw (RuntimeException)jjte001; } if (jjte001 instanceof ParseException) { throw (ParseException)jjte001; } throw (Error)jjte001; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); } } /*@egen*/ | /*@bgen(jjtree) #SubtractNode( 2) */ { ASTSubtractNode jjtn002 = new ASTSubtractNode(this, JJTSUBTRACTNODE); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); } try { /*@egen*/ MultiplicativeExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { throw (RuntimeException)jjte002; } if (jjte002 instanceof ParseException) { throw (ParseException)jjte002; } throw (Error)jjte002; } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 2); } } /*@egen*/ )* } void MultiplicativeExpression() : {} { UnaryExpression() ( /*@bgen(jjtree) #MulNode( 2) */ { ASTMulNode jjtn001 = new ASTMulNode(this, JJTMULNODE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); } try { /*@egen*/ UnaryExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { throw (RuntimeException)jjte001; } if (jjte001 instanceof ParseException) { throw (ParseException)jjte001; } throw (Error)jjte001; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); } } /*@egen*/ | /*@bgen(jjtree) #DivNode( 2) */ { ASTDivNode jjtn002 = new ASTDivNode(this, JJTDIVNODE); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); } try { /*@egen*/ UnaryExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { throw (RuntimeException)jjte002; } if (jjte002 instanceof ParseException) { throw (ParseException)jjte002; } throw (Error)jjte002; } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 2); } } /*@egen*/ | /*@bgen(jjtree) #ModNode( 2) */ { ASTModNode jjtn003 = new ASTModNode(this, JJTMODNODE); boolean jjtc003 = true; jjtree.openNodeScope(jjtn003); } try { /*@egen*/ UnaryExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte003) { if (jjtc003) { jjtree.clearNodeScope(jjtn003); jjtc003 = false; } else { jjtree.popNode(); } if (jjte003 instanceof RuntimeException) { throw (RuntimeException)jjte003; } if (jjte003 instanceof ParseException) { throw (ParseException)jjte003; } throw (Error)jjte003; } finally { if (jjtc003) { jjtree.closeNodeScope(jjtn003, 2); } } /*@egen*/ )* } void UnaryExpression() : {} { LOOKAHEAD(2) [] /*@bgen(jjtree) #NotNode( 1) */ { ASTNotNode jjtn001 = new ASTNotNode(this, JJTNOTNODE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); } try { /*@egen*/ UnaryExpression()/*@bgen(jjtree)*/ } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { throw (RuntimeException)jjte001; } if (jjte001 instanceof ParseException) { throw (ParseException)jjte001; } throw (Error)jjte001; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 1); } } /*@egen*/ | PrimaryExpression() } void PrimaryExpression() : {} { [] ( StringLiteral() | NumberLiteral() | Reference() | LOOKAHEAD( [] ( Reference() | NumberLiteral()) [] ) IntegerRange() | ObjectArray() | True() | False() | Expression() ) [] } /* ====================================================================== Notes ----- template == the input stream for this parser, contains 'VTL' mixed in with 'schmoo' VTL == Velocity Template Language : the references, directives, etc shmoo == the non-VTL component of a template reference == VTL entity that represents data within the context. ex. $foo directive == VTL entity that denotes 'action' (#set, #foreach, #if ) defined directive (DD) == VTL directive entity that is expressed explicitly w/in this grammar pluggable directive (PD) == VTL directive entity that is defined outside of the grammar. PD's allow VTL to be easily expandable w/o parser modification. The problem with parsing VTL is that an input stream consists generally of little bits of VTL mixed in with 'other stuff, referred to as 'schmoo'. Unlike other languages, like C or Java, where the parser can punt whenever it encounters input that doesn't conform to the grammar, the VTL parser can't do that. It must simply output the schmoo and keep going. There are a few things that we do here : - define a set of parser states (DEFAULT, DIRECTIVE, REFERENCE, etc) - define for each parser state a set of tokens for each state - define the VTL grammar, expressed (mostly) in the productions such as Text(), SetStatement(), etc. It is clear that this expression of the VTL grammar (the contents of this .jjt file) is maturing and evolving as we learn more about how to parse VTL ( and as I learn about parsing...), so in the event this documentation is in disagreement w/ the source, the source takes precedence. :) Parser States ------------- DEFAULT : This is the base or starting state, and strangely enough, the default state. PRE_DIRECTIVE : State immediately following '#' before we figure out which defined or pluggable directive (or neither) we are working with. DIRECTIVE : This state is triggered by the a match of a DD or a PD. REFERENCE : Triggered by '$'. Analagous to PRE_DIRECTIVE. REFMODIFIER : Triggered by . when in REFERENCE. REFMOD2 : Triggered by ( when in REFMODIFIER (cont) Escape Sequences ---------------- The escape processing in VTL is very simple. The '\' character acts only as an escape when : 1) On or more touch a VTL element. A VTL element is either : 1) It preceeds a reference that is in the context. 2) It preceeds a defined directive (#set, #if, #end, etc) or a valid pluggable directive, such as #foreach In all other cases the '\' is just another piece of text. The purpose of this is to allow the non-VTL parts of a template (the 'schmoo') to not have to be altered for processing by Velocity. So if in the context $foo and $bar were defined and $woogie was not \$foo \$bar \$woogie would output $foo $bar \$woogie Further, you can stack them and they affect left to right, just like convention escape characters in other languages. \$foo = $foo \\$foo = \ \\\$foo = \$foo What You Expect --------------- The recent versions of the parser are trying to support precise output to support general template use. The directives do not render trailing whitespace and newlines if followed by a newline. They will render preceeding whitespace. The only exception is #set, which also eats preceeding whitespace. So, with a template : ------ #set $foo="foo" #if($foo) \$foo = $foo #end ------ it will render precisely : ------ $foo = foo ------ */