X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/test/PHPParser.jj b/net.sourceforge.phpeclipse/src/test/PHPParser.jj index 35b3173..823b11e 100644 --- a/net.sourceforge.phpeclipse/src/test/PHPParser.jj +++ b/net.sourceforge.phpeclipse/src/test/PHPParser.jj @@ -30,14 +30,16 @@ import org.eclipse.jface.preference.IPreferenceStore; import java.util.Hashtable; import java.util.Enumeration; +import java.util.ArrayList; import java.io.StringReader; import java.io.*; import java.text.MessageFormat; import net.sourceforge.phpeclipse.actions.PHPStartApacheAction; import net.sourceforge.phpeclipse.PHPeclipsePlugin; -import net.sourceforge.phpdt.internal.compiler.parser.*; import net.sourceforge.phpdt.internal.compiler.ast.*; +import net.sourceforge.phpdt.internal.compiler.parser.OutlineableWithChildren; +import net.sourceforge.phpdt.internal.compiler.parser.PHPOutlineInfo; /** * A new php parser. @@ -52,13 +54,13 @@ public final class PHPParser extends PHPParserSuperclass { private static IFile fileToParse; /** The current segment. */ - private static PHPSegmentWithChildren currentSegment; + private static OutlineableWithChildren currentSegment; private static final String PARSE_ERROR_STRING = "Parse error"; //$NON-NLS-1$ private static final String PARSE_WARNING_STRING = "Warning"; //$NON-NLS-1$ static PHPOutlineInfo outlineInfo; - private static PHPFunctionDeclaration currentFunction; + public static MethodDeclaration currentFunction; private static boolean assigning; /** The error level of the current ParseException. */ @@ -68,13 +70,19 @@ public final class PHPParser extends PHPParserSuperclass { private static int errorStart = -1; private static int errorEnd = -1; + private static PHPDocument phpDocument; + /** + * The point where html starts. + * It will be used by the token manager to create HTMLCode objects + */ + public static int htmlStart; //ast stack private final static int AstStackIncrement = 100; /** The stack of node. */ - private static AstNode[] astStack; + private static AstNode[] nodes; /** The cursor in expression stack. */ - private static int expressionPtr; + private static int nodePtr; public final void setFileToParse(final IFile fileToParse) { this.fileToParse = fileToParse; @@ -88,6 +96,32 @@ public final class PHPParser extends PHPParserSuperclass { this.fileToParse = fileToParse; } + /** + * Reinitialize the parser. + */ + private static final void init() { + nodes = new AstNode[AstStackIncrement]; + nodePtr = -1; + htmlStart = 0; + } + + /** + * Add an php node on the stack. + * @param node the node that will be added to the stack + */ + private static final void pushOnAstNodes(AstNode node) { + try { + nodes[++nodePtr] = node; + } catch (IndexOutOfBoundsException e) { + int oldStackLength = nodes.length; + AstNode[] oldStack = nodes; + nodes = new AstNode[oldStackLength + AstStackIncrement]; + System.arraycopy(oldStack, 0, nodes, 0, oldStackLength); + nodePtr = oldStackLength; + nodes[nodePtr] = node; + } + } + public static final void phpParserTester(final String strEval) throws CoreException, ParseException { PHPParserTokenManager.SwitchTo(PHPParserTokenManager.PHPPARSING); final StringReader stream = new StringReader(strEval); @@ -95,7 +129,7 @@ public final class PHPParser extends PHPParserSuperclass { jj_input_stream = new SimpleCharStream(stream, 1, 1); } ReInit(new StringReader(strEval)); - astStack = new AstNode[AstStackIncrement]; + init(); phpTest(); } @@ -106,7 +140,7 @@ public final class PHPParser extends PHPParserSuperclass { jj_input_stream = new SimpleCharStream(stream, 1, 1); } ReInit(stream); - astStack = new AstNode[AstStackIncrement]; + init(); phpFile(); } catch (FileNotFoundException e) { e.printStackTrace(); //To change body of catch statement use Options | File Templates. @@ -119,21 +153,22 @@ public final class PHPParser extends PHPParserSuperclass { jj_input_stream = new SimpleCharStream(stream, 1, 1); } ReInit(stream); - astStack = new AstNode[AstStackIncrement]; + init(); phpFile(); } public final PHPOutlineInfo parseInfo(final Object parent, final String s) { + currentSegment = new PHPDocument(parent); outlineInfo = new PHPOutlineInfo(parent); - currentSegment = outlineInfo.getDeclarations(); final StringReader stream = new StringReader(s); if (jj_input_stream == null) { jj_input_stream = new SimpleCharStream(stream, 1, 1); } ReInit(stream); - astStack = new AstNode[AstStackIncrement]; + init(); try { parse(); + //PHPeclipsePlugin.log(1,phpDocument.toString()); } catch (ParseException e) { processParseException(e); } @@ -256,7 +291,7 @@ public final class PHPParser extends PHPParserSuperclass { jj_input_stream = new SimpleCharStream(stream, 1, 1); } ReInit(stream); - astStack = new AstNode[AstStackIncrement]; + init(); try { parse(); } catch (ParseException e) { @@ -286,6 +321,18 @@ public final class PHPParser extends PHPParserSuperclass { } } + /** + * Put a new html block in the stack. + */ + public static final void createNewHTMLCode() { + final int currentPosition = SimpleCharStream.getPosition(); + if (currentPosition == htmlStart) { + return; + } + final char[] chars = SimpleCharStream.currentBuffer.substring(htmlStart,currentPosition).toCharArray(); + pushOnAstNodes(new HTMLCode(chars, htmlStart,currentPosition)); + } + private static final void parse() throws ParseException { phpFile(); } @@ -295,14 +342,14 @@ PARSER_END(PHPParser) TOKEN : { - : PHPPARSING -| : PHPPARSING -| {PHPParser.createNewHTMLCode();} : PHPPARSING +| {PHPParser.createNewHTMLCode();} : PHPPARSING +| "> : DEFAULT + "> {PHPParser.htmlStart = SimpleCharStream.getPosition();} : DEFAULT } /* Skip any character if we are not in php mode */ @@ -435,10 +482,37 @@ MORE : | } +//Misc token TOKEN : { - <_ORL : "OR"> -| <_ANDL : "AND"> + +| +| +| +| +| +} + +/* OPERATORS */ + TOKEN : +{ + +| +| +| +| +| +| +| +| +| +| +| +| +| >"> +| >>"> +| <_ORL : "OR"> +| <_ANDL : "AND"> } /* LITERALS */ @@ -535,10 +609,10 @@ MORE : { "> | -| +| | ="> -| "> | | @@ -558,32 +632,6 @@ MORE : | -| -| -| -| -| -| -| -| -| -| -| -| -| -| -| -| -| -| -| >"> -| >>"> | >="> } @@ -598,6 +646,7 @@ void phpTest() : { Php() + {PHPParser.createNewHTMLCode();} } void phpFile() : @@ -653,10 +702,18 @@ void PhpBlock() : } } -void phpEchoBlock() : -{} +PHPEchoBlock phpEchoBlock() : { - Expression() [ ] + final Expression expr; + final int pos = SimpleCharStream.getPosition(); + PHPEchoBlock echoBlock; +} +{ + expr = Expression() [ ] + { + echoBlock = new PHPEchoBlock(expr,pos,SimpleCharStream.getPosition()); + pushOnAstNodes(echoBlock); + return echoBlock;} } void Php() : @@ -665,10 +722,11 @@ void Php() : (BlockStatement())* } -void ClassDeclaration() : +ClassDeclaration ClassDeclaration() : { - final PHPClassDeclaration classDeclaration; + final ClassDeclaration classDeclaration; final Token className; + Token superclassName = null; final int pos; } { @@ -686,7 +744,7 @@ void ClassDeclaration() : [ try { - + superclassName = } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', identifier expected"; errorLevel = ERROR; @@ -696,21 +754,29 @@ void ClassDeclaration() : } ] { - if (currentSegment != null) { - classDeclaration = new PHPClassDeclaration(currentSegment,className.image,pos); + if (superclassName == null) { + classDeclaration = new ClassDeclaration(currentSegment, + className.image.toCharArray(), + superclassName.image.toCharArray(), + pos, + 0); + } else { + classDeclaration = new ClassDeclaration(currentSegment, + className.image.toCharArray(), + pos, + 0); + } currentSegment.add(classDeclaration); currentSegment = classDeclaration; - } - } - ClassBody() - { - if (currentSegment != null) { - currentSegment = (PHPSegmentWithChildren) currentSegment.getParent(); - } } + ClassBody(classDeclaration) + {currentSegment = (OutlineableWithChildren) currentSegment.getParent(); + classDeclaration.sourceEnd = SimpleCharStream.getPosition(); + pushOnAstNodes(classDeclaration); + return classDeclaration;} } -void ClassBody() : +void ClassBody(ClassDeclaration classDeclaration) : {} { try { @@ -722,7 +788,7 @@ void ClassBody() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } - ( ClassBodyDeclaration() )* + ( ClassBodyDeclaration(classDeclaration) )* try { } catch (ParseException e) { @@ -737,24 +803,27 @@ void ClassBody() : /** * A class can contain only methods and fields. */ -void ClassBodyDeclaration() : -{} +void ClassBodyDeclaration(ClassDeclaration classDeclaration) : { - MethodDeclaration() -| FieldDeclaration() + MethodDeclaration method; + FieldDeclaration field; +} +{ + method = MethodDeclaration() {classDeclaration.addMethod(method);} +| field = FieldDeclaration() {classDeclaration.addVariable(field);} } /** * A class field declaration : it's var VariableDeclarator() (, VariableDeclarator())*;. */ -void FieldDeclaration() : +FieldDeclaration FieldDeclaration() : { - PHPVarDeclaration variableDeclaration; + VariableDeclaration variableDeclaration; } { variableDeclaration = VariableDeclarator() { - outlineInfo.addVariable(variableDeclaration.getVariable().getName()); + outlineInfo.addVariable(new String(variableDeclaration.name)); if (currentSegment != null) { currentSegment.add(variableDeclaration); } @@ -778,9 +847,10 @@ void FieldDeclaration() : } } -PHPVarDeclaration VariableDeclarator() : +VariableDeclaration VariableDeclarator() : { final String varName, varValue; + Expression initializer = null; final int pos = jj_input_stream.getPosition(); } { @@ -788,8 +858,7 @@ PHPVarDeclaration VariableDeclarator() : [ try { - varValue = VariableInitializer() - {return new PHPVarDeclaration(currentSegment,varName,pos,varValue);} + initializer = VariableInitializer() } catch (ParseException e) { errorMessage = "Literal expression expected in variable initializer"; errorLevel = ERROR; @@ -798,19 +867,33 @@ PHPVarDeclaration VariableDeclarator() : throw e; } ] - {return new PHPVarDeclaration(currentSegment,varName,pos);} + {return new VariableDeclaration(currentSegment, + varName.toCharArray(), + initializer, + pos);} } +/** + * A Variable name. + * @return the variable name (with suffix) + */ String VariableDeclaratorId() : { String expr; + Expression expression; final StringBuffer buff = new StringBuffer(); + final int pos = SimpleCharStream.getPosition(); + ConstantIdentifier ex; } { try { expr = Variable() {buff.append(expr);} ( LOOKAHEAD(2) - expr = VariableSuffix() {buff.append(expr);} + {ex = new ConstantIdentifier(expr.toCharArray(), + pos, + SimpleCharStream.getPosition());} + expression = VariableSuffix(ex) + {buff.append(expression.toStringExpression());} )* {return buff.toString();} } catch (ParseException e) { @@ -824,22 +907,22 @@ String VariableDeclaratorId() : String Variable(): { - String expr = null; + final StringBuffer buff; + Expression expression = null; final Token token; + final String expr; } { - token = [ expr = Expression() ] + token = [ expression = Expression() ] { - if (expr == null && !assigning) { - if (currentFunction != null) { - PHPVarDeclaration var = currentFunction.getParameter(token.image.substring(1)); - if (var != null) { - var.getVariable().setUsed(true); - } - } + if (expression == null && !assigning) { return token.image.substring(1); } - return token + "{" + expr + "}"; + buff = new StringBuffer(token.image); + buff.append('{'); + buff.append(expression.toStringExpression()); + buff.append('}'); + return buff.toString(); } | expr = VariableName() @@ -848,127 +931,113 @@ String Variable(): String VariableName(): { -String expr = null; -final Token token; + final StringBuffer buff; + String expr = null; + Expression expression = null; + final Token token; } { - expr = Expression() - {return "{"+expr+"}";} + expression = Expression() + {buff = new StringBuffer('{'); + buff.append(expression.toStringExpression()); + buff.append('}'); + return buff.toString();} | - token = [ expr = Expression() ] + token = [ expression = Expression() ] { - if (expr == null) { - if (currentFunction != null) { - PHPVarDeclaration var = currentFunction.getParameter(token.image); - if (var != null) { - var.getVariable().setUsed(true); - } - } + if (expression == null) { return token.image; } - return token + "{" + expr + "}"; + buff = new StringBuffer(token.image); + buff.append('{'); + buff.append(expression.toStringExpression()); + buff.append('}'); + return buff.toString(); } | expr = VariableName() { - if (currentFunction != null) { - PHPVarDeclaration var = currentFunction.getParameter(expr); - if (var != null) { - var.getVariable().setUsed(true); - } - } - return "$" + expr; + buff = new StringBuffer('$'); + buff.append(expr); + return buff.toString(); } | - token = - { - if (currentFunction != null) { - PHPVarDeclaration var = currentFunction.getParameter(token.image.substring(1)); - if (var != null) { - var.getVariable().setUsed(true); - } - } - return token.image + expr; - } -/*| pas besoin ? - token = [expr = VariableName()] - { - if (expr == null) { - return token.image; - } - return token.image + expr; - }*/ + token = {return token.image;} } -String VariableInitializer() : +Expression VariableInitializer() : { - final String expr; + final Expression expr; final Token token; + final int pos = SimpleCharStream.getPosition(); } { expr = Literal() {return expr;} | (token = | token = ) - {return "-" + token.image;} + {return new PrefixedUnaryExpression(new NumberLiteral(token.image.toCharArray(), + pos, + SimpleCharStream.getPosition()), + OperatorIds.MINUS, + pos);} | (token = | token = ) - {return "+" + token.image;} + {return new PrefixedUnaryExpression(new NumberLiteral(token.image.toCharArray(), + pos, + SimpleCharStream.getPosition()), + OperatorIds.PLUS, + pos);} | expr = ArrayDeclarator() {return expr;} | token = - {return token.image;} + {return new ConstantIdentifier(token.image.toCharArray(),pos,SimpleCharStream.getPosition());} } -String ArrayVariable() : +ArrayVariableDeclaration ArrayVariable() : { -String expr; -final StringBuffer buff = new StringBuffer(); +Expression expr; +Expression expr2 = null; } { - expr = Expression() - {buff.append(expr);} - [ expr = Expression() - {buff.append("=>").append(expr);}] - {return buff.toString();} + expr = Expression() [ expr2 = Expression()] + {return new ArrayVariableDeclaration(expr,expr2);} } -String ArrayInitializer() : +ArrayVariableDeclaration[] ArrayInitializer() : { -String expr; -final StringBuffer buff = new StringBuffer("("); + ArrayVariableDeclaration expr; + final ArrayList list = new ArrayList(); } { [ expr = ArrayVariable() - {buff.append(expr);} + {list.add(expr);} ( LOOKAHEAD(2) expr = ArrayVariable() - {buff.append(",").append(expr);} + {list.add(expr);} )* ] - [ {buff.append(",");}] + [ {list.add(null);}] - { - buff.append(")"); - return buff.toString(); - } + {return (ArrayVariableDeclaration[]) list.toArray();} } /** * A Method Declaration. * function MetodDeclarator() Block() */ -void MethodDeclaration() : +MethodDeclaration MethodDeclaration() : { - final PHPFunctionDeclaration functionDeclaration; + final MethodDeclaration functionDeclaration; Token functionToken; + final Block block; } { functionToken = try { functionDeclaration = MethodDeclarator() - {outlineInfo.addVariable(functionDeclaration.getName());} + {outlineInfo.addVariable(new String(functionDeclaration.name));} } catch (ParseException e) { if (errorMessage != null) { throw e; @@ -986,28 +1055,14 @@ void MethodDeclaration() : } currentFunction = functionDeclaration; } - Block() + block = Block() { - Hashtable parameters = currentFunction.getParameters(); - Enumeration vars = parameters.elements(); - while (vars.hasMoreElements()) { - PHPVarDeclaration o = (PHPVarDeclaration) vars.nextElement(); - if (!o.getVariable().isUsed()) { - try { - setMarker(fileToParse, - "Parameter "+o.getVariable().getName()+" is never used in function", - functionToken.beginLine, - WARNING, - "Line " + token.beginLine); - } catch (CoreException e) { - PHPeclipsePlugin.log(e); - } - } - } + functionDeclaration.statements = block.statements; currentFunction = null; if (currentSegment != null) { - currentSegment = (PHPSegmentWithChildren) currentSegment.getParent(); + currentSegment = (OutlineableWithChildren) currentSegment.getParent(); } + return functionDeclaration; } } @@ -1016,21 +1071,23 @@ void MethodDeclaration() : * [&] IDENTIFIER(parameters ...). * @return a function description for the outline */ -PHPFunctionDeclaration MethodDeclarator() : +MethodDeclaration MethodDeclarator() : { final Token identifier; - final StringBuffer methodDeclaration = new StringBuffer(); + Token reference = null; final Hashtable formalParameters; - final int pos = jj_input_stream.getPosition(); + final int pos = SimpleCharStream.getPosition(); } { - [ {methodDeclaration.append("&");} ] + [ reference = ] identifier = formalParameters = FormalParameters() - { - methodDeclaration.append(identifier); - return new PHPFunctionDeclaration(currentSegment,methodDeclaration.toString(),pos,formalParameters); - } + {return new MethodDeclaration(currentSegment, + identifier.image.toCharArray(), + formalParameters, + reference != null, + pos, + SimpleCharStream.getPosition());} } /** @@ -1041,7 +1098,7 @@ Hashtable FormalParameters() : { String expr; final StringBuffer buff = new StringBuffer("("); - PHPVarDeclaration var; + VariableDeclaration var; final Hashtable parameters = new Hashtable(); } { @@ -1055,10 +1112,10 @@ Hashtable FormalParameters() : throw e; } [ var = FormalParameter() - {parameters.put(var.getVariable().getName(),var);} + {parameters.put(new String(var.name),var);} ( var = FormalParameter() - {parameters.put(var.getVariable().getName(),var);} + {parameters.put(new String(var.name),var);} )* ] try { @@ -1077,40 +1134,55 @@ Hashtable FormalParameters() : * A formal parameter. * $varname[=value] (,$varname[=value]) */ -PHPVarDeclaration FormalParameter() : +VariableDeclaration FormalParameter() : { - final PHPVarDeclaration variableDeclaration; + final VariableDeclaration variableDeclaration; Token token = null; } { [token = ] variableDeclaration = VariableDeclarator() { if (token != null) { - variableDeclaration.getVariable().setReference(true); + variableDeclaration.setReference(true); } - return variableDeclaration; - } -} - -String Type() : -{} -{ - {return "string";} -| {return "bool";} -| {return "boolean";} -| {return "real";} -| {return "double";} -| {return "float";} -| {return "int";} -| {return "integer";} -| {return "object";} -} - -String Expression() : -{ - final String expr; - final String assignOperator; - final String expr2; + return variableDeclaration;} +} + +ConstantIdentifier Type() : +{final int pos;} +{ + {pos = SimpleCharStream.getPosition(); + return new ConstantIdentifier(Types.STRING, + pos,pos-6);} +| {pos = SimpleCharStream.getPosition(); + return new ConstantIdentifier(Types.BOOL, + pos,pos-4);} +| {pos = SimpleCharStream.getPosition(); + return new ConstantIdentifier(Types.BOOLEAN, + pos,pos-7);} +| {pos = SimpleCharStream.getPosition(); + return new ConstantIdentifier(Types.REAL, + pos,pos-4);} +| {pos = SimpleCharStream.getPosition(); + return new ConstantIdentifier(Types.DOUBLE, + pos,pos-5);} +| {pos = SimpleCharStream.getPosition(); + return new ConstantIdentifier(Types.FLOAT, + pos,pos-5);} +| {pos = SimpleCharStream.getPosition(); + return new ConstantIdentifier(Types.INT, + pos,pos-3);} +| {pos = SimpleCharStream.getPosition(); + return new ConstantIdentifier(Types.INTEGER, + pos,pos-7);} +| {pos = SimpleCharStream.getPosition(); + return new ConstantIdentifier(Types.OBJECT, + pos,pos-6);} +} + +Expression Expression() : +{ + final Expression expr; } { expr = PrintExpression() {return expr;} @@ -1124,17 +1196,18 @@ String Expression() : * A Variable assignation. * varName (an assign operator) any expression */ -String varAssignation() : +VarAssignation varAssignation() : { - String varName,assignOperator,expr2; - PHPVarDeclaration variable; + String varName; + final Expression expression; + final int assignOperator; final int pos = SimpleCharStream.getPosition(); } { varName = VariableDeclaratorId() assignOperator = AssignmentOperator() try { - expr2 = Expression() + expression = Expression() } catch (ParseException e) { if (errorMessage != null) { throw e; @@ -1145,300 +1218,286 @@ String varAssignation() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } - {return varName + assignOperator + expr2;} + {return new VarAssignation(varName.toCharArray(), + expression, + assignOperator, + pos, + SimpleCharStream.getPosition());} } -String AssignmentOperator() : +int AssignmentOperator() : {} { - {return "=";} -| {return "*=";} -| {return "/=";} -| {return "%=";} -| {return "+=";} -| {return "-=";} -| {return "<<=";} -| {return ">>=";} -| {return "&=";} -| {return "|=";} -| {return "|=";} -| {return ".=";} -| {return "~=";} + {return VarAssignation.EQUAL;} +| {return VarAssignation.STAR_EQUAL;} +| {return VarAssignation.SLASH_EQUAL;} +| {return VarAssignation.REM_EQUAL;} +| {return VarAssignation.PLUS_EQUAL;} +| {return VarAssignation.MINUS_EQUAL;} +| {return VarAssignation.LSHIFT_EQUAL;} +| {return VarAssignation.RSIGNEDSHIFT_EQUAL;} +| {return VarAssignation.AND_EQUAL;} +| {return VarAssignation.XOR_EQUAL;} +| {return VarAssignation.OR_EQUAL;} +| {return VarAssignation.DOT_EQUAL;} +| {return VarAssignation.TILDE_EQUAL;} } -String ConditionalExpression() : +Expression ConditionalExpression() : { - final String expr; - String expr2 = null; - String expr3 = null; + final Expression expr; + Expression expr2 = null; + Expression expr3 = null; } { expr = ConditionalOrExpression() [ expr2 = Expression() expr3 = ConditionalExpression() ] { if (expr3 == null) { return expr; - } else { - return expr + "?" + expr2 + ":" + expr3; } + return new ConditionalExpression(expr,expr2,expr3); } } -String ConditionalOrExpression() : +Expression ConditionalOrExpression() : { - String expr; - Token operator; - final StringBuffer buff = new StringBuffer(); + Expression expr,expr2; + int operator; } { expr = ConditionalAndExpression() - {buff.append(expr);} ( - (operator = | operator = <_ORL>) expr = ConditionalAndExpression() + ( + {operator = OperatorIds.OR_OR;} + | <_ORL> {operator = OperatorIds.ORL;} + ) expr2 = ConditionalAndExpression() { - buff.append(operator.image); - buff.append(expr); + expr = new BinaryExpression(expr,expr2,operator); } )* - { - return buff.toString(); - } + {return expr;} } -String ConditionalAndExpression() : +Expression ConditionalAndExpression() : { - String expr; - Token operator; - final StringBuffer buff = new StringBuffer(); + Expression expr,expr2; + int operator; } { expr = ConcatExpression() - {buff.append(expr);} ( - (operator = | operator = <_ANDL>) expr = ConcatExpression() - { - buff.append(operator.image); - buff.append(expr); - } + ( {operator = OperatorIds.AND_AND;} + | <_ANDL> {operator = OperatorIds.ANDL;}) + expr2 = ConcatExpression() {expr = new BinaryExpression(expr,expr2,operator);} )* - {return buff.toString();} + {return expr;} } -String ConcatExpression() : +Expression ConcatExpression() : { - String expr; - final StringBuffer buff = new StringBuffer(); + Expression expr,expr2; } { expr = InclusiveOrExpression() - {buff.append(expr);} ( - expr = InclusiveOrExpression() - {buff.append(".").append(expr);} + expr2 = InclusiveOrExpression() + {expr = new BinaryExpression(expr,expr2,OperatorIds.DOT);} )* - {return buff.toString();} + {return expr;} } -String InclusiveOrExpression() : +Expression InclusiveOrExpression() : { - String expr; - final StringBuffer buff = new StringBuffer(); + Expression expr,expr2; } { expr = ExclusiveOrExpression() - {buff.append(expr);} - ( - expr = ExclusiveOrExpression() - {buff.append("|").append(expr);} + ( expr2 = ExclusiveOrExpression() + {expr = new BinaryExpression(expr,expr2,OperatorIds.OR);} )* - {return buff.toString();} + {return expr;} } -String ExclusiveOrExpression() : +Expression ExclusiveOrExpression() : { - String expr; - final StringBuffer buff = new StringBuffer(); + Expression expr,expr2; } { expr = AndExpression() - { - buff.append(expr); - } ( - expr = AndExpression() - { - buff.append("^"); - buff.append(expr); - } + expr2 = AndExpression() + {expr = new BinaryExpression(expr,expr2,OperatorIds.XOR);} )* - { - return buff.toString(); - } + {return expr;} } -String AndExpression() : +Expression AndExpression() : { - String expr; - final StringBuffer buff = new StringBuffer(); + Expression expr,expr2; } { expr = EqualityExpression() - { - buff.append(expr); - } ( - expr = EqualityExpression() - { - buff.append("&").append(expr); - } + expr2 = EqualityExpression() + {expr = new BinaryExpression(expr,expr2,OperatorIds.AND);} )* - {return buff.toString();} + {return expr;} } -String EqualityExpression() : +Expression EqualityExpression() : { - String expr; - Token operator; - final StringBuffer buff = new StringBuffer(); + Expression expr,expr2; + int operator; } { expr = RelationalExpression() - {buff.append(expr);} ( - ( operator = - | operator = - | operator = - | operator = - | operator = + ( {operator = OperatorIds.EQUAL_EQUAL;} + | {operator = OperatorIds.DIF;} + | {operator = OperatorIds.DIF;} + | {operator = OperatorIds.BANG_EQUAL_EQUAL;} + | {operator = OperatorIds.EQUAL_EQUAL_EQUAL;} ) try { - expr = RelationalExpression() + expr2 = RelationalExpression() } catch (ParseException e) { - errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected after '"+operator.image+"'"; + if (errorMessage != null) { + throw e; + } + errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected"; errorLevel = ERROR; errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = jj_input_stream.getPosition() + 1; throw e; } { - buff.append(operator.image); - buff.append(expr); + expr = new BinaryExpression(expr,expr2,operator); } )* - {return buff.toString();} + {return expr;} } -String RelationalExpression() : +Expression RelationalExpression() : { - String expr; - Token operator; - final StringBuffer buff = new StringBuffer(); + Expression expr,expr2; + int operator; } { expr = ShiftExpression() - {buff.append(expr);} ( - ( operator = | operator = | operator = | operator = ) expr = ShiftExpression() - {buff.append(operator.image).append(expr);} + ( {operator = OperatorIds.LESS;} + | {operator = OperatorIds.GREATER;} + | {operator = OperatorIds.LESS_EQUAL;} + | {operator = OperatorIds.GREATER_EQUAL;}) + expr2 = ShiftExpression() + {expr = new BinaryExpression(expr,expr2,operator);} )* - {return buff.toString();} + {return expr;} } -String ShiftExpression() : +Expression ShiftExpression() : { - String expr; - Token operator; - final StringBuffer buff = new StringBuffer(); + Expression expr,expr2; + int operator; } { expr = AdditiveExpression() - {buff.append(expr);} ( - (operator = | operator = | operator = ) expr = AdditiveExpression() - { - buff.append(operator.image); - buff.append(expr); - } + ( {operator = OperatorIds.LEFT_SHIFT;} + | {operator = OperatorIds.RIGHT_SHIFT;} + | {operator = OperatorIds.UNSIGNED_RIGHT_SHIFT;}) + expr2 = AdditiveExpression() + {expr = new BinaryExpression(expr,expr2,operator);} )* - {return buff.toString();} + {return expr;} } -String AdditiveExpression() : +Expression AdditiveExpression() : { - String expr; - Token operator; - final StringBuffer buff = new StringBuffer(); + Expression expr,expr2; + int operator; } { expr = MultiplicativeExpression() - {buff.append(expr);} ( - ( operator = | operator = ) expr = MultiplicativeExpression() - { - buff.append(operator.image); - buff.append(expr); - } + ( {operator = OperatorIds.PLUS;} + | {operator = OperatorIds.MINUS;} ) + expr2 = MultiplicativeExpression() + {expr = new BinaryExpression(expr,expr2,operator);} )* - {return buff.toString();} + {return expr;} } -String MultiplicativeExpression() : +Expression MultiplicativeExpression() : { - String expr; - Token operator; - final StringBuffer buff = new StringBuffer();} + Expression expr,expr2; + int operator; +} { try { expr = UnaryExpression() } catch (ParseException e) { + if (errorMessage != null) { + throw e; + } errorMessage = "unexpected token '"+e.currentToken.next.image+"'"; errorLevel = ERROR; errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = jj_input_stream.getPosition() + 1; throw e; } - {buff.append(expr);} ( - ( operator = | operator = | operator = ) expr = UnaryExpression() - { - buff.append(operator.image); - buff.append(expr); - } + ( {operator = OperatorIds.MULTIPLY;} + | {operator = OperatorIds.DIVIDE;} + | {operator = OperatorIds.REMAINDER;}) + expr2 = UnaryExpression() + {expr = new BinaryExpression(expr,expr2,operator);} )* - {return buff.toString();} + {return expr;} } /** * An unary expression starting with @, & or nothing */ -String UnaryExpression() : +Expression UnaryExpression() : { - final String expr; - final Token token; - final StringBuffer buff = new StringBuffer(); + Expression expr; + final int pos = SimpleCharStream.getPosition(); } { - token = expr = UnaryExpressionNoPrefix() - { - if (token == null) { - return expr; - } - return token.image + expr; - } -| ( {buff.append("@");})* + expr = UnaryExpressionNoPrefix() + {return new PrefixedUnaryExpression(expr,OperatorIds.AND,pos);} +| + expr = AtUnaryExpression() + {return expr;} +} + +Expression AtUnaryExpression() : +{ + Expression expr; + final int pos = SimpleCharStream.getPosition(); +} +{ + + expr = AtUnaryExpression() + {return new PrefixedUnaryExpression(expr,OperatorIds.AT,pos);} +| expr = UnaryExpressionNoPrefix() - {return buff.append(expr).toString();} + {return expr;} } -String UnaryExpressionNoPrefix() : + +Expression UnaryExpressionNoPrefix() : { - final String expr; - final Token token; + Expression expr; + int operator; + final int pos = SimpleCharStream.getPosition(); } { - ( token = | token = ) expr = UnaryExpression() - { - return token.image + expr; - } + ( {operator = OperatorIds.PLUS;} + | {operator = OperatorIds.MINUS;}) + expr = UnaryExpression() + {return new PrefixedUnaryExpression(expr,operator,pos);} | expr = PreIncDecExpression() {return expr;} @@ -1448,22 +1507,26 @@ String UnaryExpressionNoPrefix() : } -String PreIncDecExpression() : +Expression PreIncDecExpression() : { -final String expr; -final Token token; +final Expression expr; +final int operator; + final int pos = SimpleCharStream.getPosition(); } { - (token = | token = ) expr = PrimaryExpression() - {return token.image + expr;} + ( {operator = OperatorIds.PLUS_PLUS;} + | {operator = OperatorIds.MINUS_MINUS;}) + expr = PrimaryExpression() + {return new PrefixedUnaryExpression(expr,operator,pos);} } -String UnaryExpressionNotPlusMinus() : +Expression UnaryExpressionNotPlusMinus() : { - final String expr; + Expression expr; + final int pos = SimpleCharStream.getPosition(); } { - expr = UnaryExpression() {return "!" + expr;} + expr = UnaryExpression() {return new PrefixedUnaryExpression(expr,OperatorIds.NOT,pos);} | LOOKAHEAD( (Type() | ) ) expr = CastExpression() {return expr;} | expr = PostfixExpression() {return expr;} @@ -1478,114 +1541,146 @@ String UnaryExpressionNotPlusMinus() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } - {return "("+expr+")";} + {return expr;} } -String CastExpression() : +CastExpression CastExpression() : { -final String type, expr; +final ConstantIdentifier type; +final Expression expr; +final int pos = SimpleCharStream.getPosition(); } { - (type = Type() | {type = "array";}) expr = UnaryExpression() - {return "(" + type + ")" + expr;} + + (type = Type() + | {type = new ConstantIdentifier(Types.ARRAY,pos,SimpleCharStream.getPosition());}) + expr = UnaryExpression() + {return new CastExpression(type,expr,pos,SimpleCharStream.getPosition());} } -String PostfixExpression() : +Expression PostfixExpression() : { - final String expr; - Token operator = null; + Expression expr; + int operator = -1; + final int pos = SimpleCharStream.getPosition(); } { - expr = PrimaryExpression() [ operator = | operator = ] + expr = PrimaryExpression() + [ {operator = OperatorIds.PLUS_PLUS;} + | {operator = OperatorIds.MINUS_MINUS;}] { - if (operator == null) { + if (operator == -1) { return expr; } - return expr + operator.image; + return new PostfixedUnaryExpression(expr,operator,pos); } } -String PrimaryExpression() : +Expression PrimaryExpression() : { final Token identifier; - String expr; + Expression expr; final StringBuffer buff = new StringBuffer(); + final int pos = SimpleCharStream.getPosition(); } { LOOKAHEAD(2) identifier = expr = ClassIdentifier() - {buff.append(identifier.image).append("::").append(expr);} - ( - expr = PrimarySuffix() - {buff.append(expr);} - )* - {return buff.toString();} + {expr = new ClassAccess(new ConstantIdentifier(identifier.image.toCharArray(), + pos, + SimpleCharStream.getPosition()), + expr, + ClassAccess.STATIC);} + (expr = PrimarySuffix(expr))* + {return expr;} | - expr = PrimaryPrefix() {buff.append(expr);} - ( expr = PrimarySuffix() {buff.append(expr);} )* - {return buff.toString();} + expr = PrimaryPrefix() + (expr = PrimarySuffix(expr))* + {return expr;} | expr = ArrayDeclarator() - {return "array" + expr;} + {return expr;} } -String ArrayDeclarator() : +ArrayInitializer ArrayDeclarator() : { - final String expr; + final ArrayVariableDeclaration[] vars; + final int pos = SimpleCharStream.getPosition(); } { - expr = ArrayInitializer() - {return "array" + expr;} + vars = ArrayInitializer() + {return new ArrayInitializer(vars,pos,SimpleCharStream.getPosition());} } -String PrimaryPrefix() : +Expression PrimaryPrefix() : { - final String expr; + final Expression expr; final Token token; + final String var; + final int pos = SimpleCharStream.getPosition(); } { - token = {return token.image;} -| expr = ClassIdentifier() {return "new " + expr;} -| expr = VariableDeclaratorId() {return expr;} + token = {return new ConstantIdentifier(token.image.toCharArray(), + pos, + SimpleCharStream.getPosition());} +| expr = ClassIdentifier() {return new PrefixedUnaryExpression(expr, + OperatorIds.NEW, + pos);} +| var = VariableDeclaratorId() {return new ConstantIdentifier(var.toCharArray(), + pos, + SimpleCharStream.getPosition());} } -String classInstantiation() : +PrefixedUnaryExpression classInstantiation() : { - String expr; - final StringBuffer buff = new StringBuffer("new "); + Expression expr; + final StringBuffer buff; + final int pos = SimpleCharStream.getPosition(); } { expr = ClassIdentifier() - {buff.append(expr);} [ + {buff = new StringBuffer(expr.toStringExpression());} expr = PrimaryExpression() - {buff.append(expr);} + {buff.append(expr.toStringExpression()); + expr = new ConstantIdentifier(buff.toString().toCharArray(), + pos, + SimpleCharStream.getPosition());} ] - {return buff.toString();} + {return new PrefixedUnaryExpression(expr, + OperatorIds.NEW, + pos);} } -String ClassIdentifier(): +ConstantIdentifier ClassIdentifier(): { final String expr; final Token token; + final int pos = SimpleCharStream.getPosition(); } { - token = {return token.image;} -| expr = VariableDeclaratorId() {return expr;} + token = {return new ConstantIdentifier(token.image.toCharArray(), + pos, + SimpleCharStream.getPosition());} +| expr = VariableDeclaratorId() {return new ConstantIdentifier(expr.toCharArray(), + pos, + SimpleCharStream.getPosition());} } -String PrimarySuffix() : +AbstractSuffixExpression PrimarySuffix(Expression prefix) : { - final String expr; + final AbstractSuffixExpression expr; } { - expr = Arguments() {return expr;} -| expr = VariableSuffix() {return expr;} + expr = Arguments(prefix) {return expr;} +| expr = VariableSuffix(prefix) {return expr;} } -String VariableSuffix() : +AbstractSuffixExpression VariableSuffix(Expression prefix) : { String expr = null; + final int pos = SimpleCharStream.getPosition(); + Expression expression = null; } { @@ -1598,9 +1693,11 @@ String VariableSuffix() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } - {return "->" + expr;} + {return new ClassAccess(prefix, + new ConstantIdentifier(expr.toCharArray(),pos,SimpleCharStream.getPosition()), + ClassAccess.NORMAL);} | - [ expr = Expression() | expr = Type() ] //Not good + [ expression = Expression() | expression = Type() ] //Not good try { } catch (ParseException e) { @@ -1610,40 +1707,35 @@ String VariableSuffix() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } - { - if(expr == null) { - return "[]"; - } - return "[" + expr + "]"; - } + {return new ArrayDeclarator(prefix,expression,SimpleCharStream.getPosition());} } -String Literal() : +Literal Literal() : { - final String expr; final Token token; + final int pos; } { - token = {return token.image;} -| token = {return token.image;} -| token = {return token.image;} -| expr = BooleanLiteral() {return expr;} -| {return "null";} -} - -String BooleanLiteral() : -{} -{ - {return "true";} -| {return "false";} + token = {pos = SimpleCharStream.getPosition(); + return new NumberLiteral(token.image.toCharArray(),pos-token.image.length(),pos);} +| token = {pos = SimpleCharStream.getPosition(); + return new NumberLiteral(token.image.toCharArray(),pos-token.image.length(),pos);} +| token = {pos = SimpleCharStream.getPosition(); + return new StringLiteral(token.image.toCharArray(),pos-token.image.length(),pos);} +| {pos = SimpleCharStream.getPosition(); + return new TrueLiteral(pos-4,pos);} +| {pos = SimpleCharStream.getPosition(); + return new FalseLiteral(pos-4,pos);} +| {pos = SimpleCharStream.getPosition(); + return new NullLiteral(pos-4,pos);} } -String Arguments() : +FunctionCall Arguments(Expression func) : { -String expr = null; +ArgumentDeclaration[] args = null; } { - [ expr = ArgumentList() ] + [ args = ArgumentList() ] try { } catch (ParseException e) { @@ -1653,25 +1745,21 @@ String expr = null; errorEnd = jj_input_stream.getPosition() + 1; throw e; } - { - if (expr == null) { - return "()"; - } - return "(" + expr + ")"; - } + {return new FunctionCall(func,args,SimpleCharStream.getPosition());} } -String ArgumentList() : +ArgumentDeclaration[] ArgumentList() : { -String expr; -final StringBuffer buff = new StringBuffer(); +Expression expr; +final ArrayList list = new ArrayList(); } { expr = Expression() - {buff.append(expr);} + {list.add(expr);} ( try { expr = Expression() + {list.add(expr);} } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. An expression expected after a comma in argument list"; errorLevel = ERROR; @@ -1679,19 +1767,21 @@ final StringBuffer buff = new StringBuffer(); errorEnd = jj_input_stream.getPosition() + 1; throw e; } - {buff.append(",").append(expr);} )* - {return buff.toString();} + {return (ArgumentDeclaration[]) list.toArray();} } /** * A Statement without break. */ -void StatementNoBreak() : -{} +Statement StatementNoBreak() : +{ + final Statement statement; + Token token = null; +} { LOOKAHEAD(2) - Expression() + statement = Expression() try { } catch (ParseException e) { @@ -1703,11 +1793,12 @@ void StatementNoBreak() : throw e; } } + {return statement;} | LOOKAHEAD(2) - LabeledStatement() -| Block() -| EmptyStatement() -| StatementExpression() + statement = LabeledStatement() {return statement;} +| statement = Block() {return statement;} +| statement = EmptyStatement() {return statement;} +| statement = StatementExpression() try { } catch (ParseException e) { @@ -1717,35 +1808,46 @@ void StatementNoBreak() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } -| SwitchStatement() -| IfStatement() -| WhileStatement() -| DoStatement() -| ForStatement() -| ForeachStatement() -| ContinueStatement() -| ReturnStatement() -| EchoStatement() -| [] IncludeStatement() -| StaticStatement() -| GlobalStatement() + {return statement;} +| statement = SwitchStatement() {return statement;} +| statement = IfStatement() {return statement;} +| statement = WhileStatement() {return statement;} +| statement = DoStatement() {return statement;} +| statement = ForStatement() {return statement;} +| statement = ForeachStatement() {return statement;} +| statement = ContinueStatement() {return statement;} +| statement = ReturnStatement() {return statement;} +| statement = EchoStatement() {return statement;} +| [token=] statement = IncludeStatement() + {if (token != null) { + ((InclusionStatement)statement).silent = true; + } + return statement;} +| statement = StaticStatement() {return statement;} +| statement = GlobalStatement() {return statement;} } /** * A Normal statement. */ -void Statement() : -{} +Statement Statement() : +{ + final Statement statement; +} { - StatementNoBreak() -| BreakStatement() + statement = StatementNoBreak() {return statement;} +| statement = BreakStatement() {return statement;} } /** * An html block inside a php syntax. */ -void htmlBlock() : -{} +HTMLBlock htmlBlock() : +{ + final int startIndex = nodePtr; + AstNode[] blockNodes; + int nbNodes; +} { (phpEchoBlock())* try { @@ -1757,38 +1859,46 @@ void htmlBlock() : errorEnd = jj_input_stream.getPosition(); throw e; } + { + nbNodes = nodePtr-startIndex; + blockNodes = new AstNode[nbNodes]; + System.arraycopy(nodes,startIndex,blockNodes,0,nbNodes); + return new HTMLBlock(nodes);} } /** * An include statement. It's "include" an expression; */ -void IncludeStatement() : +InclusionStatement IncludeStatement() : { - final String expr; + final Expression expr; final Token token; + final int keyword; final int pos = jj_input_stream.getPosition(); + final InclusionStatement inclusionStatement; } { - ( token = - | token = - | token = - | token = ) - try { - expr = Expression() - } catch (ParseException e) { - if (errorMessage != null) { - throw e; - } - errorMessage = "unexpected token '"+ e.currentToken.next.image+"', expression expected"; - errorLevel = ERROR; - errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1; - errorEnd = jj_input_stream.getPosition() + 1; + ( {keyword = InclusionStatement.REQUIRE;} + | {keyword = InclusionStatement.REQUIRE_ONCE;} + | {keyword = InclusionStatement.INCLUDE;} + | {keyword = InclusionStatement.INCLUDE_ONCE;}) + try { + expr = Expression() + } catch (ParseException e) { + if (errorMessage != null) { throw e; } - { - if (currentSegment != null) { - currentSegment.add(new PHPReqIncDeclaration(currentSegment, token.image,pos,expr)); - } + errorMessage = "unexpected token '"+ e.currentToken.next.image+"', expression expected"; + errorLevel = ERROR; + errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1; + errorEnd = jj_input_stream.getPosition() + 1; + throw e; + } + {inclusionStatement = new InclusionStatement(currentSegment, + keyword, + expr, + pos); + currentSegment.add(inclusionStatement); } try { @@ -1799,20 +1909,24 @@ void IncludeStatement() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } + {return inclusionStatement;} } -String PrintExpression() : +PrintExpression PrintExpression() : { - final String expr; + final Expression expr; + final int pos = SimpleCharStream.getPosition(); } { - expr = Expression() {return "print " + expr;} + expr = Expression() {return new PrintExpression(expr,pos,SimpleCharStream.getPosition());} } -String ListExpression() : +ListExpression ListExpression() : { - final StringBuffer buff = new StringBuffer("list("); - String expr; + String expr = null; + Expression expression = null; + ArrayList list = new ArrayList(); + final int pos = SimpleCharStream.getPosition(); } { @@ -1827,8 +1941,9 @@ String ListExpression() : } [ expr = VariableDeclaratorId() - {buff.append(expr);} + {list.add(expr);} ] + {if (expr == null) list.add(null);} ( try { @@ -1840,9 +1955,8 @@ String ListExpression() : throw e; } expr = VariableDeclaratorId() - {buff.append(",").append(expr);} + {list.add(expr);} )* - {buff.append(")");} try { } catch (ParseException e) { @@ -1852,20 +1966,31 @@ String ListExpression() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } - [ expr = Expression() {buff.append("(").append(expr);}] - {return buff.toString();} + [ expression = Expression() + {return new ListExpression((String[]) list.toArray(),expression,pos,SimpleCharStream.getPosition());}] + {return new ListExpression((String[]) list.toArray(),null,pos,SimpleCharStream.getPosition());} } /** * An echo statement. * echo anyexpression (, otherexpression)* */ -void EchoStatement() : -{} +EchoStatement EchoStatement() : { - Expression() ( Expression())* + final ArrayList expressions = new ArrayList(); + Expression expr; + final int pos = SimpleCharStream.getPosition(); +} +{ + expr = Expression() + {expressions.add(expr);} + ( + expr = Expression() + {expressions.add(expr);} + )* try { + {return new EchoStatement((Expression[]) expressions.toArray(),pos);} } catch (ParseException e) { if (e.currentToken.next.kind != 4) { errorMessage = "';' expected after 'echo' statement"; @@ -1877,25 +2002,29 @@ void EchoStatement() : } } -void GlobalStatement() : +GlobalStatement GlobalStatement() : { final int pos = jj_input_stream.getPosition(); String expr; + ArrayList vars = new ArrayList(); + GlobalStatement global; } { expr = VariableDeclaratorId() - {if (currentSegment != null) { - currentSegment.add(new PHPGlobalDeclaration(currentSegment, "global",pos,expr)); - }} + {vars.add(expr);} ( expr = VariableDeclaratorId() - {if (currentSegment != null) { - currentSegment.add(new PHPGlobalDeclaration(currentSegment, "global",pos,expr)); - }} + {vars.add(expr);} )* try { + {global = new GlobalStatement(currentSegment, + (String[]) vars.toArray(), + pos, + SimpleCharStream.getPosition()); + currentSegment.add(global); + return global;} } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. a ';' was expected"; errorLevel = ERROR; @@ -1905,12 +2034,20 @@ void GlobalStatement() : } } -void StaticStatement() : -{} +StaticStatement StaticStatement() : { - VariableDeclarator() ( VariableDeclarator())* + final int pos = SimpleCharStream.getPosition(); + final ArrayList vars = new ArrayList(); + VariableDeclaration expr; +} +{ + expr = VariableDeclarator() {vars.add(new String(expr.name));} + ( expr = VariableDeclarator() {vars.add(new String(expr.name));})* try { + {return new StaticStatement((String[])vars.toArray(), + pos, + SimpleCharStream.getPosition());} } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. a ';' was expected"; errorLevel = ERROR; @@ -1920,14 +2057,28 @@ void StaticStatement() : } } -void LabeledStatement() : -{} +LabeledStatement LabeledStatement() : +{ + final int pos = SimpleCharStream.getPosition(); + final Token label; + final Statement statement; +} { - Statement() + label = statement = Statement() + {return new LabeledStatement(label.image.toCharArray(),statement,pos,SimpleCharStream.getPosition());} } -void Block() : -{} +/** + * A Block is + * { + * statements + * }. + * @return a block + */ +Block Block() : +{ + final int pos = SimpleCharStream.getPosition(); +} { try { @@ -1950,57 +2101,84 @@ void Block() : } } -void BlockStatement() : -{} +Statement BlockStatement() : +{ + final Statement statement; +} { - Statement() -| ClassDeclaration() -| MethodDeclaration() + statement = Statement() {return statement;} +| statement = ClassDeclaration() {return statement;} +| statement = MethodDeclaration() {return statement;} } /** * A Block statement that will not contain any 'break' */ -void BlockStatementNoBreak() : -{} +Statement BlockStatementNoBreak() : +{ + final Statement statement; +} { - StatementNoBreak() -| ClassDeclaration() -| MethodDeclaration() + statement = StatementNoBreak() {return statement;} +| statement = ClassDeclaration() {return statement;} +| statement = MethodDeclaration() {return statement;} } -void LocalVariableDeclaration() : -{} +VariableDeclaration[] LocalVariableDeclaration() : +{ + final ArrayList list = new ArrayList(); + VariableDeclaration var; +} { - LocalVariableDeclarator() ( LocalVariableDeclarator() )* + var = LocalVariableDeclarator() + {list.add(var);} + ( var = LocalVariableDeclarator() {list.add(var);})* + {return (VariableDeclaration[]) list.toArray();} } -void LocalVariableDeclarator() : -{} +VariableDeclaration LocalVariableDeclarator() : { - VariableDeclaratorId() [ Expression() ] + final String varName; + Expression init = null; + final int pos = SimpleCharStream.getPosition(); +} +{ + varName = VariableDeclaratorId() [ init = Expression() ] + {return new VariableDeclaration(varName.toCharArray(),init,pos);} } -void EmptyStatement() : -{} +EmptyStatement EmptyStatement() : +{ + final int pos; +} { + {pos = SimpleCharStream.getPosition(); + return new EmptyStatement(pos-1,pos);} } -void StatementExpression() : -{} +Statement StatementExpression() : +{ + Expression expr; +} { - PreIncDecExpression() + expr = PreIncDecExpression() {return expr;} | - PrimaryExpression() - [ - | + expr = PrimaryExpression() + [ {expr = new PostfixedUnaryExpression(expr, + OperatorIds.PLUS_PLUS, + SimpleCharStream.getPosition());} + | {expr = new PostfixedUnaryExpression(expr, + OperatorIds.MINUS_MINUS, + SimpleCharStream.getPosition());} | AssignmentOperator() Expression() ] } -void SwitchStatement() : +SwitchStatement SwitchStatement() : { - final int pos = jj_input_stream.getPosition(); + final Expression variable; + final AbstractCase[] cases; + final int pos = SimpleCharStream.getPosition(); } { @@ -2014,7 +2192,7 @@ void SwitchStatement() : throw e; } try { - Expression() + variable = Expression() } catch (ParseException e) { if (errorMessage != null) { throw e; @@ -2034,16 +2212,21 @@ void SwitchStatement() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } - (switchStatementBrace() | switchStatementColon(pos, pos + 6)) + (cases = switchStatementBrace() | cases = switchStatementColon(pos, pos + 6)) + {return new SwitchStatement(variable,cases,pos,SimpleCharStream.getPosition());} } -void switchStatementBrace() : -{} +AbstractCase[] switchStatementBrace() : +{ + AbstractCase cas; + final ArrayList cases = new ArrayList(); +} { - ( switchLabel0() )* + ( cas = switchLabel0() {cases.add(cas);})* try { + {return (AbstractCase[]) cases.toArray();} } catch (ParseException e) { errorMessage = "'}' expected"; errorLevel = ERROR; @@ -2057,8 +2240,11 @@ void switchStatementBrace() : * @param start the begin offset of the switch * @param end the end offset of the switch */ -void switchStatementColon(final int start, final int end) : -{} +AbstractCase[] switchStatementColon(final int start, final int end) : +{ + AbstractCase cas; + final ArrayList cases = new ArrayList(); +} { {try { @@ -2071,7 +2257,7 @@ void switchStatementColon(final int start, final int end) : } catch (CoreException e) { PHPeclipsePlugin.log(e); }} - (switchLabel0())* + ( cas = switchLabel0() {cases.add(cas);})* try { } catch (ParseException e) { @@ -2083,6 +2269,7 @@ void switchStatementColon(final int start, final int end) : } try { + {return (AbstractCase[]) cases.toArray();} } catch (ParseException e) { errorMessage = "';' expected after 'endswitch' keyword"; errorLevel = ERROR; @@ -2092,56 +2279,39 @@ void switchStatementColon(final int start, final int end) : } } -void switchLabel0() : -{ - Token breakToken = null; - final int line; -} -{ - line = SwitchLabel() - ( BlockStatementNoBreak() | htmlBlock() )* - [ breakToken = BreakStatement() ] - { - try { - if (breakToken == null) { - setMarker(fileToParse, - "You should use put a 'break' at the end of your statement", - line, - INFO, - "Line " + line); - } - } catch (CoreException e) { - PHPeclipsePlugin.log(e); - } - } -} - -Token BreakStatement() : +AbstractCase switchLabel0() : { - final Token token; + final Expression expr; + Statement statement; + final ArrayList stmts = new ArrayList(); + final int pos = SimpleCharStream.getPosition(); } { - token = [ Expression() ] - try { - - } catch (ParseException e) { - errorMessage = "';' expected after 'break' keyword"; - errorLevel = ERROR; - errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1; - errorEnd = jj_input_stream.getPosition() + 1; - throw e; + expr = SwitchLabel() + ( statement = BlockStatementNoBreak() {stmts.add(statement);} + | statement = htmlBlock() {stmts.add(statement);})* + [ statement = BreakStatement() {stmts.add(statement);}] + {if (expr == null) {//it's a default + return new DefaultCase((Statement[]) stmts.toArray(),pos,SimpleCharStream.getPosition()); } - {return token;} + return new Case(expr,(Statement[]) stmts.toArray(),pos,SimpleCharStream.getPosition());} } -int SwitchLabel() : +/** + * A SwitchLabel. + * case Expression() : + * default : + * @return the if it was a case and null if not + */ +Expression SwitchLabel() : { final Token token; + final Expression expr; } { token = try { - Expression() + expr = Expression() } catch (ParseException e) { if (errorMessage != null) throw e; errorMessage = "expression expected after 'case' keyword"; @@ -2152,6 +2322,7 @@ int SwitchLabel() : } try { + {return expr;} } catch (ParseException e) { errorMessage = "':' expected after case expression"; errorLevel = ERROR; @@ -2159,11 +2330,11 @@ int SwitchLabel() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } - {return token.beginLine;} | token = <_DEFAULT> try { + {return null;} } catch (ParseException e) { errorMessage = "':' expected after 'default' keyword"; errorLevel = ERROR; @@ -2171,20 +2342,43 @@ int SwitchLabel() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } - {return token.beginLine;} } -void IfStatement() : +Break BreakStatement() : +{ + Expression expression = null; + final int start = SimpleCharStream.getPosition(); +} +{ + [ expression = Expression() ] + try { + + } catch (ParseException e) { + errorMessage = "';' expected after 'break' keyword"; + errorLevel = ERROR; + errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1; + errorEnd = jj_input_stream.getPosition() + 1; + throw e; + } + {return new Break(expression, start, SimpleCharStream.getPosition());} +} + +IfStatement IfStatement() : { - final Token token; final int pos = jj_input_stream.getPosition(); + Expression condition; + IfStatement ifStatement; } { - token = Condition("if") IfStatement0(pos,pos+token.image.length()) + condition = Condition("if") ifStatement = IfStatement0(condition, pos,pos+2) + {return ifStatement;} } -void Condition(final String keyword) : -{} + +Expression Condition(final String keyword) : +{ + final Expression condition; +} { try { @@ -2195,9 +2389,10 @@ void Condition(final String keyword) : errorEnd = errorStart +1; processParseException(e); } - Expression() + condition = Expression() try { + {return condition;} } catch (ParseException e) { errorMessage = "')' expected after " + keyword + " keyword"; errorLevel = ERROR; @@ -2207,10 +2402,21 @@ void Condition(final String keyword) : } } -void IfStatement0(final int start,final int end) : -{} +IfStatement IfStatement0(Expression condition, final int start,final int end) : +{ + Statement statement; + ElseIf elseifStatement; + Else elseStatement = null; + ArrayList stmts = new ArrayList(); + ArrayList elseifs = new ArrayList(); + int pos = SimpleCharStream.getPosition(); +} { - (Statement() | htmlBlock())* (ElseIfStatementColon())* [ElseStatementColon()] + + ( statement = Statement() {stmts.add(statement);} + | statement = htmlBlock() {stmts.add(statement);})* + (elseifStatement = ElseIfStatementColon() {elseifs.add(elseifStatement);})* + [elseStatement = ElseStatementColon()] {try { setMarker(fileToParse, @@ -2233,6 +2439,11 @@ void IfStatement0(final int start,final int end) : } try { + {return new IfStatement(condition, + (ElseIf[]) elseifs.toArray(), + elseStatement, + pos, + SimpleCharStream.getPosition());} } catch (ParseException e) { errorMessage = "';' expected after 'endif' keyword"; errorLevel = ERROR; @@ -2241,12 +2452,15 @@ void IfStatement0(final int start,final int end) : throw e; } | - (Statement() | htmlBlock()) - ( LOOKAHEAD(1) ElseIfStatement() )* + (statement = Statement() | statement = htmlBlock()) + {stmts.add(statement);} + ( LOOKAHEAD(1) elseifStatement = ElseIfStatement() {elseifs.add(elseifStatement);})* [ LOOKAHEAD(1) try { - Statement() + {pos = SimpleCharStream.getPosition();} + statement = Statement() + {elseStatement = new Else(statement,pos,SimpleCharStream.getPosition());} } catch (ParseException e) { if (errorMessage != null) { throw e; @@ -2258,39 +2472,72 @@ void IfStatement0(final int start,final int end) : throw e; } ] + {return new IfStatement(condition, + (ElseIf[]) elseifs.toArray(), + elseStatement, + pos, + SimpleCharStream.getPosition());} } -void ElseIfStatementColon() : -{} +ElseIf ElseIfStatementColon() : { - Condition("elseif") (Statement() | htmlBlock())* + Expression condition; + Statement statement; + final ArrayList list = new ArrayList(); + final int pos = SimpleCharStream.getPosition(); +} +{ + condition = Condition("elseif") + ( statement = Statement() {list.add(statement);} + | statement = htmlBlock() {list.add(statement);})* + {return new ElseIf(condition,(Statement[]) list.toArray(),pos,SimpleCharStream.getPosition());} } -void ElseStatementColon() : -{} +Else ElseStatementColon() : { - (Statement() | htmlBlock())* + Statement statement; + final ArrayList list = new ArrayList(); + final int pos = SimpleCharStream.getPosition(); +} +{ + ( statement = Statement() {list.add(statement);} + | statement = htmlBlock() {list.add(statement);})* + {return new Else((Statement[]) list.toArray(),pos,SimpleCharStream.getPosition());} } -void ElseIfStatement() : -{} +ElseIf ElseIfStatement() : { - Condition("elseif") Statement() + Expression condition; + Statement statement; + final ArrayList list = new ArrayList(); + final int pos = SimpleCharStream.getPosition(); +} +{ + condition = Condition("elseif") statement = Statement() {list.add(statement);/*todo:do better*/} + {return new ElseIf(condition,(Statement[]) list.toArray(),pos,SimpleCharStream.getPosition());} } -void WhileStatement() : +WhileStatement WhileStatement() : { - final Token token; - final int pos = jj_input_stream.getPosition(); + final Expression condition; + final Statement action; + final int pos = SimpleCharStream.getPosition(); } { - token = Condition("while") WhileStatement0(pos,pos + token.image.length()) + + condition = Condition("while") + action = WhileStatement0(pos,pos + 5) + {return new WhileStatement(condition,action,pos,SimpleCharStream.getPosition());} } -void WhileStatement0(final int start, final int end) : -{} +Statement WhileStatement0(final int start, final int end) : { - (Statement())* + Statement statement; + final ArrayList stmts = new ArrayList(); + final int pos = SimpleCharStream.getPosition(); +} +{ + (statement = Statement() {stmts.add(statement);})* {try { setMarker(fileToParse, "Ugly syntax detected, you should while () {...} instead of while (): ... endwhile;", @@ -2312,6 +2559,7 @@ void WhileStatement0(final int start, final int end) : } try { + {return new Block((Statement[]) stmts.toArray(),pos,SimpleCharStream.getPosition());} } catch (ParseException e) { errorMessage = "';' expected after 'endwhile' keyword"; errorLevel = ERROR; @@ -2320,15 +2568,21 @@ void WhileStatement0(final int start, final int end) : throw e; } | - Statement() + statement = Statement() + {return statement;} } -void DoStatement() : -{} +DoStatement DoStatement() : +{ + final Statement action; + final Expression condition; + final int pos = SimpleCharStream.getPosition(); +} { - Statement() Condition("while") + action = Statement() condition = Condition("while") try { + {return new DoStatement(condition,action,pos,SimpleCharStream.getPosition());} } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected"; errorLevel = ERROR; @@ -2338,8 +2592,14 @@ void DoStatement() : } } -void ForeachStatement() : -{} +ForeachStatement ForeachStatement() : +{ + Statement statement; + Expression expression; + final StringBuffer buff = new StringBuffer(); + final int pos = SimpleCharStream.getPosition(); + ArrayVariableDeclaration variable; +} { try { @@ -2352,7 +2612,7 @@ void ForeachStatement() : throw e; } try { - Variable() + expression = Expression() } catch (ParseException e) { errorMessage = "variable expected"; errorLevel = ERROR; @@ -2360,7 +2620,6 @@ void ForeachStatement() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } - ( VariableSuffix() )* try { } catch (ParseException e) { @@ -2371,7 +2630,7 @@ void ForeachStatement() : throw e; } try { - Variable() + variable = ArrayVariable() } catch (ParseException e) { errorMessage = "variable expected"; errorLevel = ERROR; @@ -2379,7 +2638,6 @@ void ForeachStatement() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } - [ Expression() ] try { } catch (ParseException e) { @@ -2390,7 +2648,7 @@ void ForeachStatement() : throw e; } try { - Statement() + statement = Statement() } catch (ParseException e) { if (errorMessage != null) throw e; errorMessage = "statement expected"; @@ -2399,12 +2657,24 @@ void ForeachStatement() : errorEnd = jj_input_stream.getPosition() + 1; throw e; } + {return new ForeachStatement(expression, + variable, + statement, + pos, + SimpleCharStream.getPosition());} + } -void ForStatement() : +ForStatement ForStatement() : { final Token token; -final int pos = jj_input_stream.getPosition(); +final int pos = SimpleCharStream.getPosition(); +Statement[] initializations = null; +Expression condition = null; +Statement[] increments = null; +Statement action; +final ArrayList list = new ArrayList(); +final int startBlock, endBlock; } { token = @@ -2417,11 +2687,16 @@ final int pos = jj_input_stream.getPosition(); errorEnd = jj_input_stream.getPosition() + 1; throw e; } - [ ForInit() ] [ Expression() ] [ StatementExpressionList() ] + [ initializations = ForInit() ] + [ condition = Expression() ] + [ increments = StatementExpressionList() ] ( - Statement() + action = Statement() + {return new ForStatement(initializations,condition,increments,action,pos,SimpleCharStream.getPosition());} | - (Statement())* + + {startBlock = SimpleCharStream.getPosition();} + (action = Statement() {list.add(action);})* { try { setMarker(fileToParse, @@ -2434,6 +2709,7 @@ final int pos = jj_input_stream.getPosition(); PHPeclipsePlugin.log(e); } } + {endBlock = SimpleCharStream.getPosition();} try { } catch (ParseException e) { @@ -2445,6 +2721,7 @@ final int pos = jj_input_stream.getPosition(); } try { + {return new ForStatement(initializations,condition,increments,new Block((Statement[])list.toArray(),startBlock,endBlock),pos,SimpleCharStream.getPosition());} } catch (ParseException e) { errorMessage = "';' expected after 'endfor' keyword"; errorLevel = ERROR; @@ -2455,27 +2732,40 @@ final int pos = jj_input_stream.getPosition(); ) } -void ForInit() : -{} +Statement[] ForInit() : +{ + Statement[] statements; +} { LOOKAHEAD(LocalVariableDeclaration()) - LocalVariableDeclaration() + statements = LocalVariableDeclaration() + {return statements;} | - StatementExpressionList() + statements = StatementExpressionList() + {return statements;} } -void StatementExpressionList() : -{} +Statement[] StatementExpressionList() : { - StatementExpression() ( StatementExpression() )* + final ArrayList list = new ArrayList(); + Statement expr; +} +{ + expr = StatementExpression() {list.add(expr);} + ( StatementExpression() {list.add(expr);})* + {return (Statement[]) list.toArray();} } -void ContinueStatement() : -{} +Continue ContinueStatement() : { - [ Expression() ] + Expression expr = null; + final int pos = SimpleCharStream.getPosition(); +} +{ + [ expr = Expression() ] try { + {return new Continue(expr,pos,SimpleCharStream.getPosition());} } catch (ParseException e) { errorMessage = "';' expected after 'continue' statement"; errorLevel = ERROR; @@ -2485,12 +2775,16 @@ void ContinueStatement() : } } -void ReturnStatement() : -{} +ReturnStatement ReturnStatement() : +{ + Expression expr = null; + final int pos = SimpleCharStream.getPosition(); +} { - [ Expression() ] + [ expr = Expression() ] try { + {return new ReturnStatement(expr,pos,SimpleCharStream.getPosition());} } catch (ParseException e) { errorMessage = "';' expected after 'return' statement"; errorLevel = ERROR;