我正在尝试为我的家庭应用程序创建一个简单的MQTT客户端,我正在使用libmosquittopp(它是libmosquitto的C ++版本)。
这个库没有太多的文档,但是我发现了2个例子(here和here)帮助我为“MQTTWrapper”类创建了一个代码。
这是我的代码:
MQTTWrapper.h:
#pragma once
#include <mosquittopp.h>
#include <string>
class MQTTWrapper : public mosqpp::mosquittopp
{
public:
MQTTWrapper(const char* id, const char* host_, int port_);
virtual ~MQTTWrapper();
void myPublish(std::string topic, std::string value);
private:
void on_connect(int rc);
void on_publish(int mid);
std::string host;
int port;
};
MQTTWrapper.cpp
#include "MQTTWrapper.h"
#include <iostream>
MQTTWrapper::MQTTWrapper(const char* id, const char* host_, int port_) :
mosquittopp(id), host(host_), port(port_)
{
mosqpp::lib_init();
int keepalive = 10;
if (username_pw_set("sampleuser", "samplepass") != MOSQ_ERR_SUCCESS) {
std::cout << "setting passwd failed" << std::endl;
}
connect_async(host.c_str(), port, keepalive);
if (loop_start() != MOSQ_ERR_SUCCESS) {
std::cout << "loop_start failed" << std::endl;
}
}
MQTTWrapper::~MQTTWrapper()
{
std::cout << "1" << std::endl;
if (loop_stop() != MOSQ_ERR_SUCCESS) {
std::cout << "loop_stop failed" << std::endl;
}
std::cout << "2" << std::endl;
mosqpp::lib_cleanup();
std::cout << "3" << std::endl;
}
void MQTTWrapper::on_connect(int rc)
{
std::cout << "Connected with code " << rc << "." << std::endl;
}
void MQTTWrapper::myPublish(std::string topic, std::string value) {
int ret = publish(NULL, topic.c_str(), value.size(), value.c_str(), 1, false);
if (ret != MOSQ_ERR_SUCCESS) {
std::cout << "Sending failed." << std::endl;
}
}
void MQTTWrapper::on_publish(int mid) {
std::cout << "Published message with id: " << mid << std::endl;
}
和我的主要():
#include <iostream>
#include <string>
#include "MQTTWrapper.h"
int main(int argc, char *argv[])
{
MQTTWrapper* mqtt;
mqtt = new MQTTWrapper("Lewiatan IoT", "my.cloudmqtt.host", 12345);
std::string value("Test123");
mqtt->myPublish("sensors/temp", value);
std::cout << "about to delete mqtt" << std::endl;
delete mqtt;
std::cout << "mqtt deleted" << std::endl;
return 0;
}
很抱歉这么多代码。
我的问题是,当我编译并执行时 - 我的应用程序在loop_stop()方法的MQTTWrapper析构函数中无限地挂起(我只等了9分钟)。
使用libmosquittopp 1.4.8(debian软件包)进行测试,然后在使用github版本1.4.9删除之后进行测试。
loop_start()
和loop_stop(bool force=false)
应该启动/停止处理消息传递的单独线程。
我已经使用强制停止(loop_stop(true)
)对其进行了测试,但这样我的应用程序就会停止并且不会发布任何数据。另一方面,loop_stop()
发布数据但随后停止。
控制台输出(make && ./executable
):
g++ -c MQTTWrapper.cpp
g++ -c main.cpp
g++ -o executable main.o MQTTWrapper.o -lmosquittopp
about to delete mqtt
1
Connected with code 0.
Published message with id: 1
(here it hangs infinitely...)
我的问题:
为什么这个loop_stop()
会挂起以及如何修复它?
(赞赏任何文档/教程/示例)
答案 0 :(得分:2)
在disconnect()
之前尝试拨打loop_stop()
。你还应该记住,你有效地做到了这一点:
connect_async();
loop_start();
loop_stop();
客户端甚至可能没有机会连接,在你告诉它停止之前,线程实际上也没有启动。
值得考虑在回调中运行操作:
on_connect -> call publish
on_publish -> call disconnect