use of org.snt.inmemantlr.exceptions.CompilationException in project inmemantlr by julianthome.
the class TestSimpleMixed method testInterpreter.
@Test
public void testInterpreter() throws IOException {
try (InputStream sgrammar = getClass().getClassLoader().getResourceAsStream("inmemantlr/SimpleMixed.g4")) {
sgrammarcontent = FileUtils.getStringFromStream(sgrammar);
}
GenericParser gp = new GenericParser(sgrammarcontent);
DefaultTreeListener t = new DefaultTreeListener();
List cp = new Vector<String>();
final File f = new File(getClass().getProtectionDomain().getCodeSource().getLocation().getPath());
LOGGER.debug(f.toString());
// gp.setClassPath(cp);
gp.setListener(t);
boolean compile;
try {
gp.compile();
compile = true;
} catch (CompilationException e) {
compile = false;
}
Assertions.assertTrue(compile);
// parsing
try {
ParseTree parseTree;
gp.parse("jan 1999 12");
parseTree = t.getParseTree();
Assertions.assertEquals(parseTree.getNodes().size(), 6);
} catch (IllegalWorkflowException e) {
LOGGER.error(e.getMessage(), e);
} catch (ParsingException e) {
LOGGER.error(e.getMessage());
}
}
use of org.snt.inmemantlr.exceptions.CompilationException in project inmemantlr by julianthome.
the class TestTreeGeneration method testGeneration.
@Test
public void testGeneration() {
Assertions.assertNotNull(grammar);
GenericParser gp = null;
try {
gp = new GenericParser(grammar);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
Assertions.assertNotNull(gp);
boolean compile;
try {
gp.compile();
compile = true;
} catch (CompilationException e) {
compile = false;
}
Assertions.assertTrue(compile);
String s = FileUtils.loadFileContent(sfile.getAbsolutePath());
Assertions.assertTrue(s != null && !s.isEmpty());
DefaultTreeListener dlist = new DefaultTreeListener();
gp.setListener(dlist);
try {
gp.parse(s);
} catch (IllegalWorkflowException e) {
Assertions.assertTrue(false);
} catch (ParsingException e) {
Assertions.assertTrue(false);
}
ParseTree parseTree = dlist.getParseTree();
LOGGER.debug(parseTree.toDot());
// create copy
ParseTree cast = new ParseTree(parseTree);
Assertions.assertTrue(parseTree != null);
Assertions.assertEquals(parseTree.getNodes().size(), cast.getNodes().size());
Set<ParseTree> parseTrees = parseTree.getSubtrees(n -> "expression".equals(n.getRule()));
Assertions.assertTrue(parseTrees.size() == 5);
for (ParseTree a : parseTrees) {
Assertions.assertTrue(parseTree.hasSubtree(a));
Assertions.assertFalse(parseTree.getSubtree(a) == null);
}
int sizeBefore = parseTree.getNodes().size();
ParseTree first = parseTrees.iterator().next();
parseTree.removeSubtree(first);
Assertions.assertTrue(parseTree.getNodes().size() + first.getNodes().size() == sizeBefore);
ParseTree repl = new ParseTree("replacement", "replacement");
cast.replaceSubtree(first, repl);
Assertions.assertTrue(cast.getNodes().size() == parseTree.getNodes().size() + 1);
Assertions.assertTrue(cast.getDominatingSubtrees(n -> "classBody".equals(n.getRule())).size() == 1);
Assertions.assertTrue(cast.toDot() != null && !cast.toDot().isEmpty());
ParseTreeNode root = cast.getRoot();
Assertions.assertTrue(root.hasChildren());
Assertions.assertFalse(root.hasParent());
for (ParseTreeNode n : cast.getNodes()) {
Assertions.assertTrue(n.getLabel() != null);
Assertions.assertTrue(n.getRule() != null);
for (int i = 0; i < n.getChildren().size(); i++) {
if (i == 0)
Assertions.assertTrue(n.getChild(i).equals(n.getFirstChild()));
if (i == n.getChildren().size() - 1)
Assertions.assertTrue(n.getChild(i).equals(n.getLastChild()));
}
}
for (ParseTreeNode c : cast.getLeafs()) {
Assertions.assertTrue(c.hasParent());
Assertions.assertFalse(c.hasChildren());
Assertions.assertTrue(c.isLeaf());
Assertions.assertFalse(c.equals(null));
Assertions.assertFalse(c.equals(null));
Assertions.assertNull(c.getLastChild());
Assertions.assertNull(c.getFirstChild());
}
ParseTreeNode croot = cast.getRoot();
croot.setParent(parseTree.getRoot());
Assertions.assertTrue(croot.getParent().equals(parseTree.getRoot()));
}
use of org.snt.inmemantlr.exceptions.CompilationException in project inmemantlr by julianthome.
the class TestArtifactSerialization method testBroken.
@Test
public void testBroken() throws IOException {
try (InputStream sgrammar = getClass().getClassLoader().getResourceAsStream("inmemantlr/Simple.g4")) {
sgrammarcontent = FileUtils.getStringFromStream(sgrammar);
}
ToolCustomizer tc = new ToolCustomizer() {
@Override
public void customize(Tool t) {
t.genPackage = "com.github.inmemantlr.parser";
}
};
GenericParser gp = new GenericParser(tc, sgrammarcontent);
DefaultTreeListener t = new DefaultTreeListener();
gp.setListener(t);
boolean compile;
try {
gp.compile();
compile = true;
} catch (CompilationException e) {
compile = false;
}
gp.writeAntlrAritfactsTo("/tmp/test/out");
}
use of org.snt.inmemantlr.exceptions.CompilationException in project inmemantlr by julianthome.
the class TestBroken method testBroken.
@Test
public void testBroken() throws IOException {
try (InputStream sgrammar = getClass().getClassLoader().getResourceAsStream("inmemantlr/Broken.g4")) {
sgrammarcontent = FileUtils.getStringFromStream(sgrammar);
}
GenericParser gp = new GenericParser(sgrammarcontent);
DefaultTreeListener t = new DefaultTreeListener();
gp.setListener(t);
boolean compile;
try {
gp.compile();
compile = true;
} catch (CompilationException e) {
compile = false;
}
Assertions.assertFalse(compile);
}
use of org.snt.inmemantlr.exceptions.CompilationException in project inmemantlr by julianthome.
the class Inmemantlr method main.
public static void main(String[] args) {
LOGGER.info("org.snt.inmemantlr.tool.Inmemantlr tool");
HelpFormatter hformatter = new HelpFormatter();
Options options = new Options();
// Binary arguments
options.addOption("h", "print this message");
Option grmr = Option.builder().longOpt("grmrfiles").hasArgs().desc("comma-separated list of ANTLR files").required(true).argName("grmrfiles").type(String.class).valueSeparator(',').build();
Option infiles = Option.builder().longOpt("infiles").hasArgs().desc("comma-separated list of files to parseFile").required(true).argName("infiles").type(String.class).valueSeparator(',').build();
Option utilfiles = Option.builder().longOpt("utilfiles").hasArgs().desc("comma-separated list of utility files to be added for " + "compilation").required(false).argName("utilfiles").type(String.class).valueSeparator(',').build();
Option odir = Option.builder().longOpt("outdir").desc("output directory in which the dot files will be " + "created").required(false).hasArg(true).argName("outdir").type(String.class).build();
options.addOption(infiles);
options.addOption(grmr);
options.addOption(utilfiles);
options.addOption(odir);
CommandLineParser parser = new DefaultParser();
CommandLine cmd = null;
try {
cmd = parser.parse(options, args);
if (cmd.hasOption('h')) {
hformatter.printHelp("java -jar inmemantlr.jar", options);
System.exit(0);
}
} catch (ParseException e) {
hformatter.printHelp("java -jar inmemantlr.jar", options);
LOGGER.error(e.getMessage());
System.exit(-1);
}
// input files
Set<File> ins = getFilesForOption(cmd, "infiles");
// grammar files
Set<File> gs = getFilesForOption(cmd, "grmrfiles");
// utility files
Set<File> uf = getFilesForOption(cmd, "utilfiles");
// output dir
Set<File> od = getFilesForOption(cmd, "outdir");
if (od.size() > 1) {
LOGGER.error("output directories must be less than or equal to 1");
System.exit(-1);
}
if (ins.size() <= 0) {
LOGGER.error("no input files were specified");
System.exit(-1);
}
if (gs.size() <= 0) {
LOGGER.error("no grammar files were specified");
System.exit(-1);
}
LOGGER.info("create generic parser");
GenericParser gp = null;
try {
gp = new GenericParser(gs.toArray(new File[gs.size()]));
} catch (FileNotFoundException e) {
LOGGER.error(e.getMessage());
System.exit(-1);
}
if (!uf.isEmpty()) {
try {
gp.addUtilityJavaFiles(uf.toArray(new String[uf.size()]));
} catch (FileNotFoundException e) {
LOGGER.error(e.getMessage());
System.exit(-1);
}
}
LOGGER.info("create and add parseFile tree listener");
DefaultTreeListener dt = new DefaultTreeListener();
gp.setListener(dt);
LOGGER.info("compile generic parser");
try {
gp.compile();
} catch (CompilationException e) {
LOGGER.error("cannot compile generic parser: {}", e.getMessage());
System.exit(-1);
}
String fpfx = "";
for (File of : od) {
if (!of.exists() || !of.isDirectory()) {
LOGGER.error("output directory does not exist or is not a " + "directory");
System.exit(-1);
}
fpfx = of.getAbsolutePath();
}
ParseTree parseTree;
for (File f : ins) {
try {
gp.parse(f);
} catch (IllegalWorkflowException | FileNotFoundException | ParsingException e) {
LOGGER.error(e.getMessage());
System.exit(-1);
}
parseTree = dt.getParseTree();
if (!fpfx.isEmpty()) {
String of = fpfx + "/" + FilenameUtils.removeExtension(f.getName()) + ".dot";
LOGGER.info("write file {}", of);
try {
FileUtils.writeStringToFile(new File(of), parseTree.toDot(), "UTF-8");
} catch (IOException e) {
LOGGER.error(e.getMessage());
System.exit(-1);
}
} else {
LOGGER.info("Tree for {} \n {}", f.getName(), parseTree.toDot());
}
}
System.exit(0);
}
Aggregations