ZLMediaKit/src/Rtmp/RtmpProtocol.h

113 lines
4.2 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_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"
#include "Http/HttpRequestSplitter.h"
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 RtmpProtocol : public HttpRequestSplitter{
2017-04-01 16:35:56 +08:00
public:
2020-03-20 11:51:24 +08:00
RtmpProtocol();
virtual ~RtmpProtocol();
2020-08-30 10:48:34 +08:00
void onParseRtmp(const char *data, size_t size);
2020-03-20 11:51:24 +08:00
//作为客户端发送c0c1等待s0s1s2并且回调
void startClientSession(const std::function<void()> &cb);
2020-08-30 10:48:34 +08:00
2017-04-01 16:35:56 +08:00
protected:
virtual void onSendRawData(toolkit::Buffer::Ptr buffer) = 0;
2021-02-04 17:58:51 +08:00
virtual void onRtmpChunk(RtmpPacket::Ptr chunk_data) = 0;
2020-08-30 10:48:34 +08:00
virtual void onStreamBegin(uint32_t stream_index){
_stream_index = stream_index;
2020-03-20 11:51:24 +08:00
}
2020-08-30 10:48:34 +08:00
virtual void onStreamEof(uint32_t stream_index){};
virtual void onStreamDry(uint32_t stream_index){};
2017-04-01 16:35:56 +08:00
protected:
//// HttpRequestSplitter override ////
2021-01-19 16:05:38 +08:00
ssize_t onRecvHeader(const char *data, size_t len) override { return 0; }
const char *onSearchPacketTail(const char *data, size_t len) override;
2017-04-01 16:35:56 +08:00
protected:
2020-08-30 10:48:34 +08:00
void reset();
void sendAcknowledgement(uint32_t size);
void sendAcknowledgementSize(uint32_t size);
void sendPeerBandwidth(uint32_t size);
void sendChunkSize(uint32_t size);
void sendPingRequest(uint32_t ti = ::time(NULL));
void sendPingResponse(uint32_t time_stamp = ::time(NULL));
void sendSetBufferLength(uint32_t stream_index, uint32_t len);
void sendUserControl(uint16_t event_type, uint32_t event_data);
void sendUserControl(uint16_t event_type, const std::string &event_data);
void sendInvoke(const std::string &cmd, const AMFValue &val);
void sendRequest(int cmd, const std::string &str);
void sendResponse(int type, const std::string &str);
2020-08-30 10:48:34 +08:00
void sendRtmp(uint8_t type, uint32_t stream_index, const std::string &buffer, uint32_t stamp, int chunk_id);
void sendRtmp(uint8_t type, uint32_t stream_index, const toolkit::Buffer::Ptr &buffer, uint32_t stamp, int chunk_id);
toolkit::BufferRaw::Ptr obtainBuffer(const void *data = nullptr, size_t len = 0);
2020-08-30 10:48:34 +08:00
2017-04-01 16:35:56 +08:00
private:
void handle_C1_simple(const char *data);
2017-05-16 11:51:18 +08:00
#ifdef ENABLE_OPENSSL
void handle_C1_complex(const char *data);
std::string get_C1_digest(const uint8_t *ptr,char **digestPos);
std::string get_C1_key(const uint8_t *ptr);
void check_C1_Digest(const std::string &digest,const std::string &data);
void send_complex_S0S1S2(int schemeType,const std::string &digest);
2017-05-16 11:51:18 +08:00
#endif //ENABLE_OPENSSL
2017-05-16 11:45:36 +08:00
const char* handle_S0S1S2(const char *data, size_t len, const std::function<void()> &func);
const char* handle_C0C1(const char *data, size_t len);
const char* handle_C2(const char *data, size_t len);
const char* handle_rtmp(const char *data, size_t len);
2021-02-04 17:58:51 +08:00
void handle_chunk(RtmpPacket::Ptr chunk_data);
2020-08-30 10:48:34 +08:00
protected:
int _send_req_id = 0;
uint32_t _stream_index = STREAM_CONTROL;
2017-04-01 16:35:56 +08:00
private:
2020-08-30 10:48:34 +08:00
int _now_stream_index = 0;
int _now_chunk_id = 0;
bool _data_started = false;
2020-03-20 11:51:24 +08:00
////////////ChunkSize////////////
2020-08-30 10:48:34 +08:00
size_t _chunk_size_in = DEFAULT_CHUNK_LEN;
size_t _chunk_size_out = DEFAULT_CHUNK_LEN;
2020-03-20 11:51:24 +08:00
////////////Acknowledgement////////////
2020-08-30 10:48:34 +08:00
uint32_t _bytes_sent = 0;
uint32_t _bytes_sent_last = 0;
uint32_t _windows_size = 0;
2020-03-20 11:51:24 +08:00
///////////PeerBandwidth///////////
2020-08-30 10:48:34 +08:00
uint32_t _bandwidth = 2500000;
uint8_t _band_limit_type = 2;
2020-03-20 11:51:24 +08:00
//////////Rtmp parser//////////
std::function<const char * (const char *data, size_t len)> _next_step_func;
2020-08-30 10:48:34 +08:00
////////////Chunk////////////
std::unordered_map<int, std::pair<RtmpPacket::Ptr/*now*/, RtmpPacket::Ptr/*last*/> > _map_chunk_data;
//循环池
toolkit::ResourcePool<toolkit::BufferRaw> _packet_pool;
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_RTMPPROTOCOL_H_ */