-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpConn.cpp
64 lines (58 loc) · 1.54 KB
/
httpConn.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include "httpConn.h"
using namespace std;
int httpConn::m_epollFd = 0;
int httpConn::m_userCount = 0;
void httpConn::initConn(int sockfd,const sockaddr_in & address){
curSocketFd = sockfd;
curAddress = address;
int reuse = 1;
setsockopt(sockfd,SOL_SOCKET,SO_REUSEPORT,&reuse,sizeof(reuse));
addEpollFd(m_epollFd,sockfd,true);
m_userCount++;
readIndex = 0;
}
void httpConn::closeConn(){
if(curSocketFd != -1){
delEpollFd(curSocketFd);
curSocketFd = -1;
m_userCount--;
}
}
bool httpConn::read(){
cout<<"read success!!!"<<endl;
if(readIndex >= readCount){
return false;
}
int bytes_read = 0;
while(true){
bytes_read = recv(curSocketFd,readBuffer + readIndex,readCount - readIndex,0);
if(bytes_read == -1){
if(errno == EAGAIN || errno == EWOULDBLOCK){
//非阻塞读,当没有数据时可能会反悔上述两个其中一个
break;
}
return false;
}else if(bytes_read == 0){
//对方关闭连接,
return false;
}
readIndex += bytes_read;
}
printf("读取到数据为:\n %s\n",readBuffer);
return true;
}
bool httpConn::write(){
cout<<"write success!!!"<<endl;
return true;
}
void httpConn::process(){
//解析
cout<<"解析数据"<<endl;
HTTPCODE ret = process_read();
if(ret == NO_REQUEST){
modEpollFd(m_epollFd,curSocketFd,EPOLLIN);
return;
}
//生成
cout<<"生成数据"<<endl;
}