is boost::property_tree::ptree thread safe?(boost::property_tree::ptree 线程安全吗?)
问题描述
我在一段代码的几个线程中使用 boosts read_json.下面是通话的简化细分.我在一个线程(有时是另一个线程)中遇到了段错误,这让我认为 read_json 不是线程安全的(或者我只是以愚蠢的方式使用它)
I'm using boosts read_json in a couple of threads in a piece of code. A simplified breakdown of the call is below. I'm getting segfaults in one of the threads (and sometimes the other) and it's making me think that read_json is not thread safe (Or I'm just using it in a dumb way)
void someclass::dojson() {
using boost::property_tree::ptree;
ptree pt;
std::stringstream ss(json_data_string);
read_json(ss,pt);
}
现在两个类之间的 json_data_string 是不同的(它只是通过套接字接收的 json 数据).
Now json_data_string is different between the two classes (it's just json data received over a socket).
那么 read_json 线程安全还是我必须互斥它(而不是)或者有更好的方法来调用 read_json 是线程安全的?
So is read_json thread safe or do I have to mutex it (rather not) or is there a better way of calling read_json that is thread safe?
推荐答案
因为boost json解析器依赖于boost::spirit,而spirit不是线程安全默认的.
Because boost json parser depends on boost::spirit, and spirit is not thread-safety default.
您可以在任何 ptree 头文件之前添加此宏来解决它.
You can add this macro before any ptree header file to resolve it.
#define BOOST_SPIRIT_THREADSAFE
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
这篇关于boost::property_tree::ptree 线程安全吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:boost::property_tree::ptree 线程安全吗?


- 如何对自定义类的向量使用std::find()? 2022-11-07
- 静态初始化顺序失败 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 近似搜索的工作原理 2021-01-01
- C++ 协变模板 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 从python回调到c++的选项 2022-11-16