2025-09-08 15:09:33 +08:00
|
|
|
// mqtt_client_wrapper.cpp
|
2025-09-08 10:59:08 +08:00
|
|
|
#include "mqtt_client_wrapper.hpp"
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<MQTTClient> mqtt_client;
|
|
|
|
|
std::atomic<bool> mqtt_restart_required{false};
|
|
|
|
|
|
|
|
|
|
static uint16_t broadcast_sequence = 0;
|
|
|
|
|
|
|
|
|
|
// MQTT 回调定义
|
|
|
|
|
static void on_mqtt_connected()
|
|
|
|
|
{
|
|
|
|
|
LOG_INFO("[MQTT] Connected to broker.");
|
2025-09-08 15:09:33 +08:00
|
|
|
|
|
|
|
|
const auto &topics = g_app_config.mqtt.topics;
|
|
|
|
|
mqtt_client->subscribe(topics.video_down);
|
|
|
|
|
mqtt_client->subscribe(topics.substream_down);
|
|
|
|
|
mqtt_client->subscribe(topics.reset_down);
|
2025-09-08 10:59:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void on_mqtt_disconnected()
|
|
|
|
|
{
|
|
|
|
|
LOG_WARN("[MQTT] Disconnected from broker.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void on_mqtt_message_received(const std::string &topic, const std::string &message)
|
|
|
|
|
{
|
|
|
|
|
LOG_INFO("[MQTT] Received message on topic [" + topic + "], len = " + std::to_string(message.size()));
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
catch (const std::exception &e)
|
|
|
|
|
{
|
|
|
|
|
LOG_ERROR(std::string("[MQTT] Failed to process incoming JSON: ") + e.what());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void mqtt_client_thread_func()
|
|
|
|
|
{
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
2025-09-08 15:13:30 +08:00
|
|
|
const auto &cfg = g_app_config.mqtt;
|
2025-09-08 15:09:33 +08:00
|
|
|
|
2025-09-08 10:59:08 +08:00
|
|
|
mqtt_client = std::make_unique<MQTTClient>(cfg);
|
|
|
|
|
mqtt_client->setConnectCallback(on_mqtt_connected);
|
|
|
|
|
mqtt_client->setDisconnectCallback(on_mqtt_disconnected);
|
|
|
|
|
mqtt_client->setMessageCallback(on_mqtt_message_received);
|
|
|
|
|
|
|
|
|
|
mqtt_client->connect();
|
|
|
|
|
|
|
|
|
|
// 主线程监听重启信号
|
|
|
|
|
while (!mqtt_restart_required)
|
|
|
|
|
{
|
|
|
|
|
std::this_thread::sleep_for(std::chrono::seconds(1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 需要重启
|
|
|
|
|
LOG_INFO("[MQTT] Restarting client...");
|
|
|
|
|
mqtt_client->disconnect(); // 可加锁
|
|
|
|
|
mqtt_client.reset();
|
|
|
|
|
mqtt_restart_required = false;
|
|
|
|
|
}
|
|
|
|
|
}
|