Spirit X3,语义操作使编译失败:属性没有预期的大小

时间:2016-07-05 22:16:45

标签: c++ boost-spirit boost-spirit-x3

此代码不编译(gcc 5.3.1 + boost 1.60):

#include <boost/spirit/home/x3.hpp>

namespace x3 = boost::spirit::x3;

template <typename T>
void parse(T begin, T end) {
    auto dest = x3::lit('[') >> x3::int_ >> ';' >> x3::int_ >> ']';

    auto on_portal = [&](auto& ctx) {};
    auto portal    = (x3::char_('P') >> -dest)[on_portal];

    auto tiles = +portal;
    x3::phrase_parse(begin, end, tiles, x3::eol);
}

int main() {
    std::string x;
    parse(x.begin(), x.end());
}

失败并出现静态断言:

error: static assertion failed: Attribute does not have the expected size.

感谢wandbox我也尝试过boost 1.61和clang,两者都产生相同的结果。

如果我删除附加到portal的语义操作,它编译得很好;如果我将dest更改为:

,也会发生同样的情况
auto dest = x3::lit('[') >> x3::int_ >> ']';

任何帮助将不胜感激。 TIA。

1 个答案:

答案 0 :(得分:4)

这对我来说也是令人惊讶的,我会在邮件列表(或错误跟踪器)中将其报告为潜在的错误。

同时,您可以修复&#34;它通过提供dest的属性类型:

<强> Live On Coliru

#include <boost/fusion/adapted/std_tuple.hpp>
#include <boost/spirit/home/x3.hpp>
#include <iostream>

namespace x3 = boost::spirit::x3;

template <typename T>
void parse(T begin, T end) {
    auto dest = x3::rule<struct dest_type, std::tuple<int, int> > {} = '[' >> x3::int_ >> ';' >> x3::int_ >> ']';

    auto on_portal = [&](auto& ctx) {
        int a, b;
        if (auto tup = x3::_attr(ctx)) {
            std::tie(a, b) = *tup;
            std::cout << "Parsed [" << a << ", " << b << "]\n";
        }
    };
    auto portal    = ('P' >> -dest)[on_portal];

    auto tiles = +portal;
    x3::phrase_parse(begin, end, tiles, x3::eol);
}

int main() {
    std::string x = "P[1;2]P[3;4]P[5;6]";
    parse(x.begin(), x.end());
}

打印:

Parsed [1, 2]
Parsed [3, 4]
Parsed [5, 6]
  

注意我将char_('P')更改为lit('P'),因为我不想让处理属性中字符的示例复杂化。也许你并不意味着将它放在暴露的属性中。