2018-09-20 17:50:58 +08:00
|
|
|
|
//
|
|
|
|
|
// Created by xzl on 2018/9/20.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef ZLMEDIAKIT_HTTPREQUESTSPLITTER_H
|
|
|
|
|
#define ZLMEDIAKIT_HTTPREQUESTSPLITTER_H
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
class HttpRequestSplitter {
|
|
|
|
|
public:
|
|
|
|
|
HttpRequestSplitter(){};
|
|
|
|
|
virtual ~HttpRequestSplitter(){};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 添加数据
|
|
|
|
|
* @param data 需要添加的数据
|
2018-09-23 00:55:00 +08:00
|
|
|
|
* @param len 数据长度
|
2018-09-20 17:50:58 +08:00
|
|
|
|
*/
|
2018-09-23 00:55:00 +08:00
|
|
|
|
void input(const char *data,uint64_t len);
|
2018-09-20 17:50:58 +08:00
|
|
|
|
protected:
|
|
|
|
|
/**
|
|
|
|
|
* 收到请求头
|
2018-09-23 00:55:00 +08:00
|
|
|
|
* @param data 请求头数据
|
|
|
|
|
* @param len 请求头长度
|
|
|
|
|
*
|
2018-09-20 17:50:58 +08:00
|
|
|
|
* @return 请求头后的content长度,
|
|
|
|
|
* <0 : 代表后面所有数据都是content
|
|
|
|
|
* 0 : 代表为后面数据还是请求头,
|
|
|
|
|
* >0 : 代表后面数据为固定长度content,
|
|
|
|
|
*/
|
2018-09-23 00:55:00 +08:00
|
|
|
|
virtual int64_t onRecvHeader(const char *data,uint64_t len) = 0;
|
2018-09-20 17:50:58 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 收到content分片或全部数据
|
|
|
|
|
* onRecvHeader函数返回>0,则为全部数据
|
2018-09-23 00:55:00 +08:00
|
|
|
|
* @param data content分片或全部数据
|
|
|
|
|
* @param len 数据长度
|
2018-09-20 17:50:58 +08:00
|
|
|
|
*/
|
2018-09-23 00:55:00 +08:00
|
|
|
|
virtual void onRecvContent(const char *data,uint64_t len) {};
|
2018-09-21 09:41:40 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设置content len
|
|
|
|
|
*/
|
|
|
|
|
void setContentLen(int64_t content_len);
|
2018-09-20 17:50:58 +08:00
|
|
|
|
private:
|
|
|
|
|
string _remain_data;
|
|
|
|
|
int64_t _content_len = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //ZLMEDIAKIT_HTTPREQUESTSPLITTER_H
|