vote up 4 vote down star
2

I'm looking for a tool that will be able to build a parser (in C#) if I give it a BNF grammar (eg. http://savage.net.au/SQL/sql-2003-2.bnf)

Does such a generator exist?

flag

54% accept rate

4 Answers

vote up 5 vote down check

Normally BNF grammars are too ambiguous. ANTLR will be probably good for what you are looking for.

link|flag
1  
It seems you are right. I just read this somewhere on the net: "If-then-else cannot be specified unambiguously in a context-free, priority/predicate-free grammar, such as EBNF" – ilitirit Sep 30 '08 at 15:40
vote up 3 vote down

You will have to tweak the BNF a bit, but TinyPG is a great tool.

link|flag
Nice find. Thanks. – ilitirit Oct 3 '08 at 12:25
Tiny PG is really nice, thanks for the tip. – Skurmedel Aug 14 at 14:37
vote up 3 vote down

The Visual Studio SDK actually ships with lexer and parser generation tools. These are called MPPG and MPLex and are part of the Managed Babel package. While the intention of bundling them with the SDK is to develop language extensions for Visual Studio, they are perfectly usable for creating general AST-emitting parsers.

MPLex and MPPG are based on GPLEX and GPPG (projects of Queensland University of Technology) and are used in a similar fashion to Lex and Yacc. The SDK also contains MSBuild actions for making the parser generation a part of the regular build process.

Here's a screencast showing MPLex and MPPG in action:
http://msdn.microsoft.com/en-us/vstudio/cc837016.aspx

link|flag
vote up -2 vote down

How can I use these BNF grammers with TinyPG? I'm new to BNF so approximately what sort of conversion will I have to do to convert BNF to EBNF?

Please see this question for more info.

link|flag

Your Answer

Get an OpenID
or

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