我正在使用我的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;
}
我用
进行了测试输出
sehe@meerkat:/tmp$ ./bug
Spirit version: 2020
Segmentation fault
或者,使用boost 1.46.1,它会报告Spirit version: 2042
答案 0 :(得分:5)
按照答案中的建议更改初始化顺序只会隐藏问题。实际问题是,rule<>
具有正确的C ++拷贝语义。您可以通过将gramar初始化重写为:
bug_demo() :
grammar<Iterator, Skipper>(story, "bug"),
story(the.alias()),
the("the")
{}
有关基本原理和更详细的说明,请参阅here。