boost::property_tree::read_xml 使用 boost::asio::spawn 生成的 asio 处理程序中的段错误
boost::property_tree::read_xml segfaults in an asio handler spawned using boost::asio::spawn
以下代码在 boost::property_tree::read_xml() 调用时因段错误而崩溃。
只有在使用 boost::asio::spawn() 生成的 io_service 处理程序内部调用时才会发生这种情况。如果处理程序刚刚发布,它就可以正常工作。
是否有解决方法或解决方法?
(提升 1.61)
#include <boost/asio/spawn.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <iostream>
#include <sstream>
#include <thread>
void process()
{
std::cerr << "start"<< std::endl;
std::istringstream is("<t>1</t>");
boost::property_tree::ptree pt;
boost::property_tree::read_xml(is, pt); // <<< seg fault here
std::cerr << std::endl << "end" << std::endl;
}
int main()
{
boost::asio::io_service io_service;
boost::asio::spawn(io_service, [] (boost::asio::yield_context y){
process();
});
io_service.run();
return 0;
}
经过一番挖掘,我们发现段错误是由协程的堆栈溢出引起的,因为在 boost::property_tree::read_xml() 中使用的快速xml 解析器默认为每个静态内存池在堆栈上分配 64KB xml 文档。
解决方案是减小池的大小,如下所示:
#define BOOST_PROPERTY_TREE_RAPIDXML_STATIC_POOL_SIZE 512
#include <boost/property_tree/xml_parser.hpp>
另一种解决方案是增加协程的堆栈大小。
以下代码在 boost::property_tree::read_xml() 调用时因段错误而崩溃。 只有在使用 boost::asio::spawn() 生成的 io_service 处理程序内部调用时才会发生这种情况。如果处理程序刚刚发布,它就可以正常工作。 是否有解决方法或解决方法? (提升 1.61)
#include <boost/asio/spawn.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <iostream>
#include <sstream>
#include <thread>
void process()
{
std::cerr << "start"<< std::endl;
std::istringstream is("<t>1</t>");
boost::property_tree::ptree pt;
boost::property_tree::read_xml(is, pt); // <<< seg fault here
std::cerr << std::endl << "end" << std::endl;
}
int main()
{
boost::asio::io_service io_service;
boost::asio::spawn(io_service, [] (boost::asio::yield_context y){
process();
});
io_service.run();
return 0;
}
经过一番挖掘,我们发现段错误是由协程的堆栈溢出引起的,因为在 boost::property_tree::read_xml() 中使用的快速xml 解析器默认为每个静态内存池在堆栈上分配 64KB xml 文档。
解决方案是减小池的大小,如下所示:
#define BOOST_PROPERTY_TREE_RAPIDXML_STATIC_POOL_SIZE 512
#include <boost/property_tree/xml_parser.hpp>
另一种解决方案是增加协程的堆栈大小。