- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试解析一个也可以包含标识符的表达式并将每个元素推送到 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'
.
是否有直接的方法来执行我想做的事情?
最佳答案
是的,占位符类型(显然)没有 push_back
成员。
C++ 是强类型的。任何延迟的 Action 都是一种“幻觉”: Actor 通过组合可以稍后“评估”的特殊用途类型在表达式模板中表示。
为了以防万一您想了解它实际上 是如何工作的,请从头开始一个简单的示例。注释描述了代码各个部分的作用:
// 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;
当我们这样做时, token 基本上是空的。给了什么?
在存在语义 Action 的情况下,自动属性传播被禁止。因此,您必须努力获取附加到最终标记向量的子表达式的内容。
同样,使用 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 的主要卖点。
进一步简化 skipping/lexemes ( Boost spirit skipper issues ) 确实显着减少了代码和编译时间:
#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
关于Boost Spirit 将表达式标记化为向量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46203878/
虽然我在 reactjs 组件(组件名称为 renderLocationLink)的渲染方法返回的 html 中包含了 a 标签的 onclick 处理程序,但渲染正确地发生了 onclick 处理程
我必须以 docx 格式存储一些文档,但无法忍受使用 msword:我想编辑某种纯文本标记,除了基于 XML 的东西(我也不喜欢那样)和从/到那个到/从 docx 转换。 有什么选择吗? 编辑:由于人
有一个页面,其 anchor 标记在延迟后变得可点击。我想使用用户脚本在可点击后点击它。 页面加载时,HTML 源代码为: Download 延迟一段时间后,#button 变
我正在将 XML 文件解析为 pandas 数据帧。使用下面的代码我可以成功获取所有内容,但是这使用了完整 XML 的编辑版本。完整的 XML 在主数据表之上有一堆摘要数据,请参阅完整的 XML he
目前我正在研究 xml.sax 解析器来解析 xml 文件 假设我有以下代码 filepath = 'users/file.xml' try: parser = xml.sax.make_pa
我正在尝试构建一种语法来解释用户输入的文本,搜索引擎风格。它将支持 AND、OR、NOT 和 ANDNOT bool 运算符。我几乎所有东西都在工作,但我想添加一个规则,将引用字符串之外的两个相邻关键
我遇到了 Terraform EKS 标记的问题,并且似乎没有找到可行的解决方案来在创建新集群时标记所有 VPC 子网。 提供一些上下文:我们有一个 AWS VPC,我们在其中将多个 EKS 集群部署
我是xpath的新手,对此了解不多。我知道有一种方法可以使用xpath在xml / xhtml文件中查找特定标签。就我而言,我试图找到第一个(a)链接元素。不幸的是,我的xpath字符串[// a [
我在索引页上的产品卡上遇到问题。在产品卡内部,我有 Vue 组件来渲染表单(数量和添加到购物车按钮)。当我单击“添加到购物车”按钮时,我得到了预期的结果。响应被发送到根 vue 组件,然后我看到产品已
html setMouse(true)} onMouseEnter={() => setMouse(false)} className='resume-container'> CSS .resum
我在组件中有一组枚举,如下所示: type TOption = (clVisible, clVisibleAlways, clRenderable, clEditable); TOptions
是否有出于性能考虑的javadoc标签? 人们可以想象: /** * ...other javadoc tags... * @perform Expected to run in O(n) tim
html setMouse(true)} onMouseEnter={() => setMouse(false)} className='resume-container'> CSS .resum
我有一个包含多个小子图的图。目标是当且仅当子图中的所有节点都是蓝色时,才将子图中的所有蓝色节点标记为红色。如果子图中的一个节点具有不同的颜色,绿色,那么我们将不会更改该子图中节点的颜色。 这是我正在使
我正在使用 json-ld 开发事件标记以包含在确认电子邮件中。 我的一些事件会定期重复发生。但是,最新的 Schema.org 规范不支持重复发生的事件,因此我遵循了此处提供的建议:http://l
我创建了一个插件,可以添加带有相应行号的标记。现在,这很棒,因为它现在显示在“标记” View 中。有没有办法当我双击标记上的一行时,它会转到标记指示的行? 谢谢。 最佳答案 双击“标记” View
是否有一个插件具有与 Facebook 标记类似的行为? 它的特别之处在于它具有: 在键入的单词之间自动完成 特殊输出的 html(与另一个输入字段同步) 最佳答案 您可以使用jquery提及输入pl
有没有更好的方法来读取java文件中的 token ?我目前正在使用 StringTokenizer 来分割 token 。但在大多数情况下,它的效率可能非常低,因为您必须逐个 token 地读取 t
我想知道是否有某种方法可以标记文件来识别该文件是否包含x。 考虑以下示例: 在批量转换过程中,我正在创建一个日志文件,其中列出了各个转换的成功/失败。 所以流程如下: 开始转换过程 创建名为batch
我一直在尝试模拟点击标签,但这并没有像我需要的那样工作。我的 anchor 标记看起来像这样 Download this pic 正常的 $("a").click() 或 trigger('cli
我是一名优秀的程序员,十分优秀!