Feature

The “Wei Parser Generator” (wpg) is an LL(k) parser generator, it has the following features:

Graphviz: http://www.graphviz.org/

For example, wpg will generate the following graph for the following grammar after left recursion removal.

Build

Wei Parser Generator supports Microsoft Visual C++ 2005 (express) compiler now. However, theoretically, any C++ standard compliant compiler can compile wpg without problems.

Wei Parser Generator (wpg) uses C++ (STL) and the boost library and Wei Common Library, so you need to install a C++ standard compliant compiler and the boost library and Wei Common Library.

boost: http://www.boost.org/
Wei Common Library: http://code.google.com/p/wei-common-library/

Grammar File Syntax Specification

The content of a grammar file can be devided into 3 parts:

Here is an example grammar for wpg:

Note: The line number at the left side is for convenience, and it doesn’t belong to the grammar.

Explain:

At the start of a grammar file, you have to use a left brace and a right brace to create the attribute block. You can pass parameters to wpg through this block. Each parameter occupies one line, and should be ended with a semicolon.

After the attribute block, you need to specify all terminal names this grammar may use. Note that there should be at least one empty line (at the line 6 of this example) between the left brace (which ends the attribute block) and the first terminal name. The terminal name block should be ended with a semicolon (at the line 13 of this example). The region between the line 7 and the line 13 of this example is its terminal name block.

After the terminal name block, you can specify each rule of this grammar. Note that there should be at least one empty line (at the line 14 of this example) between the semicolon (which ends the terminal name block) and the first rule, and each rule should be ended with a semicolon. If there are more than one alternatives in one rule, you should use a vertical bar (|) to distinguish them. You can use EBNF syntax in one rule, too.

The following are more examples for writing a rule:

“A” : “a” (“B” “B” (“d” “e”)* | “c”)* “a” ;

“B” : “e” | “f” ;

Execute

The executable file of “Wei Parser Generator” is “wpg.exe”. You can use the following command to parse a grammar file.

wpg.exe grammar_file

Unit Test

I write some unit testing files for wpg, and put them all into the “unit_test_grammar_analyser” directory. There are 2 shell scripts to automatically do the test:

The execution result:

How to build the generated files

After parsing, Wei Parser Generator will generate some source (.cpp) and header (.hpp) files. wpg will only use pure C++ (include STL) in these generated files without any additional libraries, so you only need to use a C++ standard compliant compiler to compile them.

Installation Wizard

Using NSIS with the “create.nsi” file in the “installwizard” directory, you can make an install wizard program conveniently.