123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413 |
- package org.ssssssss.magicapi.expression.parsing;
- import org.apache.commons.lang3.StringUtils;
- import org.apache.commons.lang3.exception.ExceptionUtils;
- import org.ssssssss.magicapi.expression.ExpressionError;
- import org.ssssssss.magicapi.expression.ExpressionError.TemplateException;
- import org.ssssssss.magicapi.expression.ExpressionTemplate;
- import org.ssssssss.magicapi.expression.ExpressionTemplateContext;
- import org.ssssssss.magicapi.expression.interpreter.AbstractReflection;
- import org.ssssssss.magicapi.expression.interpreter.AstInterpreter;
- import org.ssssssss.magicapi.expression.interpreter.JavaReflection;
- import javax.xml.transform.Source;
- import java.io.IOException;
- import java.lang.reflect.Array;
- import java.lang.reflect.InvocationTargetException;
- import java.util.*;
- import java.util.concurrent.atomic.AtomicInteger;
- /** Templates are parsed into an abstract syntax tree (AST) nodes by a Parser. This class contains all AST node types. */
- public abstract class Ast {
- /** Base class for all AST nodes. A node minimally stores the {@link Span} that references its location in the
- * {@link Source}. **/
- public abstract static class Node {
- private final Span span;
- public Node (Span span) {
- this.span = span;
- }
- /** Returns the {@link Span} referencing this node's location in the {@link Source}. **/
- public Span getSpan () {
- return span;
- }
- @Override
- public String toString () {
- return span.getText();
- }
- public abstract Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException;
- }
- /** A text node represents an "un-templated" span in the source that should be emitted verbatim. **/
- public static class Text extends Node {
- private final String content;
- public Text (Span text) {
- super(text);
- String unescapedValue = text.getText();
- StringBuilder builder = new StringBuilder();
- CharacterStream stream = new CharacterStream(unescapedValue);
- while (stream.hasMore()) {
- if (stream.match("\\{", true)) {
- builder.append('{');
- } else if (stream.match("\\}", true)) {
- builder.append('}');
- } else {
- builder.append(stream.consume());
- }
- }
- content = builder.toString();
- }
- /** Returns the UTF-8 representation of this text node. **/
- public String getContent () {
- return content;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- return null;
- }
- }
- /** All expressions are subclasses of this node type. Expressions are separated into unary operations (!, -), binary operations
- * (+, -, *, /, etc.) and ternary operations (?:). */
- public abstract static class Expression extends Node {
- public Expression (Span span) {
- super(span);
- }
- }
- /** An unary operation node represents a logical or numerical negation. **/
- public static class UnaryOperation extends Expression {
- public static enum UnaryOperator {
- Not, Negate, Positive;
- public static UnaryOperator getOperator (Token op) {
- if (op.getType() == TokenType.Not) {
- return UnaryOperator.Not;
- }
- if (op.getType() == TokenType.Plus) {
- return UnaryOperator.Positive;
- }
- if (op.getType() == TokenType.Minus) {
- return UnaryOperator.Negate;
- }
- ExpressionError.error("Unknown unary operator " + op + ".", op.getSpan());
- return null; // not reached
- }
- }
- private final UnaryOperator operator;
- private final Expression operand;
- public UnaryOperation (Token operator, Expression operand) {
- super(operator.getSpan());
- this.operator = UnaryOperator.getOperator(operator);
- this.operand = operand;
- }
- public UnaryOperator getOperator () {
- return operator;
- }
- public Expression getOperand () {
- return operand;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- Object operand = getOperand().evaluate(template, context);
- if (getOperator() == UnaryOperator.Negate) {
- if (operand instanceof Integer) {
- return -(Integer)operand;
- } else if (operand instanceof Float) {
- return -(Float)operand;
- } else if (operand instanceof Double) {
- return -(Double)operand;
- } else if (operand instanceof Byte) {
- return -(Byte)operand;
- } else if (operand instanceof Short) {
- return -(Short)operand;
- } else if (operand instanceof Long) {
- return -(Long)operand;
- } else {
- ExpressionError.error("Operand of operator '" + getOperator().name() + "' must be a number, got " + operand, getSpan());
- return null; // never reached
- }
- } else if (getOperator() == UnaryOperator.Not) {
- if (!(operand instanceof Boolean)) {
- ExpressionError.error("Operand of operator '" + getOperator().name() + "' must be a boolean", getSpan());
- }
- return !(Boolean)operand;
- } else {
- return operand;
- }
- }
- }
- /** A binary operation represents arithmetic operators, like addition or division, comparison operators, like less than or
- * equals, logical operators, like and, or an assignment. **/
- public static class BinaryOperation extends Expression {
- public static enum BinaryOperator {
- Addition, Subtraction, Multiplication, Division, Modulo, Equal, NotEqual, Less, LessEqual, Greater, GreaterEqual, And, Or, Xor, Assignment;
- public static BinaryOperator getOperator (Token op) {
- if (op.getType() == TokenType.Plus) {
- return BinaryOperator.Addition;
- }
- if (op.getType() == TokenType.Minus) {
- return BinaryOperator.Subtraction;
- }
- if (op.getType() == TokenType.Asterisk) {
- return BinaryOperator.Multiplication;
- }
- if (op.getType() == TokenType.ForwardSlash) {
- return BinaryOperator.Division;
- }
- if (op.getType() == TokenType.Percentage) {
- return BinaryOperator.Modulo;
- }
- if (op.getType() == TokenType.Equal) {
- return BinaryOperator.Equal;
- }
- if (op.getType() == TokenType.NotEqual) {
- return BinaryOperator.NotEqual;
- }
- if (op.getType() == TokenType.Less) {
- return BinaryOperator.Less;
- }
- if (op.getType() == TokenType.LessEqual) {
- return BinaryOperator.LessEqual;
- }
- if (op.getType() == TokenType.Greater) {
- return BinaryOperator.Greater;
- }
- if (op.getType() == TokenType.GreaterEqual) {
- return BinaryOperator.GreaterEqual;
- }
- if (op.getType() == TokenType.And) {
- return BinaryOperator.And;
- }
- if (op.getType() == TokenType.Or) {
- return BinaryOperator.Or;
- }
- if (op.getType() == TokenType.Xor) {
- return BinaryOperator.Xor;
- }
- if (op.getType() == TokenType.Assignment) {
- return BinaryOperator.Assignment;
- }
- ExpressionError.error("Unknown binary operator " + op + ".", op.getSpan());
- return null; // not reached
- }
- }
- private final Expression leftOperand;
- private final BinaryOperator operator;
- private final Expression rightOperand;
- public BinaryOperation (Expression leftOperand, Token operator, Expression rightOperand) {
- super(operator.getSpan());
- this.leftOperand = leftOperand;
- this.operator = BinaryOperator.getOperator(operator);
- this.rightOperand = rightOperand;
- }
- public Expression getLeftOperand () {
- return leftOperand;
- }
- public BinaryOperator getOperator () {
- return operator;
- }
- public Expression getRightOperand () {
- return rightOperand;
- }
- private Object evaluateAddition (Object left, Object right) {
- if (left instanceof String || right instanceof String) {
- return left.toString() + right.toString();
- }
- if (left instanceof Double || right instanceof Double) {
- return ((Number)left).doubleValue() + ((Number)right).doubleValue();
- }
- if (left instanceof Float || right instanceof Float) {
- return ((Number)left).floatValue() + ((Number)right).floatValue();
- }
- if (left instanceof Long || right instanceof Long) {
- return ((Number)left).longValue() + ((Number)right).longValue();
- }
- if (left instanceof Integer || right instanceof Integer) {
- return ((Number)left).intValue() + ((Number)right).intValue();
- }
- if (left instanceof Short || right instanceof Short) {
- return ((Number)left).shortValue() + ((Number)right).shortValue();
- }
- if (left instanceof Byte || right instanceof Byte) {
- return ((Number)left).byteValue() + ((Number)right).byteValue();
- }
- ExpressionError.error("Operands for addition operator must be numbers or strings, got " + left + ", " + right + ".", getSpan());
- return null; // never reached
- }
- private Object evaluateSubtraction (Object left, Object right) {
- if (left instanceof Double || right instanceof Double) {
- return ((Number)left).doubleValue() - ((Number)right).doubleValue();
- } else if (left instanceof Float || right instanceof Float) {
- return ((Number)left).floatValue() - ((Number)right).floatValue();
- } else if (left instanceof Long || right instanceof Long) {
- return ((Number)left).longValue() - ((Number)right).longValue();
- } else if (left instanceof Integer || right instanceof Integer) {
- return ((Number)left).intValue() - ((Number)right).intValue();
- } else if (left instanceof Short || right instanceof Short) {
- return ((Number)left).shortValue() - ((Number)right).shortValue();
- } else if (left instanceof Byte || right instanceof Byte) {
- return ((Number)left).byteValue() - ((Number)right).byteValue();
- } else {
- ExpressionError.error("Operands for subtraction operator must be numbers" + left + ", " + right + ".", getSpan());
- return null; // never reached
- }
- }
- private Object evaluateMultiplication (Object left, Object right) {
- if (left instanceof Double || right instanceof Double) {
- return ((Number)left).doubleValue() * ((Number)right).doubleValue();
- } else if (left instanceof Float || right instanceof Float) {
- return ((Number)left).floatValue() * ((Number)right).floatValue();
- } else if (left instanceof Long || right instanceof Long) {
- return ((Number)left).longValue() * ((Number)right).longValue();
- } else if (left instanceof Integer || right instanceof Integer) {
- return ((Number)left).intValue() * ((Number)right).intValue();
- } else if (left instanceof Short || right instanceof Short) {
- return ((Number)left).shortValue() * ((Number)right).shortValue();
- } else if (left instanceof Byte || right instanceof Byte) {
- return ((Number)left).byteValue() * ((Number)right).byteValue();
- } else {
- ExpressionError.error("Operands for multiplication operator must be numbers" + left + ", " + right + ".", getSpan());
- return null; // never reached
- }
- }
- private Object evaluateDivision (Object left, Object right) {
- if (left instanceof Double || right instanceof Double) {
- return ((Number)left).doubleValue() / ((Number)right).doubleValue();
- } else if (left instanceof Float || right instanceof Float) {
- return ((Number)left).floatValue() / ((Number)right).floatValue();
- } else if (left instanceof Long || right instanceof Long) {
- return ((Number)left).longValue() / ((Number)right).longValue();
- } else if (left instanceof Integer || right instanceof Integer) {
- return ((Number)left).intValue() / ((Number)right).intValue();
- } else if (left instanceof Short || right instanceof Short) {
- return ((Number)left).shortValue() / ((Number)right).shortValue();
- } else if (left instanceof Byte || right instanceof Byte) {
- return ((Number)left).byteValue() / ((Number)right).byteValue();
- } else {
- ExpressionError.error("Operands for division operator must be numbers" + left + ", " + right + ".", getSpan());
- return null; // never reached
- }
- }
- private Object evaluateModulo (Object left, Object right) {
- if (left instanceof Double || right instanceof Double) {
- return ((Number)left).doubleValue() % ((Number)right).doubleValue();
- } else if (left instanceof Float || right instanceof Float) {
- return ((Number)left).floatValue() % ((Number)right).floatValue();
- } else if (left instanceof Long || right instanceof Long) {
- return ((Number)left).longValue() % ((Number)right).longValue();
- } else if (left instanceof Integer || right instanceof Integer) {
- return ((Number)left).intValue() % ((Number)right).intValue();
- } else if (left instanceof Short || right instanceof Short) {
- return ((Number)left).shortValue() % ((Number)right).shortValue();
- } else if (left instanceof Byte || right instanceof Byte) {
- return ((Number)left).byteValue() % ((Number)right).byteValue();
- } else {
- ExpressionError.error("Operands for modulo operator must be numbers" + left + ", " + right + ".", getSpan());
- return null; // never reached
- }
- }
- private boolean evaluateLess (Object left, Object right) {
- if (left instanceof Double || right instanceof Double) {
- return ((Number)left).doubleValue() < ((Number)right).doubleValue();
- } else if (left instanceof Float || right instanceof Float) {
- return ((Number)left).floatValue() < ((Number)right).floatValue();
- } else if (left instanceof Long || right instanceof Long) {
- return ((Number)left).longValue() < ((Number)right).longValue();
- } else if (left instanceof Integer || right instanceof Integer) {
- return ((Number)left).intValue() < ((Number)right).intValue();
- } else if (left instanceof Short || right instanceof Short) {
- return ((Number)left).shortValue() < ((Number)right).shortValue();
- } else if (left instanceof Byte || right instanceof Byte) {
- return ((Number)left).byteValue() < ((Number)right).byteValue();
- } else {
- ExpressionError.error("Operands for less operator must be numbers" + left + ", " + right + ".", getSpan());
- return false; // never reached
- }
- }
- private Object evaluateLessEqual (Object left, Object right) {
- if (left instanceof Double || right instanceof Double) {
- return ((Number)left).doubleValue() <= ((Number)right).doubleValue();
- } else if (left instanceof Float || right instanceof Float) {
- return ((Number)left).floatValue() <= ((Number)right).floatValue();
- } else if (left instanceof Long || right instanceof Long) {
- return ((Number)left).longValue() <= ((Number)right).longValue();
- } else if (left instanceof Integer || right instanceof Integer) {
- return ((Number)left).intValue() <= ((Number)right).intValue();
- } else if (left instanceof Short || right instanceof Short) {
- return ((Number)left).shortValue() <= ((Number)right).shortValue();
- } else if (left instanceof Byte || right instanceof Byte) {
- return ((Number)left).byteValue() <= ((Number)right).byteValue();
- } else {
- ExpressionError.error("Operands for less/equal operator must be numbers" + left + ", " + right + ".", getSpan());
- return null; // never reached
- }
- }
- private Object evaluateGreater (Object left, Object right) {
- if(left == null || right == null){
- return false;
- }
- if (left instanceof Double || right instanceof Double) {
- return ((Number)left).doubleValue() > ((Number)right).doubleValue();
- } else if (left instanceof Float || right instanceof Float) {
- return ((Number)left).floatValue() > ((Number)right).floatValue();
- } else if (left instanceof Long || right instanceof Long) {
- return ((Number)left).longValue() > ((Number)right).longValue();
- } else if (left instanceof Integer || right instanceof Integer) {
- return ((Number)left).intValue() > ((Number)right).intValue();
- } else if (left instanceof Short || right instanceof Short) {
- return ((Number)left).shortValue() > ((Number)right).shortValue();
- } else if (left instanceof Byte || right instanceof Byte) {
- return ((Number)left).byteValue() > ((Number)right).byteValue();
- } else {
- ExpressionError.error("Operands for greater operator must be numbers" + left + ", " + right + ".", getSpan());
- return null; // never reached
- }
- }
- private Object evaluateGreaterEqual (Object left, Object right) {
- if (left instanceof Double || right instanceof Double) {
- return ((Number)left).doubleValue() >= ((Number)right).doubleValue();
- } else if (left instanceof Float || right instanceof Float) {
- return ((Number)left).floatValue() >= ((Number)right).floatValue();
- } else if (left instanceof Long || right instanceof Long) {
- return ((Number)left).longValue() >= ((Number)right).longValue();
- } else if (left instanceof Integer || right instanceof Integer) {
- return ((Number)left).intValue() >= ((Number)right).intValue();
- } else if (left instanceof Short || right instanceof Short) {
- return ((Number)left).shortValue() >= ((Number)right).shortValue();
- } else if (left instanceof Byte || right instanceof Byte) {
- return ((Number)left).byteValue() >= ((Number)right).byteValue();
- } else {
- ExpressionError.error("Operands for greater/equal operator must be numbers" + left + ", " + right + ".", getSpan());
- return null; // never reached
- }
- }
- private Object evaluateAnd (Object left, ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- if (!(left instanceof Boolean)) {
- ExpressionError.error("Left operand must be a boolean, got " + left + ".", getLeftOperand().getSpan());
- }
- if (!(Boolean)left) {
- return false;
- }
- Object right = getRightOperand().evaluate(template, context);
- if (!(right instanceof Boolean)) {
- ExpressionError.error("Right operand must be a boolean, got " + right + ".", getRightOperand().getSpan());
- }
- return (Boolean)left && (Boolean)right;
- }
- private Object evaluateOr (Object left, ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- if (!(left instanceof Boolean)) {
- ExpressionError.error("Left operand must be a boolean, got " + left + ".", getLeftOperand().getSpan());
- }
- if ((Boolean)left) {
- return true;
- }
- Object right = getRightOperand().evaluate(template, context);
- if (!(right instanceof Boolean)) {
- ExpressionError.error("Right operand must be a boolean, got " + right + ".", getRightOperand().getSpan());
- }
- return (Boolean)left || (Boolean)right;
- }
- private Object evaluateXor (Object left, Object right) {
- if (!(left instanceof Boolean)) {
- ExpressionError.error("Left operand must be a boolean, got " + left + ".", getLeftOperand().getSpan());
- }
- if (!(right instanceof Boolean)) {
- ExpressionError.error("Right operand must be a boolean, got " + right + ".", getRightOperand().getSpan());
- }
- return (Boolean)left ^ (Boolean)right;
- }
- private Object evaluateEqual (Object left, Object right) {
- if (left != null) {
- return left.equals(right);
- }
- if (right != null) {
- return right.equals(left);
- }
- return true;
- }
- private Object evaluateNotEqual (Object left, Object right) {
- return !(Boolean)evaluateEqual(left, right);
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- if (getOperator() == BinaryOperator.Assignment) {
- if (!(getLeftOperand() instanceof VariableAccess)) {
- ExpressionError.error("Can only assign to top-level variables in context.", getLeftOperand().getSpan());
- }
- Object value = getRightOperand().evaluate(template, context);
- context.set(((VariableAccess)getLeftOperand()).getVariableName().getText(), value);
- return null;
- }
- Object left = getLeftOperand().evaluate(template, context);
- Object right = getOperator() == BinaryOperator.And || getOperator() == BinaryOperator.Or ? null : getRightOperand().evaluate(template, context);
- switch (getOperator()) {
- case Addition:
- return evaluateAddition(left, right);
- case Subtraction:
- return evaluateSubtraction(left, right);
- case Multiplication:
- return evaluateMultiplication(left, right);
- case Division:
- return evaluateDivision(left, right);
- case Modulo:
- return evaluateModulo(left, right);
- case Less:
- return evaluateLess(left, right);
- case LessEqual:
- return evaluateLessEqual(left, right);
- case Greater:
- return evaluateGreater(left, right);
- case GreaterEqual:
- return evaluateGreaterEqual(left, right);
- case Equal:
- return evaluateEqual(left, right);
- case NotEqual:
- return evaluateNotEqual(left, right);
- case And:
- return evaluateAnd(left, template, context);
- case Or:
- return evaluateOr(left, template, context);
- case Xor:
- return evaluateXor(left, right);
- default:
- ExpressionError.error("Binary operator " + getOperator().name() + " not implemented", getSpan());
- return null;
- }
- }
- }
- /** A ternary operation is an abbreviated if/then/else operation, and equivalent to the the ternary operator in Java. **/
- public static class TernaryOperation extends Expression {
- private final Expression condition;
- private final Expression trueExpression;
- private final Expression falseExpression;
- public TernaryOperation (Expression condition, Expression trueExpression, Expression falseExpression) {
- super(new Span(condition.getSpan(), falseExpression.getSpan()));
- this.condition = condition;
- this.trueExpression = trueExpression;
- this.falseExpression = falseExpression;
- }
- public Expression getCondition () {
- return condition;
- }
- public Expression getTrueExpression () {
- return trueExpression;
- }
- public Expression getFalseExpression () {
- return falseExpression;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- Object condition = getCondition().evaluate(template, context);
- if (!(condition instanceof Boolean)) {
- ExpressionError.error("Condition of ternary operator must be a boolean, got " + condition + ".", getSpan());
- }
- return ((Boolean)condition) ? getTrueExpression().evaluate(template, context) : getFalseExpression().evaluate(template, context);
- }
- }
- /** A null literal, with the single value <code>null</code> **/
- public static class NullLiteral extends Expression {
- public NullLiteral (Span span) {
- super(span);
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- return null;
- }
- }
- /** A boolean literal, with the values <code>true</code> and <code>false</code> **/
- public static class BooleanLiteral extends Expression {
- private final Boolean value;
- public BooleanLiteral (Span literal) {
- super(literal);
- this.value = Boolean.parseBoolean(literal.getText());
- }
- public Boolean getValue () {
- return value;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- return value;
- }
- }
- /** A double precision floating point literal. Must be marked with the <code>d</code> suffix, e.g. "1.0d". **/
- public static class DoubleLiteral extends Expression {
- private final Double value;
- public DoubleLiteral (Span literal) {
- super(literal);
- this.value = Double.parseDouble(literal.getText().substring(0, literal.getText().length() - 1));
- }
- public Double getValue () {
- return value;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- return value;
- }
- }
- /** A single precision floating point literla. May be optionally marked with the <code>f</code> suffix, e.g. "1.0f". **/
- public static class FloatLiteral extends Expression {
- private final Float value;
- public FloatLiteral (Span literal) {
- super(literal);
- String text = literal.getText();
- if (text.charAt(text.length() - 1) == 'f') {
- text = text.substring(0, text.length() - 1);
- }
- this.value = Float.parseFloat(text);
- }
- public Float getValue () {
- return value;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- return value;
- }
- }
- /** A byte literal. Must be marked with the <code>b</code> suffix, e.g. "123b". **/
- public static class ByteLiteral extends Expression {
- private final Byte value;
- public ByteLiteral (Span literal) {
- super(literal);
- this.value = Byte.parseByte(literal.getText().substring(0, literal.getText().length() - 1));
- }
- public Byte getValue () {
- return value;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- return value;
- }
- }
- /** A short literal. Must be marked with the <code>s</code> suffix, e.g. "123s". **/
- public static class ShortLiteral extends Expression {
- private final Short value;
- public ShortLiteral (Span literal) {
- super(literal);
- this.value = Short.parseShort(literal.getText().substring(0, literal.getText().length() - 1));
- }
- public Short getValue () {
- return value;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- return value;
- }
- }
- /** An integer literal. **/
- public static class IntegerLiteral extends Expression {
- private final Integer value;
- public IntegerLiteral (Span literal) {
- super(literal);
- this.value = Integer.parseInt(literal.getText());
- }
- public Integer getValue () {
- return value;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- return value;
- }
- }
- /** A long integer literal. Must be marked with the <code>l</code> suffix, e.g. "123l". **/
- public static class LongLiteral extends Expression {
- private final Long value;
- public LongLiteral (Span literal) {
- super(literal);
- this.value = Long.parseLong(literal.getText().substring(0, literal.getText().length() - 1));
- }
- public Long getValue () {
- return value;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- return value;
- }
- }
- /** A character literal, enclosed in single quotes. Supports escape sequences \n, \r,\t, \' and \\. **/
- public static class CharacterLiteral extends Expression {
- private final Character value;
- public CharacterLiteral (Span literal) {
- super(literal);
- String text = literal.getText();
- if (text.length() > 3) {
- if (text.charAt(2) == 'n') {
- value = '\n';
- } else if (text.charAt(2) == 'r') {
- value = '\r';
- } else if (text.charAt(2) == 't') {
- value = '\t';
- } else if (text.charAt(2) == '\\') {
- value = '\\';
- } else if (text.charAt(2) == '\'') {
- value = '\'';
- } else {
- ExpressionError.error("Unknown escape sequence '" + literal.getText() + "'.", literal);
- value = 0; // never reached
- }
- } else {
- this.value = literal.getText().charAt(1);
- }
- }
- public Character getValue () {
- return value;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- return value;
- }
- }
- /** A string literal, enclosed in double quotes. Supports escape sequences \n, \r, \t, \" and \\. **/
- public static class StringLiteral extends Expression {
- private final String value;
- public StringLiteral (Span literal) {
- super(literal);
- String text = getSpan().getText();
- String unescapedValue = text.substring(1, text.length() - 1);
- StringBuilder builder = new StringBuilder();
- CharacterStream stream = new CharacterStream(unescapedValue);
- while (stream.hasMore()) {
- if (stream.match("\\\\", true)) {
- builder.append('\\');
- } else if (stream.match("\\n", true)) {
- builder.append('\n');
- } else if (stream.match("\\r", true)) {
- builder.append('\r');
- } else if (stream.match("\\t", true)) {
- builder.append('\t');
- } else if (stream.match("\\\"", true)) {
- builder.append('"');
- } else {
- builder.append(stream.consume());
- }
- }
- value = builder.toString();
- }
- /** Returns the literal without quotes **/
- public String getValue () {
- return value;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- return value;
- }
- }
- /** Represents a top-level variable access by name. E.g. in the expression "a + 1", <code>a</code> would be encoded as a
- * VariableAccess node. Variables can be both read (in expressions) and written to (in assignments). Variable values are looked
- * up and written to a {@link ExpressionTemplateContext}. **/
- public static class VariableAccess extends Expression {
- public VariableAccess (Span name) {
- super(name);
- }
- public Span getVariableName () {
- return getSpan();
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- Object value = context.get(getSpan().getText());
- //if (value == null) ExpressionError.error("找不到变量'" + getSpan().getText() + "'或变量值为null", getSpan());
- return value;
- }
- }
- /** Represents a map or array element access of the form <code>mapOrArray[keyOrIndex]</code>. Maps and arrays may only be read
- * from. **/
- public static class MapOrArrayAccess extends Expression {
- private final Expression mapOrArray;
- private final Expression keyOrIndex;
- public MapOrArrayAccess (Span span, Expression mapOrArray, Expression keyOrIndex) {
- super(span);
- this.mapOrArray = mapOrArray;
- this.keyOrIndex = keyOrIndex;
- }
- /** Returns an expression that must evaluate to a map or array. **/
- public Expression getMapOrArray () {
- return mapOrArray;
- }
- /** Returns an expression that is used as the key or index to fetch a map or array element. **/
- public Expression getKeyOrIndex () {
- return keyOrIndex;
- }
- @SuppressWarnings("rawtypes")
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- Object mapOrArray = getMapOrArray().evaluate(template, context);
- if (mapOrArray == null) {
- return null;
- }
- Object keyOrIndex = getKeyOrIndex().evaluate(template, context);
- if (keyOrIndex == null) {
- return null;
- }
- if (mapOrArray instanceof Map) {
- return ((Map)mapOrArray).get(keyOrIndex);
- } else if (mapOrArray instanceof List) {
- if (!(keyOrIndex instanceof Number)) {
- ExpressionError.error("List index must be an integer, but was " + keyOrIndex.getClass().getSimpleName(), getKeyOrIndex().getSpan());
- }
- int index = ((Number)keyOrIndex).intValue();
- return ((List)mapOrArray).get(index);
- } else {
- if (!(keyOrIndex instanceof Number)) {
- ExpressionError.error("Array index must be an integer, but was " + keyOrIndex.getClass().getSimpleName(), getKeyOrIndex().getSpan());
- }
- int index = ((Number)keyOrIndex).intValue();
- if (mapOrArray instanceof int[]) {
- return ((int[])mapOrArray)[index];
- } else if (mapOrArray instanceof float[]) {
- return ((float[])mapOrArray)[index];
- } else if (mapOrArray instanceof double[]) {
- return ((double[])mapOrArray)[index];
- } else if (mapOrArray instanceof boolean[]) {
- return ((boolean[])mapOrArray)[index];
- } else if (mapOrArray instanceof char[]) {
- return ((char[])mapOrArray)[index];
- } else if (mapOrArray instanceof short[]) {
- return ((short[])mapOrArray)[index];
- } else if (mapOrArray instanceof long[]) {
- return ((long[])mapOrArray)[index];
- } else if (mapOrArray instanceof byte[]) {
- return ((byte[])mapOrArray)[index];
- } else if (mapOrArray instanceof String) {
- return Character.toString(((String)mapOrArray).charAt(index));
- } else {
- return ((Object[])mapOrArray)[index];
- }
- }
- }
- }
- /** Represents an access of a member (field or method or entry in a map) of the form <code>object.member</code>. Members may
- * only be read from. **/
- public static class MemberAccess extends Expression {
- private final Expression object;
- private final Span name;
- private Object cachedMember;
- public MemberAccess (Expression object, Span name) {
- super(name);
- this.object = object;
- this.name = name;
- }
- /** Returns the object on which to access the member. **/
- public Expression getObject () {
- return object;
- }
- /** The name of the member. **/
- public Span getName () {
- return name;
- }
- /** Returns the cached member descriptor as returned by {@link AbstractReflection#getField(Object, String)} or
- * {@link AbstractReflection#getMethod(Object, String, Object...)}. See {@link #setCachedMember(Object)}. **/
- public Object getCachedMember () {
- return cachedMember;
- }
- /** Sets the member descriptor as returned by {@link AbstractReflection#getField(Object, String)} or
- * {@link AbstractReflection#getMethod(Object, String, Object...)} for faster member lookups. Called by {@link AstInterpreter} the
- * first time this node is evaluated. Subsequent evaluations can use the cached descriptor, avoiding a costly reflective
- * lookup. **/
- public void setCachedMember (Object cachedMember) {
- this.cachedMember = cachedMember;
- }
- @SuppressWarnings("rawtypes")
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- Object object = getObject().evaluate(template, context);
- if (object == null) {
- return null;
- }
- // special case for array.length
- if (object.getClass().isArray() && "length".equals(getName().getText())) {
- return Array.getLength(object);
- }
- // special case for map, allows to do map.key instead of map[key]
- if (object instanceof Map) {
- Map map = (Map)object;
- return map.get(getName().getText());
- }
- Object field = getCachedMember();
- if (field != null) {
- try {
- return AbstractReflection.getInstance().getFieldValue(object, field);
- } catch (Throwable t) {
- // fall through
- }
- }
- String text = getName().getText();
- field = AbstractReflection.getInstance().getField(object, text);
- if (field == null) {
- String methodName = null;
- if(text.length() > 1){
- methodName = text.substring(0,1).toUpperCase() + text.substring(1);
- }else{
- methodName = text.toUpperCase();
- }
- MemberAccess access = new MemberAccess(this.object, new Span("get" + methodName));
- MethodCall methodCall = new MethodCall(getName(),access, Collections.emptyList());
- try {
- return methodCall.evaluate(template, context);
- } catch (TemplateException e) {
- if(ExceptionUtils.indexOfThrowable(e, InvocationTargetException.class) > -1){
- ExpressionError.error(String.format("在%s中调用方法get%s发生异常"
- ,object.getClass()
- ,methodName), getSpan(),e);
- return null;
- }
- access = new MemberAccess(this.object, new Span("is" + methodName));
- methodCall = new MethodCall(getName(),access, Collections.emptyList());
- try {
- return methodCall.evaluate(template, context);
- } catch (TemplateException e1) {
- if(ExceptionUtils.indexOfThrowable(e1, InvocationTargetException.class) > -1){
- ExpressionError.error(String.format("在%s中调用方法is%s发生异常"
- ,object.getClass()
- ,methodName), getSpan(),e);
- return null;
- }
- ExpressionError.error(String.format("在%s中找不到属性%s或者方法get%s、方法is%s"
- ,object.getClass()
- ,getName().getText()
- ,methodName
- ,methodName), getSpan());
- }
- }
- }
- setCachedMember(field);
- return AbstractReflection.getInstance().getFieldValue(object, field);
- }
- }
- public static class LambdaAccess extends Expression {
- private final List<Expression> elements = new ArrayList<>();
- private final Expression function;
- private MemberAccess arrayLike;
- public LambdaAccess (Span span, Expression function, List<Expression> elements) {
- super(span);
- this.elements.addAll(elements);
- this.function = function;
- }
- public LambdaAccess (Span span, Expression function, Expression... elements) {
- super(span);
- this.elements.addAll(Arrays.asList(elements));
- this.function = function;
- }
- public List<Expression> getElements() {
- return elements;
- }
- /** Returns an expression that is used as the key or index to fetch a map or array element. **/
- public Expression getFunction() {
- return function;
- }
- @SuppressWarnings("rawtypes")
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- if (ArrayLikeLambdaExecutor.SUPPORT_METHOD.contains(arrayLike.getName().getText())) {
- return oneArgumentParser(template, context);
- } else {
- ExpressionError.error("只支持 "+ String.join(",", ArrayLikeLambdaExecutor.SUPPORT_METHOD) +"。不支持的lambda函数: " + arrayLike.getName().getText(), arrayLike.getSpan());
- }
- return null;
- }
- private <T,R> Object oneArgumentParser(ExpressionTemplate template, ExpressionTemplateContext context) {
- Expression object = arrayLike.getObject();
- if (object instanceof VariableAccess) {
- VariableAccess arrLike = (VariableAccess) object;
- String parName = arrLike.getVariableName().getText();
- Object arrLikeObj = context.get(parName);
- if (arrLikeObj.getClass().isArray()) {
- try {
- // Integer size = (Integer) arrLikeObj.getClass().getDeclaredField("length").get(arrLikeObj);
- int size = Array.getLength(arrLikeObj);
- List<Object> list = new ArrayList<>(size);
- for (int i = 0; i < size; i++) {
- list.add(Array.get(arrLikeObj, i));
- }
- arrLikeObj = list;
- } catch (Exception e) {
- e.printStackTrace();
- }
- } else if (arrLikeObj instanceof Iterator) {
- Iterator<?> it = (Iterator<?>) arrLikeObj;
- List<Object> list = new ArrayList<>();
- it.forEachRemaining(list::add);
- arrLikeObj = list;
- } else if (arrLikeObj instanceof Enumeration) {
- Enumeration<?> en = (Enumeration<?>) arrLikeObj;
- arrLikeObj = Collections.list(en);
- }
- if (arrLikeObj instanceof Collection) {
- Collection<?> coll = (Collection<?>) arrLikeObj;
- AtomicInteger ai = new AtomicInteger();
- return new ArrayLikeLambdaExecutor.MultipleArgumentsLambda(elements, lambdaArgumentsValues -> {
- try {
- context.push();
- for (int i = 0; i < elements.size() && i < lambdaArgumentsValues.length; i++) {
- Expression expression = elements.get(i);
- context.setOnCurrentScope(expression.getSpan().getText(), lambdaArgumentsValues[i]);
- }
- return function.evaluate(template, context);
- } catch (IOException e) {
- e.printStackTrace();
- throw new RuntimeException(e);
- } finally {
- context.pop();
- }
- });
- }
- }
- return null;
- }
- public void setArrayLike(MemberAccess arrayLike) {
- this.arrayLike = arrayLike;
- }
- public MemberAccess getArrayLike() {
- return arrayLike;
- }
- }
- /** Represents a call to a top-level function. A function may either be a {@link FunctionalInterface} stored in a
- * {@link ExpressionTemplateContext}, or a {@link Macro} defined in a template. */
- public static class FunctionCall extends Expression {
- private final Expression function;
- private final List<Expression> arguments;
- private Object cachedFunction;
- private final ThreadLocal<Object[]> cachedArguments;
- public FunctionCall (Span span, Expression function, List<Expression> arguments) {
- super(span);
- this.function = function;
- this.arguments = arguments;
- this.cachedArguments = new ThreadLocal<Object[]>();
- }
- /** Return the expression that must evaluate to a {@link FunctionalInterface} or a {@link Macro}. **/
- public Expression getFunction () {
- return function;
- }
- /** Returns the list of expressions to be passed to the function as arguments. **/
- public List<Expression> getArguments () {
- return arguments;
- }
- /** Returns the cached "function" descriptor as returned by {@link AbstractReflection#getMethod(Object, String, Object...)} or the
- * {@link Macro}. See {@link #setCachedFunction(Object)}. **/
- public Object getCachedFunction () {
- return cachedFunction;
- }
- /** Sets the "function" descriptor as returned by {@link AbstractReflection#getMethod(Object, String, Object...)} for faster
- * lookups, or the {@link Macro} to be called. Called by {@link AstInterpreter} the first time this node is evaluated.
- * Subsequent evaluations can use the cached descriptor, avoiding a costly reflective lookup. **/
- public void setCachedFunction (Object cachedFunction) {
- this.cachedFunction = cachedFunction;
- }
- /** Returns a scratch buffer to store arguments in when calling the function in {@link AstInterpreter}. Avoids generating
- * garbage. **/
- public Object[] getCachedArguments () {
- Object[] args = cachedArguments.get();
- if (args == null) {
- args = new Object[arguments.size()];
- cachedArguments.set(args);
- }
- return args;
- }
- /** Must be invoked when this node is done evaluating so we don't leak memory **/
- public void clearCachedArguments () {
- Object[] args = getCachedArguments();
- for (int i = 0; i < args.length; i++) {
- args[i] = null;
- }
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- try {
- Object[] argumentValues = getCachedArguments();
- List<Expression> arguments = getArguments();
- for (int i = 0, n = argumentValues.length; i < n; i++) {
- Expression expr = arguments.get(i);
- argumentValues[i] = expr.evaluate(template, context);
- }
- // This is a special case to handle template level macros. If a call to a macro is
- // made, evaluating the function expression will result in an exception, as the
- // function name can't be found in the context. Instead we need to manually check
- // if the function expression is a VariableAccess and if so, if it can be found
- // in the context.
- Object function = null;
- if (getFunction() instanceof VariableAccess) {
- VariableAccess varAccess = (VariableAccess)getFunction();
- function = context.get(varAccess.getVariableName().getText());
- } else {
- function = getFunction().evaluate(template, context);
- }
- if (function != null) {
- Object method = getCachedFunction();
- if (method != null) {
- try {
- return AbstractReflection.getInstance().callMethod(function, method, argumentValues);
- } catch (Throwable t) {
- // fall through
- }
- }
- method = AbstractReflection.getInstance().getMethod(function, null, argumentValues);
- if (method == null) {
- ExpressionError.error("Couldn't find function.", getSpan());
- }
- setCachedFunction(method);
- try {
- return AbstractReflection.getInstance().callMethod(function, method, argumentValues);
- } catch (Throwable t) {
- ExpressionError.error(t.getMessage(), getSpan(), t);
- return null; // never reached
- }
- } else {
- ExpressionError.error("Couldn't find function " + getFunction(), getSpan());
- return null; // never reached
- }
- } finally {
- clearCachedArguments();
- }
- }
- }
- /** Represents a call to a method of the form <code>object.method(a, b, c)</code>. **/
- public static class MethodCall extends Expression {
- private final MemberAccess method;
- private final List<Expression> arguments;
- private Object cachedMethod;
- private final ThreadLocal<Object[]> cachedArguments;
- private boolean cachedMethodStatic;
- public MethodCall (Span span, MemberAccess method, List<Expression> arguments) {
- super(span);
- this.method = method;
- this.arguments = arguments;
- this.cachedArguments = new ThreadLocal<Object[]>();
- }
- /** Returns the object on which to call the method. **/
- public Expression getObject () {
- return method.getObject();
- }
- /** Returns the method to call. **/
- public MemberAccess getMethod () {
- return method;
- }
- /** Returns the list of expressions to be passed to the function as arguments. **/
- public List<Expression> getArguments () {
- return arguments;
- }
- /** Returns the cached member descriptor as returned by {@link AbstractReflection#getMethod(Object, String, Object...)}. See
- * {@link #setCachedMember(Object)}. **/
- public Object getCachedMethod () {
- return cachedMethod;
- }
- /** Sets the method descriptor as returned by {@link AbstractReflection#getMethod(Object, String, Object...)} for faster lookups.
- * Called by {@link AstInterpreter} the first time this node is evaluated. Subsequent evaluations can use the cached
- * descriptor, avoiding a costly reflective lookup. **/
- public void setCachedMethod (Object cachedMethod) {
- this.cachedMethod = cachedMethod;
- }
- /** Returns a scratch buffer to store arguments in when calling the function in {@link AstInterpreter}. Avoids generating
- * garbage. **/
- public Object[] getCachedArguments () {
- Object[] args = cachedArguments.get();
- if (args == null) {
- args = new Object[arguments.size()];
- cachedArguments.set(args);
- }
- return args;
- }
- /** Must be invoked when this node is done evaluating so we don't leak memory **/
- public void clearCachedArguments () {
- Object[] args = getCachedArguments();
- for (int i = 0; i < args.length; i++) {
- args[i] = null;
- }
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- try {
- Object object = getObject().evaluate(template, context);
- if (object == null) {
- return null;
- }
- Object[] argumentValues = getCachedArguments();
- List<Expression> arguments = getArguments();
- for (int i = 0, n = argumentValues.length; i < n; i++) {
- Expression expr = arguments.get(i);
- argumentValues[i] = expr.evaluate(template, context);
- }
- // Otherwise try to find a corresponding method or field pointing to a lambda.
- Object method = getCachedMethod();
- if (method != null) {
- try {
- if (isCachedMethodStatic()) {
- return AbstractReflection.getInstance().callMethod(null, method, object, argumentValues);
- }
- return AbstractReflection.getInstance().callMethod(object, method, argumentValues);
- } catch (Throwable t) {
- t.printStackTrace();
- // fall through
- }
- }
- method = AbstractReflection.getInstance().getMethod(object, getMethod().getName().getText(), argumentValues);
- if (method != null) {
- // found the method on the object, call it
- setCachedMethod(method);
- try {
- return AbstractReflection.getInstance().callMethod(object, method, argumentValues);
- } catch (Throwable t) {
- ExpressionError.error(t.getMessage(), getSpan(), t);
- return null; // never reached
- }
- }
- method = AbstractReflection.getInstance().getExtensionMethod(object, getMethod().getName().getText(), argumentValues);
- if(method != null){
- try {
- int argumentLength = argumentValues == null ? 0 : argumentValues.length;
- Object[] parameters = new Object[argumentLength + 1];
- if(argumentLength > 0){
- for (int i = 0; i < argumentLength; i++) {
- parameters[i + 1] = argumentValues[i];
- }
- }
- parameters[0] = object;
- if(object.getClass().isArray()){
- Object[] objs = new Object[Array.getLength(object)];
- for (int i = 0,len = objs.length; i < len; i++) {
- Array.set(objs, i, Array.get(object, i));
- }
- parameters[0] = objs;
- }
- return AbstractReflection.getInstance().callMethod(object, method, parameters);
- } catch (Throwable t) {
- ExpressionError.error(t.getMessage(), getSpan(), t);
- // fall through
- return null;
- }
- }else {
- // didn't find the method on the object, try to find a field pointing to a lambda
- Object field = AbstractReflection.getInstance().getField(object, getMethod().getName().getText());
- if (field == null){
- ExpressionError.error("在'" + object.getClass() + "'中找不到方法 " + getMethod().getName().getText() + "(" + StringUtils.join(JavaReflection.getStringTypes(argumentValues),",") + ")",
- getSpan());
- }
- Object function = AbstractReflection.getInstance().getFieldValue(object, field);
- method = AbstractReflection.getInstance().getMethod(function, null, argumentValues);
- if (method == null){
- ExpressionError.error("在'" + object.getClass() + "'中找不到方法 " + getMethod().getName().getText() + "("+ StringUtils.join(JavaReflection.getStringTypes(argumentValues),",") +")",
- getSpan());
- }
- try {
- return AbstractReflection.getInstance().callMethod(function, method, argumentValues);
- } catch (Throwable t) {
- ExpressionError.error(t.getMessage(), getSpan(), t);
- return null; // never reached
- }
- }
- } finally {
- clearCachedArguments();
- }
- }
- public void setCachedMethodStatic(boolean cachedMethodStatic) {
- this.cachedMethodStatic = cachedMethodStatic;
- }
- public boolean isCachedMethodStatic() {
- return cachedMethodStatic;
- }
- }
- /** Represents a map literal of the form <code>{ key: value, key2: value, ... }</code> which can be nested. */
- public static class MapLiteral extends Expression {
- private final List<Token> keys;
- private final List<Expression> values;
- public MapLiteral (Span span, List<Token> keys, List<Expression> values) {
- super(span);
- this.keys = keys;
- this.values = values;
- }
- public List<Token> getKeys () {
- return keys;
- }
- public List<Expression> getValues () {
- return values;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- Map<String, Object> map = new HashMap<>();
- for (int i = 0, n = keys.size(); i < n; i++) {
- Object value = values.get(i).evaluate(template, context);
- Token tokenKey = keys.get(i);
- String key = tokenKey.getSpan().getText();
- if(tokenKey.getType() == TokenType.StringLiteral){
- key = (String) new StringLiteral(tokenKey.getSpan()).evaluate(template, context);
- }else if(key != null && key.startsWith("$")){
- Object objKey = context.get(key.substring(1));
- if(objKey != null){
- key = objKey.toString();
- }else{
- key = null;
- }
- }
- map.put(key, value);
- }
- return map;
- }
- }
- /** Represents a list literal of the form <code>[ value, value2, value3, ...]</code> which can be nested. */
- public static class ListLiteral extends Expression {
- public final List<Expression> values;
- public ListLiteral (Span span, List<Expression> values) {
- super(span);
- this.values = values;
- }
- public List<Expression> getValues () {
- return values;
- }
- @Override
- public Object evaluate (ExpressionTemplate template, ExpressionTemplateContext context) throws IOException {
- List<Object> list = new ArrayList<>();
- for (int i = 0, n = values.size(); i < n; i++) {
- list.add(values.get(i).evaluate(template, context));
- }
- return list;
- }
- }
- }
|