gpt4 book ai didi

c++ - 约束现有的 Boost.Spirit real_parser(使用策略)

转载 作者:搜寻专家 更新时间:2023-10-31 02:22:23 26 4
gpt4 key购买 nike

我想解析一个 float ,但不允许 NaN 值,所以我生成了一个继承自默认策略的策略并创建了一个 real_parser与它:

// using boost::spirit::qi::{real_parser,real_policies,
// phrase_parse,double_,char_};

template <typename T>
struct no_nan_policy : real_policies<T>
{
template <typename I, typename A>
static bool
parse_nan(I&, I const&, A&) {
return false;
}
};

real_parser<double, no_nan_policy<double> > no_nan;

// then I can use no_nan to parse, as in the following grammar
bool ok = phrase_parse(first, last,
no_nan[ref(valA) = _1] >> char_('@') >> double_[ref(b) = _1],
space);

但现在我想确保用no_nan解析的字符串的总长度不超过 4,即“1.23”或“.123”甚至“2.e6”或“inf”都可以,“3.2323”不行,“nan”也不行。我不能在 parse_n 中这样做/parse_frac_n政策的一部分,它分别看起来在点的左/右并且无法沟通(...干净),因为整体长度是相关的,所以他们必须这样做.

当时的想法是扩展real_parser (在 boost/spirit/home/qi/numeric/real.hpp 中)并 包装 parse方法——但是这个类没有方法。在 real_parser 旁边是any_real_parser 确实具有parse的结构,但这两个结构似乎没有以任何明显的方式相互作用。

有没有办法轻松地注入(inject)我自己的 parse(),做一些预检查,然后调用 真正的 解析 ( return boost::spirit::qi::any_real_parser<T, RealPolicy>::parse(...) ) 然后遵守给定的政策?编写新的解析器将是不得已的方法,但我希望有更好的方法。

(使用 Boost 1.55,即 Spirit 2.5.2,C++11)

最佳答案

It seems I am so close, i.e. just a few changes to the double_ parser and I'd be done. This would probably be a lot more maintainable than adding a new grammar, since all the other parsing is done that way. – toting 7 hours ago

更易于维护的是根本不编写另一个解析器。

您基本上想要解析一个 float (Spirit 已为您解决),但之后应用一些验证。我会在语义操作中进行验证:

raw [ double_ [_val = _1] ] [ _pass = !isnan_(_val) && px::size(_1)<=4 ]

就是这样。

说明

解剖学:

  • double_ [_val = _1]解析一个 double 并像往常一样将其分配给暴露的属性¹
  • raw [ parser ]匹配随附的 parser 但是将原始源迭代器范围作为属性公开
  • [ _pass = !isnan_(_val) && px::size(_1)<=4 ] - 业务部分!

    这个语义 Action 附加到 raw[]解析器。因此

    • _1现在指的是已经解析了 double_ 的原始迭代器范围
    • _val已经包含成功匹配 double_ 的“成熟”值
    • _pass是一个 Spirit 上下文标志,我们可以将其设置为 false 以使解析失败。

现在唯一剩下的就是把它们绑在一起。让我们制作一个延迟版本 ::isnan :

boost::phoenix::function<decltype(&::isnan)> isnan_(&::isnan);

我们准备好了。

测试程序

Live On Coliru

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

int main ()
{
using It = std::string::const_iterator;

auto my_fpnumber = [] { // TODO encapsulate in a grammar struct
using namespace boost::spirit::qi;
using boost::phoenix::size;

static boost::phoenix::function<decltype(&::isnan)> isnan_(&::isnan);

return rule<It, double()> (
raw [ double_ [_val = _1] ] [ _pass = !isnan_(_val) && size(_1)<=4 ]
);
}();

for (std::string const s: { "1.23", ".123", "2.e6", "inf", "3.2323", "nan" })
{
It f = s.begin(), l = s.end();

double result;
if (parse(f, l, my_fpnumber, result))
std::cout << "Parse success: '" << s << "' -> " << result << "\n";
else
std::cout << "Parse rejected: '" << s << "' at '" << std::string(f,l) << "'\n";
}
}

打印

Parse success:  '1.23' -> 1.23
Parse success: '.123' -> 0.123
Parse success: '2.e6' -> 2e+06
Parse success: 'inf' -> inf
Parse rejected: '3.2323' at '3.2323'
Parse rejected: 'nan' at 'nan'

¹ 赋值必须在这里显式完成,因为我们使用语义 Action ,它们通常会抑制自动属性传播

关于c++ - 约束现有的 Boost.Spirit real_parser(使用策略),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30375750/

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