分裂错误与琐碎的Spirit Parser语法

时间:2011-05-14 01:10:49

标签: c++ boost boost-spirit boost-spirit-qi

我正在使用我的Spirit Qi解析器遇到频繁的段错误。

花了好几天来调试问题(我发现堆栈跟踪无法理解)我决定将其修改为一个最小的例子。如果有的话,谁能说出我做错了什么?

将代码保存为bug.cpp,使用g++ -Wall -o bug bug.cpp进行编译,你应该很高兴。

//#define BOOST_SPIRIT_DEBUG_PRINT_SOME 80
//#define BOOST_SPIRIT_DEBUG
#include <boost/spirit/version.hpp>
#include <boost/spirit/include/qi.hpp>
#include <iostream>
#include <fstream>
#include <iterator>
#include <string>

namespace /*anon*/
{
    using namespace boost::spirit::qi;

    template <typename Iterator, typename
        Skipper> struct bug_demo : 
            public grammar<Iterator, Skipper>
    {
        bug_demo() : 
            grammar<Iterator, Skipper>(story, "bug"),
            story(the),
            the("the")
        {
//          BOOST_SPIRIT_DEBUG_NODE(story);
//          BOOST_SPIRIT_DEBUG_NODE(the);
        }

        rule<Iterator, Skipper> story, the;
    };

    template <typename It>
        bool do_parse(It begin, It end)
    {
        bug_demo<It, space_type> grammar;
        return phrase_parse(begin, end, grammar, space);
    }
}

int main()
{
    std::cout << "Spirit version: " << std::hex << SPIRIT_VERSION << std::endl;

    try
    {
        std::string contents = "the lazy cow";
        if (do_parse(contents.begin(), contents.end()))
            return 0;
    } catch (std::exception e)
    {
        std::cerr << "exception: " << e.what() << std::endl;
    }
    return 255;
}

我用

进行了测试
  • g ++ 4.4,4.5,4.6和
  • 提升版本1.42(ubuntu meerkat)和1.46.1.1(natty)

输出

sehe@meerkat:/tmp$ ./bug 
Spirit version: 2020
Segmentation fault

或者,使用boost 1.46.1,它会报告Spirit version: 2042

1 个答案:

答案 0 :(得分:5)

按照答案中的建议更改初始化顺序只会隐藏问题。实际问题是,rule<>具有正确的C ++拷贝语义。您可以通过将gramar初始化重写为:

来解决此问题
bug_demo() : 
    grammar<Iterator, Skipper>(story, "bug"),
    story(the.alias()),
    the("the")
{}

有关基本原理和更详细的说明,请参阅here