I have looked at the following software tools:

ANTLR seems the most straight-forward, however its documentation is lacking. Ragel looks possible, too, but I do not see an easy way to convert BNF into its syntax.

What other tools are available that can take BNF input and generate a corresponding, Unicode-friendly, cross-platform, standalone, C++ parser?

Many thanks for all suggestions.

Edit: Changed Objective-C requirement to C++.

link|improve this question

You should also consider time performance while selecting the tool. – sand Jan 25 '10 at 4:24
You should look at: stackoverflow.com/questions/1961604/… – kyoryu Jan 25 '10 at 7:08
feedback

4 Answers

up vote 4 down vote accepted

Try boost.spirit 2.

The boost spirit user list is very active and answers are quick from the authors.

link|improve this answer
feedback

TDParseKit! (Most specifically, this page on Objective-C parser generation with BNF grammars)

link|improve this answer
1  
Conversion from BNF to the format required by a parser generator is generally a trivial task, even by hand. – Peter S. Housel Nov 3 '09 at 17:58
Fair enough. Peter, I'll give Ragel another look. – Dave Jarvis Nov 3 '09 at 18:47
Looks OS-specific; the tool should be cross-platform. – Dave Jarvis Dec 4 '09 at 1:39
feedback

Have you looked at QLALR? It is a creative Friday project from QtDF. I have not tried it personally, but the trolls seems to be pragmatic about their approach to problems, so I guess this is too.

link|improve this answer
Looks like it has a dependency on Qt. – Dave Jarvis Jan 25 '10 at 17:06
feedback

You can try GOLD Parser! It's a great tool for parsing and generating. With a simple UI, all what you need to do is to provide a valid grammar file and select your favored programming languages for your output code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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