我已成功使用boost::spirit::qi
来解析由内置解析器组成的流(例如byte_
,little_word
等)。但是,我现在需要解析不完全属于这些类别之一的数据。例如,我想将16.16定点二进制数转换为double;例如因此little_word << little_16p16
将解析uint16_t
后跟double
(从定点数解析)。
我首先考虑语义动作,但(我认为......)它们不合适,因为它们不会更改与解析器关联的属性的类型。我也无法弄清楚如何使employee struct-parsing example适应这种情况,因为它依赖于boost::fusion
提供的隐式强制转换。这种方法在这里不起作用,因为我显然无法定义从uint32_t
到double
的隐式演员而不会造成重大问题。
我倾向于我需要添加非终端来包装内置的二进制原语解析器或从头开始编写终端解析器。即使在查看qi_binary.hpp
的来源之后,我也不确定如何做。任何人都可以提供一些示例代码和/或指导我开始相关的参考资料吗?
答案 0 :(得分:7)
template < typename Iterator >
struct parser : boost::spirit::qi::grammar < Iterator, double(), boost::spirit::ascii::space_type >
{
struct cast_impl
{
template < typename A >
struct result { typedef double type; };
double operator()(boost::fusion::vector < boost::uint16_t, boost::uint16_t > arg) const
{
// cast here
return 0;
}
};
parser() : parser::base_type(main)
{
pair = boost::spirit::qi::little_word >> '.' >> boost::spirit::qi::little_word;
main = pair[boost::spirit::qi::_val = cast(boost::spirit::qi::_1)];
}
boost::spirit::qi::rule < Iterator, boost::fusion::vector < boost::uint16_t, boost::uint16_t > (), boost::spirit::ascii::space_type > pair;
boost::spirit::qi::rule < Iterator, double(), boost::spirit::ascii::space_type > main;
boost::phoenix::function<cast_impl> cast;
};
int _tmain(int argc, _TCHAR* argv[])
{
typedef std::string container;
container data_ = "\x01\x02.\x01\x02";
container::iterator iterator_ = data_.begin();
double value_;
bool result_ =
boost::spirit::qi::phrase_parse(iterator_, data_.end(),
parser < container::iterator > (),
boost::spirit::ascii::space,
value_);
return 0;
}