What programs are there for parser generation? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T17:47:08Zhttp://stackoverflow.com/feeds/question/657472http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/657472/what-programs-are-there-for-parser-generation0What programs are there for parser generation?Alex2009-03-18T09:08:55Z2009-03-18T12:48:53Z
<p>I recently took a class at school where we had to learn Scheme to build a parser for a simple made up scheme-like language. As the semester went on, we added to our parser to make it more and more interesting.</p>
<p>Since then, on my own time, I've started writing my own parser that's quite a bit neater than what I did in class, but it parses my C++ code, gathers a list of all the data structures and public members, and generates a recursive descent parser for it. For example, if I have the the following</p>
<pre><code>class Bar
{
public:
int a;
}
class Foo
{
public:
Bar* myBar;
int x;
}
</code></pre>
<p>and I run my parser generator on it, it spits out a new class simply called Parser that I can use like this to read from a file:</p>
<pre><code>Parser p;
Foo* f = p.parseFoo("example.txt");
</code></pre>
<p>where example.txt would be something like this:</p>
<pre><code>Foo
{
myBar
{
a 5
}
x 10
}
</code></pre>
<p>(This is just a simple example, there are some other neat things too like recognizing when it should be push_back-ing onto a vector, and being able to assign function callbacks)</p>
<p>This seems like the type of thing that other (probably smarter) people ought to have done before me. I did some quick Google searches to see what was out there, but there's a lot of stuff to sift though. So my question is this: are there tools out there that do what my parser generator does right now? Is this project worth continuing* or are there better tools out there already?</p>
<p>*of course it's always worth continuing as a learning experience. Rather, I mean from the point of view as a user who would want to read data structures to and from text. </p>
http://stackoverflow.com/questions/657472/what-programs-are-there-for-parser-generation/657479#6574792Answer by Can Berk Güder for What programs are there for parser generation?Can Berk Güder2009-03-18T09:11:34Z2009-03-18T09:11:34Z<p>lex and yacc (or rather, <a href="http://flex.sourceforge.net/" rel="nofollow">flex</a> and <a href="http://www.gnu.org/software/bison/" rel="nofollow">bison</a>) are powerful tools that will help you generate parsers for regular languages with ease.</p>
http://stackoverflow.com/questions/657472/what-programs-are-there-for-parser-generation/657512#6575122Answer by Benoît for What programs are there for parser generation?Benoît2009-03-18T09:21:06Z2009-03-18T09:21:06Z<p>Boost.Spirit is <em>very</em> impressive and useful.</p>
<p>Documentation on this can be found <a href="http://www.boost.org/doc/libs/1%5F38%5F0/libs/spirit/classic/index.html" rel="nofollow">here</a></p>
<p>But be aware that parsing C++ is <strong>really not</strong> easy.</p>
http://stackoverflow.com/questions/657472/what-programs-are-there-for-parser-generation/657513#6575130Answer by bb for What programs are there for parser generation?bb2009-03-18T09:21:42Z2009-03-18T09:21:42Z<p>lex/yacc or flex/bison.<br />
or Boost.Spirit (<a href="http://spirit.sourceforge.net/" rel="nofollow">http://spirit.sourceforge.net/</a>).</p>
http://stackoverflow.com/questions/657472/what-programs-are-there-for-parser-generation/658132#6581321Answer by Harald Scheirich for What programs are there for parser generation?Harald Scheirich2009-03-18T12:48:53Z2009-03-18T12:48:53Z<p>Qt has a free tool out there, only a little bit of documentation but it does not have a lot of overhead. I have used it to create a parser for a full blown DSL. <a href="http://labs.trolltech.com/page/Projects/Compilers/QLALR" rel="nofollow">QLALR</a></p>