Search in sources :

Example 1 with AstLiteralExpression

use of org.apache.el.parser.AstLiteralExpression in project tomcat by apache.

the class ExpressionBuilder method createNodeInternal.

private static final Node createNodeInternal(String expr) throws ELException {
    if (expr == null) {
        throw new ELException(MessageFactory.get("error.null"));
    }
    Node n = expressionCache.get(expr);
    if (n == null) {
        ELParser parser = parserCache.pop();
        try {
            if (parser == null) {
                parser = new ELParser(new StringReader(expr));
            } else {
                parser.ReInit(new StringReader(expr));
            }
            n = parser.CompositeExpression();
            // validate composite expression
            int numChildren = n.jjtGetNumChildren();
            if (numChildren == 1) {
                n = n.jjtGetChild(0);
            } else {
                Class<?> type = null;
                Node child = null;
                for (int i = 0; i < numChildren; i++) {
                    child = n.jjtGetChild(i);
                    if (child instanceof AstLiteralExpression)
                        continue;
                    if (type == null)
                        type = child.getClass();
                    else {
                        if (!type.equals(child.getClass())) {
                            throw new ELException(MessageFactory.get("error.mixed", expr));
                        }
                    }
                }
            }
            if (n instanceof AstDeferredExpression || n instanceof AstDynamicExpression) {
                n = n.jjtGetChild(0);
            }
            expressionCache.put(expr, n);
        } catch (Exception e) {
            throw new ELException(MessageFactory.get("error.parseFail", expr), e);
        } finally {
            if (parser != null) {
                parserCache.push(parser);
            }
        }
    }
    return n;
}
Also used : AstDeferredExpression(org.apache.el.parser.AstDeferredExpression) Node(org.apache.el.parser.Node) AstDynamicExpression(org.apache.el.parser.AstDynamicExpression) StringReader(java.io.StringReader) ELException(javax.el.ELException) ELParser(org.apache.el.parser.ELParser) AstLiteralExpression(org.apache.el.parser.AstLiteralExpression) ELException(javax.el.ELException)

Aggregations

StringReader (java.io.StringReader)1 ELException (javax.el.ELException)1 AstDeferredExpression (org.apache.el.parser.AstDeferredExpression)1 AstDynamicExpression (org.apache.el.parser.AstDynamicExpression)1 AstLiteralExpression (org.apache.el.parser.AstLiteralExpression)1 ELParser (org.apache.el.parser.ELParser)1 Node (org.apache.el.parser.Node)1