bonus-edge-proxy/src/main.cpp

224 lines
8.0 KiB
C++
Raw Normal View History

2025-10-14 16:45:50 +08:00
// main.cpp
2025-10-14 11:18:01 +08:00
#include "network/tcp_server.h"
#include "mqtt/mqtt_client.h"
#include "mqtt/mqtt_router.h"
#include "systemMonitor/system_monitor.h"
2025-09-30 18:34:50 +08:00
#include "spdlog/spdlog.h"
2025-10-14 18:10:15 +08:00
#include "deviceManager/device_manager.h"
#include "dataCache/data_cache.h"
#include "dataCache/cache_uploader.h"
2025-10-15 14:27:21 +08:00
#include "web/web_server.h"
2025-10-16 17:05:24 +08:00
#include "dataCache/live_data_cache.h"
2025-10-17 17:20:45 +08:00
#include "dataStorage/data_storage.h"
2025-10-23 17:29:11 +08:00
#include "config/config_manager.h"
2025-10-27 11:06:06 +08:00
#include "videoServiceManager/video_service_manager.h"
2025-10-24 14:19:33 +08:00
#include "alarm/alarm_service.h"
#include "tts/piper_tts_interface.h"
2025-09-30 18:34:50 +08:00
#include <boost/asio.hpp>
2025-10-14 16:45:50 +08:00
#include <boost/asio/steady_timer.hpp>
2025-10-11 18:24:56 +08:00
#include <csignal>
2025-09-30 18:34:50 +08:00
#include <iostream>
2025-10-14 16:45:50 +08:00
#include <functional>
2025-09-30 18:34:50 +08:00
2025-10-11 18:24:56 +08:00
boost::asio::io_context g_io_context;
2025-10-14 16:45:50 +08:00
/**
* @brief MQTT
*/
2025-10-14 11:18:01 +08:00
void poll_system_metrics(
boost::asio::steady_timer& timer,
SystemMonitor::SystemMonitor& monitor,
2025-10-24 14:19:33 +08:00
MqttClient& mqtt_client,
AlarmService& alarm_service
2025-10-14 11:18:01 +08:00
) {
2025-10-15 14:27:21 +08:00
if (g_io_context.stopped()) return;
2025-10-14 16:45:50 +08:00
auto cpu_util = monitor.getCpuUtilization();
2025-10-14 11:18:01 +08:00
auto mem_info = monitor.getMemoryInfo();
double mem_total_gb = mem_info.total_kb / 1024.0 / 1024.0;
2025-10-24 14:19:33 +08:00
double mem_usage_percentage = (mem_info.total_kb > 0)
? (100.0 * (mem_info.total_kb - mem_info.available_kb) / mem_info.total_kb)
: 0.0;
2025-10-14 16:45:50 +08:00
2025-10-14 11:18:01 +08:00
std::string topic = "proxy/system_status";
2025-10-14 16:45:50 +08:00
std::string payload = "{\"cpu_usage\":" + std::to_string(cpu_util.totalUsagePercentage) +
2025-10-24 14:19:33 +08:00
",\"mem_total_gb\":" + std::to_string(mem_total_gb) +
",\"mem_usage_percentage\":" + std::to_string(mem_usage_percentage) + "}";
alarm_service.process_system_data(payload);
2025-10-14 11:18:01 +08:00
mqtt_client.publish(topic, payload);
spdlog::debug("System metrics published.");
timer.expires_at(timer.expiry() + std::chrono::seconds(15));
2025-10-24 14:19:33 +08:00
timer.async_wait(std::bind(poll_system_metrics,
std::ref(timer),
std::ref(monitor),
std::ref(mqtt_client),
std::ref(alarm_service)
));
2025-10-14 11:18:01 +08:00
}
2025-10-11 18:24:56 +08:00
int main(int argc, char* argv[]) {
2025-10-13 10:34:20 +08:00
2025-10-23 16:15:09 +08:00
const std::string config_path = "/app/config/config.json";
if (!ConfigManager::getInstance().load(config_path)) {
std::cerr << "Failed to load configuration from " << config_path
<< ". Running with defaults, but this may cause issues." << std::endl;
}
2025-10-23 17:29:11 +08:00
auto& config = ConfigManager::getInstance();
2025-10-11 18:24:56 +08:00
try {
2025-10-23 17:29:11 +08:00
spdlog::set_level(spdlog::level::from_str(config.getLogLevel()));
2025-10-11 18:24:56 +08:00
spdlog::info("Edge Proxy starting up...");
} catch (const spdlog::spdlog_ex& ex) {
std::cerr << "Log initialization failed: " << ex.what() << std::endl;
return 1;
}
2025-10-17 17:20:45 +08:00
spdlog::info("Initializing Data Storage...");
2025-10-24 14:19:33 +08:00
auto& data_storage = DataStorage::getInstance();
if (!data_storage.initialize(config.getDataStorageDbPath())) {
2025-10-17 17:20:45 +08:00
spdlog::critical("Failed to initialize DataStorage. Exiting.");
return 1;
}
try {
2025-10-24 18:28:33 +08:00
spdlog::info("Initializing Video Service...");
2025-10-27 11:06:06 +08:00
VideoServiceManager video_manager;
2025-10-24 18:28:33 +08:00
2025-10-16 17:05:24 +08:00
DataCache data_cache;
LiveDataCache live_data_cache;
2025-10-23 17:29:11 +08:00
MqttClient mqtt_client(config.getMqttBroker(),
config.getMqttClientID()
2025-10-23 16:15:09 +08:00
);
2025-10-24 14:19:33 +08:00
PiperTTSInterface tts_service(
config.getPiperExecutablePath(),
config.getPiperModelPath()
);
AlarmService alarm_service(g_io_context,
tts_service,
mqtt_client,
data_storage);
if (!alarm_service.load_rules(config.getAlarmRulesPath())) {
spdlog::error("Failed to load alarm rules. Alarms may be disabled.");
}
auto report_to_mqtt = [&](const UnifiedData& data) {
2025-10-24 14:19:33 +08:00
if (data_storage.storeProcessedData(data)) {
2025-10-17 17:20:45 +08:00
spdlog::debug("Successfully stored PROCESSED data for device '{}'", data.device_id);
} else {
spdlog::error("Failed to store PROCESSED data for device '{}'", data.device_id);
}
2025-10-16 17:05:24 +08:00
live_data_cache.update_data(data.device_id, data.data_json);
2025-10-24 14:19:33 +08:00
// [新] 1. 在发布前处理告警
alarm_service.process_device_data(data.device_id, data.data_json);
// 2. 正常上报或缓存
if (mqtt_client.is_connected()) {
std::string topic = "devices/" + data.device_id + "/data";
g_io_context.post([&, topic, payload = data.data_json]() {
mqtt_client.publish(topic, payload, 1, false);
});
} else {
spdlog::warn("MQTT disconnected. Caching data for device '{}'.", data.device_id);
data_cache.add(data);
}
};
DeviceManager device_manager(g_io_context, report_to_mqtt);
2025-10-23 17:29:11 +08:00
MqttRouter mqtt_router(mqtt_client, device_manager);
std::vector<uint16_t> listen_ports = config.getTcpServerPorts();
2025-10-14 14:30:52 +08:00
TCPServer tcp_server(g_io_context, listen_ports, mqtt_client);
2025-10-14 11:18:01 +08:00
SystemMonitor::SystemMonitor monitor;
2025-10-13 13:55:15 +08:00
2025-10-23 17:29:11 +08:00
if (!data_cache.open(config.getDataCacheDbPath())) {
spdlog::critical("Failed to initialize data cache at '{}'. Exiting.", config.getDataCacheDbPath());
2025-10-14 18:10:15 +08:00
return 1;
}
CacheUploader cache_uploader(g_io_context, mqtt_client, data_cache);
mqtt_client.set_connected_handler([&](const std::string& cause){
spdlog::info("MQTT client connected: {}", cause);
cache_uploader.start_upload();
});
2025-10-14 11:18:01 +08:00
mqtt_client.connect();
mqtt_router.start();
2025-10-13 13:55:15 +08:00
2025-10-15 14:27:21 +08:00
monitor.getCpuUtilization();
2025-10-14 16:45:50 +08:00
boost::asio::steady_timer system_monitor_timer(g_io_context, std::chrono::seconds(15));
2025-10-24 14:19:33 +08:00
system_monitor_timer.async_wait(std::bind(poll_system_metrics,
std::ref(system_monitor_timer),
std::ref(monitor),
std::ref(mqtt_client),
2025-10-24 18:28:33 +08:00
std::ref(alarm_service)
2025-10-24 14:19:33 +08:00
));
2025-10-14 11:18:01 +08:00
2025-10-14 16:06:43 +08:00
2025-10-23 17:29:11 +08:00
device_manager.load_and_start(config.getDevicesConfigPath());
2025-10-24 14:19:33 +08:00
WebServer web_server(monitor,
device_manager,
live_data_cache,
2025-10-24 18:28:33 +08:00
alarm_service,
2025-10-24 14:19:33 +08:00
config.getWebServerPort());
2025-10-15 14:27:21 +08:00
web_server.start();
2025-10-27 11:06:06 +08:00
if (config.getIsVideoServiceEnabled()) {
video_manager.load_and_start(config);
} else {
spdlog::warn("VideoService is disabled in configuration.");
}
2025-10-15 14:27:21 +08:00
boost::asio::signal_set signals(g_io_context, SIGINT, SIGTERM);
signals.async_wait([&](const boost::system::error_code& error, int signal_number) {
spdlog::warn("Interrupt signal ({}) received. Shutting down.", signal_number);
2025-10-24 14:19:33 +08:00
// a. 停止所有数据采集
spdlog::info("[Shutdown] A. Stopping device manager services...");
device_manager.stop_all();
2025-10-24 14:19:33 +08:00
// b. 停止Web服务器
spdlog::info("[Shutdown] B. Stopping web server...");
web_server.stop();
2025-10-24 14:19:33 +08:00
// c. [新] 停止告警服务 (释放TTS线程)
spdlog::info("[Shutdown] C. Stopping alarm service...");
alarm_service.stop();
2025-10-11 18:24:56 +08:00
2025-10-24 14:19:33 +08:00
// d. 断开MQTT
spdlog::info("[Shutdown] D. Disconnecting from MQTT broker...");
mqtt_client.disconnect();
2025-10-15 14:27:21 +08:00
2025-10-24 18:28:33 +08:00
spdlog::info("[Shutdown] E. Stopping video Service loop...");
2025-10-27 11:06:06 +08:00
video_manager.stop_all();
2025-10-24 18:28:33 +08:00
2025-10-24 14:19:33 +08:00
// e. 最后安全地停止io_context
2025-10-24 18:28:33 +08:00
spdlog::info("[Shutdown] F. Stopping main event loop...");
g_io_context.stop();
});
spdlog::info("All services are running. Press Ctrl+C to exit.");
g_io_context.run();
2025-10-13 13:55:15 +08:00
2025-10-15 14:27:21 +08:00
2025-10-11 18:24:56 +08:00
} catch (const std::exception& e) {
spdlog::critical("An unhandled exception occurred: {}", e.what());
return 1;
2025-09-30 18:34:50 +08:00
}
2025-10-11 18:24:56 +08:00
spdlog::info("Server has been shut down gracefully. Exiting.");
2025-09-30 18:34:50 +08:00
return 0;
2025-10-14 16:45:50 +08:00
}