我尝试使用c ++在ZeroMQ中开发发布者订阅者模型,我从JSON文件中提取对象值并将其发送到另一端。
我的订阅者部分运行良好,发出任何错误。但我在发布者部分面临以下错误:(在if语句中)
src/lib_json/json_value.cpp:1136: Json::Value&
Json::Value::resolveReference(const char*, bool): Assertion `type_ ==
nullValue || type_ == objectValue' failed.
Aborted (core dumped)
这是我的发布商代码:
#include "jsoncpp/include/json/value.h"
#include "jsoncpp/include/json/reader.h"
#include <fstream>
#include "cppzmq/zmq.hpp"
#include <string>
#include <iostream>
#include <unistd.h>
using namespace std;
int main () {
zmq::context_t context(1);
zmq::socket_t publisher (context, ZMQ_PUB);
int sndhwm = 0;
publisher.setsockopt (ZMQ_SNDHWM, &sndhwm, sizeof (sndhwm));
publisher.bind("tcp://*:5561");
const Json::Value p;
ifstream pub_file("counter.json");
Json::Reader reader;
Json::Value root;
if(pub_file != NULL && reader.parse(pub_file, root)) {
const Json::Value p = root ["body"]["device_data"]["device_status"];
}
string text = p.asString();
zmq::message_t message(text.size());
memcpy(message.data() , text.c_str() , text.size());
zmq_sleep (1);
publisher.send(message);
return 0;
}
答案 0 :(得分:1)
const Json::Value p;
...
if(pub_file != NULL && reader.parse(pub_file, root)) {
const Json::Value p = root ["body"]["device_data"]["device_status"];
}
string text = p.asString();
当您在 p
语句中创建另一个 if
时,此新声明的变量仅在条件{}的范围内是本地的-code块。将此更改为已声明的变量 p
:
p = root ["body"]["device_data"]["device_status"];
这会更改外部作用域中的变量,而不是在内部作用域内声明一个新变量。此外,您应该将变量const Json::Value p
标记为而不是 const
,以便您可以在条件内修改它。