完善http服务器功能

This commit is contained in:
xiongziliang 2018-09-21 09:41:40 +08:00
parent d1607bcf2e
commit c1f9dc1040
4 changed files with 43 additions and 21 deletions

View File

@ -47,3 +47,7 @@ splitPacket:
_remain_data.clear();
}
}
void HttpRequestSplitter::setContentLen(int64_t content_len) {
_content_len = content_len;
}

View File

@ -35,6 +35,11 @@ protected:
* @param content
*/
virtual void onRecvContent(const string &content) = 0;
/**
* content len
*/
void setContentLen(int64_t content_len);
private:
string _remain_data;
int64_t _content_len = 0;

View File

@ -618,27 +618,20 @@ inline bool HttpSession::emitHttpEvent(bool doInvoke){
return consumed;
}
inline bool HttpSession::Handle_Req_POST(int64_t &content_len) {
//////////////获取HTTP POST Content/////////////
GET_CONFIG_AND_REGISTER(uint32_t,reqSize,Config::Http::kMaxReqSize);
int realContentLen = m_parser["Content-Length"].empty() ? -1 : atoi(m_parser["Content-Length"].data());
int iContentLen = realContentLen;
if(iContentLen > reqSize){
//Content大小超过限制,那么我们把这个http post请求当做不限制content长度来处理
//这种情况下用于文件post很有必要否则内存可能溢出
iContentLen = -1;
}
GET_CONFIG_AND_REGISTER(uint64_t,maxReqSize,Config::Http::kMaxReqSize);
GET_CONFIG_AND_REGISTER(int,maxReqCnt,Config::Http::kMaxReqCount);
GET_CONFIG_AND_REGISTER(uint32_t,reqCnt,Config::Http::kMaxReqCount);
bool bClose = (strcasecmp(m_parser["Connection"].data(),"close") == 0) || ( ++m_iReqCnt > reqCnt);
int64_t totalContentLen = m_parser["Content-Length"].empty() ? -1 : atoll(m_parser["Content-Length"].data());
bool bClose = (strcasecmp(m_parser["Connection"].data(),"close") == 0) || ( ++m_iReqCnt > maxReqCnt);
if(iContentLen == 0){
if(totalContentLen == 0){
emitHttpEvent(true);
return !bClose;
}
if(iContentLen > 0){
if(totalContentLen > 0 && totalContentLen < maxReqSize ){
//返回固定长度的content
content_len = iContentLen;
content_len = totalContentLen;
auto parserCopy = m_parser;
m_contentCallBack = [this,parserCopy,bClose](const string &content){
//恢复http头
@ -659,10 +652,29 @@ inline bool HttpSession::Handle_Req_POST(int64_t &content_len) {
//返回不固定长度的content
content_len = -1;
auto parserCopy = m_parser;
m_contentCallBack = [this,parserCopy,realContentLen](const string &content){
onRecvUnlimitedContent(parserCopy,content,realContentLen);
std::shared_ptr<int64_t> recvedContentLen = std::make_shared<int64_t>(0);
m_contentCallBack = [this,parserCopy,totalContentLen,recvedContentLen,bClose](const string &content){
*(recvedContentLen) += content.size();
onRecvUnlimitedContent(parserCopy,content,totalContentLen,*(recvedContentLen));
if(*(recvedContentLen) < totalContentLen){
//数据还没接收完毕
//m_contentCallBack是可持续的后面还要处理后续content数据
return true;
}
//数据接收完毕
if(!bClose){
//keep-alive类型连接
//content接收完毕后续都是http header
setContentLen(0);
return false;
}
//连接类型是close类型收完content就关闭连接
shutdown();
return false ;
};
}
return true;

View File

@ -88,9 +88,10 @@ protected:
* http-flv推流
* @param header http请求头
* @param content content分片数据
* @param content_size content大小,0content
* @param totalSize content总大小,0content
* @param recvedSize
*/
virtual void onRecvUnlimitedContent(const Parser &header,const string &content,int64_t content_size){
virtual void onRecvUnlimitedContent(const Parser &header,const string &content,int64_t totalSize,int64_t recvedSize){
WarnL << "content数据长度过大无法处理,请重载HttpSession::onRecvUnlimitedContent";
shutdown();
}