2

我有以下解析规则:

filter = (input >> (qi::repeat(0,2)[char_(';') >> input]))

input是一个返回std::vector<int>, 向量的规则,我将vec简称它。

问题是:filter规则会返回什么复合属性?

我试过:

fusion::vector <vec,std::vector <fusion::vector <char,vec> > >

但它失败了,我不知道为什么。

4

1 回答 1

5

解析器表达式产生的属性类型据可查。但这可能会让人迷失方向且耗时。

这里有一个技巧:发送一个哨兵来检测属性类型:

struct Sniffer
{
    typedef void result_type;

    template <typename T>
    void operator()(T const&) const { std::cout << typeid(T).name() << "\n"; }
};

然后使用以下解析器表达式

 (input >> (qi::repeat(0,2)[qi::char_(';') >> input])) [ Sniffer() ]

将转储:

N5boost6fusion7vector2ISt6vectorIsSaIsEES2_INS1_IcS4_EESaIS5_EEEE

c++filt -1会告诉你代表:

boost::fusion::vector2<
    std::vector<short, std::allocator<short> >, 
    std::vector<boost::fusion::vector2<char, std::vector<short, std::allocator<short> > >, 
                std::allocator<boost::fusion::vector2<char, std::vector<short, std::allocator<short> > > 
            > > 
 >

在 Coliru 上现场观看:http ://coliru.stacked-crooked.com/view?id=3e767990571f8d0917aae745bccfa520-5c1d29aa57205c65cfb2587775d52d22

boost::fusion::vector2<std::vector<short, std::allocator<short> >, std::vector<std::vector<short, std::allocator<short> >, std::allocator<std::vector<short, std::allocator<short> > > > >

它可能如此复杂,部分原因char_(";")可能是';'(或更明确地说lit(';'))。与此(Coliru)对比

boost::fusion::vector2<
    std::vector<short, ... >, 
    std::vector<std::vector<short, std::allocator<short> >, ... > >

这应该回答你的问题。

旁注:解析事物

不要低估 Spirit 中的自动属性传播。通常,您不必为确切公开的属性类型而烦恼。相反,依靠 Spirit 使用的(许多)属性转换将它们分配给您提供的属性引用。

我相信您知道列表运算符 ( %) 的精神吗?我将向您展示如何使用它,无需多言:

vector<vector<short>> data;

qi::parse(f, l, qi::short_ % ',' % ';', data);

现在,如果您需要强制执行它可能是 1-3 个元素的事实,您可以使用eps带有 Phoenix 操作的 an 来断言最大大小:

const string x = "1,2,3;2,3,4;3,4,5";
auto f(begin(x)), l(end(x));

if (qi::parse(f, l, 
        (qi::eps(phx::size(qi::_val) < 2) > (qi::short_ % ',')) % ';'
        , data))
{
    cout << karma::format(karma::short_ % ',' % ';', data) << "\n";
}
cout << "remaining unparsed: '" << std::string(f,l) << "'\n";

印刷:

1,2,3;2,3,4
remaining unparsed: ';3,4,5'
于 2013-07-26T08:22:44.707 回答