我有一个奇怪的麻烦:
qi::rule <Iterator, std::string ()> str = +alnum;
// will not parse given input
//param = "WELL" >> space >> str >> ((space >> no_case[control]) || (space >> no_case[limit])) >> space >> qi::eol;
// will parse given input ok
param = "WELL" >> space >> +alnum >> ((space >> no_case[control]) || (space >> no_case[limit])) >> space >> qi::eol;
expression = qi::no_skip[param];
输入是“WELL name3 PROD OIL \ n”。控制和限制是符号表。
我做错了什么?
UPD :
在表达式之前定义了BOOST_SPIRIT_QI_DEBUG并且使用了BOOST_SPIRIT_DEBUG_NODE(param),如果使用了str,我得到了以下输出:
<param>
<try>WELL name3 PROD OIL </try>
Segmentation fault
在+ alnum案件中,我得到了:
<param>
<try>WELL name3 PROD OIL </try>
<success></success>
<attributes>[]</attributes>
</param>
回溯:
<param>
<try>WELL name3 PROD OIL </try>
Program received signal SIGSEGV, Segmentation fault.
0x00007ffff64db290 in boost::function4<bool, char*&, char* const&, boost::spirit::context<boost::fusion::cons<std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, boost::fusion::nil>, boost::fusion::vector0<void> >&, boost::spirit::unused_type const&>::operator() (this=
0x7fffffffd700, a0=@0x7fffffffd2d0, a1=@0x7fffffffda20, a2=..., a3=...)
at /opt/libs/boost/boost/function/function_template.hpp:1013
1013 (this->functor BOOST_FUNCTION_COMMA BOOST_FUNCTION_ARGS);
答案 0 :(得分:2)
问题是您在堆栈上定义了规则str
(作为构造函数中的局部变量)。当退出语法的构造函数时,此变量超出范围,使param
规则具有悬挂引用。如果将str
移动为语法的成员变量,一切都按预期工作。
此外,您似乎想要在输入元素之间跳过空格。我建议您查看phrase_parse
API以及如何使用自述文件。