Boost.Spirit is a set of C++ libraries for parsing and output generation implemented as Domain Specific Embedded Languages (DSEL) using Expression templates and Template Meta-Programming. The Spirit libraries enable a target grammar to be written exclusively in C++. Inline grammar specifications can mix freely with other C++ code and, thanks to the generative power of C++ templates, are immediately executable.
60
votes
0answers
2k views
+50
more spirit madness - parser-types (rules vs int_parser<>) and meta-programming techniques
The question is in bold at the bottom, the problem is also summarized by the distillation code fragment towards the end.
I am trying to unify my type system (the type system does to and from from ...
31
votes
13answers
20k views
CSV parser in C++
All I need is a good CSV file parser for C++. At this point it can really just be a comma-delimited parser (ie don't worry about escaping new lines and commas). The main need is a line-by-line ...
22
votes
5answers
4k views
What are the disadvantages of the Spirit parser-generator framework from boost.org?
In several questions I've seen recommendations for the Spirit parser-generator framework from boost.org, but then in the comments there is grumbling from people using Spirit who are not happy. Will ...
12
votes
3answers
454 views
Can Boost.Spirit be theoretically/practically used to parse C++(0x) (or any other language)?
Is it theoretically up to the task?
Can it be done practically and would the resulting parser be used with sufficient performance and output (say, LLVM IR or GCC's gimple) to be integrated in a ...
9
votes
1answer
406 views
Minimizing boost::spirit compile times
Any ideas for reducing boost::spirit compile time?
I have just ported a flex parser to boost::spirit. The EBNF has about 25 rules.
The result runs well and the runtime performance is fine.
The ...
8
votes
3answers
203 views
How are textual data files parsed in modern C++?
I am (too) often confronted with the task of having to parse textual data files -- the kind of textual structured data representation you used before "everyone" used XML -- that are some kind of ...
8
votes
1answer
285 views
Dynamically combine Boost.Spirit.Qi rules at runtime (arbitrary number of alternatives)
I was wondering whether there is a way in Boost.Spirit.Qi to dynamically combine an arbitrary number of rules at runtime. The inner workings of Boost.Spirit are still a bit of a mystery to me, but ...
8
votes
1answer
2k views
boost spirit semantic action parameters
in this article about boost spirit semantic actions it is mentioned that
There are actually 2 more arguments
being passed: the parser context and a
reference to a boolean ‘hit’
parameter. ...
8
votes
1answer
344 views
storing line numbers of expressions with boost.spirit 2
I am planning on doing a script transformation utility (for extended diagnostic information) using Boost.Spirit 2.
While there is support for line information etc. for parsing errors, how i can ...
7
votes
1answer
533 views
Understanding and using the Boost Phoenix Library with a focus on lazy evaluation
I just found out about the Boost Phoenix library (hidden in the Spirit project) and as a fan of the functional-programming style (but still an amateur; some small experience with haskell and scheme) i ...
7
votes
1answer
211 views
Operator precedence in boost::spirit?
I made some tests using the spirit mini_c sample. Unfortunately it does not keep the operator precedence as expected:
int main()
{
return 3 > 10 || 3 > 1;
}
evaluates to 0.
return (3 ...
7
votes
3answers
3k views
Simple expression parser example using Boost::Spirit?
Is anyone aware of an online resource where I can find out how to write a simple expression parser using Boost::Spirit?.
I do not necessarily need to evaluate the expression, but I need to parse it ...
7
votes
1answer
282 views
boost::spirit composing grammars from grammars
I have figured out how to use spirit -- i.e., I have written a moderately complex grammar. I always take the approach of growing a program -- one subsystem at a time. I've written the data structures ...
6
votes
2answers
544 views
C++/Boost: Writing a more powerful sscanf replacement
I want to write a function in C++ to replace C's sscanf that assigns the matches to iterator.
Basically, I want something like:
string s = "0.5 6 hello";
std::vector<boost::any> any_vector;
...
6
votes
3answers
2k views
Getting started guide for Boost.Spirit?
I've been looking recently at Boost.Spirit (the version included in Boost 1.39), however I'm quite confused from the docs alone. What I'm looking for is for an example of a toy language implemented ...
6
votes
2answers
2k views
Can Boost Spirit be used to parse byte stream data?
Can Spirit (part of Boost C++ library) be used to parse out binary data coming from a stream? For example, can it be used to parse data coming from a socket into structures, bytes, and individual bit ...
5
votes
1answer
145 views
Boost Spirit: “Semantic actions are evil”?
Reading and watching this presentation:
http://boost-spirit.com/home/2011/06/12/ast-construction-with-the-universal-tree/
I've discovered this statement -- basically we are suggested not to use ...
5
votes
1answer
416 views
boost::spirit example doesn't compile
I was following the tutorials in the Spirit documentation, and I'm stuck here:
#include <iostream>
#include <string>
#include <boost/spirit/include/qi.hpp>
template <typename ...
5
votes
1answer
372 views
Boost spirit is too greedy
I'm in between a deep admiration about boost::spirit and eternal frustration not to understand it ;)
I have problems with strings that are too greedy and therefore it doesn't match. Below a minimal ...
5
votes
1answer
153 views
Parsing a pair of ints with boost spirit
I have the following code:
std::string test("1.1");
std::pair<int, int> d;
bool r = qi::phrase_parse(
test.begin(),
test.end(),
qi::int_ >> '.' >> qi::int_,
...
5
votes
1answer
2k views
Parsing a grammar with Boost Spirit
I am trying to parse a C-function like tree expressions like the following (using the Spirit Parser Framework):
F( A() , B( GREAT( SOME , NOT ) ) , C( YES ) )
For this I am trying to use the three ...
5
votes
1answer
360 views
boost:spirit reuse rules
Hej, another question:
I have written a number of very similar parsers which use a number of common rules. Can I store these rule<> objects in a place where they can be acessed by multiple ...
4
votes
3answers
266 views
How would I perform this text pattern matching
Migrated from [Spirit-general] list
Good morning,
I'm trying to parse a relatively simple pattern across 4 std::strings,
extracting whatever the part which matches the pattern into a separate
...
4
votes
4answers
139 views
Boost Spirit Roman Numeral Parser Example
Trying to learn boost spirit and the example given in the docs have me a little confused.
Referring to this code:
http://www.boost.org/doc/libs/1_46_1/libs/spirit/example/qi/roman.cpp
Particularly ...
4
votes
1answer
205 views
Why does boost::spirit::qi::parse() not set this boost::variant's value?
When trying to parse text into a boost::variant, the variant's value does not get changed.
The parsers by themselves appear to work fine, so my assumption is that I'm doing something wrong with the ...
4
votes
1answer
321 views
Parsing python grammar with boost::spirit - problem
I am trying to write a python parser with boost::spirit library. Here is the code:
template <typename Iterator>
class Parser : public qi::grammar<Iterator, space_type>
{
public:
...
4
votes
1answer
309 views
Confusion between boost::bind and boost::phoenix placeholders
The boost::spirit documentation has this important warning
There are different ways to write
semantic actions for Spirit.Qi: using
plain functions, Boost.Bind,
Boost.Lambda, or Phoenix. The ...
4
votes
1answer
170 views
boost::spirit::qi and out-of-sequence variables
I'm writing a lexigraphical analyser. It takes an English string, and converts it into a set of latitude/longitude co-ordinates. It's a bit like Google Earth.
Anyway, I've written my symbol tables ...
4
votes
1answer
425 views
Boost.Spirit bug when mixing “alternates” with “optionals”?
I've only been working with Boost.Spirit (from Boost 1.44) for three days, trying to parse raw e-mail messages by way of the exact grammar in RFC2822. I thought I was starting to understand it and get ...
4
votes
1answer
610 views
build error with boost spirit grammar (boost 1.43 and g++ 4.4.1) part II
I'm having issues getting a small spirit/qi grammar to compile. i am using boost 1.43 and g++ 4.4.1.
the input grammar header:
the build error seems to be pointing to the definition of the ...
4
votes
1answer
1k views
How do I parse end-of-line with boost::spirit::qi?
Shouldn't a simple eol do the trick?
#include <algorithm>
#include <boost/spirit/include/qi.hpp>
#include <iostream>
#include <string>
using boost::spirit::ascii::space;
using ...
4
votes
1answer
1k views
Character column parsing in Boost::Spirit
I'm working on a Boost Spirit 2.0 based parser for a small subset of Fortran 77. The issue I'm having is that Fortran 77 is column oriented, and I have been unable to find anything in Spirit that can ...
4
votes
2answers
2k views
How to increase the gcc executable stack size?
I have large Boost/Spirit metaprogram that is blowing gcc's stack when I try to compile it.
How can I increase gcc's stack size, so I can compile this program?
Note: There's no infinite recursion ...
4
votes
2answers
515 views
Boost Spirit crash when used in DLLs
I am experiencing a crash while using the Boost.Spirit and Boost.Thread
libraries in my application. This only happens if I have used the Spirit
parser during the lifetime of the process from the ...
3
votes
2answers
119 views
boost spirit dynamic lexer with column numbers?
I'm having trouble making a dynamic boost spirit lexer that tracks the column number. Is this possible? Can anyone provide a simple example?
Thanks!
3
votes
1answer
43 views
Declared variable used in initializer expression - meaning?
Taken from this answer here:
static const qi::rule<std::string::iterator, ast_t()> node =
'{' >> *node >> '}' | +~qi::char_("{}");
Note that a constant var of name node is ...
3
votes
1answer
73 views
Avoiding attribute copies with karma generators
I'm using karma to generate representations of large structs, but the structs are being copied during generation. I don't think they need to be, so was wondering how to avoid it.
The quick example ...
3
votes
2answers
212 views
Boost Spirit: Error C2664, Cannot convert 'const boost::phoenix::actor<Eval>' to 'char'
I'm new to Boost Spirit and trying to write JSON parser using Boost Spirit 2.4.2 (Boost 1.46.1). For the code below, I get the error when trying to execute semantic action/attribute:
Error 1 ...
3
votes
2answers
132 views
how to parse and verify an ordered list of integers using qi
I'm parsing a text file, possibly several GB in size, consisting of lines as follows:
11 0.1
14 0.78
532 -3.5
Basically, one int and one float per line. The ints should be ordered and non-negative. ...
3
votes
1answer
113 views
Boost.Spirit.Qi: How to report parser warnings?
How to report parser warnings?
Similar to reporting error, but the parser must not stop.
Only log warning message and the subexpression caused the warning.
Example input:
select * from table ...
3
votes
3answers
211 views
How to build grammar of default value with boost spirit?
I am analyzing some scientific text whose format is something like
Keyword
{ 1.0 22.2 59.6 'cm' 'yes' }
I am new to spirit, and after studying the document, I can use spirit to solve the ...
3
votes
1answer
123 views
boost::spirit stream_parser consumes too much?
I'm having some trouble integrating a class with iostream parsing
support into a spirit parser. The example below (modified from the Spirit examples) demonstrates the
problem. If I attempt to parse ...
3
votes
1answer
258 views
Using a pointer to a parser in boost::spirit
Basically I'm doing an expression parser. As I'm in need of as good as possible performance, and according to the documentation construction of a grammar can be rather slow, I'd like to reuse the ...
3
votes
1answer
440 views
How to use Boost::Spirit::Lex to lex a file without reading the whole file into memory first?
I'm looking at writing a lexer using boost::spirit::lex, but all the examples I can find seem to assume that you've read the entire file into RAM first. I'd like to write a lexer that doesn't require ...
3
votes
1answer
228 views
Boost::Spirit::Qi autorules — avoiding repeated copying of AST data structures
I've been using Qi and Karma to do some processing on several small languages. Most of the grammars are pretty small (20-40 rules). I've been able to use autorules almost exclusively, so my parse ...
3
votes
3answers
668 views
How to put results into a STL map by using boost-spirit?
#include <QtCore/QCoreApplication>
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix.hpp>
#include <iostream>
#include <string>
...
3
votes
1answer
266 views
Copy or reference semantics of boost::spirit's rule<>?
I am trying to write a shell language parser in Boost.Spirit. However, I am unclear about some basic issues regarding semantics of rules.
Looking at the documentation, there are members r.alias() and ...
3
votes
1answer
545 views
build error with boost spirit grammar (boost 1.43 and g++ 4.4.1) part III
Ok
i am trying to build a grammar and currently it looks like this:
#ifndef _INPUTGRAMMAR_H
#define _INPUTGRAMMAR_H
#include <boost/config/warning_disable.hpp>
#include ...
3
votes
2answers
496 views
C++ boost::lambda::ret equivalent in phoenix
Boost lambda allows to overwrite deduced return type using ret<T> template.
I have tried searching for equivalent in phoenix but could not find one.
Is there an equivalent in phoenix? I know ...
3
votes
1answer
956 views
Parsing string, with Boost Spirit 2, to fill data in user defined struct
I'm using Boost.Spirit which was distributed with Boost-1.42.0 with VS2005. My problem is like this.
I've this string which was delimted with commas. The first 3 fields of it are strings and rest are ...