sweeper_video/src/rtmp_manager.cpp

246 lines
7.2 KiB
C++
Raw Normal View History

// rtsp_manager.cpp
#include "rtmp_manager.hpp"
#include "logger.hpp"
#include <iostream>
#include <chrono>
#include <thread>
2025-10-14 17:49:26 +08:00
#include <gst/gst.h>
#include <algorithm>
std::unordered_map<std::string, RTMPManager::StreamContext> RTMPManager::streams;
std::mutex RTMPManager::streams_mutex;
static inline std::string stream_type_suffix(StreamType type)
{
return (type == StreamType::MAIN) ? "_main" : "_sub";
}
std::string RTMPManager::make_stream_key(const std::string &cam_name, StreamType type)
{
return cam_name + stream_type_suffix(type);
}
void RTMPManager::init()
{
gst_init(nullptr, nullptr);
LOG_INFO("[RTMP] GStreamer initialized.");
}
GstElement *RTMPManager::create_pipeline(const Camera &cam, StreamType type)
{
int width = cam.width;
int height = cam.height;
int fps = cam.fps;
int bitrate = cam.bitrate;
if (type == StreamType::SUB)
{
width = std::max(160, width / 2);
height = std::max(120, height / 2);
fps = std::max(10, fps / 2);
2025-10-14 17:49:26 +08:00
bitrate = std::max(300000, bitrate / 2);
}
2025-10-14 17:49:26 +08:00
std::string stream_name = cam.name + stream_type_suffix(type);
std::string pipeline_str =
"v4l2src device=" + cam.device +
" ! video/x-raw,format=NV12,width=" + std::to_string(width) +
",height=" + std::to_string(height) +
",framerate=" + std::to_string(fps) + "/1"
" ! queue max-size-buffers=1 leaky=downstream "
" ! mpph264enc bps=" +
std::to_string(bitrate) +
" gop=" + std::to_string(fps) +
" ! h264parse "
" ! flvmux streamable=true name=mux "
" ! rtmpsink location=\"rtmp://127.0.0.1/live/" +
stream_name +
" live=1\" sync=false";
LOG_INFO("[RTMP] Creating pipeline for '" + cam.name + "' (" +
(type == StreamType::MAIN ? "MAIN" : "SUB") + ") -> " + pipeline_str);
GError *error = nullptr;
GstElement *pipeline = gst_parse_launch(pipeline_str.c_str(), &error);
if (error)
{
LOG_ERROR("[RTMP] Failed to parse pipeline: " + std::string(error->message));
g_error_free(error);
return nullptr;
}
return pipeline;
}
void RTMPManager::stream_loop(Camera cam, StreamType type)
{
const std::string key = make_stream_key(cam.name, type);
LOG_INFO("[RTMP] Stream thread started for '" + key + "'");
while (true)
{
{
std::lock_guard<std::mutex> lock(streams_mutex);
if (!streams[key].running)
break;
}
GstElement *pipeline = create_pipeline(cam, type);
if (!pipeline)
{
LOG_ERROR("[RTMP] Failed to create pipeline for '" + key + "', retrying in 3s...");
std::this_thread::sleep_for(std::chrono::seconds(3));
continue;
}
GstBus *bus = gst_element_get_bus(pipeline);
gst_element_set_state(pipeline, GST_STATE_PLAYING);
LOG_INFO("[RTMP] Camera '" + key + "' streaming...");
bool error_occurred = false;
int consecutive_failures = 0;
const int MAX_RETRIES = 5;
while (true)
{
GstMessage *msg = gst_bus_timed_pop_filtered(
bus, GST_CLOCK_TIME_NONE,
static_cast<GstMessageType>(GST_MESSAGE_ERROR | GST_MESSAGE_EOS));
{
std::lock_guard<std::mutex> lock(streams_mutex);
if (!streams[key].running)
break;
}
if (!msg)
continue;
if (GST_MESSAGE_TYPE(msg) == GST_MESSAGE_ERROR)
{
GError *err = nullptr;
gchar *debug = nullptr;
gst_message_parse_error(msg, &err, &debug);
LOG_ERROR("[RTMP] Error on '" + key + "': " + std::string(err->message));
g_error_free(err);
g_free(debug);
error_occurred = true;
consecutive_failures++;
}
else if (GST_MESSAGE_TYPE(msg) == GST_MESSAGE_EOS)
{
LOG_WARN("[RTMP] EOS received on '" + key + "'");
error_occurred = true;
consecutive_failures++;
}
gst_message_unref(msg);
if (error_occurred)
break;
}
gst_element_set_state(pipeline, GST_STATE_NULL);
gst_object_unref(pipeline);
gst_object_unref(bus);
if (!error_occurred)
break;
if (consecutive_failures >= MAX_RETRIES)
{
LOG_ERROR("[RTMP] Max retries reached for '" + key + "'. Stopping reconnection attempts.");
std::lock_guard<std::mutex> lock(streams_mutex);
streams[key].running = false;
break;
}
LOG_WARN("[RTMP] Reconnecting '" + key + "' in 3s...");
std::this_thread::sleep_for(std::chrono::seconds(3));
}
LOG_INFO("[RTMP] Stream thread exited for '" + key + "'");
}
void RTMPManager::start_camera(const Camera &cam, StreamType type)
{
std::lock_guard<std::mutex> lock(streams_mutex);
std::string key = make_stream_key(cam.name, type);
if (streams.count(key) && streams[key].running)
{
LOG_WARN("[RTMP] Camera '" + key + "' already streaming.");
return;
}
StreamContext ctx;
ctx.running = true;
ctx.thread = std::thread([cam, type]()
{ RTMPManager::stream_loop(cam, type); });
2025-10-14 17:44:59 +08:00
streams.emplace(key, std::move(ctx));
}
void RTMPManager::stop_camera(const std::string &cam_name, StreamType type)
{
std::lock_guard<std::mutex> lock(streams_mutex);
std::string key = make_stream_key(cam_name, type);
auto it = streams.find(key);
if (it == streams.end())
{
LOG_WARN("[RTMP] Camera '" + key + "' not found.");
return;
}
it->second.running = false;
if (it->second.thread.joinable())
it->second.thread.join();
streams.erase(it);
}
bool RTMPManager::is_streaming(const std::string &cam_name, StreamType type)
{
std::lock_guard<std::mutex> lock(streams_mutex);
std::string key = make_stream_key(cam_name, type);
auto it = streams.find(key);
return it != streams.end() && it->second.running;
}
bool RTMPManager::is_any_streaming()
{
std::lock_guard<std::mutex> lock(streams_mutex);
for (auto &kv : streams)
if (kv.second.running)
return true;
return false;
}
void RTMPManager::stop_all()
{
2025-10-14 17:49:26 +08:00
std::vector<std::string> keys;
{
std::lock_guard<std::mutex> lock(streams_mutex);
for (auto &kv : streams)
2025-10-14 17:49:26 +08:00
keys.push_back(kv.first);
}
2025-10-14 17:49:26 +08:00
for (auto &key : keys)
{
2025-10-14 17:49:26 +08:00
if (key.size() > 4 && key.find("_sub") == key.size() - 4)
{
2025-10-14 17:49:26 +08:00
stop_camera(key.substr(0, key.size() - 4), StreamType::SUB);
}
2025-10-14 17:49:26 +08:00
else if (key.size() > 5 && key.find("_main") == key.size() - 5)
{
2025-10-14 17:49:26 +08:00
stop_camera(key.substr(0, key.size() - 5), StreamType::MAIN);
}
else
{
2025-10-14 17:49:26 +08:00
stop_camera(key, StreamType::MAIN);
}
}
}
std::string RTMPManager::get_stream_url(const std::string &cam_name, StreamType type)
{
2025-10-14 17:49:26 +08:00
return "rtmp://127.0.0.1/live/" + make_stream_key(cam_name, type);
}