RtspPlayer.h 4.68 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
xiongziliang committed
6 7 8
 * 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.
xzl committed
9 10 11 12
 */

#ifndef SRC_RTSPPLAYER_RTSPPLAYER_H_TXT_
#define SRC_RTSPPLAYER_RTSPPLAYER_H_TXT_
xiongzilaing committed
13

xzl committed
14
#include <string>
xiongzilaing committed
15
#include <memory>
xzl committed
16
#include "RtspSession.h"
xiongzilaing committed
17 18
#include "RtspMediaSource.h"
#include "Player/PlayerBase.h"
xzl committed
19
#include "Util/util.h"
xiongzilaing committed
20
#include "Util/logger.h"
xzl committed
21
#include "Util/TimeTicker.h"
xiongzilaing committed
22 23 24
#include "Poller/Timer.h"
#include "Network/Socket.h"
#include "Network/TcpClient.h"
25
#include "RtspSplitter.h"
xiongziliang committed
26
#include "RtpReceiver.h"
xiongziliang committed
27
#include "Common/Stamp.h"
xzl committed
28 29

using namespace std;
xiongziliang committed
30
using namespace toolkit;
xiongzilaing committed
31

xiongziliang committed
32
namespace mediakit {
xzl committed
33

3503207480@qq.com committed
34
//实现了rtsp播放器协议部分的功能,及数据接收功能
xiongziliang committed
35
class RtspPlayer: public PlayerBase,public TcpClient, public RtspSplitter, public RtpReceiver {
xzl committed
36
public:
37 38 39 40 41 42 43 44
    typedef std::shared_ptr<RtspPlayer> Ptr;

    RtspPlayer(const EventPoller::Ptr &poller) ;
    virtual ~RtspPlayer(void);
    void play(const string &strUrl) override;
    void pause(bool bPause) override;
    void teardown() override;
    float getPacketLossRate(TrackType type) const override;
xzl committed
45
protected:
46 47 48
    //派生类回调函数
    virtual bool onCheckSDP(const string &strSdp) = 0;
    virtual void onRecvRTP(const RtpPacket::Ptr &pRtppt, const SdpTrack::Ptr &track) = 0;
49 50
    uint32_t getProgressMilliSecond() const;
    void seekToMilliSecond(uint32_t ms);
51 52 53 54 55 56 57 58 59 60 61 62 63

    /**
     * 收到完整的rtsp包回调,包括sdp等content数据
     * @param parser rtsp包
     */
    void onWholeRtspPacket(Parser &parser) override ;

    /**
     * 收到rtp包回调
     * @param data
     * @param len
     */
    void onRtpPacket(const char *data,uint64_t len) override ;
xiongziliang committed
64 65 66 67 68 69

    /**
     * rtp数据包排序后输出
     * @param rtppt rtp数据包
     * @param trackidx track索引
     */
70
    void onRtpSorted(const RtpPacket::Ptr &rtppt, int trackidx) override;
71 72 73 74 75 76 77 78 79


    /**
     * 收到RTCP包回调
     * @param iTrackidx
     * @param track
     * @param pucData
     * @param uiLen
     */
80
    virtual void onRtcpPacket(int iTrackidx, SdpTrack::Ptr &track, unsigned char *pucData, unsigned int uiLen);
81

82 83 84 85
    /////////////TcpClient override/////////////
    void onConnect(const SockException &err) override;
    void onRecv(const Buffer::Ptr &pBuf) override;
    void onErr(const SockException &ex) override;
xzl committed
86
private:
87 88
    void onRecvRTP_l(const RtpPacket::Ptr &pRtppt, const SdpTrack::Ptr &track);
    void onPlayResult_l(const SockException &ex , bool handshakeCompleted);
89

xiongziliang committed
90
    int getTrackIndexByInterleaved(int interleaved) const;
91
    int getTrackIndexByTrackType(TrackType trackType) const;
xzl committed
92

93 94 95 96
    void handleResSETUP(const Parser &parser, unsigned int uiTrackIndex);
    void handleResDESCRIBE(const Parser &parser);
    bool handleAuthenticationFailure(const string &wwwAuthenticateParamsStr);
    void handleResPAUSE(const Parser &parser, int type);
97

98 99 100 101
    //发送SETUP命令
    void sendSetup(unsigned int uiTrackIndex);
    void sendPause(int type , uint32_t ms);
    void sendDescribe();
xiongziliang committed
102

103
    void sendRtspRequest(const string &cmd, const string &url ,const StrCaseMap &header = StrCaseMap());
104
    void sendRtspRequest(const string &cmd, const string &url ,const std::initializer_list<string> &header);
xiongziliang committed
105
    void sendReceiverReport(bool overTcp,int iTrackIndex);
106
    void createUdpSockIfNecessary(int track_idx);
107
private:
108 109 110
    string _strUrl;
    vector<SdpTrack::Ptr> _aTrackInfo;
    function<void(const Parser&)> _onHandshake;
111 112 113 114
    Socket::Ptr _apRtpSock[2]; //RTP端口,trackid idx 为数组下标
    Socket::Ptr _apRtcpSock[2];//RTCP端口,trackid idx 为数组下标

    //rtsp鉴权相关
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
    string _rtspMd5Nonce;
    string _rtspRealm;
    //rtsp info
    string _strSession;
    unsigned int _uiCseq = 1;
    string _strContentBase;
    Rtsp::eRtpType _eType = Rtsp::RTP_TCP;

    /* 丢包率统计需要用到的参数 */
    uint16_t _aui16FirstSeq[2] = { 0 , 0};
    uint16_t _aui16NowSeq[2] = { 0 , 0 };
    uint64_t _aui64RtpRecv[2] = { 0 , 0};

    //超时功能实现
    Ticker _rtpTicker;
    std::shared_ptr<Timer> _pPlayTimer;
    std::shared_ptr<Timer> _pRtpTimer;

    //时间戳
    Stamp _stamp[2];

    //rtcp相关
xiongziliang committed
137 138
    RtcpCounter _aRtcpCnt[2]; //rtcp统计,trackid idx 为数组下标
    Ticker _aRtcpTicker[2]; //rtcp发送时间,trackid idx 为数组下标
xiongziliang committed
139 140 141

    //是否为rtsp点播
    bool _is_play_back;
142 143
    //是否为性能测试模式
    bool _benchmark_mode = false;
xzl committed
144 145
};

xiongziliang committed
146
} /* namespace mediakit */
xzl committed
147 148

#endif /* SRC_RTSPPLAYER_RTSPPLAYER_H_TXT_ */