如何设置最大递归在促进精神

How to set max recursion in boost spirit

本文关键字:递归 何设置 设置      更新时间:2023-10-16

使用boost::spirit,如果我有一个递归规则来解析括号

rule<std::string::iterator, std::string()> term;
term %= string("(") >> *term >> string(")");

如何限制递归的最大数量?例如,如果我试图解析一百万个嵌套的括号,我就会得到一个段错误,因为堆栈大小已经超出了。具体来说,这里有一个完整的样本。

#include <iostream>
#include <string>
#include <boost/spirit/include/qi.hpp>
int main(void)
{
    using namespace boost::spirit;
    using namespace boost::spirit::qi;
    const size_t string_size = 1000000;
    std::string str;
    str.resize(string_size);
    for (size_t s=0; s<str.size()/2; ++s)
      {
        str[s]='(';
        str[str.size() - s -1] = ')';
      }
    rule<std::string::iterator, std::string()> term;
    term %= string("(") >> *term >> string(")");
    std::string h;
    parse(str.begin(), str.end(), term, h);
}
我用命令 编译它
g++ simple.cxx -o simple -std=c++11

如果我将string_size设置为1000而不是1000000,则可以正常工作。

跟踪qi::local<>phx::ref()的深度

在这种情况下,继承属性可以很自然地充当qi::local的角色:

qi::rule<std::string::const_iterator, std::string(size_t depth)> term;
qi::_r1_type _depth;
term %= 
    qi::eps(_depth < 32) >>
    qi::string("(") >> *term(_depth + 1) >> qi::string(")");

term现在会在深度超过32时失败。

完整示例

Live On Coliru

#include <iostream>
#include <string>
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix.hpp>
namespace qi = boost::spirit::qi;
int main(void) {
    for (size_t n : { 2, 4, 8, 16, 32, 64 }) {
        auto const str = [&n] {
            std::string str;
            str.reserve(n);
            while (n--) { str.insert(str.begin(), '('); str.append(1, ')'); }
            return str;
        }();
        std::cout << "Input length " << str.length() << "n";
        qi::rule<std::string::const_iterator, std::string(size_t depth)> term;
        qi::_r1_type _depth;
        term %= 
            qi::eps(_depth < 32) >>
            qi::string("(") >> *term(_depth + 1) >> qi::string(")");
        std::string h;
        auto f = str.begin(), l = str.end();
        bool ok = qi::parse(f, l, term(0u), h);
        if (ok)
            std::cout << "Ok: " << h << "n";
        else
            std::cout << "Failn";
        if (f != l)
            std::cout << "Remaining  unparsed: '" << std::string(f, std::min(f + 40, l)) << "'...n";
    }
}
输出:

Input length 4
Ok: (())
Input length 8
Ok: (((())))
Input length 16
Ok: (((((((())))))))
Input length 32
Ok: (((((((((((((((())))))))))))))))
Input length 64
Ok: (((((((((((((((((((((((((((((((())))))))))))))))))))))))))))))))
Input length 128
Fail
Remaining  unparsed: '(((((((((((((((((((((((((((((((((((((((('...