yituo_video/src/rtmp_manager.cpp

462 lines
16 KiB
C++
Raw Normal View History

2025-12-17 17:21:11 +08:00
// rtmp_manager.cpp
#include "rtmp_manager.hpp"
#include <arpa/inet.h>
#include <ifaddrs.h>
#include <net/if.h>
#include <netinet/in.h>
#include <sys/stat.h>
#include <chrono>
#include <cstring>
#include <thread>
// ========== 工具函数 ==========
static bool device_exists(const std::string& path)
{
struct stat st;
return (stat(path.c_str(), &st) == 0);
}
// 动态获取指定网卡 IPv4 地址
std::string get_ip_address(const std::string& ifname)
{
struct ifaddrs *ifaddr, *ifa;
char ip[INET_ADDRSTRLEN] = {0};
if (getifaddrs(&ifaddr) == -1)
{
perror("getifaddrs");
return "";
}
for (ifa = ifaddr; ifa != nullptr; ifa = ifa->ifa_next)
{
if (ifa->ifa_addr == nullptr) continue;
if (ifa->ifa_addr->sa_family == AF_INET && ifname == ifa->ifa_name)
{
void* addr = &((struct sockaddr_in*)ifa->ifa_addr)->sin_addr;
if (inet_ntop(AF_INET, addr, ip, sizeof(ip)))
{
freeifaddrs(ifaddr);
return ip;
}
}
}
freeifaddrs(ifaddr);
return "";
}
// ========== 静态成员 ==========
std::unordered_map<std::string, std::unique_ptr<RTMPManager::StreamContext>> RTMPManager::streams;
std::mutex RTMPManager::streams_mutex;
// ========== 初始化 ==========
void RTMPManager::init()
{
gst_init(nullptr, nullptr);
LOG_INFO("[RTMP] GStreamer initialized.");
}
std::string RTMPManager::make_key(const std::string& name) { return name + "_main"; }
// ========== 创建推流管线 ==========
2026-01-06 11:21:13 +08:00
// GstElement* RTMPManager::create_pipeline(const Camera& cam)
// {
2026-01-06 16:29:40 +08:00
// const int width = cam.width;
// const int height = cam.height;
2026-01-06 11:21:13 +08:00
// const int fps = cam.fps;
// const int bitrate = cam.bitrate;
2026-01-06 16:29:40 +08:00
// // MediaMTX 中的 stream key
2026-01-06 11:21:13 +08:00
// const std::string stream_name = cam.name;
2026-01-06 16:29:40 +08:00
// // RTMP 推送到 MediaMTX
// // mediamtx.yml 中 paths 会自动创建
2026-01-06 11:21:13 +08:00
// const std::string rtmp_url = "rtmp://127.0.0.1:1935/" + stream_name;
// /*
2026-01-06 16:29:40 +08:00
// * Pipeline 说明:
// * v4l2src -> mpph264enc -> h264parse -> flvmux -> rtmpsink
2026-01-06 11:21:13 +08:00
// *
2026-01-06 16:29:40 +08:00
// * - 不使用 tee降低死锁概率
// * - 不引入音频MediaMTX 不强制要求)
// * - 纯视频、纯 RTMP、纯 TCP
2026-01-06 11:21:13 +08:00
// */
// std::string pipeline_str = "v4l2src name=src device=" + cam.device +
2026-01-06 16:29:40 +08:00
// " ! video/x-raw,format=NV12,width=" + std::to_string(width) +
// ",height=" + std::to_string(height) + ",framerate=" + std::to_string(fps) +
2026-01-06 11:21:13 +08:00
// "/1 "
2026-01-06 16:29:40 +08:00
// " ! mpph264enc bps=" +
// std::to_string(bitrate) + " gop=" + std::to_string(fps) +
// " rc-mode=cbr "
// " ! h264parse name=parse "
// " ! flvmux streamable=true "
// " ! rtmpsink location=\"" +
2026-01-06 11:21:13 +08:00
// rtmp_url +
// "\" "
2026-01-06 16:29:40 +08:00
// " sync=false async=false";
2026-01-06 11:21:13 +08:00
// GError* error = nullptr;
// GstElement* pipeline = gst_parse_launch(pipeline_str.c_str(), &error);
// if (error)
// {
// LOG_ERROR(std::string("[RTMP] Pipeline creation failed: ") + error->message);
// g_error_free(error);
// return nullptr;
// }
// return pipeline;
// }
2026-01-06 16:29:40 +08:00
GstElement* RTMPManager::create_pipeline(const Camera& cam)
{
const int out_width = cam.width;
const int out_height = cam.height;
const int fps = 30; // ⭐ 强制 30
const int bitrate = cam.bitrate; // 建议 3.5M~4.0M
const int gop = 15; // ⭐ 半秒 I 帧
const std::string stream_name = cam.name;
const std::string rtmp_url = "rtmp://127.0.0.1:1935/" + stream_name;
std::string pipeline_str = "v4l2src name=src device=" + cam.device +
" io-mode=dmabuf "
"! video/x-raw,format=NV12,"
"width=1280,height=960,"
"framerate=30/1 "
"! videoscale "
"! video/x-raw,"
"width=" +
std::to_string(out_width) + ",height=" + std::to_string(out_height) +
" "
"! queue max-size-buffers=2 max-size-time=0 leaky=downstream "
"! mpph264enc "
"rc-mode=cbr "
"bps=" +
std::to_string(bitrate) +
" "
"gop=" +
std::to_string(gop) +
" "
"header-mode=each-idr "
"profile=main " // ⭐ 关键改动
"! h264parse config-interval=1 "
"! video/x-h264,stream-format=avc,alignment=au "
"! flvmux streamable=true "
"! rtmpsink location=\"" +
rtmp_url +
"\" "
"sync=false async=false";
GError* error = nullptr;
GstElement* pipeline = gst_parse_launch(pipeline_str.c_str(), &error);
if (error)
{
LOG_ERROR(std::string("[RTMP] Pipeline creation failed: ") + error->message);
g_error_free(error);
return nullptr;
}
return pipeline;
}
2025-12-17 17:21:11 +08:00
// ========== 主推流循环 ==========
void RTMPManager::stream_loop(Camera cam, StreamContext* ctx)
{
const std::string key = make_key(cam.name);
constexpr int64_t START_TIMEOUT_MS = 5000; // 启动阶段无帧
constexpr int64_t NO_FRAME_TIMEOUT_MS = 10000; // 运行阶段突然无帧 ⇒ pipeline 卡死重启
2025-12-17 17:21:11 +08:00
while (ctx->thread_running)
{
// 1) 检查设备节点
2025-12-17 17:21:11 +08:00
struct stat st{};
if (stat(cam.device.c_str(), &st) != 0)
{
std::lock_guard<std::mutex> lk(ctx->status_mutex);
ctx->status.running = false;
ctx->status.last_error = "Device not found: " + cam.device;
LOG_WARN("[RTMP] " + key + " - " + ctx->status.last_error);
std::this_thread::sleep_for(std::chrono::seconds(3));
continue;
}
// 2) 创建 pipeline
2025-12-17 17:21:11 +08:00
GstElement* pipeline = create_pipeline(cam);
if (!pipeline)
{
std::lock_guard<std::mutex> lk(ctx->status_mutex);
ctx->status.running = false;
ctx->status.last_error = "Pipeline creation failed";
std::this_thread::sleep_for(std::chrono::seconds(3));
continue;
}
gst_element_set_name(pipeline, key.c_str());
GstBus* bus = gst_element_get_bus(pipeline);
// 3) 帧探测:记录 last_frame_ms
ctx->last_frame_ms.store(0, std::memory_order_relaxed);
2025-12-17 17:21:11 +08:00
{
GstElement* src = gst_bin_get_by_name(GST_BIN(pipeline), "src");
if (src)
{
GstPad* pad = gst_element_get_static_pad(src, "src");
if (pad)
{
gst_pad_add_probe(
pad, GST_PAD_PROBE_TYPE_BUFFER,
[](GstPad*, GstPadProbeInfo*, gpointer data) -> GstPadProbeReturn
2025-12-17 17:21:11 +08:00
{
auto ts = static_cast<std::atomic<int64_t>*>(data);
auto now = std::chrono::steady_clock::now().time_since_epoch();
auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(now).count();
ts->store(ms, std::memory_order_relaxed);
2025-12-17 17:21:11 +08:00
return GST_PAD_PROBE_OK;
},
&(ctx->last_frame_ms), nullptr);
2025-12-17 17:21:11 +08:00
gst_object_unref(pad);
}
gst_object_unref(src);
}
}
// 4) 启动 pipeline
2025-12-17 17:21:11 +08:00
LOG_INFO("[RTMP] Starting stream: " + key);
gst_element_set_state(pipeline, GST_STATE_PLAYING);
GstState state = GST_STATE_NULL, pending = GST_STATE_NULL;
if (gst_element_get_state(pipeline, &state, &pending, 5 * GST_SECOND) != GST_STATE_CHANGE_SUCCESS ||
state != GST_STATE_PLAYING)
2025-12-17 17:21:11 +08:00
{
std::lock_guard<std::mutex> lk(ctx->status_mutex);
ctx->status.running = false;
ctx->status.last_error = "Failed to enter PLAYING";
2025-12-17 17:21:11 +08:00
LOG_WARN("[RTMP] " + key + " - " + ctx->status.last_error);
gst_element_set_state(pipeline, GST_STATE_NULL);
if (bus) gst_object_unref(bus);
gst_object_unref(pipeline);
2025-12-17 17:21:11 +08:00
std::this_thread::sleep_for(std::chrono::milliseconds(RETRY_BASE_DELAY_MS));
continue;
}
// pipeline 成功启动
{
std::lock_guard<std::mutex> lk(ctx->status_mutex);
ctx->status.running = true;
ctx->status.last_error.clear();
}
LOG_INFO("[RTMP] " + key + " confirmed PLAYING");
auto launch_tp = std::chrono::steady_clock::now();
2025-12-17 17:21:11 +08:00
bool need_restart = false;
// 5) 主循环:检测停帧或 error
2025-12-17 17:21:11 +08:00
while (ctx->thread_running)
{
auto now = std::chrono::steady_clock::now();
int64_t now_ms = std::chrono::duration_cast<std::chrono::milliseconds>(now.time_since_epoch()).count();
int64_t last_ms = ctx->last_frame_ms.load(std::memory_order_relaxed);
if (last_ms == 0)
2025-12-17 17:21:11 +08:00
{
auto startup_ms = std::chrono::duration_cast<std::chrono::milliseconds>(now - launch_tp).count();
if (startup_ms > START_TIMEOUT_MS)
2025-12-17 17:21:11 +08:00
{
std::lock_guard<std::mutex> lk(ctx->status_mutex);
ctx->status.running = false;
ctx->status.last_error = "No frames detected at startup";
2025-12-17 17:21:11 +08:00
LOG_ERROR("[RTMP] " + key + " - " + ctx->status.last_error);
need_restart = true;
break;
}
}
else
{
int64_t idle_ms = now_ms - last_ms;
if (idle_ms > NO_FRAME_TIMEOUT_MS)
2025-12-17 17:21:11 +08:00
{
std::lock_guard<std::mutex> lk(ctx->status_mutex);
ctx->status.running = false;
ctx->status.last_error = "Frame stalled for " + std::to_string(idle_ms) + " ms";
LOG_ERROR("[RTMP] " + key + " - " + ctx->status.last_error);
2025-12-17 17:21:11 +08:00
need_restart = true;
break;
}
else
2025-12-17 17:21:11 +08:00
{
std::lock_guard<std::mutex> lk(ctx->status_mutex);
ctx->status.running = true;
ctx->status.last_error.clear();
2025-12-17 17:21:11 +08:00
}
}
// 错误消息检测
GstMessage* msg = gst_bus_timed_pop_filtered(bus, 200 * GST_MSECOND,
(GstMessageType)(GST_MESSAGE_ERROR | GST_MESSAGE_EOS));
if (!msg) continue;
if (GST_MESSAGE_TYPE(msg) == GST_MESSAGE_ERROR)
{
GError* err = nullptr;
gst_message_parse_error(msg, &err, nullptr);
std::lock_guard<std::mutex> lk(ctx->status_mutex);
ctx->status.running = false;
ctx->status.last_error = err ? err->message : "GStreamer error";
LOG_ERROR("[RTMP] " + key + " - " + ctx->status.last_error);
if (err) g_error_free(err);
need_restart = true;
}
else if (GST_MESSAGE_TYPE(msg) == GST_MESSAGE_EOS)
{
std::lock_guard<std::mutex> lk(ctx->status_mutex);
ctx->status.running = false;
ctx->status.last_error = "EOS (End of stream)";
LOG_WARN("[RTMP] " + key + " - " + ctx->status.last_error);
need_restart = true;
}
gst_message_unref(msg);
2025-12-17 17:21:11 +08:00
if (need_restart) break;
}
// 清理 & 重建
2025-12-17 17:21:11 +08:00
gst_element_set_state(pipeline, GST_STATE_NULL);
if (bus) gst_object_unref(bus);
gst_object_unref(pipeline);
if (ctx->thread_running)
{
LOG_WARN("[RTMP] Restarting " + key + " in 3s...");
std::this_thread::sleep_for(std::chrono::milliseconds(RETRY_BASE_DELAY_MS));
}
}
{
std::lock_guard<std::mutex> lk(ctx->status_mutex);
ctx->status.running = false;
}
2025-12-17 17:21:11 +08:00
LOG_INFO("[RTMP] Stream thread exited for " + key);
}
// ========== 启停与状态 ==========
void RTMPManager::start_all()
{
2025-12-17 17:43:39 +08:00
LOG_INFO("[RTMP] Starting enabled record streams...");
2025-12-17 17:21:11 +08:00
std::lock_guard<std::mutex> lock(streams_mutex);
int delay_ms = 0;
2025-12-17 17:43:39 +08:00
for (const auto& cam : g_app_config.cameras)
2025-12-17 17:21:11 +08:00
{
// 跳过未启用摄像头
2025-12-17 17:43:39 +08:00
if (!cam.enabled)
{
LOG_INFO("[RTMP] Skip disabled camera: " + cam.name);
continue;
}
2025-12-17 17:21:11 +08:00
auto key = make_key(cam.name);
if (streams.find(key) != streams.end())
{
LOG_INFO("[RTMP] Stream already running: " + key);
continue;
}
auto ctx = std::make_unique<StreamContext>();
ctx->thread_running.store(true);
ctx->thread = std::thread(
[cam, ptr = ctx.get(), delay_ms]()
{
std::this_thread::sleep_for(std::chrono::milliseconds(delay_ms));
stream_loop(cam, ptr);
});
streams.emplace(key, std::move(ctx));
2025-12-17 17:43:39 +08:00
delay_ms += 200;
2025-12-17 17:21:11 +08:00
}
}
void RTMPManager::stop_all()
{
std::lock_guard<std::mutex> lock(streams_mutex);
for (auto& kv : streams) kv.second->thread_running.store(false);
for (auto& kv : streams)
if (kv.second->thread.joinable()) kv.second->thread.join();
streams.clear();
}
bool RTMPManager::is_streaming(const std::string& cam_name)
{
std::lock_guard<std::mutex> lock(streams_mutex);
auto it = streams.find(make_key(cam_name));
if (it == streams.end()) return false;
auto& ctx = *(it->second);
std::lock_guard<std::mutex> lk(ctx.status_mutex);
return ctx.status.running;
}
std::string RTMPManager::get_stream_url(const std::string& cam_name)
{
std::string ip = get_ip_address("enP2p33s0");
if (ip.empty()) ip = "127.0.0.1";
2025-12-18 08:59:01 +08:00
return "rtsp://" + ip + ":18554/" + cam_name;
2025-12-17 17:21:11 +08:00
}
// ========== 汇总状态 ==========
std::vector<RTMPManager::ChannelInfo> RTMPManager::get_all_channels_status()
{
std::vector<ChannelInfo> result;
std::lock_guard<std::mutex> lock(streams_mutex);
for (size_t i = 0; i < g_app_config.cameras.size(); ++i)
{
const auto& cam = g_app_config.cameras[i];
auto key = make_key(cam.name);
ChannelInfo ch;
ch.loc = static_cast<int>(i);
ch.url.clear();
ch.running = false;
ch.reason = "Not started";
auto it = streams.find(key);
if (it != streams.end())
{
auto& ctx = *(it->second);
std::lock_guard<std::mutex> lk(ctx.status_mutex);
auto& status = it->second->status;
ch.running = status.running;
if (status.running)
{
ch.url = get_stream_url(cam.name);
ch.reason.clear();
}
else
{
ch.reason = status.last_error.empty() ? "Unknown error" : status.last_error;
}
}
result.push_back(ch);
}
return result;
}