2021-04-09 20:42:36 +08:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
#include <string>
|
2021-03-27 09:13:10 +08:00
|
|
|
|
#include "DtlsTransport.hpp"
|
|
|
|
|
#include "IceServer.hpp"
|
|
|
|
|
#include "SrtpSession.hpp"
|
|
|
|
|
#include "StunPacket.hpp"
|
2021-03-31 17:15:26 +08:00
|
|
|
|
#include "Sdp.h"
|
2021-04-02 17:08:11 +08:00
|
|
|
|
#include "Poller/EventPoller.h"
|
|
|
|
|
#include "Network/Socket.h"
|
2021-04-02 23:01:58 +08:00
|
|
|
|
#include "Rtsp/RtspMediaSourceImp.h"
|
2021-04-03 00:04:52 +08:00
|
|
|
|
#include "Rtcp/RtcpContext.h"
|
2021-04-02 17:08:11 +08:00
|
|
|
|
using namespace toolkit;
|
|
|
|
|
using namespace mediakit;
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
2021-03-26 11:07:03 +08:00
|
|
|
|
class WebRtcTransport : public RTC::DtlsTransport::Listener, public RTC::IceServer::Listener {
|
2021-03-24 16:52:41 +08:00
|
|
|
|
public:
|
|
|
|
|
using Ptr = std::shared_ptr<WebRtcTransport>;
|
2021-03-27 10:16:49 +08:00
|
|
|
|
WebRtcTransport(const EventPoller::Ptr &poller);
|
|
|
|
|
~WebRtcTransport() override = default;
|
|
|
|
|
|
2021-04-02 17:08:11 +08:00
|
|
|
|
/**
|
2021-04-07 17:21:59 +08:00
|
|
|
|
* 创建对象
|
|
|
|
|
*/
|
|
|
|
|
virtual void onCreate();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 销毁对象
|
2021-04-02 17:08:11 +08:00
|
|
|
|
*/
|
2021-03-27 10:16:49 +08:00
|
|
|
|
virtual void onDestory();
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
2021-04-02 17:08:11 +08:00
|
|
|
|
/**
|
|
|
|
|
* 创建webrtc answer sdp
|
|
|
|
|
* @param offer offer sdp
|
|
|
|
|
* @return answer sdp
|
|
|
|
|
*/
|
2021-03-31 17:15:26 +08:00
|
|
|
|
std::string getAnswerSdp(const string &offer);
|
|
|
|
|
|
2021-04-02 17:08:11 +08:00
|
|
|
|
/**
|
|
|
|
|
* socket收到udp数据
|
|
|
|
|
* @param buf 数据指针
|
|
|
|
|
* @param len 数据长度
|
|
|
|
|
* @param tuple 数据来源
|
|
|
|
|
*/
|
|
|
|
|
void inputSockData(char *buf, size_t len, RTC::TransportTuple *tuple);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 发送rtp
|
|
|
|
|
* @param buf rtcp内容
|
|
|
|
|
* @param len rtcp长度
|
2021-04-04 23:20:10 +08:00
|
|
|
|
* @param flush 是否flush socket
|
|
|
|
|
* @param pt rtp payload type
|
2021-04-02 17:08:11 +08:00
|
|
|
|
*/
|
2021-04-04 21:42:11 +08:00
|
|
|
|
void sendRtpPacket(char *buf, size_t len, bool flush, uint8_t pt);
|
2021-04-02 23:12:37 +08:00
|
|
|
|
void sendRtcpPacket(char *buf, size_t len, bool flush);
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
2021-04-04 23:20:10 +08:00
|
|
|
|
const EventPoller::Ptr& getPoller() const;
|
|
|
|
|
|
2021-03-26 11:07:03 +08:00
|
|
|
|
protected:
|
2021-04-02 17:08:11 +08:00
|
|
|
|
//// dtls相关的回调 ////
|
2021-04-07 17:51:06 +08:00
|
|
|
|
void OnDtlsTransportConnecting(const RTC::DtlsTransport *dtlsTransport) override;
|
2021-04-02 17:08:11 +08:00
|
|
|
|
void OnDtlsTransportConnected(const RTC::DtlsTransport *dtlsTransport,
|
|
|
|
|
RTC::SrtpSession::CryptoSuite srtpCryptoSuite,
|
|
|
|
|
uint8_t *srtpLocalKey,
|
|
|
|
|
size_t srtpLocalKeyLen,
|
|
|
|
|
uint8_t *srtpRemoteKey,
|
|
|
|
|
size_t srtpRemoteKeyLen,
|
|
|
|
|
std::string &remoteCert) override;
|
2021-03-26 11:07:03 +08:00
|
|
|
|
|
2021-04-07 17:51:06 +08:00
|
|
|
|
void OnDtlsTransportFailed(const RTC::DtlsTransport *dtlsTransport) override;
|
|
|
|
|
void OnDtlsTransportClosed(const RTC::DtlsTransport *dtlsTransport) override;
|
2021-03-26 11:07:03 +08:00
|
|
|
|
void OnDtlsTransportSendData(const RTC::DtlsTransport *dtlsTransport, const uint8_t *data, size_t len) override;
|
2021-04-07 17:51:06 +08:00
|
|
|
|
void OnDtlsTransportApplicationDataReceived(const RTC::DtlsTransport *dtlsTransport, const uint8_t *data, size_t len) override;
|
2021-03-26 11:07:03 +08:00
|
|
|
|
|
|
|
|
|
protected:
|
2021-04-02 17:08:11 +08:00
|
|
|
|
//// ice相关的回调 ///
|
2021-03-26 11:07:03 +08:00
|
|
|
|
void OnIceServerSendStunPacket(const RTC::IceServer *iceServer, const RTC::StunPacket *packet, RTC::TransportTuple *tuple) override;
|
|
|
|
|
void OnIceServerSelectedTuple(const RTC::IceServer *iceServer, RTC::TransportTuple *tuple) override;
|
|
|
|
|
void OnIceServerConnected(const RTC::IceServer *iceServer) override;
|
|
|
|
|
void OnIceServerCompleted(const RTC::IceServer *iceServer) override;
|
|
|
|
|
void OnIceServerDisconnected(const RTC::IceServer *iceServer) override;
|
|
|
|
|
|
2021-03-24 16:52:41 +08:00
|
|
|
|
protected:
|
2021-04-02 17:08:11 +08:00
|
|
|
|
virtual void onStartWebRTC() = 0;
|
2021-04-28 15:41:36 +08:00
|
|
|
|
virtual void onRtcConfigure(RtcConfigure &configure) const;
|
2021-04-05 00:12:46 +08:00
|
|
|
|
virtual void onCheckSdp(SdpType type, RtcSession &sdp);
|
2021-04-02 17:56:24 +08:00
|
|
|
|
virtual void onSendSockData(const char *buf, size_t len, struct sockaddr_in *dst, bool flush = true) = 0;
|
|
|
|
|
|
|
|
|
|
virtual void onRtp(const char *buf, size_t len) = 0;
|
|
|
|
|
virtual void onRtcp(const char *buf, size_t len) = 0;
|
2021-04-07 17:21:59 +08:00
|
|
|
|
virtual void onShutdown(const SockException &ex) = 0;
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
2021-04-02 20:35:43 +08:00
|
|
|
|
protected:
|
|
|
|
|
const RtcSession& getSdp(SdpType type) const;
|
2021-04-07 20:33:53 +08:00
|
|
|
|
RTC::TransportTuple* getSelectedTuple() const;
|
2021-04-28 15:41:36 +08:00
|
|
|
|
void sendRtcpRemb(uint32_t ssrc, size_t bit_rate);
|
|
|
|
|
void sendRtcpPli(uint32_t ssrc);
|
2021-04-02 20:35:43 +08:00
|
|
|
|
|
2021-03-24 16:52:41 +08:00
|
|
|
|
private:
|
2021-04-02 17:56:24 +08:00
|
|
|
|
void onSendSockData(const char *buf, size_t len, bool flush = true);
|
2021-04-02 17:08:11 +08:00
|
|
|
|
void setRemoteDtlsFingerprint(const RtcSession &remote);
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
|
|
|
|
private:
|
2021-04-04 23:20:10 +08:00
|
|
|
|
EventPoller::Ptr _poller;
|
2021-04-02 17:08:11 +08:00
|
|
|
|
std::shared_ptr<RTC::IceServer> _ice_server;
|
|
|
|
|
std::shared_ptr<RTC::DtlsTransport> _dtls_transport;
|
|
|
|
|
std::shared_ptr<RTC::SrtpSession> _srtp_session_send;
|
|
|
|
|
std::shared_ptr<RTC::SrtpSession> _srtp_session_recv;
|
2021-03-31 17:15:26 +08:00
|
|
|
|
RtcSession::Ptr _offer_sdp;
|
|
|
|
|
RtcSession::Ptr _answer_sdp;
|
2021-03-24 16:52:41 +08:00
|
|
|
|
};
|
|
|
|
|
|
2021-04-02 23:01:58 +08:00
|
|
|
|
class RtpReceiverImp;
|
|
|
|
|
|
2021-04-07 20:33:53 +08:00
|
|
|
|
class WebRtcTransportImp : public WebRtcTransport, public MediaSourceEvent, public SockInfo, public std::enable_shared_from_this<WebRtcTransportImp>{
|
2021-03-24 16:52:41 +08:00
|
|
|
|
public:
|
|
|
|
|
using Ptr = std::shared_ptr<WebRtcTransportImp>;
|
2021-04-07 17:51:06 +08:00
|
|
|
|
~WebRtcTransportImp() override;
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
2021-04-02 17:08:11 +08:00
|
|
|
|
/**
|
|
|
|
|
* 创建WebRTC对象
|
|
|
|
|
* @param poller 改对象需要绑定的线程
|
|
|
|
|
* @return 对象
|
|
|
|
|
*/
|
2021-03-27 10:16:49 +08:00
|
|
|
|
static Ptr create(const EventPoller::Ptr &poller);
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
2021-04-02 17:08:11 +08:00
|
|
|
|
/**
|
|
|
|
|
* 绑定rtsp媒体源
|
|
|
|
|
* @param src 媒体源
|
2021-04-05 11:32:38 +08:00
|
|
|
|
* @param is_play 是播放还是推流
|
2021-04-02 17:08:11 +08:00
|
|
|
|
*/
|
2021-04-07 18:35:38 +08:00
|
|
|
|
void attach(const RtspMediaSource::Ptr &src, const MediaInfo &info, bool is_play = true);
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
|
|
|
|
protected:
|
2021-04-02 17:08:11 +08:00
|
|
|
|
void onStartWebRTC() override;
|
2021-04-02 17:56:24 +08:00
|
|
|
|
void onSendSockData(const char *buf, size_t len, struct sockaddr_in *dst, bool flush = true) override;
|
2021-04-05 00:12:46 +08:00
|
|
|
|
void onCheckSdp(SdpType type, RtcSession &sdp) override;
|
2021-04-02 18:28:01 +08:00
|
|
|
|
void onRtcConfigure(RtcConfigure &configure) const override;
|
2021-04-02 17:56:24 +08:00
|
|
|
|
|
|
|
|
|
void onRtp(const char *buf, size_t len) override;
|
|
|
|
|
void onRtcp(const char *buf, size_t len) override;
|
2021-04-07 17:21:59 +08:00
|
|
|
|
void onShutdown(const SockException &ex) override;
|
2021-04-02 17:08:11 +08:00
|
|
|
|
|
2021-04-07 18:18:27 +08:00
|
|
|
|
///////MediaSourceEvent override///////
|
|
|
|
|
// 关闭
|
|
|
|
|
bool close(MediaSource &sender, bool force) override;
|
|
|
|
|
// 播放总人数
|
|
|
|
|
int totalReaderCount(MediaSource &sender) override;
|
|
|
|
|
// 获取媒体源类型
|
|
|
|
|
MediaOriginType getOriginType(MediaSource &sender) const override;
|
|
|
|
|
// 获取媒体源url或者文件路径
|
|
|
|
|
string getOriginUrl(MediaSource &sender) const override;
|
|
|
|
|
// 获取媒体源客户端相关信息
|
|
|
|
|
std::shared_ptr<SockInfo> getOriginSock(MediaSource &sender) const override;
|
|
|
|
|
|
2021-04-07 20:33:53 +08:00
|
|
|
|
///////SockInfo override///////
|
|
|
|
|
//获取本机ip
|
|
|
|
|
string get_local_ip() override;
|
|
|
|
|
//获取本机端口号
|
|
|
|
|
uint16_t get_local_port() override;
|
|
|
|
|
//获取对方ip
|
|
|
|
|
string get_peer_ip() override;
|
|
|
|
|
//获取对方端口号
|
|
|
|
|
uint16_t get_peer_port() override;
|
|
|
|
|
//获取标识符
|
|
|
|
|
string getIdentifier() const override;
|
|
|
|
|
|
2021-04-02 17:08:11 +08:00
|
|
|
|
private:
|
2021-03-27 10:16:49 +08:00
|
|
|
|
WebRtcTransportImp(const EventPoller::Ptr &poller);
|
2021-04-07 17:21:59 +08:00
|
|
|
|
void onCreate() override;
|
2021-03-27 10:16:49 +08:00
|
|
|
|
void onDestory() override;
|
2021-04-02 17:56:24 +08:00
|
|
|
|
void onSendRtp(const RtpPacket::Ptr &rtp, bool flush);
|
2021-04-02 18:28:01 +08:00
|
|
|
|
SdpAttrCandidate::Ptr getIceCandidate() const;
|
2021-04-02 20:35:43 +08:00
|
|
|
|
bool canSendRtp() const;
|
2021-04-02 23:01:58 +08:00
|
|
|
|
bool canRecvRtp() const;
|
|
|
|
|
|
|
|
|
|
class RtpPayloadInfo {
|
|
|
|
|
public:
|
|
|
|
|
bool is_common_rtp;
|
|
|
|
|
const RtcCodecPlan *plan;
|
|
|
|
|
const RtcMedia *media;
|
|
|
|
|
std::shared_ptr<RtpReceiverImp> receiver;
|
2021-04-03 00:04:52 +08:00
|
|
|
|
RtcpContext::Ptr rtcp_context_recv;
|
|
|
|
|
RtcpContext::Ptr rtcp_context_send;
|
2021-04-02 23:01:58 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void onSortedRtp(const RtpPayloadInfo &info,RtpPacket::Ptr rtp);
|
|
|
|
|
void onBeforeSortedRtp(const RtpPayloadInfo &info,const RtpPacket::Ptr &rtp);
|
2021-03-24 16:52:41 +08:00
|
|
|
|
|
|
|
|
|
private:
|
2021-04-07 18:35:38 +08:00
|
|
|
|
//用掉的总流量
|
|
|
|
|
uint64_t _bytes_usage = 0;
|
|
|
|
|
//媒体相关元数据
|
|
|
|
|
MediaInfo _media_info;
|
2021-04-07 17:51:06 +08:00
|
|
|
|
//保持自我强引用
|
|
|
|
|
Ptr _self;
|
|
|
|
|
//检测超时的定时器
|
|
|
|
|
Timer::Ptr _timer;
|
|
|
|
|
//刷新计时器
|
|
|
|
|
Ticker _alive_ticker;
|
2021-04-05 00:12:46 +08:00
|
|
|
|
//pli rtcp计时器
|
2021-04-04 23:20:10 +08:00
|
|
|
|
Ticker _pli_ticker;
|
2021-04-05 00:12:46 +08:00
|
|
|
|
//记录协商的rtp的pt类型
|
2021-04-10 21:58:27 +08:00
|
|
|
|
uint8_t _send_rtp_pt[2] = {0xFF, 0xFF};
|
2021-04-05 00:12:46 +08:00
|
|
|
|
//复合udp端口,接收一切rtp与rtcp
|
2021-03-24 16:52:41 +08:00
|
|
|
|
Socket::Ptr _socket;
|
2021-04-05 11:32:38 +08:00
|
|
|
|
//推流的rtsp源
|
|
|
|
|
RtspMediaSource::Ptr _push_src;
|
|
|
|
|
//播放的rtsp源
|
|
|
|
|
RtspMediaSource::Ptr _play_src;
|
|
|
|
|
//播放rtsp源的reader对象
|
2021-04-04 23:20:10 +08:00
|
|
|
|
RtspMediaSource::RingType::RingReader::Ptr _reader;
|
2021-04-05 00:12:46 +08:00
|
|
|
|
//根据rtp的pt获取相关信息
|
2021-04-04 23:20:10 +08:00
|
|
|
|
unordered_map<uint8_t, RtpPayloadInfo> _rtp_info_pt;
|
2021-05-08 10:49:09 +08:00
|
|
|
|
//根据推流端rtcp的ssrc获取相关信息
|
2021-04-04 23:20:10 +08:00
|
|
|
|
unordered_map<uint32_t, RtpPayloadInfo*> _rtp_info_ssrc;
|
2021-05-08 10:49:09 +08:00
|
|
|
|
//发送rtp时需要修改rtp ext id
|
|
|
|
|
unordered_map<RtpExtType, uint8_t> _rtp_ext_type_to_id;
|
|
|
|
|
//接收rtp时需要修改rtp ext id
|
|
|
|
|
unordered_map<uint8_t, RtpExtType> _rtp_ext_id_to_type;
|
2021-03-24 16:52:41 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|