Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am Vinod and am interested to use an ANTLR v3.3 for C parser generation in a Java project and generate the parsed tree in some viewable form. I got help to write grammar from this tutorial

ANTLR generates lexer and parser files for the grammar but I don't exactly get how these generated files are viewed. e.g. in few examples from above article, author has generated output using ASTFrame. I found only an interpreter option in ANTLRWorks which shows some tree but it gives error if predicates are more.

Any good reference book or article would be really helpful.

share|improve this question
user644489=Vinod....Which cipher did u use:) – Suraj Chandran Mar 4 '11 at 11:01
1  
I haven't gotten around to The Definitive ANTLR book yet, but it looks good. Language Implementation Patterns is an excellent introduction to using ANTRL for generating many kinds of languages, progressively getting more complex and more advanced along the way. Highly recommended. – sarnold Mar 4 '11 at 11:07
@sarnold, while I agree Language Implementation Patterns is a good book, I wouldn't call it an introduction to ANTLR. Sure, a few things about ANTLR are explained, but the focus is on DSL implementation. – Bart Kiers Mar 4 '11 at 12:20
@Suraj.. happy! – Vinod Makhaani Mar 5 '11 at 4:51
@Bart thanks for the reference. – Vinod Makhaani Mar 5 '11 at 4:53
show 1 more comment

2 Answers

up vote 1 down vote accepted

There's only one book you need:


enter image description here

The Definitive ANTLR Reference: Building Domain-Specific Languages.


After that, many more excellent books exist (w.r.t. DSL creation), but this is the book for getting started with ANTLR.

share|improve this answer

As you saw, ANTLRWorks will print both parse trees and the AST but won't work with predicates and the C target. While not a nice picture like ANTLRWorks, this will print a text version of the AST when you pass it the root of your tree.

void printNodes(pANTLR3_BASE_TREE thisNode, int level)
{
  ANTLR3_UINT32 numChildren = thisNode->getChildCount(thisNode);
  //printf("Child count %d\n",numChildren);

  pANTLR3_BASE_TREE loopNode;
  for(int i=0;i<numChildren;i++)
  {
    //Need to cast since these can hold anything
    loopNode = (pANTLR3_BASE_TREE)thisNode->getChild(thisNode,i);

    //Print this node
    pANTLR3_STRING thisText = loopNode->getText(loopNode);
    for(int j=0;j<level;j++)
      printf(" ");
    printf("%s\n",thisText->chars);

    //If this node has a child
    if(loopNode->getChildCount(loopNode) > 0)
      printNodes(loopNode, level + 2);
  }
}
share|improve this answer
I'll give it a try. Thanks for the suggestion. – Vinod Makhaani Mar 5 '11 at 5:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.