2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2017-09-27 16:20:30 +08:00
|
|
|
|
* MIT License
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*
|
2017-09-27 16:20:30 +08:00
|
|
|
|
* Copyright (c) 2016 xiongziliang <771730766@qq.com>
|
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef SRC_RTMP_RtmpPlayer2_H_
|
|
|
|
|
#define SRC_RTMP_RtmpPlayer2_H_
|
|
|
|
|
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include <memory>
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include <string>
|
|
|
|
|
#include <functional>
|
|
|
|
|
#include "amf.h"
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include "Rtmp.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include "RtmpProtocol.h"
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include "Player/PlayerBase.h"
|
|
|
|
|
#include "Util/util.h"
|
|
|
|
|
#include "Util/logger.h"
|
|
|
|
|
#include "Util/TimeTicker.h"
|
|
|
|
|
#include "Network/Socket.h"
|
|
|
|
|
#include "Network/TcpClient.h"
|
2018-10-24 17:17:55 +08:00
|
|
|
|
using namespace toolkit;
|
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
|
|
|
|
|
|
|
|
|
class RtmpPlayer:public PlayerBase, public TcpClient, public RtmpProtocol{
|
|
|
|
|
public:
|
|
|
|
|
typedef std::shared_ptr<RtmpPlayer> Ptr;
|
|
|
|
|
RtmpPlayer();
|
|
|
|
|
virtual ~RtmpPlayer();
|
|
|
|
|
|
2017-08-03 13:55:46 +08:00
|
|
|
|
void play(const char* strUrl) override;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
void pause(bool bPause) override;
|
|
|
|
|
void teardown() override;
|
|
|
|
|
protected:
|
|
|
|
|
virtual bool onCheckMeta(AMFValue &val) =0;
|
2017-12-04 23:55:09 +08:00
|
|
|
|
virtual void onMediaData(const RtmpPacket::Ptr &chunkData) =0;
|
2018-10-26 14:12:16 +08:00
|
|
|
|
uint32_t getProgressMilliSecond() const;
|
|
|
|
|
void seekToMilliSecond(uint32_t ms);
|
2019-02-28 18:03:49 +08:00
|
|
|
|
protected:
|
2017-04-01 16:35:56 +08:00
|
|
|
|
void _onShutdown(const SockException &ex) {
|
|
|
|
|
WarnL << ex.getErrCode() << " " << ex.what();
|
2018-10-24 15:43:52 +08:00
|
|
|
|
_pPlayTimer.reset();
|
|
|
|
|
_pMediaTimer.reset();
|
|
|
|
|
_pBeatTimer.reset();
|
2017-04-01 16:35:56 +08:00
|
|
|
|
onShutdown(ex);
|
|
|
|
|
}
|
2017-12-04 23:55:09 +08:00
|
|
|
|
void _onMediaData(const RtmpPacket::Ptr &chunkData) {
|
2018-10-24 15:43:52 +08:00
|
|
|
|
_mediaTicker.resetTime();
|
2017-04-01 16:35:56 +08:00
|
|
|
|
onMediaData(chunkData);
|
|
|
|
|
}
|
|
|
|
|
void _onPlayResult(const SockException &ex) {
|
|
|
|
|
WarnL << ex.getErrCode() << " " << ex.what();
|
2018-10-24 15:43:52 +08:00
|
|
|
|
_pPlayTimer.reset();
|
|
|
|
|
_pMediaTimer.reset();
|
2017-04-01 16:35:56 +08:00
|
|
|
|
if (!ex) {
|
2018-10-24 15:43:52 +08:00
|
|
|
|
_mediaTicker.resetTime();
|
2017-04-01 16:35:56 +08:00
|
|
|
|
weak_ptr<RtmpPlayer> weakSelf = dynamic_pointer_cast<RtmpPlayer>(shared_from_this());
|
2018-10-24 15:43:52 +08:00
|
|
|
|
_pMediaTimer.reset( new Timer(5, [weakSelf]() {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
auto strongSelf=weakSelf.lock();
|
|
|
|
|
if(!strongSelf) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2018-10-24 15:43:52 +08:00
|
|
|
|
if(strongSelf->_mediaTicker.elapsedTime()>10000) {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
//recv media timeout!
|
|
|
|
|
strongSelf->_onShutdown(SockException(Err_timeout,"recv rtmp timeout"));
|
|
|
|
|
strongSelf->teardown();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2019-01-30 17:00:28 +08:00
|
|
|
|
},getPoller()));
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
|
|
|
|
onPlayResult(ex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//for Tcpclient
|
2018-02-23 15:36:51 +08:00
|
|
|
|
void onRecv(const Buffer::Ptr &pBuf) override;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
void onConnect(const SockException &err) override;
|
|
|
|
|
void onErr(const SockException &ex) override;
|
|
|
|
|
//fro RtmpProtocol
|
|
|
|
|
void onRtmpChunk(RtmpPacket &chunkData) override;
|
|
|
|
|
void onStreamDry(uint32_t ui32StreamId) override;
|
2018-09-26 23:12:03 +08:00
|
|
|
|
void onSendRawData(const Buffer::Ptr &buffer) override{
|
|
|
|
|
send(buffer);
|
2018-01-30 11:23:57 +08:00
|
|
|
|
}
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
template<typename FUN>
|
|
|
|
|
inline void addOnResultCB(const FUN &fun) {
|
2018-10-24 15:43:52 +08:00
|
|
|
|
lock_guard<recursive_mutex> lck(_mtxOnResultCB);
|
|
|
|
|
_mapOnResultCB.emplace(_iReqID, fun);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
|
|
|
|
template<typename FUN>
|
|
|
|
|
inline void addOnStatusCB(const FUN &fun) {
|
2018-10-24 15:43:52 +08:00
|
|
|
|
lock_guard<recursive_mutex> lck(_mtxOnStatusCB);
|
|
|
|
|
_dqOnStatusCB.emplace_back(fun);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void onCmd_result(AMFDecoder &dec);
|
|
|
|
|
void onCmd_onStatus(AMFDecoder &dec);
|
|
|
|
|
void onCmd_onMetaData(AMFDecoder &dec);
|
|
|
|
|
|
|
|
|
|
inline void send_connect();
|
|
|
|
|
inline void send_createStream();
|
|
|
|
|
inline void send_play();
|
|
|
|
|
inline void send_pause(bool bPause);
|
|
|
|
|
|
2018-10-24 15:43:52 +08:00
|
|
|
|
string _strApp;
|
|
|
|
|
string _strStream;
|
|
|
|
|
string _strTcUrl;
|
|
|
|
|
bool _bPaused = false;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 15:43:52 +08:00
|
|
|
|
unordered_map<int, function<void(AMFDecoder &dec)> > _mapOnResultCB;
|
|
|
|
|
recursive_mutex _mtxOnResultCB;
|
|
|
|
|
deque<function<void(AMFValue &dec)> > _dqOnStatusCB;
|
|
|
|
|
recursive_mutex _mtxOnStatusCB;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
typedef void (RtmpPlayer::*rtmpCMDHandle)(AMFDecoder &dec);
|
|
|
|
|
static unordered_map<string, rtmpCMDHandle> g_mapCmd;
|
|
|
|
|
|
|
|
|
|
//超时功能实现
|
2018-10-24 15:43:52 +08:00
|
|
|
|
Ticker _mediaTicker;
|
|
|
|
|
std::shared_ptr<Timer> _pMediaTimer;
|
|
|
|
|
std::shared_ptr<Timer> _pPlayTimer;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
//心跳定时器
|
2018-10-24 15:43:52 +08:00
|
|
|
|
std::shared_ptr<Timer> _pBeatTimer;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
//播放进度控制
|
2018-10-26 14:12:16 +08:00
|
|
|
|
uint32_t _iSeekTo = 0;
|
|
|
|
|
uint32_t _aiFistStamp[2] = { 0, 0 };
|
|
|
|
|
uint32_t _aiNowStamp[2] = { 0, 0 };
|
2018-10-24 15:43:52 +08:00
|
|
|
|
Ticker _aNowStampTicker[2];
|
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_RTMP_RtmpPlayer2_H_ */
|