Boost spirit x3 解析器不适用于多个属性
Boost spirit x3 parser doesn't work with multiple attribute
Spirit X3 解析器函数在使用 1 属性时运行良好。当我尝试从具有多个属性的 documentation 编译代码时,它不起作用。
#include <boost/spirit/home/x3.hpp>
#include <iostream>
using namespace std;
using namespace boost::spirit;
string a = "3.2 4.5";
auto begin = a.begin();
auto end = a.end();
double d1 = 0.0, d2 = 0.0;
x3::phrase_parse(begin, end ,
x3::double_ >> x3::double_,
x3::space,
d1, d2); // doesn't work. Accept only 1 attribut
它 returns 我出现以下错误:
/home/sacha/Dev/vql/vqlcompiler.cpp:20: erreur : no matching function for call to ‘phrase_parse(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> >&, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> >&, boost::spirit::x3::sequence<boost::spirit::x3::real_parser<double>, boost::spirit::x3::real_parser<double> >, const space_type&, double&, double&)’
x3::double_ >> x3::double_, x3::space, d1, d2);
^
它似乎不是可变参数模板。那么,是我还是文档?
确实如此。在 X3 中,可变参数重载被丢弃。
我打赌这是从 Spirit V2 开始消除设计中不必要的复杂性的一般制度的一部分。
当然你可以很容易地自己包起来:
auto parse = [](auto& b, auto e, auto const& p, auto&... binds) {
auto attr = std::tie(binds...);
return x3::phrase_parse(b, e, p, x3::space, attr);
};
演示
#include <boost/fusion/adapted/std_tuple.hpp>
#include <boost/spirit/home/x3.hpp>
#include <iostream>
namespace x3 = boost::spirit::x3;
int main() {
auto parse = [](auto& b, auto e, auto const& p, auto&... binds) {
auto attr = std::tie(binds...);
return x3::phrase_parse(b, e, p, x3::space, attr);
};
std::string const s = "3.2 4.5";
double d1, d2;
auto begin = s.begin(), end = s.end();
if (parse(begin, end, x3::double_ >> x3::double_, d1, d2)) {
std::cout << "Parsed: " << d1 << ", " << d2 << "\n";
} else {
std::cout << "Parse failed\n";
}
if (begin != end)
std::cout << "Remaining unparsed input: '" << std::string(begin, end) << "'\n";
}
版画
Parsed: 3.2, 4.5
Spirit X3 解析器函数在使用 1 属性时运行良好。当我尝试从具有多个属性的 documentation 编译代码时,它不起作用。
#include <boost/spirit/home/x3.hpp>
#include <iostream>
using namespace std;
using namespace boost::spirit;
string a = "3.2 4.5";
auto begin = a.begin();
auto end = a.end();
double d1 = 0.0, d2 = 0.0;
x3::phrase_parse(begin, end ,
x3::double_ >> x3::double_,
x3::space,
d1, d2); // doesn't work. Accept only 1 attribut
它 returns 我出现以下错误:
/home/sacha/Dev/vql/vqlcompiler.cpp:20: erreur : no matching function for call to ‘phrase_parse(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> >&, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> >&, boost::spirit::x3::sequence<boost::spirit::x3::real_parser<double>, boost::spirit::x3::real_parser<double> >, const space_type&, double&, double&)’
x3::double_ >> x3::double_, x3::space, d1, d2);
^
它似乎不是可变参数模板。那么,是我还是文档?
确实如此。在 X3 中,可变参数重载被丢弃。
我打赌这是从 Spirit V2 开始消除设计中不必要的复杂性的一般制度的一部分。
当然你可以很容易地自己包起来:
auto parse = [](auto& b, auto e, auto const& p, auto&... binds) {
auto attr = std::tie(binds...);
return x3::phrase_parse(b, e, p, x3::space, attr);
};
演示
#include <boost/fusion/adapted/std_tuple.hpp>
#include <boost/spirit/home/x3.hpp>
#include <iostream>
namespace x3 = boost::spirit::x3;
int main() {
auto parse = [](auto& b, auto e, auto const& p, auto&... binds) {
auto attr = std::tie(binds...);
return x3::phrase_parse(b, e, p, x3::space, attr);
};
std::string const s = "3.2 4.5";
double d1, d2;
auto begin = s.begin(), end = s.end();
if (parse(begin, end, x3::double_ >> x3::double_, d1, d2)) {
std::cout << "Parsed: " << d1 << ", " << d2 << "\n";
} else {
std::cout << "Parse failed\n";
}
if (begin != end)
std::cout << "Remaining unparsed input: '" << std::string(begin, end) << "'\n";
}
版画
Parsed: 3.2, 4.5