在Boost :: Spirit中,如何从与expectation_failure
绑定的函数中触发Boost::Bind
?
背景:我解析包含复杂条目的大文件。当一个条目与前一个条目不一致时,我想失败并抛出expectation_failure
(包含正确的解析位置信息)。当我解析一个条目时,我绑定了一个函数,该函数决定该条目是否与之前看到的内容不一致。
我编写了一个小玩具示例,说明了这一点。我只想在expectation_failure
不能被10整除时抛出int
:
#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
答案 0 :(得分:6)
您可以使用phoenix中的_pass占位符来强制执行解析失败。像这样的东西应该工作。
bool myfunc(int i) {return i%10 == 0;}
...
_int [ _pass = phoenix::bind(myfunc,_1)]
答案 1 :(得分:0)
迟到了,但无论如何:
如果你绝对想要抛出异常并希望on_error
能够捕获它,那么你必须从expectation_exception
命名空间抛出qi
,因为错误处理程序on_error
没有别的什么。
这可能适用于语义操作或自定义解析器实现。
看起来像:
boost::throw_exception(Exception(first, last, component.what(context)));
其中Exception
是qi::expactation_exception
而没有别的。
如果您没有像在语义操作中那样有手头的组件,则必须提供自己的qi::info
对象,而不是component.what(..)
。
你可以从on_error
守护的上下文中的任何地方投掷。