提升精神语义动作参数 [英] boost spirit semantic action parameters

查看:32
本文介绍了提升精神语义动作参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在这篇文章中关于提升精神语义动作 提到了

<块引用>

实际上还有 2 个参数正在传递:解析器上下文和一个对布尔命中"的引用范围.解析器上下文是只有语义动作才有意义附在右侧某处手边的一条规矩.我们会看到更多很快有关这方面的信息.这布尔值可以设置为 false在语义动作内部无效回顾比赛,使解析器失败.

一切都很好,但我一直试图找到一个示例,将函数对象作为使用其他参数(解析器上下文和命中布尔值)的语义动作传递,但我没有找到任何.我很想看到一个使用常规函数或函数对象的例子,因为我几乎无法理解凤凰巫毒

解决方案

这是一个非常好的问题(也是一罐蠕虫),因为它进入了气和凤凰的界面.我也没有看到一个例子,所以我会在这个方向上稍微扩展这篇文章.

如您所说,语义动作最多可以使用三个参数

  1. 匹配的属性 - 文章中介绍
  2. Context - 包含 qi-phoenix 接口
  3. 匹配标志 - 操纵匹配状态

比赛标志

正如文章所述,除非表达式是规则的一部分,否则第二个参数没有意义,所以让我们从第三个参数开始.仍然需要第二个参数的占位符,为此使用 boost::fusion::unused_type.所以文章中使用第三个参数的修改函数是:

#include #include <字符串>#include void f(int 属性,const boost::fusion::unused_type& it, bool& mFlag){//输出参数std::cout <<匹配的整数:'"<<属性<<'"<<std::endl<<匹配标志:" <<mFlag<

输出:

<前>匹配的整数:'1234'匹配标志:1返回:0

此示例所做的只是将匹配项切换为不匹配项,这反映在解析器输出中.根据 hkaiser 的说法,在 boost 1.44 及更高版本中,将匹配标志设置为 false 将导致匹配以正常方式失败.如果定义了替代方案,解析器将回溯并尝试按照预期匹配它们.然而,在 boost<=1.43 中,一个 Spirit 错误会阻止回溯,这会导致奇怪的行为.要看到这一点,添加 phoenix include boost/spirit/include/phoenix.hpp 并将表达式更改为

qi::int_[f] |qi::digit[std::cout <<qi::_1 <<"
"]

您会期望,当 qi::int 解析器失败时,替代 qi::digit 匹配输入的开头1",但输出是:

<前>匹配的整数:'1234'匹配标志:16回报:1

6 是输入中第二个 int 的第一个数字,它表示使用跳过程序而不回溯采用替代方法.另请注意,根据替代方案,匹配被认为是成功的.

boost 1.44 发布后,匹配标志对于应用可能难以在解析器序列中表达的匹配标准非常有用.请注意,可以使用 _pass 占位符在 phoenix 表达式中操作匹配标志.

上下文参数

更有趣的参数是第二个参数,它包含 qi-phoenix 接口,或者用 qi 的说法,语义动作的上下文.为了说明这一点,首先检查一个规则:

rule, Skipper>

context 参数包含 Attribute、Arg1、... ArgN 和 qi::locals 模板参数,封装在 boost::spirit::context 模板类型中.该属性与函数参数不同:函数参数属性是解析值,而该属性是规则本身的值.语义动作必须将前者映射到后者.下面是一个可能的上下文类型的示例(指示凤凰表达式等效项):

使用命名空间提升;精神::上下文

注意返回属性和参数列表采用 lisp 样式列表的形式(cons 列表).要在函数中访问这些变量,请使用 fusion::at<>() 访问 context 结构模板的 attributelocals 成员.例如,对于上下文变量 con

//分配返回属性融合::at_c 0 (con.attributes) = 1;//获取第二个规则参数float arg2 = fusion::at_c 2 (con.attributes);//分配第一个本地融合::at_c 1 (con.locals) = 42;

要修改文章示例以使用第二个参数,请更改函数定义和短语解析调用:

<代码>...类型定义boost::spirit::context<boost::fusion::cons<int&, boost::fusion::nil>,boost::fusion::vector0<>>f_context;void f(int 属性,const f_context& con,bool& mFlag){std::cout <<匹配的整数:'"<<属性<<'"<<std::endl<<匹配标志:" <<mFlag<(con.attributes) = 属性;}...int matchInt;qi::rule<std::string::const_iterator,int(void),ascii::space_type>intRule = qi::int_[f];qi::phrase_parse(begin, end, intRule, ascii::space,matchedInt);std::cout <<匹配:" <<匹配的Int<

这是一个非常简单的例子,只是将解析的值映射到输出属性值,但扩展应该是相当明显的.只需使上下文结构模板参数与规则输出、输入和本地类型相匹配.请注意,解析类型/值与输出类型/值之间的这种直接匹配可以使用自动规则自动完成,在定义时使用 %= 而不是 =规则:

qi::ruleintRule %= qi::int_;

恕我直言,与简短易读的凤凰表达式等价物相比,为每个动作编写一个函数会相当乏味.我很赞同 voodoo 的观点,但是一旦你使用过 phoenix 一段时间,语义和语法就不是非常困难了.

使用 Phoenix 访问规则上下文

仅当解析器是规则的一部分时才定义上下文变量.将解析器视为消耗输入的任何表达式,其中规则将解析器值 (qi::_1) 转换为规则值 (qi::_val).区别通常很重要,例如当 qi::val 具有需要从 POD 解析值构造的 Class 类型时.下面是一个简单的例子.

假设我们输入的一部分是三个 CSV 整数(x1, x2, x3)的序列,我们只关心这三个整数的算术函数(f = x0 + (x1+x2)*x3 ),其中 x0 是在别处获得的值.一种选择是读入整数并计算函数,或者使用 phoenix 来完成两者.

对于此示例,使用一个具有输出属性(函数值)和输入 (x0) 的规则,以及一个本地规则(通过规则在各个解析器之间传递信息).这是完整的示例.

#include #include #include <字符串>#include 命名空间 qi = boost::spirit::qi;命名空间 ascii = boost::spirit::ascii;int main(void){std::string input("1234, 6543, 42");std::string::const_iterator begin = input.begin(), end = input.end();齐::规则,//local int(_a)ascii::space_type>规则 =qi::int_[qi::_a = qi::_1]//local = x1>>,">>qi::int_[qi::_a += qi::_1]//local = x1 + x2>>,">>qi::int_[qi::_val = qi::_a*qi::_1 + qi::_r1//输出=本地*x3 + x0];int ruleValue, x0 = 10;qi::phrase_parse(begin, end, intRule(x0), ascii::space, ruleValue);std::cout <<规则值:" <<规则值<

或者,可以将所有整数解析为向量,并使用单个语义操作评估函数(下面的 % 是列表运算符,向量的元素通过 phoenix 访问:在):

命名空间 ph = boost::phoenix;...齐::规则

对于上面的,如果输入不正确(两个整数而不是三个),在运行时可能会发生不好的事情,因此最好明确指定解析值的数量,因此对于错误的输入解析将失败.下面使用 _1_2_3 来引用第一个、第二个和第三个匹配值:

(qi::int_ >> "," >> qi::int_ >> "," >> qi::int_)[qi::_val = (qi::_1 + qi::_2) * qi::_3 + qi::_r1];

这是一个人为的例子,但应该给你一个想法.我发现 phoenix 语义操作对于直接从输入构建复杂对象非常有帮助;这是可能的,因为您可以在语义操作中调用构造函数和成员函数.

in this article about boost spirit semantic actions it is mentioned that

There are actually 2 more arguments being passed: the parser context and a reference to a boolean ‘hit’ parameter. The parser context is meaningful only if the semantic action is attached somewhere to the right hand side of a rule. We will see more information about this shortly. The boolean value can be set to false inside the semantic action invalidates the match in retrospective, making the parser fail.

All fine, but i've been trying to find an example passing a function object as semantic action that uses the other parameters (parser context and hit boolean) but i haven't found any. I would love to see an example using regular functions or function objects, as i barely can grok the phoenix voodoo

解决方案

This a really good question (and also a can of worms) because it gets at the interface of qi and phoenix. I haven't seen an example either, so I'll extend the article a little in this direction.

As you say, functions for semantic actions can take up to three parameters

  1. Matched attribute - covered in the article
  2. Context - contains the qi-phoenix interface
  3. Match flag - manipulate the match state

Match flag

As the article states, the second parameter is not meaningful unless the expression is part of a rule, so lets start with the third. A placeholder for the second parameter is still needed though and for this use boost::fusion::unused_type. So a modified function from the article to use the third parameter is:

#include <boost/spirit/include/qi.hpp>
#include <string>
#include <iostream>

void f(int attribute, const boost::fusion::unused_type& it, bool& mFlag){
    //output parameters
    std::cout << "matched integer: '" << attribute << "'" << std::endl
              << "match flag: " << mFlag << std::endl;

    //fiddle with match flag
    mFlag = false;
}

namespace qi = boost::spirit::qi;

int main(void){
   std::string input("1234 6543");
   std::string::const_iterator begin = input.begin(), end = input.end();

   bool returnVal = qi::phrase_parse(begin, end, qi::int_[f], qi::space);

   std::cout << "return: " << returnVal << std::endl;
   return 0;
}

which outputs:

matched integer: '1234'
match flag: 1
return: 0

All this example does is switch the match to a non-match, which is reflected in the parser output. According to hkaiser, in boost 1.44 and up setting the match flag to false will cause the match to fail in the normal way. If alternatives are defined, the parser will backtrack and attempt to match them as one would expect. However, in boost<=1.43 a Spirit bug prevents backtracking, which causes strange behavior. To see this, add phoenix include boost/spirit/include/phoenix.hpp and change the expression to

qi::int_[f] | qi::digit[std::cout << qi::_1 << "
"]

You'd expect that, when the qi::int parser fails, the alternative qi::digit to match the beginning of the input at "1", but the output is:

matched integer: '1234'
match flag: 1
6
return: 1

The 6 is the first digit of the second int in the input which indicates the alternative is taken using the skipper and without backtracking. Notice also that the match is considered succesful, based on the alternative.

Once boost 1.44 is out, the match flag will be useful for applying match criteria that might be otherwise difficult to express in a parser sequence. Note that the match flag can be manipulated in phoenix expressions using the _pass placeholder.

Context parameter

The more interesting parameter is the second one, which contains the qi-phoenix interface, or in qi parlance, the context of the semantic action. To illustrate this, first examine a rule:

rule<Iterator, Attribute(Arg1,Arg2,...), qi::locals<Loc1,Loc2,...>, Skipper>

The context parameter embodies the Attribute, Arg1, ... ArgN, and qi::locals template paramters, wrapped in a boost::spirit::context template type. This attribute differs from the function parameter: the function parameter attribute is the parsed value, while this attribute is the value of the rule itself. A semantic action must map the former to the latter. Here's an example of a possible context type (phoenix expression equivalents indicated):

using namespace boost;
spirit::context<              //context template
    fusion::cons<             
        int&,                 //return int attribute (phoenix: _val)
        fusion::cons<
            char&,            //char argument1       (phoenix: _r1)
            fusion::cons<
                float&,       //float argument2      (phoenix: _r2) 
                fusion::nil   //end of cons list
            >,
        >,
    >,
    fusion::vector2<          //locals container
        char,                 //char local           (phoenix: _a)
        unsigned int          //unsigned int local   (phoenix: _b)
    > 
>

Note the return attribute and argument list take the form of a lisp-style list (a cons list). To access these variables within a function, access the attribute or locals members of the context struct template with fusion::at<>(). For example, for a context variable con

//assign return attribute
fusion::at_c<0>(con.attributes) = 1;

//get the second rule argument
float arg2 = fusion::at_c<2>(con.attributes);

//assign the first local
fusion::at_c<1>(con.locals) = 42;

To modify the article example to use the second argument, change the function definition and phrase_parse calls:

...
typedef 
    boost::spirit::context<
        boost::fusion::cons<int&, boost::fusion::nil>, 
        boost::fusion::vector0<> 
    > f_context;
void f(int attribute, const f_context& con, bool& mFlag){
   std::cout << "matched integer: '" << attribute << "'" << std::endl
             << "match flag: " << mFlag << std::endl;

   //assign output attribute from parsed value    
   boost::fusion::at_c<0>(con.attributes) = attribute;
}
...
int matchedInt;
qi::rule<std::string::const_iterator,int(void),ascii::space_type> 
    intRule = qi::int_[f];
qi::phrase_parse(begin, end, intRule, ascii::space, matchedInt);
std::cout << "matched: " << matchedInt << std::endl;
....

This is a very simple example that just maps the parsed value to the output attribute value, but extensions should be fairly apparent. Just make the context struct template parameters match the rule output, input, and local types. Note that this type of a direct match between parsed type/value to output type/value can be done automatically using auto rules, with a %= instead of a = when defining the rule:

qi::rule<std::string::const_iterator,int(void),ascii::space_type> 
    intRule %= qi::int_;

IMHO, writing a function for each action would be rather tedious, compared to the brief and readable phoenix expression equivalents. I sympathize with the voodoo viewpoint, but once you work with phoenix for a little while, the semantics and syntax aren't terribly difficult.

Edit: Accessing rule context w/ Phoenix

The context variable is only defined when the parser is part of a rule. Think of a parser as being any expression that consumes input, where a rule translates the parser values (qi::_1) into a rule value (qi::_val). The difference is often non-trivial, for example when qi::val has a Class type that needs to be constructed from POD parsed values. Below is a simple example.

Let's say part of our input is a sequence of three CSV integers (x1, x2, x3), and we only care out an arithmetic function of these three integers (f = x0 + (x1+x2)*x3 ), where x0 is a value obtained elsewhere. One option is to read in the integers and calculate the function, or alternatively use phoenix to do both.

For this example, use one rule with an output attribute (the function value), and input (x0), and a local (to pass information between individual parsers with the rule). Here's the full example.

#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix.hpp>
#include <string>
#include <iostream>

namespace qi = boost::spirit::qi;
namespace ascii = boost::spirit::ascii;

int main(void){
   std::string input("1234, 6543, 42");
   std::string::const_iterator begin = input.begin(), end = input.end();

   qi::rule<
      std::string::const_iterator,
      int(int),                    //output (_val) and input (_r1)
      qi::locals<int>,             //local int (_a)
      ascii::space_type
   >
      intRule =
            qi::int_[qi::_a = qi::_1]             //local = x1
         >> ","
         >> qi::int_[qi::_a += qi::_1]            //local = x1 + x2
         >> ","
         >> qi::int_
            [
               qi::_val = qi::_a*qi::_1 + qi::_r1 //output = local*x3 + x0
            ];

   int ruleValue, x0 = 10;
   qi::phrase_parse(begin, end, intRule(x0), ascii::space, ruleValue);
   std::cout << "rule value: " << ruleValue << std::endl;
   return 0;
}

Alternatively, all the ints could be parsed as a vector, and the function evaluated with a single semantic action (the % below is the list operator and elements of the vector are accessed with phoenix::at):

namespace ph = boost::phoenix;
...
    qi::rule<
        std::string::const_iterator,
        int(int),
        ascii::space_type
    >
    intRule =
        (qi::int_ % ",")
        [
            qi::_val = (ph::at(qi::_1,0) + ph::at(qi::_1,1))
                      * ph::at(qi::_1,2) + qi::_r1
        ];
....

For the above, if the input is incorrect (two ints instead of three), bad thing could happen at run time, so it would be better to specify the number of parsed values explicitly, so parsing will fail for a bad input. The below uses _1, _2, and _3 to reference the first, second, and third match value:

(qi::int_ >> "," >> qi::int_ >> "," >> qi::int_)
[
    qi::_val = (qi::_1 + qi::_2) * qi::_3 + qi::_r1
];

This is a contrived example, but should give you the idea. I've found phoenix semantic actions really helpful in constructing complex objects directly from input; this is possible because you can call constructors and member functions within semantic actions.

这篇关于提升精神语义动作参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆