io.nosqlbench.virtdata.lang.parser.VirtDataDSL Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2022 nosqlbench
*
* 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 io.nosqlbench.virtdata.lang.parser;
import io.nosqlbench.virtdata.lang.ast.VirtDataAST;
import io.nosqlbench.virtdata.lang.ast.VirtDataFlow;
import io.nosqlbench.virtdata.lang.generated.VirtDataLexer;
import io.nosqlbench.virtdata.lang.generated.VirtDataParser;
import org.antlr.v4.runtime.CharStreams;
import org.antlr.v4.runtime.CodePointCharStream;
import org.antlr.v4.runtime.CommonTokenStream;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.util.List;
public class VirtDataDSL {
private final static Logger logger = LogManager.getLogger(VirtDataDSL.class);
public static VirtDataDSL.ParseResult parse(String input) {
try {
CodePointCharStream cstream = CharStreams.fromString(input);
VirtDataLexer lexer = new VirtDataLexer(cstream);
CommonTokenStream tokens = new CommonTokenStream(lexer);
VirtDataParser parser = new VirtDataParser(tokens);
VirtDataBuilder astListener = new VirtDataBuilder();
parser.addParseListener(astListener);
VirtDataParser.VirtdataFlowContext virtdataFlowContext = parser.virtdataFlow();
logger.trace(() -> "parse tree: " + virtdataFlowContext.toStringTree(parser));
if (astListener.hasErrors()) {
System.out.println(astListener.getErrorNodes());
}
VirtDataAST ast = astListener.getModel();
List flows = ast.getFlows();
if (flows.size() > 1) {
throw new RuntimeException("Only one flow expected here.");
}
if (astListener.hasErrors()) {
throw new RuntimeException("Error parsing input '" + input + "'");
}
return new ParseResult(flows.get(0));
} catch (Exception e) {
logger.warn("Error while parsing flow:" + e.getMessage());
return new ParseResult(e);
}
}
public static class ParseResult {
public Throwable throwable;
public VirtDataFlow flow;
public ParseResult(VirtDataFlow flow) {
this.flow = flow;
}
public ParseResult(Throwable throwable) {
this.throwable = throwable;
}
}
}