Tagged Questions

3
votes
2answers
649 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 …
4
votes
10answers
1k 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 …
3
votes
4answers
579 views

Is Boost guilty of being un-Boost-like?

I was just reading the intro to the Boost::Spirit LL Parser framework. The preface suggests that the author and creator likes to use such parsing technology to read in program opti …
2
votes
2answers
343 views

boost::spirit 2.0 incomplete docs?

I've just completed the boost spirit 2.0 tutorial: http://www.boost.org/doc/libs/1_39_0/libs/spirit/doc/html/index.html Only to find out that the rest of the promised documentation …
2
votes
3answers
75 views

Boost spirit and forward declarations issues

Could someone please give me some advice/ideas about how to deal with the situations when it's needed to have a look at further declarations to be able to make correct semantic act …
1
vote
1answer
122 views

boost spirit 2.x: how to deal with keywords and identifiers?

good day. i've been using boost spirit classic in the past and now i'm trying to stick to the newer one, boost spirit 2.x. could someone be so kind to point me in how to deal with …
1
vote
2answers
103 views

boost::spirit and generating different nodes

greetings. i've been interesting in how to force boost::spirit to produce nodes of different classes when parsing the grammar and generating AST. say, i want to have different nod …
2
votes
2answers
269 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 lan …
1
vote
2answers
56 views

How can i compile boost::spirit for unsigned char type?

boost::spirit asserts at boost::spirit::char_class::ascii::isalnum() when passing ascci characters > 127. I changed all my private variables from std::string to a typedef …
9
votes
4answers
874 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 ar …
0
votes
1answer
84 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 …
0
votes
0answers
66 views

How do you use a variable stored in a boost spirit closure as input to a boost spirit loop parser?

I would like to use a parsed value as the input to a loop parser. The grammar defines a header that specifies the (variable) size of the following string. For example, say the f …
0
votes
2answers
63 views

Compiliation errors on boost files

I'm getting a lot of errors compiling code using the boost libraries, mainly when I'm using Spirit namespace. The errors are syntax errors on boost files like: boost/spirit/hom …
0
votes
2answers
183 views

BUG on boost spirit?

I'm trying to migrate my code from VSC++ 6 to VSC++ 2008 express edition and from Intel compiler to Microsoft compiler. Everything were easy to migrate except that I'm receiving th …
4
votes
2answers
340 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 i …

1 2 next
15 30 50 per page