Spirit Parser Framework
The Spirit Parser Framework is an object oriented recursive descent parser generator framework implemented using template metaprogramming techniques. Expression templates allow users to approximate the syntax of extended Backus–Naur form completely in C++. Parser objects are composed through operator overloading and the result is a backtracking LL parser that is capable of parsing rather ambiguous grammars.
Spirit can be used for both lexing and parsing, together or separately.
This framework is part of the Boost libraries.
Operators
Because of limitations of the C++ language, the syntax of Spirit has been designed around the operator precedences of C++, while bearing resemblance to both EBNF and regular expressions.syntax | explanation |
x >> y | Match x followed by y. |
x > y | After matching x, expect y. |
*x | Match x repeated zero or more times. This represents the Kleene star; C++ lacks an unary postfix operator *. |
x | y | Match x. If x does not match, try to match y. |
+x | Match a series of one or more occurrences of x. |
-x | Match x zero or one time. |
x & y | Match x and y. |
x - y | Match x but not y. |
x ^ y | Match x, or y, or both, in any order. |
x || y | Match x, or y, or x followed by y. |
x | Execute the function/functor returned by function_expression, if x matched. |
| Match x |
x % y | Match one or more occurrences of x, separated by occurrences of y. |
~x | Match anything but x |
Example
This example shows how to use an inline parser expression with a semantic action.- include
- include
- include
- include