vote up 0 vote down star

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 following string is the input to some parser.

12\r\nTest Payload

The parser should extract the 12, convert it to an unsigned int and then read twelve characters. I can define a boost spirit grammar that compiles, but an assertion in the boost spirit code fails at runtime.

#include <iostream>
#include <boost/spirit.hpp>

using namespace boost::spirit;

struct my_closure : public closure<my_closure, std::size_t> {
member1 size;
};

struct my_grammar : public grammar<my_grammar> {
template <typename ScannerT>
struct definition {
	typedef rule<ScannerT> rule_type;
	typedef rule<ScannerT, my_closure::context_t> closure_rule_type;

	closure_rule_type header;
	rule_type payload;
	rule_type top;

	definition(const my_grammar &self)
	{
		using namespace phoenix;
		header = uint_p[header.size = arg1];
		payload = repeat_p(header.size())[anychar_p][assign_a(self.result)];
		top = header >> str_p("\r\n") >> payload;
	}

	const rule_type &start() const { return top; }
};

my_grammar(std::string &p_) : result(p_) {}
std::string &result;
};

int
main(int argc, char **argv)
{
const std::string content = "12\r\nTest Payload";
std::string payload;
my_grammar g(payload);
if (!parse(content.begin(), content.end(), g).full) {
	std::cerr << "there was a parsing error!\n";
	return -1;
}
std::cout << "Payload: " << payload << std::endl;
return 0;
}

Is it possible to tell spirit that the closure variable should be evaluated lazily? Is this behaviour supported by boost spirit?

flag
Your question is beyond what I've done with Spirit, but from what I understand if you're writing new code you should be using Qi instead of Spirit. – Tim Sylvester Sep 25 at 2:05
I got the feeling that boost spirit was undergoing a change. However, I wasn't able to find any documentation on the new interface. I figured that it wasn't ready yet. – Dan Sep 25 at 2:48
I found the documentation for the new API at svn.boost.org/svn/boost/… – Dan Sep 25 at 3:07
Consider subscribing to the Boost mailing list. Boost.Spirit is probably not something most folks on stackoverflow are familiar with. – sellibitze Sep 25 at 12:26

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.