/* * RtmpSession.h * * Created on: 2017年2月10日 * Author: xzl */ #ifndef SRC_RTMP_RTMPSESSION_H_ #define SRC_RTMP_RTMPSESSION_H_ #include #include #include "amf.h" #include "Rtmp.h" #include "utils.h" #include "Common/config.h" #include "RtmpProtocol.h" #include "RtmpToRtspMediaSource.h" #include "Util/util.h" #include "Util/TimeTicker.h" #include "Network/TcpLimitedSession.h" using namespace ZL::Util; using namespace ZL::Network; namespace ZL { namespace Rtmp { class RtmpSession: public TcpLimitedSession ,public RtmpProtocol{ public: typedef std::shared_ptr Ptr; RtmpSession(const std::shared_ptr &_th, const Socket::Ptr &_sock); virtual ~RtmpSession(); void onRecv(const Socket::Buffer::Ptr &pBuf) override; void onError(const SockException &err) override; void onManager() override; private: std::string m_strApp; std::string m_strId; double m_dNowReqID = 0; Ticker m_ticker;//数据接收时间 typedef void (RtmpSession::*rtmpCMDHandle)(AMFDecoder &dec); static unordered_map g_mapCmd; RingBuffer::RingReader::Ptr m_pRingReader; std::shared_ptr m_pPublisherSrc; bool m_bPublisherSrcRegisted = false; std::weak_ptr m_pPlayerSrc; void onProcessCmd(AMFDecoder &dec); void onCmd_connect(AMFDecoder &dec); void onCmd_createStream(AMFDecoder &dec); void onCmd_publish(AMFDecoder &dec); void onCmd_deleteStream(AMFDecoder &dec); void onCmd_play(AMFDecoder &dec); void onCmd_seek(AMFDecoder &dec); void onCmd_pause(AMFDecoder &dec); void setMetaData(AMFDecoder &dec); void onSendMedia(const RtmpPacket &pkt); void onSendRawData(const char *pcRawData,int iSize) override{ send(pcRawData, iSize); } void onRtmpChunk(RtmpPacket &chunkData) override; template inline void sendReply(const char *str, const first &reply, const second &status) { AMFEncoder invoke; invoke << str << m_dNowReqID << reply << status; sendResponse(MSG_CMD, invoke.data()); } }; } /* namespace Rtmp */ } /* namespace ZL */ #endif /* SRC_RTMP_RTMPSESSION_H_ */