Sample v4 generated visitor

Skip to end of sidebar
Go to start of sidebar
Skip to end of metadata
Go to start of metadata

I have a prototype working for the automatic parse tree construction and automatic visitor generation. Imagine we have the following simple grammar:

The usual startup code looks like:

To make it create a parse tree, all we have to do is set a flag in the parser and then ask for the rule context object. The rule context object is actually a node in the parse tree, implementing interface ParseTree:

So, given the following input:

we would see something like the following:

It prints s as the root node and ifstat as the 1st child and then all tokens as children of ifstat node.

Ok, so what else can we do with the parse tree other than print it out? We want to listen in on the various enter and exit rule events, as well as potentially listening in on token visitation events. ANTLR generates 2 more files than it does now in v3: a listener and a blank listener that implements that interface:

The blank implementation is something convenient to override:

Note that if you want to track what happens as the visitor enters every single rule, you can override method enterEveryRule instead of putting code in every single enterRule variation. To visit the tree, just create a ParseTreeVisitor, pass in a listener, and tell the visitor to visit:

This seems like a pretty simple but powerful mechanism. It also is well within the comfort zone of the average programmer because they are providing callbacks instead of embedding actions within a grammar. The other benefit of this is that programmers can call the visitor multiple times without it reparsing the input.

It seems like a lot of extra code to generate in these extra 2 files, but I guess it can be totally ignored if you don't want it. It's great to have all of this infrastructure generated automatically.

Labels: