Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
camundafeel.de.odysseus.el.tree.impl.Parser Maven / Gradle / Ivy
/*
* Copyright 2006-2009 Odysseus Software GmbH
*
* 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.
*/
package de.odysseus.el.tree.impl;
import static de.odysseus.el.tree.impl.Scanner.Symbol.*;
import static de.odysseus.el.tree.impl.Builder.Feature.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import de.odysseus.el.misc.LocalMessages;
import de.odysseus.el.tree.FunctionNode;
import de.odysseus.el.tree.IdentifierNode;
import de.odysseus.el.tree.Tree;
import de.odysseus.el.tree.impl.Builder.Feature;
import de.odysseus.el.tree.impl.Scanner.ScanException;
import de.odysseus.el.tree.impl.Scanner.Symbol;
import de.odysseus.el.tree.impl.Scanner.Token;
import de.odysseus.el.tree.impl.ast.*;
/**
* Handcrafted top-down parser.
*
* @author Christoph Beck
*/
public class Parser {
/**
* Parse exception type
*/
@SuppressWarnings("serial")
public static class ParseException extends Exception {
final int position;
final String encountered;
final String expected;
public ParseException(int position, String encountered, String expected) {
super(LocalMessages.get("error.parse", position, encountered, expected));
this.position = position;
this.encountered = encountered;
this.expected = expected;
}
}
/**
* Token type (used to store lookahead)
*/
private static final class LookaheadToken {
final Token token;
final int position;
LookaheadToken(Token token, int position) {
this.token = token;
this.position = position;
}
}
public enum ExtensionPoint {
OR,
AND,
EQ,
CMP,
ADD,
MUL,
UNARY,
LITERAL
}
/**
* Provide limited support for syntax extensions.
*/
public static abstract class ExtensionHandler {
private final ExtensionPoint point;
public ExtensionHandler(ExtensionPoint point) {
this.point = point;
}
/**
* @return the extension point specifying where this syntax extension is active
*/
public ExtensionPoint getExtensionPoint() {
return point;
}
/**
* Called by the parser if it handles a extended token associated with this handler
* at the appropriate extension point.
* @param children
* @return abstract syntax tree node
*/
public abstract AstNode createAstNode(AstNode... children);
}
private static final String EXPR_FIRST =
IDENTIFIER + "|" +
STRING + "|" + FLOAT + "|" + INTEGER + "|" + TRUE + "|" + FALSE + "|" + NULL + "|" +
MINUS + "|" + NOT + "|" + EMPTY + "|" +
LPAREN;
protected final Builder context;
protected final Scanner scanner;
private List identifiers = Collections.emptyList();
private List functions = Collections.emptyList();
private List lookahead = Collections.emptyList();
private Token token; // current token
private int position;// current token's position
protected Map extensions = Collections.emptyMap();
public Parser(Builder context, String input) {
this.context = context;
this.scanner = createScanner(input);
}
protected Scanner createScanner(String expression) {
return new Scanner(expression);
}
public void putExtensionHandler(Scanner.ExtensionToken token, ExtensionHandler extension) {
if (extensions.isEmpty()) {
extensions = new HashMap(16);
}
extensions.put(token, extension);
}
protected ExtensionHandler getExtensionHandler(Token token) {
return extensions.get(token);
}
/**
* Parse an integer literal.
* @param string string to parse
* @return Long.valueOf(string)
*/
protected Number parseInteger(String string) throws ParseException {
try {
return Long.valueOf(string);
} catch (NumberFormatException e) {
fail(INTEGER);
return null;
}
}
/**
* Parse a floating point literal.
* @param string string to parse
* @return Double.valueOf(string)
*/
protected Number parseFloat(String string) throws ParseException {
try {
return Double.valueOf(string);
} catch (NumberFormatException e) {
fail(FLOAT);
return null;
}
}
protected AstBinary createAstBinary(AstNode left, AstNode right, AstBinary.Operator operator) {
return new AstBinary(left, right, operator);
}
protected AstBracket createAstBracket(AstNode base, AstNode property, boolean lvalue, boolean strict) {
return new AstBracket(base, property, lvalue, strict, context.isEnabled(Feature.IGNORE_RETURN_TYPE));
}
protected AstChoice createAstChoice(AstNode question, AstNode yes, AstNode no) {
return new AstChoice(question, yes, no);
}
protected AstComposite createAstComposite(List nodes) {
return new AstComposite(nodes);
}
protected AstDot createAstDot(AstNode base, String property, boolean lvalue) {
return new AstDot(base, property, lvalue, context.isEnabled(Feature.IGNORE_RETURN_TYPE));
}
protected AstFunction createAstFunction(String name, int index, AstParameters params) {
return new AstFunction(name, index, params, context.isEnabled(Feature.VARARGS));
}
protected AstIdentifier createAstIdentifier(String name, int index) {
return new AstIdentifier(name, index, context.isEnabled(Feature.IGNORE_RETURN_TYPE));
}
protected AstMethod createAstMethod(AstProperty property, AstParameters params) {
return new AstMethod(property, params);
}
protected AstUnary createAstUnary(AstNode child, AstUnary.Operator operator) {
return new AstUnary(child, operator);
}
protected final List getFunctions() {
return functions;
}
protected final List getIdentifiers() {
return identifiers;
}
protected final Token getToken() {
return token;
}
/**
* throw exception
*/
protected void fail(String expected) throws ParseException {
throw new ParseException(position, "'" + token.getImage() + "'", expected);
}
/**
* throw exception
*/
protected void fail(Symbol expected) throws ParseException {
fail(expected.toString());
}
/**
* get lookahead symbol.
*/
protected final Token lookahead(int index) throws ScanException, ParseException {
if (lookahead.isEmpty()) {
lookahead = new LinkedList();
}
while (index >= lookahead.size()) {
lookahead.add(new LookaheadToken(scanner.next(), scanner.getPosition()));
}
return lookahead.get(index).token;
}
/**
* consume current token (get next token).
* @return the consumed token (which was the current token when calling this method)
*/
protected final Token consumeToken() throws ScanException, ParseException {
Token result = token;
if (lookahead.isEmpty()) {
token = scanner.next();
position = scanner.getPosition();
} else {
LookaheadToken next = lookahead.remove(0);
token = next.token;
position = next.position;
}
return result;
}
/**
* consume current token (get next token); throw exception if the current token doesn't
* match the expected symbol.
*/
protected final Token consumeToken(Symbol expected) throws ScanException, ParseException {
if (token.getSymbol() != expected) {
fail(expected);
}
return consumeToken();
}
/**
* tree := text? ((dynamic text?)+ | (deferred text?)+)?
*/
public Tree tree() throws ScanException, ParseException {
consumeToken();
AstNode t = text();
if (token.getSymbol() == EOF) {
if (t == null) {
t = new AstText("");
}
return new Tree(t, functions, identifiers, false);
}
AstEval e = eval();
if (token.getSymbol() == EOF && t == null) {
return new Tree(e, functions, identifiers, e.isDeferred());
}
ArrayList list = new ArrayList();
if (t != null) {
list.add(t);
}
list.add(e);
t = text();
if (t != null) {
list.add(t);
}
while (token.getSymbol() != EOF) {
if (e.isDeferred()) {
list.add(eval(true, true));
} else {
list.add(eval(true, false));
}
t = text();
if (t != null) {
list.add(t);
}
}
return new Tree(createAstComposite(list), functions, identifiers, e.isDeferred());
}
/**
* text := <TEXT>
*/
protected AstNode text() throws ScanException, ParseException {
AstNode v = null;
if (token.getSymbol() == TEXT) {
v = new AstText(token.getImage());
consumeToken();
}
return v;
}
/**
* eval := dynamic | deferred
*/
protected AstEval eval() throws ScanException, ParseException {
AstEval e = eval(false, false);
if (e == null) {
e = eval(false, true);
if (e == null) {
fail(START_EVAL_DEFERRED + "|" + START_EVAL_DYNAMIC);
}
}
return e;
}
/**
* dynmamic := <START_EVAL_DYNAMIC> expr <END_EVAL>
* deferred := <START_EVAL_DEFERRED> expr <END_EVAL>
*/
protected AstEval eval(boolean required, boolean deferred) throws ScanException, ParseException {
AstEval v = null;
Symbol start_eval = deferred ? START_EVAL_DEFERRED : START_EVAL_DYNAMIC;
if (token.getSymbol() == start_eval) {
consumeToken();
v = new AstEval(expr(true), deferred);
consumeToken(END_EVAL);
} else if (required) {
fail(start_eval);
}
return v;
}
/**
* expr := or (<QUESTION> expr <COLON> expr)?
*/
protected AstNode expr(boolean required) throws ScanException, ParseException {
AstNode v = or(required);
if (v == null) {
return null;
}
if (token.getSymbol() == QUESTION) {
consumeToken();
AstNode a = expr(true);
consumeToken(COLON);
AstNode b = expr(true);
v = createAstChoice(v, a, b);
}
return v;
}
/**
* or := and (<OR> and)*
*/
protected AstNode or(boolean required) throws ScanException, ParseException {
AstNode v = and(required);
if (v == null) {
return null;
}
while (true) {
switch (token.getSymbol()) {
case OR:
consumeToken();
v = createAstBinary(v, and(true), AstBinary.OR);
break;
case EXTENSION:
if (getExtensionHandler(token).getExtensionPoint() == ExtensionPoint.OR) {
v = getExtensionHandler(consumeToken()).createAstNode(v, and(true));
break;
}
default:
return v;
}
}
}
/**
* and := eq (<AND> eq)*
*/
protected AstNode and(boolean required) throws ScanException, ParseException {
AstNode v = eq(required);
if (v == null) {
return null;
}
while (true) {
switch (token.getSymbol()) {
case AND:
consumeToken();
v = createAstBinary(v, eq(true), AstBinary.AND);
break;
case EXTENSION:
if (getExtensionHandler(token).getExtensionPoint() == ExtensionPoint.AND) {
v = getExtensionHandler(consumeToken()).createAstNode(v, eq(true));
break;
}
default:
return v;
}
}
}
/**
* eq := cmp (<EQ> cmp | <NE> cmp)*
*/
protected AstNode eq(boolean required) throws ScanException, ParseException {
AstNode v = cmp(required);
if (v == null) {
return null;
}
while (true) {
switch (token.getSymbol()) {
case EQ:
consumeToken();
v = createAstBinary(v, cmp(true), AstBinary.EQ);
break;
case NE:
consumeToken();
v = createAstBinary(v, cmp(true), AstBinary.NE);
break;
case EXTENSION:
if (getExtensionHandler(token).getExtensionPoint() == ExtensionPoint.EQ) {
v = getExtensionHandler(consumeToken()).createAstNode(v, cmp(true));
break;
}
default:
return v;
}
}
}
/**
* cmp := add (<LT> add | <LE> add | <GE> add | <GT> add)*
*/
protected AstNode cmp(boolean required) throws ScanException, ParseException {
AstNode v = add(required);
if (v == null) {
return null;
}
while (true) {
switch (token.getSymbol()) {
case LT:
consumeToken();
v = createAstBinary(v, add(true), AstBinary.LT);
break;
case LE:
consumeToken();
v = createAstBinary(v, add(true), AstBinary.LE);
break;
case GE:
consumeToken();
v = createAstBinary(v, add(true), AstBinary.GE);
break;
case GT:
consumeToken();
v = createAstBinary(v, add(true), AstBinary.GT);
break;
case EXTENSION:
if (getExtensionHandler(token).getExtensionPoint() == ExtensionPoint.CMP) {
v = getExtensionHandler(consumeToken()).createAstNode(v, add(true));
break;
}
default:
return v;
}
}
}
/**
* add := add (<PLUS> mul | <MINUS> mul)*
*/
protected AstNode add(boolean required) throws ScanException, ParseException {
AstNode v = mul(required);
if (v == null) {
return null;
}
while (true) {
switch (token.getSymbol()) {
case PLUS:
consumeToken();
v = createAstBinary(v, mul(true), AstBinary.ADD);
break;
case MINUS:
consumeToken();
v = createAstBinary(v, mul(true), AstBinary.SUB);
break;
case EXTENSION:
if (getExtensionHandler(token).getExtensionPoint() == ExtensionPoint.ADD) {
v = getExtensionHandler(consumeToken()).createAstNode(v, mul(true));
break;
}
default:
return v;
}
}
}
/**
* mul := unary (<MUL> unary | <DIV> unary | <MOD> unary)*
*/
protected AstNode mul(boolean required) throws ScanException, ParseException {
AstNode v = unary(required);
if (v == null) {
return null;
}
while (true) {
switch (token.getSymbol()) {
case MUL:
consumeToken();
v = createAstBinary(v, unary(true), AstBinary.MUL);
break;
case DIV:
consumeToken();
v = createAstBinary(v, unary(true), AstBinary.DIV);
break;
case MOD:
consumeToken();
v = createAstBinary(v, unary(true), AstBinary.MOD);
break;
case EXTENSION:
if (getExtensionHandler(token).getExtensionPoint() == ExtensionPoint.MUL) {
v = getExtensionHandler(consumeToken()).createAstNode(v, unary(true));
break;
}
default:
return v;
}
}
}
/**
* unary := <NOT> unary | <MINUS> unary | <EMPTY> unary | value
*/
protected AstNode unary(boolean required) throws ScanException, ParseException {
AstNode v = null;
switch (token.getSymbol()) {
case NOT:
consumeToken();
v = createAstUnary(unary(true), AstUnary.NOT);
break;
case MINUS:
consumeToken();
v = createAstUnary(unary(true), AstUnary.NEG);
break;
case EMPTY:
consumeToken();
v = createAstUnary(unary(true), AstUnary.EMPTY);
break;
case EXTENSION:
if (getExtensionHandler(token).getExtensionPoint() == ExtensionPoint.UNARY) {
v = getExtensionHandler(consumeToken()).createAstNode(unary(true));
break;
}
default:
v = value();
}
if (v == null && required) {
fail(EXPR_FIRST);
}
return v;
}
/**
* value := (nonliteral | literal) (<DOT> <IDENTIFIER> | <LBRACK> expr <RBRACK>)*
*/
protected AstNode value() throws ScanException, ParseException {
boolean lvalue = true;
AstNode v = nonliteral();
if (v == null) {
v = literal();
if (v == null) {
return null;
}
lvalue = false;
}
while (true) {
switch (token.getSymbol()) {
case DOT:
consumeToken();
String name = consumeToken(IDENTIFIER).getImage();
AstDot dot = createAstDot(v, name, lvalue);
if (token.getSymbol() == LPAREN && context.isEnabled(METHOD_INVOCATIONS)) {
v = createAstMethod(dot, params());
} else {
v = dot;
}
break;
case LBRACK:
consumeToken();
AstNode property = expr(true);
boolean strict = !context.isEnabled(NULL_PROPERTIES);
consumeToken(RBRACK);
AstBracket bracket = createAstBracket(v, property, lvalue, strict);
if (token.getSymbol() == LPAREN && context.isEnabled(METHOD_INVOCATIONS)) {
v = createAstMethod(bracket, params());
} else {
v = bracket;
}
break;
default:
return v;
}
}
}
/**
* nonliteral := <IDENTIFIER> | function | <LPAREN> expr <RPAREN>
* function := (<IDENTIFIER> <COLON>)? <IDENTIFIER> <LPAREN> list? <RPAREN>
*/
protected AstNode nonliteral() throws ScanException, ParseException {
AstNode v = null;
switch (token.getSymbol()) {
case IDENTIFIER:
String name = consumeToken().getImage();
if (token.getSymbol() == COLON && lookahead(0).getSymbol() == IDENTIFIER && lookahead(1).getSymbol() == LPAREN) { // ns:f(...)
consumeToken();
name += ":" + token.getImage();
consumeToken();
}
if (token.getSymbol() == LPAREN) { // function
v = function(name, params());
} else { // identifier
v = identifier(name);
}
break;
case LPAREN:
consumeToken();
v = expr(true);
consumeToken(RPAREN);
v = new AstNested(v);
break;
}
return v;
}
/**
* params := <LPAREN> (expr (<COMMA> expr)*)? <RPAREN>
*/
protected AstParameters params() throws ScanException, ParseException {
consumeToken(LPAREN);
List l = Collections.emptyList();
AstNode v = expr(false);
if (v != null) {
l = new ArrayList();
l.add(v);
while (token.getSymbol() == COMMA) {
consumeToken();
l.add(expr(true));
}
}
consumeToken(RPAREN);
return new AstParameters(l);
}
/**
* literal := <TRUE> | <FALSE> | <STRING> | <INTEGER> | <FLOAT> | <NULL>
*/
protected AstNode literal() throws ScanException, ParseException {
AstNode v = null;
switch (token.getSymbol()) {
case TRUE:
v = new AstBoolean(true);
consumeToken();
break;
case FALSE:
v = new AstBoolean(false);
consumeToken();
break;
case STRING:
v = new AstString(token.getImage());
consumeToken();
break;
case INTEGER:
v = new AstNumber(parseInteger(token.getImage()));
consumeToken();
break;
case FLOAT:
v = new AstNumber(parseFloat(token.getImage()));
consumeToken();
break;
case NULL:
v = new AstNull();
consumeToken();
break;
case EXTENSION:
if (getExtensionHandler(token).getExtensionPoint() == ExtensionPoint.LITERAL) {
v = getExtensionHandler(consumeToken()).createAstNode();
break;
}
}
return v;
}
protected final AstFunction function(String name, AstParameters params) {
if (functions.isEmpty()) {
functions = new ArrayList(4);
}
AstFunction function = createAstFunction(name, functions.size(), params);
functions.add(function);
return function;
}
protected final AstIdentifier identifier(String name) {
if (identifiers.isEmpty()) {
identifiers = new ArrayList(4);
}
AstIdentifier identifier = createAstIdentifier(name, identifiers.size());
identifiers.add(identifier);
return identifier;
}
}