gpt4 book ai didi

c++ - Boost Spirit 如何将本地引用作为属性传递

转载 作者:行者123 更新时间:2023-11-30 01:50:50 25 4
gpt4 key购买 nike

如何将 _a 作为引用传递给具有相同类型属性的子规则:

rule(_a)

不起作用。

代码如下:

qi::rule<Iterator, Mdlx(), qi::locals<std::string, long32>, Skipper> mdl; // parent rule
qi::rule<Iterator, Model(long32&), Skipper> model; // sub rule

...

mdl =
-version[at_c<0>(_val) = _1]
// wrong code! pass _b because it has the type long32
//>> -model(_a)[at_c<1>(_val) = _1] // pass local as attribute
>> -model(_b)[at_c<1>(_val) = _1] // pass local as attribute
>> -sequences[at_c<2>(_val) = _1]
>> -global_sequences[at_c<3>(_val) = _1]
>> -textures[at_c<4>(_val) = _1]
>> -materials[at_c<5>(_val) = _1]
>> repeat(_a)[
geoset_animation
]
;

model =
lit("Model")
>> string_literal[at_c<0>(_val) = _1]
>> lit('{')
>> -(
lit("NumGeosetAnims")
>> integer_literal[_r1 = _1] // assign the value to the passed attribute
>> lit(',')
)
>> lit("BlendTime") >> integer_literal[at_c<1>(_val) = _1]
>> lit(',')
>> bounds[at_c<2>(_val) = _1]
>> lit('}')
;

如您所见,我想传递一个本地作为对应该设置 long32 值的子规则的引用。然后该值在父规则中用作局部变量 _a。

编辑:我在我的代码中发现了错误。我正在传递 _a,但第一个本地的类型为 std::string。我不得不通过 _b 而不是!

最佳答案

在澄清问题之后,我推测您正在寻找更像 Spirit 的 Inherited Attributes 的功能。 。最重要的是,它们总是在调用时传递,因此它们不需要是默认可构造的,可以是引用类型。

Live On Coliru

#define BOOST_SPIRIT_DEBUG
#define BOOST_SPIRIT_USE_PHOENIX_V3
#include <iostream>
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix.hpp>

namespace qi = boost::spirit::qi;

template <typename It>
struct my_parser : qi::grammar<It> {
my_parser() : my_parser::base_type(start) {
using namespace qi;

start = my_int_rule;
my_int_rule = my_rule_with_inherited_attribute(_val);
my_rule_with_inherited_attribute = int_ [ _r1 = _1 ]; // copied into the reference passed

BOOST_SPIRIT_DEBUG_NODES((start)(my_rule_with_inherited_attribute)(my_int_rule))
}

private:
qi::rule<It> start;
qi::rule<It, int() > my_int_rule;
qi::rule<It, void(int&) > my_rule_with_inherited_attribute;
};

int main()
{
using It = std::string::const_iterator;
my_parser<It> p;

std::string const input = "123";

bool ok = qi::parse(input.begin(), input.end(), p);

std::cout << "Parse " << (ok? "success":"failed") << "\n";
}

打印

<start>
<try>123</try>
<my_int_rule>
<try>123</try>
<my_rule_with_inherited_attribute>
<try>123</try>
<success></success>
<attributes>[, 123]</attributes>
</my_rule_with_inherited_attribute>
<success></success>
<attributes>[123]</attributes>
</my_int_rule>
<success></success>
<attributes>[]</attributes>
</start>
Parse success

关于c++ - Boost Spirit 如何将本地引用作为属性传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26948736/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com