- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在 Boost::Spirit 中,如何从绑定(bind)了 Boost::Bind
的函数中触发 expectation_failure
?
背景:我解析了一个包含复杂条目的大文件。当一个条目与前一个条目不一致时,我想失败并抛出一个 expectation_failure
(包含正确的解析位置信息)。当我解析一个条目时,我绑定(bind)了一个函数来确定该条目是否与之前看到的不一致。
我编了一个小玩具示例来说明这一点。在这里,我只是想在 int
不能被 10 整除时抛出一个 expectation_failure
:
#include <iostream>
#include <iomanip>
#include <boost/spirit/include/qi.hpp>
#include <boost/bind.hpp>
#include <boost/spirit/include/classic_position_iterator.hpp>
namespace qi = boost::spirit::qi;
namespace classic = boost::spirit::classic;
void checkNum(int const& i) {
if (i % 10 != 0) // >> How to throw proper expectation_failure? <<
std::cerr << "ERROR: Number check failed" << std::endl;
}
template <typename Iterator, typename Skipper>
struct MyGrammar : qi::grammar<Iterator, int(), Skipper> {
MyGrammar() : MyGrammar::base_type(start) {
start %= qi::eps > qi::int_[boost::bind(&checkNum, _1)];
}
qi::rule<Iterator, int(), Skipper> start;
};
template<class PosIter>
std::string errorMsg(PosIter const& iter) {
const classic::file_position_base<std::string>& pos = iter.get_position();
std::stringstream msg;
msg << "parse error at file " << pos.file
<< " line " << pos.line << " column " << pos.column << std::endl
<< "'" << iter.get_currentline() << "'" << std::endl
<< std::setw(pos.column) << " " << "^- here";
return msg.str();
}
int main() {
std::string in = "11";
typedef std::string::const_iterator Iter;
typedef classic::position_iterator2<Iter> PosIter;
MyGrammar<PosIter, qi::space_type> grm;
int i;
PosIter it(in.begin(), in.end(), "<string>");
PosIter end;
try {
qi::phrase_parse(it, end, grm, qi::space, i);
if (it != end)
throw std::runtime_error(errorMsg(it));
} catch(const qi::expectation_failure<PosIter>& e) {
throw std::runtime_error(errorMsg(e.first));
}
return 0;
}
抛出 expectation_failure
意味着我在一个不能被 10 整除的 int 上得到这样的错误消息:
parse error at file <string> line 1 column 2
'11'
^- here
最佳答案
您可以使用 _pass phoenix 中的占位符以强制解析失败。像这样的东西应该工作。
bool myfunc(int i) {return i%10 == 0;}
...
_int [ _pass = phoenix::bind(myfunc,_1)]
关于c++ - 如何从 Boost Spirit 中的函数中抛出 expectation_failure?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10706657/
当期望解析器失败时,如何避免抛出异常? 我有一条规则 "function" > (!x3::lexeme[keyword >> !(x3::alnum | '_')] >> symbol) > ('(
在 Boost::Spirit 中,如何从绑定(bind)了 Boost::Bind 的函数中触发 expectation_failure? 背景:我解析了一个包含复杂条目的大文件。当一个条目与前一个
我正在尝试向我的解析器添加错误报告,但我不知道如何针对特定规则正确执行此操作。 有问题的规则匹配 mag(12.5) 或 sqrt(5.38) 形式的函数调用。有一个固定的函数名称列表,每个函数都可以
我是一名优秀的程序员,十分优秀!