我正在尝试解析一个表达式,该表达式也可以包含标识符并将每个元素推送到std::vector <std::string>
,我已经提出了以下语法:
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix_core.hpp>
#include <boost/spirit/include/phoenix_operator.hpp>
#include <vector>
namespace qi = boost::spirit::qi;
struct Tokeniser
: boost::spirit::qi::grammar <std::string::const_iterator, std::vector <std::string> (), boost::spirit::ascii::space_type>
{
Tokeniser() : Tokeniser::base_type(expression)
{
namespace qi = boost::spirit::qi;
expression =
term >>
*( (qi::string("+")[qi::_val.push_back(qi::_1)] >> term) |
(qi::string("-")[qi::_val.push_back(qi::_1)] >> term) );
term =
factor >>
*( (qi::string("*")[qi::_val.push_back(qi::_1)] >> factor) |
(qi::string("/")[qi::_val.push_back(qi::_1)] >> factor) );
factor =
(identifier | myDouble_)[qi::_val.push_back(qi::_1)] |
qi::string("(")[qi::_val.push_back(qi::_1)] >> expression >> qi::string(")")[qi::_val.push_back(qi::_1)];
identifier = qi::raw [ qi::lexeme[ (qi::alpha | '_') >> *(qi::alnum | '_') ] ];
myDouble_ = qi::raw [ qi::double_ ];
}
boost::spirit::qi::rule<std::string::const_iterator, std::vector <std::string> (), boost::spirit::ascii::space_type> expression;
boost::spirit::qi::rule<std::string::const_iterator, boost::spirit::ascii::space_type> factor;
boost::spirit::qi::rule<std::string::const_iterator, boost::spirit::ascii::space_type> term;
boost::spirit::qi::rule<std::string::const_iterator, std::string(), boost::spirit::ascii::space_type> identifier;
boost::spirit::qi::rule<std::string::const_iterator, std::string(), boost::spirit::ascii::space_type> myDouble_;
};
但是,我收到以下错误'const struct boost::phoenix::actor<boost::spirit::attribute<0> >' has no member named 'push_back'
。
是否有直接的方法来执行我想要做的事情?
答案 0 :(得分:1)
是的,占位符类型(显然)没有push_back
成员。
C ++是强类型的。任何延迟动作都是一种“错觉”:通过组合可以在以后“评估”的特殊用途类型,可以在表达式模板中表示actor。
<强> Live On Coliru 强>
万一你想要了解实际的工作方式,这是一个从头开始的简单例子。评论描述了代码的各个部分:
// we have lazy placeholder types:
template <int N> struct placeholder {};
placeholder<1> _1;
placeholder<2> _2;
placeholder<3> _3;
// note that every type here is stateless, and acts just like a more
// complicated placeholder.
// We can have expressions, like binary addition:
template <typename L, typename R> struct addition { };
template <typename L, typename R> struct multiplication { };
// here is the "factory" for our expression template:
template <typename L, typename R> addition<L,R> operator+(L const&, R const&) { return {}; }
template <typename L, typename R> multiplication<L,R> operator*(L const&, R const&) { return {}; }
///////////////////////////////////////////////
// To evaluate/interpret the expressions, we have to define "evaluation" for each type of placeholder:
template <typename Ctx, int N>
auto eval(Ctx& ctx, placeholder<N>) { return ctx.arg(N); }
template <typename Ctx, typename L, typename R>
auto eval(Ctx& ctx, addition<L, R>) { return eval(ctx, L{}) + eval(ctx, R{}); }
template <typename Ctx, typename L, typename R>
auto eval(Ctx& ctx, multiplication<L, R>) { return eval(ctx, L{}) * eval(ctx, R{}); }
///////////////////////////////////////////////
// A simple real-life context would contain the arguments:
#include <vector>
struct Context {
std::vector<double> _args;
// define the operation to get an argument from this context:
double arg(int i) const { return _args.at(i-1); }
};
#include <iostream>
int main() {
auto foo = _1 + _2 + _3;
Context ctx { { 3, 10, -4 } };
std::cout << "foo: " << eval(ctx, foo) << "\n";
std::cout << "_1 + _2 * _3: " << eval(ctx, _1 + _2 * _3) << "\n";
}
输出正是您所期望的:
foo: 9
_1 + _2 * _3: -37
您必须“描述”push_back
操作,而不是尝试在占位符上找到此类操作。菲尼克斯有你的背影:
#include <boost/phoenix/stl.hpp>
现在我简化了使用phoenix::push_back
的行动:
auto push = px::push_back(qi::_val, qi::_1);
expression =
term >>
*( (qi::string("+")[push] >> term) |
(qi::string("-")[push] >> term) );
term =
factor >>
*( (qi::string("*")[push] >> factor) |
(qi::string("/")[push] >> factor) );
factor =
(identifier | myDouble_)[push] |
qi::string("(")[push] >> expression >> qi::string(")")[push];
// etc.
但是,这还有一个问题,即_val
已解析为规则的属性类型。但是您的某些规则未声明属性类型,因此默认为qi::unused_type
。显然,为该属性生成“push_back”评估代码不适用于unused_type
。
让我们修复这些声明:
qi::rule<It, std::vector<std::string>(), boost::spirit::ascii::space_type> expression;
qi::rule<It, std::vector<std::string>(), boost::spirit::ascii::space_type> factor;
qi::rule<It, std::vector<std::string>(), boost::spirit::ascii::space_type> term;
当我们这样做时,令牌基本上是空的。是什么给了什么?
在存在语义动作的情况下,禁止自动属性传播。因此,您必须努力将子表达式的内容附加到最终的标记向量。
再次使用Phoenix的STL支持:
auto push = px::push_back(qi::_val, qi::_1);
auto propagate = px::insert(qi::_val, px::end(qi::_val), px::begin(qi::_1), px::end(qi::_1));
expression =
term[propagate] >>
*( (qi::string("+")[push] >> term[propagate]) |
(qi::string("-")[push] >> term[propagate]) );
term =
factor[propagate] >>
*( (qi::string("*")[push] >> factor[propagate]) |
(qi::string("/")[push] >> factor[propagate]) );
factor =
(identifier | myDouble_)[push] |
qi::string("(")[push] >> expression[propagate] >> qi::string(")")[push];
现在,使用 Live On Coliru 进行测试
#define BOOST_SPIRIT_DEBUG
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix.hpp>
#include <boost/phoenix/stl.hpp>
#include <vector>
namespace qi = boost::spirit::qi;
namespace px = boost::phoenix;
template <typename It = std::string::const_iterator>
struct Tokeniser
: qi::grammar <It, std::vector <std::string> (), boost::spirit::ascii::space_type>
{
Tokeniser() : Tokeniser::base_type(expression)
{
auto push = px::push_back(qi::_val, qi::_1);
auto propagate = px::insert(qi::_val, px::end(qi::_val), px::begin(qi::_1), px::end(qi::_1));
expression =
term[propagate] >>
*( (qi::string("+")[push] >> term[propagate]) |
(qi::string("-")[push] >> term[propagate]) );
term =
factor[propagate] >>
*( (qi::string("*")[push] >> factor[propagate]) |
(qi::string("/")[push] >> factor[propagate]) );
factor =
(identifier | myDouble_)[push] |
qi::string("(")[push] >> expression[propagate] >> qi::string(")")[push];
identifier = qi::raw [ qi::lexeme[ (qi::alpha | '_') >> *(qi::alnum | '_') ] ];
myDouble_ = qi::raw [ qi::double_ ];
BOOST_SPIRIT_DEBUG_NODES((expression)(term)(factor)(identifier)(myDouble_))
}
qi::rule<It, std::vector<std::string>(), boost::spirit::ascii::space_type> expression;
qi::rule<It, std::vector<std::string>(), boost::spirit::ascii::space_type> factor;
qi::rule<It, std::vector<std::string>(), boost::spirit::ascii::space_type> term;
qi::rule<It, std::string(), boost::spirit::ascii::space_type> identifier;
qi::rule<It, std::string(), boost::spirit::ascii::space_type> myDouble_;
};
int main() {
Tokeniser<> tok;
std::string const input = "x + 89/(y*y)";
auto f = input.begin(), l = input.end();
std::vector<std::string> tokens;
if (phrase_parse(f, l, tok, boost::spirit::ascii::space, tokens)) {
std::cout << "Parsed " << tokens.size() << " tokens:\n";
for (auto& token : tokens)
std::cout << " - '" << token << "'\n";
} else {
std::cout << "Parse failed\n";
}
if (f != l)
std::cout << "Remaining unparsed input: '" << std::string(f,l) << "'\n";
}
打印
Parsed 9 tokens:
- 'x'
- '+'
- '89'
- '/'
- '('
- 'y'
- '*'
- 'y'
- ')'
一般来说,避免语义行为(参见我的回答Boost Spirit: "Semantic actions are evil"? - 特别是关于副作用的子弹)。大多数情况下,您可以使用自动属性传播。我说这是 Boost Spirit 的关键卖点。
进一步简化跳过/ lexemes(Boost spirit skipper issues)的事情确实会大大减少代码和编译时间:
<强> Live On Coliru 强>
#define BOOST_SPIRIT_DEBUG
#include <boost/spirit/include/qi.hpp>
#include <vector>
namespace qi = boost::spirit::qi;
template <typename It = std::string::const_iterator>
struct Tokeniser : qi::grammar <It, std::vector <std::string>()> {
Tokeniser() : Tokeniser::base_type(start)
{
start = qi::skip(boost::spirit::ascii::space) [expression];
expression =
term >>
*( (qi::string("+") >> term) |
(qi::string("-") >> term) );
term =
factor >>
*( (qi::string("*") >> factor) |
(qi::string("/") >> factor) );
factor =
(identifier | myDouble_) |
qi::string("(") >> expression >> qi::string(")");
identifier = qi::raw [ (qi::alpha | '_') >> *(qi::alnum | '_') ];
myDouble_ = qi::raw [ qi::double_ ];
BOOST_SPIRIT_DEBUG_NODES((expression)(term)(factor)(identifier)(myDouble_))
}
qi::rule<It, std::vector<std::string>()> start;
qi::rule<It, std::vector<std::string>(), boost::spirit::ascii::space_type> expression, factor, term;
qi::rule<It, std::string()> identifier, myDouble_;
};
int main() {
Tokeniser<> tok;
std::string const input = "x + 89/(y*y)";
auto f = input.begin(), l = input.end();
std::vector<std::string> tokens;
if (parse(f, l, tok, tokens)) {
std::cout << "Parsed " << tokens.size() << " tokens:\n";
for (auto& token : tokens)
std::cout << " - '" << token << "'\n";
} else {
std::cout << "Parse failed\n";
}
if (f != l)
std::cout << "Remaining unparsed input: '" << std::string(f,l) << "'\n";
}
仍打印
Parsed 9 tokens:
- 'x'
- '+'
- '89'
- '/'
- '('
- 'y'
- '*'
- 'y'
- ')'
您是否考虑过回溯行为?我认为你的规则中需要一些明智的qi::hold[]
指令,例如Understanding Boost.spirit's string parser