我有一種說不出的煩惱:齊::規則<它,的std :: string()>不解析輸入字符串
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];
輸入是 「好NAME3 PROD油\ 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>
Backtrace:
<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, [email protected], [email protected], a2=..., a3=...)
at /opt/libs/boost/boost/function/function_template.hpp:1013
1013 (this->functor BOOST_FUNCTION_COMMA BOOST_FUNCTION_ARGS);
這裏有點難以看到這裏發生了什麼 - 你能提供更多的代碼 - 最好是一個小的可編譯的測試用例嗎? – phooji 2011-03-18 18:36:39
是的,請提供一個我們可以嘗試的最小但完整的代碼。例如,param如何定義? – hkaiser 2011-03-18 20:42:04
對不起,延遲迴答。示例代碼 - https://gist.github.com/877743。 – W55tKQbuRu28Q4xv 2011-03-19 19:43:25