2020-07-02 22:23:43 +08:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by MIT license that can be found in the
|
|
|
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
|
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#if defined(ENABLE_RTPPROXY)
|
|
|
|
|
#include "RtpServer.h"
|
|
|
|
|
#include "RtpSelector.h"
|
|
|
|
|
namespace mediakit{
|
|
|
|
|
|
|
|
|
|
RtpServer::RtpServer() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RtpServer::~RtpServer() {
|
2020-07-08 09:36:10 +08:00
|
|
|
|
if(_on_clearup){
|
|
|
|
|
_on_clearup();
|
2020-07-02 22:23:43 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-07 10:01:12 +08:00
|
|
|
|
void RtpServer::start(uint16_t local_port, const string &stream_id, bool enable_tcp, const char *local_ip) {
|
2020-07-02 22:23:43 +08:00
|
|
|
|
//创建udp服务器
|
2020-11-28 02:39:21 +08:00
|
|
|
|
Socket::Ptr udp_server = Socket::createSocket(nullptr, true);
|
2020-10-20 10:38:31 +08:00
|
|
|
|
if (local_port == 0) {
|
|
|
|
|
//随机端口,rtp端口采用偶数
|
2020-11-28 02:39:21 +08:00
|
|
|
|
Socket::Ptr rtcp_server = Socket::createSocket(nullptr, true);
|
2020-10-20 10:38:31 +08:00
|
|
|
|
auto pair = std::make_pair(udp_server, rtcp_server);
|
|
|
|
|
makeSockPair(pair, local_ip);
|
|
|
|
|
//取偶数端口
|
|
|
|
|
udp_server = pair.first;
|
|
|
|
|
} else if (!udp_server->bindUdpSock(local_port, local_ip)) {
|
|
|
|
|
//用户指定端口
|
2020-07-08 10:09:16 +08:00
|
|
|
|
throw std::runtime_error(StrPrinter << "bindUdpSock on " << local_ip << ":" << local_port << " failed:" << get_uv_errmsg(true));
|
2020-07-02 22:23:43 +08:00
|
|
|
|
}
|
|
|
|
|
//设置udp socket读缓存
|
2020-07-08 10:09:16 +08:00
|
|
|
|
SockUtil::setRecvBuf(udp_server->rawFD(), 4 * 1024 * 1024);
|
2020-07-02 22:23:43 +08:00
|
|
|
|
|
2020-07-08 10:09:16 +08:00
|
|
|
|
TcpServer::Ptr tcp_server;
|
2020-07-02 22:23:43 +08:00
|
|
|
|
if (enable_tcp) {
|
2020-09-12 19:03:52 +08:00
|
|
|
|
//创建tcp服务器
|
|
|
|
|
tcp_server = std::make_shared<TcpServer>(udp_server->getPoller());
|
|
|
|
|
(*tcp_server)[RtpSession::kStreamID] = stream_id;
|
|
|
|
|
tcp_server->start<RtpSession>(udp_server->get_local_port(), local_ip);
|
2020-07-02 22:23:43 +08:00
|
|
|
|
}
|
2020-07-08 09:36:10 +08:00
|
|
|
|
|
|
|
|
|
RtpProcess::Ptr process;
|
|
|
|
|
if (!stream_id.empty()) {
|
|
|
|
|
//指定了流id,那么一个端口一个流(不管是否包含多个ssrc的多个流,绑定rtp源后,会筛选掉ip端口不匹配的流)
|
|
|
|
|
process = RtpSelector::Instance().getProcess(stream_id, true);
|
2020-07-08 10:09:16 +08:00
|
|
|
|
udp_server->setOnRead([udp_server, process](const Buffer::Ptr &buf, struct sockaddr *addr, int) {
|
2020-10-24 23:33:13 +08:00
|
|
|
|
process->inputRtp(true, udp_server, buf->data(), buf->size(), addr);
|
2020-07-08 09:36:10 +08:00
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
//未指定流id,一个端口多个流,通过ssrc来分流
|
|
|
|
|
auto &ref = RtpSelector::Instance();
|
2020-07-08 10:09:16 +08:00
|
|
|
|
udp_server->setOnRead([&ref, udp_server](const Buffer::Ptr &buf, struct sockaddr *addr, int) {
|
|
|
|
|
ref.inputRtp(udp_server, buf->data(), buf->size(), addr);
|
2020-07-08 09:36:10 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-08 10:09:16 +08:00
|
|
|
|
_on_clearup = [udp_server, process, stream_id]() {
|
2020-07-08 09:36:10 +08:00
|
|
|
|
//去除循环引用
|
2020-07-08 10:09:16 +08:00
|
|
|
|
udp_server->setOnRead(nullptr);
|
2020-07-08 09:36:10 +08:00
|
|
|
|
if (process) {
|
|
|
|
|
//删除rtp处理器
|
|
|
|
|
RtpSelector::Instance().delProcess(stream_id, process.get());
|
|
|
|
|
}
|
|
|
|
|
};
|
2020-07-08 10:09:16 +08:00
|
|
|
|
|
|
|
|
|
_tcp_server = tcp_server;
|
|
|
|
|
_udp_server = udp_server;
|
2020-07-08 10:25:30 +08:00
|
|
|
|
_rtp_process = process;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RtpServer::setOnDetach(const function<void()> &cb){
|
|
|
|
|
if(_rtp_process){
|
|
|
|
|
_rtp_process->setOnDetach(cb);
|
|
|
|
|
}
|
2020-07-02 22:23:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EventPoller::Ptr RtpServer::getPoller() {
|
|
|
|
|
return _udp_server->getPoller();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint16_t RtpServer::getPort() {
|
|
|
|
|
return _udp_server ? _udp_server->get_local_port() : 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-25 16:05:38 +08:00
|
|
|
|
void RtpServer::pauseRtpCheck(){
|
|
|
|
|
if(_rtp_process)
|
|
|
|
|
_rtp_process->setStopCheckRtp(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RtpServer::resumeRtpCheck(){
|
|
|
|
|
if(_rtp_process)
|
|
|
|
|
_rtp_process->setStopCheckRtp(false);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 22:23:43 +08:00
|
|
|
|
}//namespace mediakit
|
|
|
|
|
#endif//defined(ENABLE_RTPPROXY)
|