com.gs.dmn.feel.analysis.FEELAnalyzerImpl Maven / Gradle / Ivy
/*
* Copyright 2016 Goldman Sachs.
*
* 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 com.gs.dmn.feel.analysis;
import com.gs.dmn.context.DMNContext;
import com.gs.dmn.el.analysis.semantics.type.Type;
import com.gs.dmn.feel.analysis.syntax.ErrorListener;
import com.gs.dmn.feel.analysis.syntax.antlrv4.FEELLexer;
import com.gs.dmn.feel.analysis.syntax.antlrv4.FEELParser;
import com.gs.dmn.feel.analysis.syntax.ast.ASTFactory;
import com.gs.dmn.feel.analysis.syntax.ast.expression.Expression;
import com.gs.dmn.feel.analysis.syntax.ast.test.UnaryTests;
import com.gs.dmn.transformation.basic.BasicDMNToNativeTransformer;
import org.antlr.v4.runtime.CharStream;
import org.antlr.v4.runtime.CharStreams;
import org.antlr.v4.runtime.CommonTokenStream;
import java.util.LinkedHashMap;
import java.util.Map;
public class FEELAnalyzerImpl extends AbstractFEELAnalyzer {
private final Map> expressionMap = new LinkedHashMap<>();
private final Map> testsMap = new LinkedHashMap<>();
public FEELAnalyzerImpl(BasicDMNToNativeTransformer dmnTransformer) {
super(dmnTransformer);
}
@Override
public UnaryTests parseUnaryTests(String text) {
if (testsMap.get(text) == null) {
FEELParser parser = makeParser(text);
UnaryTests ast = parser.unaryTestsRoot().ast;
this.testsMap.put(text, ast);
}
return testsMap.get(text);
}
@Override
public Expression parseExpression(String text) {
if (expressionMap.get(text) == null) {
FEELParser parser = makeParser(text);
Expression ast = parser.expressionRoot().ast;
this.expressionMap.put(text, ast);
}
return expressionMap.get(text);
}
@Override
public Expression parseTextualExpressions(String text) {
if (expressionMap.get(text) == null) {
FEELParser parser = makeParser(text);
Expression ast = parser.textualExpressionsRoot().ast;
this.expressionMap.put(text, ast);
}
return expressionMap.get(text);
}
@Override
public Expression parseBoxedExpression(String text) {
if (expressionMap.get(text) == null) {
FEELParser parser = makeParser(text);
Expression ast = parser.boxedExpressionRoot().ast;
this.expressionMap.put(text, ast);
}
return expressionMap.get(text);
}
private FEELParser makeParser(String text) {
if (text == null) {
throw new IllegalArgumentException("Input tape cannot be null.");
}
CharStream cs = CharStreams.fromString(text);
FEELLexer lexer = new FEELLexer(cs);
CommonTokenStream tokens = new CommonTokenStream(lexer);
FEELParser feelParser = new FEELParser(tokens, new ASTFactory());
feelParser.removeErrorListeners();
feelParser.addErrorListener(new ErrorListener());
return feelParser;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy