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_RTMPPROTOCOL_H_
|
|
|
|
|
#define SRC_RTMP_RTMPPROTOCOL_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"
|
|
|
|
|
#include "Util/util.h"
|
|
|
|
|
#include "Util/logger.h"
|
|
|
|
|
#include "Util/TimeTicker.h"
|
|
|
|
|
#include "Network/Socket.h"
|
2018-01-30 11:23:57 +08:00
|
|
|
|
#include "Util/ResourcePool.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace ZL::Util;
|
|
|
|
|
using namespace ZL::Network;
|
|
|
|
|
|
|
|
|
|
namespace ZL {
|
|
|
|
|
namespace Rtmp {
|
|
|
|
|
|
|
|
|
|
class RtmpProtocol {
|
|
|
|
|
public:
|
|
|
|
|
RtmpProtocol();
|
|
|
|
|
virtual ~RtmpProtocol();
|
|
|
|
|
//作为客户端发送c0c1,等待s0s1s2并且回调
|
|
|
|
|
void startClientSession(const function<void()> &cb);
|
|
|
|
|
void onParseRtmp(const char *pcRawData,int iSize);
|
2017-08-03 13:55:46 +08:00
|
|
|
|
void reset();
|
2017-04-01 16:35:56 +08:00
|
|
|
|
protected:
|
2018-09-26 23:12:03 +08:00
|
|
|
|
virtual void onSendRawData(const Buffer::Ptr &buffer) = 0;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
virtual void onRtmpChunk(RtmpPacket &chunkData) = 0;
|
|
|
|
|
virtual void onStreamBegin(uint32_t ui32StreamId){
|
|
|
|
|
m_ui32StreamId = ui32StreamId;
|
|
|
|
|
}
|
|
|
|
|
virtual void onStreamEof(uint32_t ui32StreamId){};
|
|
|
|
|
virtual void onStreamDry(uint32_t ui32StreamId){};
|
|
|
|
|
protected:
|
|
|
|
|
void sendAcknowledgement(uint32_t ui32Size);
|
|
|
|
|
void sendAcknowledgementSize(uint32_t ui32Size);
|
|
|
|
|
void sendPeerBandwidth(uint32_t ui32Size);
|
|
|
|
|
void sendChunkSize(uint32_t ui32Size);
|
|
|
|
|
void sendPingRequest(uint32_t ui32TimeStamp = ::time(NULL));
|
|
|
|
|
void sendPingResponse(uint32_t ui32TimeStamp = ::time(NULL));
|
|
|
|
|
void sendSetBufferLength(uint32_t ui32StreamId, uint32_t ui32Length);
|
|
|
|
|
void sendUserControl(uint16_t ui16EventType, uint32_t ui32EventData);
|
|
|
|
|
void sendUserControl(uint16_t ui16EventType, const string &strEventData);
|
|
|
|
|
|
|
|
|
|
void sendInvoke(const string &strCmd, const AMFValue &val);
|
|
|
|
|
void sendRequest(int iCmd, const string &str);
|
|
|
|
|
void sendResponse(int iType, const string &str);
|
2018-09-26 23:12:03 +08:00
|
|
|
|
void sendRtmp(uint8_t ui8Type, uint32_t ui32StreamId, const std::string &strBuf, uint32_t ui32TimeStamp, int iChunkID);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
protected:
|
|
|
|
|
int m_iReqID = 0;
|
|
|
|
|
uint32_t m_ui32StreamId = STREAM_CONTROL;
|
2017-05-13 17:25:31 +08:00
|
|
|
|
int m_iNowStreamID = 0;
|
|
|
|
|
int m_iNowChunkID = 0;
|
|
|
|
|
bool m_bDataStarted = false;
|
2018-09-26 23:12:03 +08:00
|
|
|
|
inline BufferRaw::Ptr obtainBuffer();
|
|
|
|
|
inline BufferRaw::Ptr obtainBuffer(const void *data, int len);
|
|
|
|
|
//ResourcePool<BufferRaw,MAX_SEND_PKT> m_bufferPool;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
private:
|
|
|
|
|
void handle_S0S1S2(const function<void()> &cb);
|
|
|
|
|
void handle_C0C1();
|
2017-05-16 11:45:36 +08:00
|
|
|
|
void handle_C1_simple();
|
2017-05-16 11:51:18 +08:00
|
|
|
|
#ifdef ENABLE_OPENSSL
|
2017-05-16 11:45:36 +08:00
|
|
|
|
void handle_C1_complex();
|
|
|
|
|
string get_C1_digest(const uint8_t *ptr,char **digestPos);
|
|
|
|
|
string get_C1_key(const uint8_t *ptr);
|
|
|
|
|
void check_C1_Digest(const string &digest,const string &data);
|
|
|
|
|
void send_complex_S0S1S2(int schemeType,const string &digest);
|
2017-05-16 11:51:18 +08:00
|
|
|
|
#endif //ENABLE_OPENSSL
|
2017-05-16 11:45:36 +08:00
|
|
|
|
|
2017-04-01 16:35:56 +08:00
|
|
|
|
void handle_C2();
|
|
|
|
|
void handle_rtmp();
|
|
|
|
|
void handle_rtmpChunk(RtmpPacket &chunkData);
|
|
|
|
|
|
2018-09-26 23:12:03 +08:00
|
|
|
|
private:
|
2017-04-01 16:35:56 +08:00
|
|
|
|
////////////ChunkSize////////////
|
|
|
|
|
size_t m_iChunkLenIn = DEFAULT_CHUNK_LEN;
|
|
|
|
|
size_t m_iChunkLenOut = DEFAULT_CHUNK_LEN;
|
|
|
|
|
////////////Acknowledgement////////////
|
|
|
|
|
uint32_t m_ui32ByteSent = 0;
|
|
|
|
|
uint32_t m_ui32LastSent = 0;
|
|
|
|
|
uint32_t m_ui32WinSize = 0;
|
|
|
|
|
///////////PeerBandwidth///////////
|
|
|
|
|
uint32_t m_ui32Bandwidth = 2500000;
|
|
|
|
|
uint8_t m_ui8LimitType = 2;
|
|
|
|
|
////////////Chunk////////////
|
|
|
|
|
unordered_map<int, RtmpPacket> m_mapChunkData;
|
|
|
|
|
//////////Rtmp parser//////////
|
|
|
|
|
string m_strRcvBuf;
|
|
|
|
|
function<void()> m_nextHandle;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} /* namespace Rtmp */
|
|
|
|
|
} /* namespace ZL */
|
|
|
|
|
|
|
|
|
|
#endif /* SRC_RTMP_RTMPPROTOCOL_H_ */
|