up vote 3 down vote favorite
1
share [g+] share [fb]

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 options. Doesn't Boost have its own library for program options?

I am wondering, does the Boost committee review all the library notes for common themes and style? It seems the doc for each library have their own flavor to them.

Small gripe for an otherwise amazing piece of software, I just found it curious.

link|improve this question

50% accept rate
feedback

5 Answers

You're right, not all boost libraries are particularly boost-like. Spirit is a very good example of this. Part of the reason is that when it was accepted, other boost libraries were not yet accepted/sufficiently mature for Spirit to use them. (That's why there are something like 3 Boost libraries that define their own (incompatible) placeholder values _1, _2 and so on).

In most of these cases, I believe they're gradually working on getting these oddities merged back together. But afaik, Spirit was added because it was such a big and impressive thing, that it's "unboostness" was forgiven. ;)

link|improve this answer
2  
And it is forgiven indeed :) – ApplePieIsGood Dec 19 '08 at 1:30
feedback

Simply, Spirit existed before the Boost.Program-Options library. Now, I always use Boost.Program-Options instead of hand-rolling my own using Spirit.

link|improve this answer
feedback

Spirit in Boost may one day be Boost in spirit :-)

link|improve this answer
feedback

As Joel said, we didn't have Program-Options when Spirit was born. Hartmut Kaiser and I (both Spirit developers) use Program-Options at work, instead of rolling out our own Spirit parser. Program-Options does a lot more than parsing, and, at least for our needs, the performance of our command line parsing isn't important. For performance critical parsing, I'd definitely use Spirit.

link|improve this answer
feedback

There's no such thing as a Boost style committee. ISO's WG21 will spend a bit more time on common style, but even they managed to forget std::ifstream::ifstream((std::string const& filename)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.