我正在研究一个http解析器。当我尝试使用替代运算符进行解析时,它发现了一个问题。我可以使用hold []修复它们与属性中的值无关。当规则开头有两条相似的规则时,就会出现问题。这里有一些简单的规则来证明我的问题;
qi::rule<string_iterator> some_rule(
(char_('/') >> *char_("0-9")) /*first rule accept /123..*/
| (char_('/') >> *char_("a-z")) /*second rule accept /abc..*/
);
qi::parse
然后,如果输入字符串喜欢,
我会使用它来解析此规则;"/abcd"
但是,当我在第一条规则之前切换第二条规则时。解析器将返回 true 我认为问题在于,当解析器使用第一条规则使用输入时,它发现第一条规则失败。它不会返回到第二条规则,这是第一条规则的替代品。
我尝试hold[]
使用第一条规则,但它只有助于生成属性。它不能解决这个问题。我不知道如何解决这个问题,因为 HTTP 有很多规则,它们的规则开头与其他规则相同。
===========关于我的代码的更多信息=============================
这是我的解析函数一个字符串
typedef std::string::const_iterator string_iterator;
typedef qi::rule<string_iterator, std::string()> rules_t;
void parse_to_string(const std::string& s, rules_t& r, std::string& result)
{
using namespace rule;
using qi::parse;
std::string::const_iterator iter = s.begin();
std::string::const_iterator end = s.end();
bool err = parse(iter, end, r, result);
if ( err && (iter==end) )
{
std::cout << "[correct]" << result << std::endl;
}
else
{
std::cout << "[incorrect]" << s << std::endl;
std::cout << "[dead with]" << result << std::endl;
}
}
我主要有这段代码;
std::string result;
result = "";
str = "/htmlquery?";
qi::rule<string_iterator, std::string()> rule_wo_question( char_('/') >> *char_("a-z"));
qi::rule<string_iterator, std::string()> rule_w_question( char_('/') >> *char_("a-z") >> char_('?'));
qi::rule<string_iterator, std::string()> whatever_rule( rule_wo_question
| rule_w_question
);
parse_to_string(str, whatever_rule, result);
我得到了这个结果;
[不正确]/html查询?[dead with]/htmlquery <= 你可以看到它不能使用 '?'
但是,当我像这样切换规则时;(我把“rule_w_question”放在“rule_wo_question”之前)
std::string result;
result = "";
str = "/htmlquery?";
qi::rule<string_iterator, std::string()> rule_wo_question( char_('/') >> *char_("a-z"));
qi::rule<string_iterator, std::string()> rule_w_question( char_('/') >> *char_("a-z") >> char_('?'));
qi::rule<string_iterator, std::string()> whatever_rule( rule_w_question
| rule_wo_question
);
parse_to_string(str, whatever_rule, result);
输出将是;[正确]/html查询?
第一个版本(错误的)似乎解析消耗'/htmlquery'(“rule_wo_question”)然后它发现它不能消耗'?这使这条规则失效。那么这个规则就不能转到替代规则 ("rule_w_question") 。最后程序返回“[不正确]”
第二个版本我在“rule_wo_question”之前切换了“rule_w_question”。这就是解析器返回“[正确]”的原因。
==================================================== ============ 我的boost 1.47的整个代码与pthread和boost_filesystem链接这里是我的主要.c
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix_core.hpp>
#include <boost/spirit/include/phoenix_operator.hpp>
#include <boost/network/protocol.hpp>
#include <boost/spirit/include/phoenix_stl.hpp>
#include <boost/spirit/include/phoenix_fusion.hpp>
#include <boost/config/warning_disable.hpp>
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix_object.hpp>
#include <boost/fusion/include/adapt_struct.hpp>
#include <boost/fusion/include/io.hpp>
#include <boost/bind.hpp>
#include <boost/spirit/include/qi_uint.hpp>
using namespace boost::spirit::qi;
namespace qi = boost::spirit::qi;
typedef std::string::const_iterator string_iterator;
typedef qi::rule<string_iterator, std::string()> rules_t;
void parse_to_string(const std::string& s, rules_t& r, std::string& result)
{
using qi::parse;
std::string::const_iterator iter = s.begin();
std::string::const_iterator end = s.end();
bool err = parse(iter, end, r, result);
if ( err && (iter==end) )
{
std::cout << "[correct]" << result << std::endl;
}
else
{
std::cout << "[incorrect]" << s << std::endl;
std::cout << "[dead with]" << result << std::endl;
}
}
int main()
{
std::string str, result;
result = "";
str = "/htmlquery?";
qi::rule<string_iterator, std::string()> rule_wo_question( char_('/') >> *char_("a-z"));
qi::rule<string_iterator, std::string()> rule_w_question( char_('/') >> *char_("a-z") >> char_('?'));
qi::rule<string_iterator, std::string()> whatever_rule( rule_wo_question
| rule_w_question
);
parse_to_string(str, whatever_rule, result);
return 0;
}
结果是
[incorrect]/htmlquery?
[dead with]/htmlquery