ZLMediaKit/src/Rtsp/RtspPlayer.h

151 lines
4.9 KiB
C++
Raw Normal View History

2017-10-09 22:11:01 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2017-09-27 16:20:30 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2017-09-27 16:20:30 +08:00
*
2020-04-04 20:30:09 +08:00
* 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.
2017-04-01 16:35:56 +08:00
*/
#ifndef SRC_RTSPPLAYER_RTSPPLAYER_H_TXT_
#define SRC_RTSPPLAYER_RTSPPLAYER_H_TXT_
2017-04-25 11:35:41 +08:00
2017-04-01 16:35:56 +08:00
#include <string>
2017-04-25 11:35:41 +08:00
#include <memory>
2017-04-01 16:35:56 +08:00
#include "Util/TimeTicker.h"
2017-04-25 11:35:41 +08:00
#include "Poller/Timer.h"
#include "Network/Socket.h"
#include "Player/PlayerBase.h"
2017-04-25 11:35:41 +08:00
#include "Network/TcpClient.h"
2018-10-30 10:31:27 +08:00
#include "RtspSplitter.h"
2018-12-14 17:46:12 +08:00
#include "RtpReceiver.h"
2017-04-01 16:35:56 +08:00
2018-10-24 17:17:55 +08:00
namespace mediakit {
class RtcpContext;
2019-08-30 11:17:27 +08:00
//实现了rtsp播放器协议部分的功能及数据接收功能
class RtspPlayer : public PlayerBase, public toolkit::TcpClient, public RtspSplitter, public RtpReceiver {
2017-04-01 16:35:56 +08:00
public:
using Ptr = std::shared_ptr<RtspPlayer>;
2020-03-20 11:51:24 +08:00
RtspPlayer(const toolkit::EventPoller::Ptr &poller);
2020-08-01 10:14:42 +08:00
~RtspPlayer() override;
void play(const std::string &strUrl) override;
2021-08-12 16:07:31 +08:00
void pause(bool pause) override;
void speed(float speed) override;
2020-03-20 11:51:24 +08:00
void teardown() override;
float getPacketLossRate(TrackType type) const override;
2020-08-01 10:14:42 +08:00
2017-04-01 16:35:56 +08:00
protected:
2020-03-20 11:51:24 +08:00
//派生类回调函数
virtual bool onCheckSDP(const std::string &sdp) = 0;
2021-02-05 11:28:50 +08:00
virtual void onRecvRTP(RtpPacket::Ptr rtp, const SdpTrack::Ptr &track) = 0;
2018-10-26 14:12:16 +08:00
uint32_t getProgressMilliSecond() const;
void seekToMilliSecond(uint32_t ms);
2018-10-30 10:31:27 +08:00
/**
* rtsp包回调sdp等content数据
* @param parser rtsp包
*/
void onWholeRtspPacket(Parser &parser) override ;
/**
* rtp包回调
* @param data
* @param len
*/
void onRtpPacket(const char *data,size_t len) override ;
2018-12-14 17:46:12 +08:00
/**
* rtp数据包排序后输出
2020-08-01 10:14:42 +08:00
* @param rtp rtp数据包
* @param track_idx track索引
2018-12-14 17:46:12 +08:00
*/
2021-02-05 11:28:50 +08:00
void onRtpSorted(RtpPacket::Ptr rtp, int track_idx) override;
2021-01-31 19:18:17 +08:00
/**
* rtp但还未排序
* @param rtp rtp数据包
* @param track_index track索引
*/
void onBeforeRtpSorted(const RtpPacket::Ptr &rtp, int track_index) override;
/**
* RTCP包回调
2020-08-01 10:14:42 +08:00
* @param track_idx track索引
* @param track sdp相关信息
* @param data rtcp内容
* @param len rtcp内容长度
*/
2021-01-31 19:18:17 +08:00
virtual void onRtcpPacket(int track_idx, SdpTrack::Ptr &track, uint8_t *data, size_t len);
2019-07-20 20:53:50 +08:00
2020-03-20 11:51:24 +08:00
/////////////TcpClient override/////////////
void onConnect(const toolkit::SockException &err) override;
void onRecv(const toolkit::Buffer::Ptr &buf) override;
void onErr(const toolkit::SockException &ex) override;
2020-08-01 10:14:42 +08:00
2017-04-01 16:35:56 +08:00
private:
void onPlayResult_l(const toolkit::SockException &ex , bool handshake_done);
2018-07-05 18:48:08 +08:00
int getTrackIndexByInterleaved(int interleaved) const;
2020-08-01 10:14:42 +08:00
int getTrackIndexByTrackType(TrackType track_type) const;
2017-04-01 16:35:56 +08:00
2020-08-01 10:14:42 +08:00
void handleResSETUP(const Parser &parser, unsigned int track_idx);
2020-03-20 11:51:24 +08:00
void handleResDESCRIBE(const Parser &parser);
bool handleAuthenticationFailure(const std::string &wwwAuthenticateParamsStr);
2020-03-20 11:51:24 +08:00
void handleResPAUSE(const Parser &parser, int type);
bool handleResponse(const std::string &cmd, const Parser &parser);
2020-05-15 09:53:17 +08:00
void sendOptions();
2020-08-01 10:14:42 +08:00
void sendSetup(unsigned int track_idx);
2020-03-20 11:51:24 +08:00
void sendPause(int type , uint32_t ms);
void sendDescribe();
void sendTeardown();
2020-05-15 09:53:17 +08:00
void sendKeepAlive();
void sendRtspRequest(const std::string &cmd, const std::string &url ,const StrCaseMap &header = StrCaseMap());
void sendRtspRequest(const std::string &cmd, const std::string &url ,const std::initializer_list<std::string> &header);
2020-03-20 11:51:24 +08:00
void createUdpSockIfNecessary(int track_idx);
2020-08-01 10:14:42 +08:00
private:
//是否为性能测试模式
bool _benchmark_mode = false;
//轮流发送rtcp与GET_PARAMETER保活
2021-01-31 19:18:17 +08:00
bool _send_rtcp[2] = {true, true};
std::string _play_url;
std::vector<SdpTrack::Ptr> _sdp_track;
std::function<void(const Parser&)> _on_response;
//RTP端口,trackid idx 为数组下标
toolkit::Socket::Ptr _rtp_sock[2];
//RTCP端口,trackid idx 为数组下标
toolkit::Socket::Ptr _rtcp_sock[2];
//rtsp鉴权相关
std::string _md5_nonce;
std::string _realm;
2020-03-20 11:51:24 +08:00
//rtsp info
std::string _session_id;
uint32_t _cseq_send = 1;
std::string _content_base;
Rtsp::eRtpType _rtp_type = Rtsp::RTP_TCP;
2020-03-20 11:51:24 +08:00
//当前rtp时间戳
uint32_t _stamp[2] = {0, 0};
2020-03-20 11:51:24 +08:00
//超时功能实现
toolkit::Ticker _rtp_recv_ticker;
std::shared_ptr<toolkit::Timer> _play_check_timer;
std::shared_ptr<toolkit::Timer> _rtp_check_timer;
2020-05-15 09:53:17 +08:00
//服务器支持的命令
std::set<std::string> _supported_cmd;
2021-01-31 19:18:17 +08:00
////////// rtcp ////////////////
//rtcp发送时间,trackid idx 为数组下标
toolkit::Ticker _rtcp_send_ticker[2];
2021-01-31 19:18:17 +08:00
//统计rtp并发送rtcp
std::vector<std::shared_ptr<RtcpContext>> _rtcp_context;
2017-04-01 16:35:56 +08:00
};
2018-10-24 17:17:55 +08:00
} /* namespace mediakit */
2017-04-01 16:35:56 +08:00
#endif /* SRC_RTSPPLAYER_RTSPPLAYER_H_TXT_ */