boost :: spirit :: x3中的简单字符串解析器不起作用

时间:2018-09-16 23:03:41

标签: c++ boost boost-spirit

出于学习目的,我试图编写一个简单的解析器,该解析器接受字符串文字,并使用来自boost的x3库将其放入自定义结构中。但是,下面根据示例here改编的最小示例无法编译。

#include <iostream>
#include <boost/spirit/home/x3.hpp>
#include <boost/fusion/include/adapt_struct.hpp>
#include <string>

namespace x3 = boost::spirit::x3;

namespace ast {
struct Symbol {
    std::string val;
  };
}
BOOST_FUSION_ADAPT_STRUCT(
ast::Symbol,
val
)

namespace parser {
  x3::rule<class Symbol, ast::Symbol> const
  symbol = "symbol";

  auto const symbol_def = x3::string("asd");// | x3::string("qwe");

  BOOST_SPIRIT_DEFINE(
  symbol
  );
}

int main(int argc, char** argv) {
  std::string input = "asd";
  if (argc > 1) {
    input = argv[1];
  }
  std::string::const_iterator begin = input.begin();
  std::string::const_iterator end = input.end();

  ast::Symbol sym;
  bool success = x3::phrase_parse(begin, end, parser::symbol, 
                                  x3::ascii::space, sym);
  std::cout << success << std::endl;
  std::cout << sym.val << std::endl;
  return 0;
 }

这给出了一个很长的模板编译器错误,可以归结为

cannot convert ‘dest’ (type ‘ast::Symbol’) to type 
‘boost::spirit::x3::traits::variant_attribute’

这对我来说没有意义,因为解析器x3 :: string应该具有字符串属性,而ast :: Symbol结构具有一个字符串字段,x3应该能够自动填充,因为我已经使用Fusion修改了结构宏。更令人困惑的是,如果我将解析器的定义更改为读取

auto const symbol_def = x3::string("asd") | x3::string("qwe");

它可以编译和运行,即使现在解析器应该具有variant类型的属性。也许有人可以弄清楚为什么会发生这种情况,因为我似乎缺少有关库工作方式的一些信息。

1 个答案:

答案 0 :(得分:3)

我认为这是已解决的问题: