epoll是linux下高并发服务器的完美方案,因为是基于事件触发的,所以比select快的不只是一个数量级。
单线程epoll,触发量可达到15000,但是加上业务后,因为大多数业务都与数据库打交道,所以就会存在阻塞的情况,这个时候就必须用多线程来提速。
epoll在线程池内,测试结果2000个/s
增加了网络断线后的无效socket检测。
测试工具:stressmark
因为加了适用与ab的代码,所以也可以适用ab进行压力测试。
char buf[1000] = {0};
sprintf(buf,”HTTP/1.0 200 OK\r\nContent-type: text/plain\r\n\r\n%s”,”Hello world!\n”);
send(socketfd,buf, strlen(buf),0);
sprintf(buf,”HTTP/1.0 200 OK\r\nContent-type: text/plain\r\n\r\n%s”,”Hello world!\n”);
send(socketfd,buf, strlen(buf),0);
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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 |
#include <stdio.h> #include <sys/epoll.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> #include <sys/types.h> #include <signal.h> #include <unistd.h> #include <fcntl.h> #include <string.h> #include <errno.h> #include <stdlib.h> //stl head #include <ext/hash_map> //包含hash_map 的头文件 //#include <map> //stl的map using namespace std; //std 命名空间 using namespace __gnu_cxx; //而hash_map是在__gnu_cxx的命名空间里的 int init_thread_pool(int threadNum); void *epoll_loop(void* para); void *check_connect_timeout(void* para); struct sockStruct { time_t time; unsigned int* recvBuf; }; //hash-map //hash_map<int, unsigned int> sock_map; hash_map<int, sockStruct> sock_map; #define MAXRECVBUF 4096 #define MAXBUF MAXRECVBUF+10 int fd_Setnonblocking(int fd) { int op; op=fcntl(fd,F_GETFL,0); fcntl(fd,F_SETFL,op|O_NONBLOCK); return op; } void on_sigint(int signal) { exit(0); } /* handle_message - 处理每个 socket 上的消息收发 */ int handle_message(int new_fd) { char buf[MAXBUF + 1]; char sendbuf[MAXBUF+1]; int len; /* 开始处理每个新连接上的数据收发 */ bzero(buf, MAXBUF + 1); /* 接收客户端的消息 */ //len = recv(new_fd, buf, MAXBUF, 0); int nRecvBuf = MAXRECVBUF; //设置为32K setsockopt(new_fd, SOL_SOCKET, SO_RCVBUF, ( const char* )&nRecvBuf, sizeof(int)); len=recv(new_fd,&buf, MAXBUF,0); //-------------------------------------------------------------------------------------------- //这块为了使用ab测试 char bufSend[1000] = {0}; sprintf(bufSend,"HTTP/1.0 200 OK\r\nContent-type: text/plain\r\n\r\n%s","Hello world!\n"); send(new_fd,bufSend,strlen(buf),0); //-------------------------------------------------------------------------------------------- if (len > 0){ //printf ("%d接收消息成功:'%s',共%d个字节的数据\n", new_fd, buf, len); //hash-map hash_map<int, sockStruct>::iterator it_find; it_find = sock_map.find(new_fd); if(it_find == sock_map.end()){ //新的网络连接,申请新的接收缓冲区,并放入map中 //printf("new socket %d\n", new_fd); sockStruct newSockStruct; newSockStruct.time = time((time_t*)0); newSockStruct.recvBuf = (unsigned int*)malloc(1000); memset(newSockStruct.recvBuf, 0, 1000); strcat((char*)newSockStruct.recvBuf, buf); sock_map.insert(pair<int,sockStruct>(new_fd, newSockStruct)); }else{ //网络连接已经存在,找到对应的数据缓冲区,将接收到的数据拼接到数据缓冲区中 //printf("socket %d exist!\n", it_find->first); (it_find->second).time = time((time_t*)0); //时间更改 char* bufSockMap = (char*)(it_find->second).recvBuf; //数据存储 strcat(bufSockMap, buf); //printf("bufSockMap:%s\n", bufSockMap); } } else { if (len < 0) printf ("消息接收失败!错误代码是%d,错误信息是'%s'\n", errno, strerror(errno)); else { //将socket从map中移除 /* hash_map<int, sockStruct>::iterator it_find; it_find = sock_map.find(new_fd); sock_map.erase(it_find); */ printf("client %d quit!\n",new_fd); } //close(new_fd); return -1; } /* 处理每个新连接上的数据收发结束 */ //关闭socket的时候,要释放接收缓冲区。 hash_map<int, sockStruct>::iterator it_find; it_find = sock_map.find(new_fd); free((it_find->second).recvBuf); sock_map.erase(it_find); close(new_fd); return len; } int listenfd; int sock_op=1; struct sockaddr_in address; struct epoll_event event; struct epoll_event events[1024]; int epfd; int n; int i; char buf[512]; int off; int result; char *p; int main(int argc,char* argv[]) { init_thread_pool(1); signal(SIGPIPE,SIG_IGN); signal(SIGCHLD,SIG_IGN); signal(SIGINT,&on_sigint); listenfd=socket(AF_INET,SOCK_STREAM,0); setsockopt(listenfd,SOL_SOCKET,SO_REUSEADDR,&sock_op,sizeof(sock_op)); memset(&address,0,sizeof(address)); address.sin_addr.s_addr=htonl(INADDR_ANY); address.sin_port=htons(8006); bind(listenfd,(struct sockaddr*)&address,sizeof(address)); listen(listenfd,1024); fd_Setnonblocking(listenfd); epfd=epoll_create(65535); memset(&event,0,sizeof(event)); event.data.fd=listenfd; event.events=EPOLLIN|EPOLLET; epoll_ctl(epfd,EPOLL_CTL_ADD,listenfd,&event); while(1){ sleep(1000); } return 0; } /************************************************* * Function: * init_thread_pool * Description: * 初始化线程 * Input: * threadNum:用于处理epoll的线程数 * Output: * * Others: * 此函数为静态static函数, *************************************************/ int init_thread_pool(int threadNum) { int i,ret; pthread_t threadId; //初始化epoll线程池 for ( i = 0; i < threadNum; i++) { ret = pthread_create(&threadId, 0, epoll_loop, (void *)0); if (ret != 0) { printf("pthread create failed!\n"); return(-1); } } ret = pthread_create(&threadId, 0, check_connect_timeout, (void *)0); return(0); } /************************************************* * Function: * epoll_loop * Description: * epoll检测循环 * Input: * * Output: * * Others: * *************************************************/ static int count111 = 0; static time_t oldtime = 0, nowtime = 0; void *epoll_loop(void* para) { while(1) { n=epoll_wait(epfd,events,4096,-1); //printf("n = %d\n", n); if(n>0) { for(i=0;i<n;++i) { if(events[i].data.fd==listenfd) { while(1) { event.data.fd=accept(listenfd,NULL,NULL); if(event.data.fd>0) { fd_Setnonblocking(event.data.fd); event.events=EPOLLIN|EPOLLET; epoll_ctl(epfd,EPOLL_CTL_ADD,event.data.fd,&event); } else { if(errno==EAGAIN) break; } } } else { if(events[i].events&EPOLLIN) { //handle_message(events[i].data.fd); char recvBuf[1024] = {0}; int ret = 999; int rs = 1; while(rs) { ret = recv(events[i].data.fd,recvBuf,1024,0);// 接受客户端消息 if(ret < 0) { //由于是非阻塞的模式,所以当errno为EAGAIN时,表示当前缓冲区已无数据可//读在这里就当作是该次事件已处理过。 if(errno == EAGAIN) { printf("EAGAIN\n"); break; } else{ printf("recv error!\n"); epoll_ctl(epfd, EPOLL_CTL_DEL, events[i].data.fd, &event); close(events[i].data.fd); break; } } else if(ret == 0) { // 这里表示对端的socket已正常关闭. rs = 0; } if(ret == sizeof(recvBuf)) rs = 1; // 需要再次读取 else rs = 0; } if(ret>0){ count111 ++; struct tm *today; time_t ltime; time( &nowtime ); if(nowtime != oldtime){ printf("%d\n", count111); oldtime = nowtime; count111 = 0; } char buf[1000] = {0}; sprintf(buf,"HTTP/1.0 200 OK\r\nContent-type: text/plain\r\n\r\n%s","Hello world!\n"); send(events[i].data.fd,buf,strlen(buf),0); // CGelsServer Gelsserver; // Gelsserver.handle_message(events[i].data.fd); } epoll_ctl(epfd, EPOLL_CTL_DEL, events[i].data.fd, &event); close(events[i].data.fd); } else if(events[i].events&EPOLLOUT) { sprintf(buf,"HTTP/1.0 200 OK\r\nContent-type: text/plain\r\n\r\n%s","Hello world!\n"); send(events[i].data.fd,buf,strlen(buf),0); /* if(p!=NULL) { free(p); p=NULL; } */ close(events[i].data.fd); } else { close(events[i].data.fd); } } } } } } /************************************************* * Function: * check_connect_timeout * Description: * 检测长时间没反应的网络连接,并关闭删除 * Input: * * Output: * * Others: * *************************************************/ void *check_connect_timeout(void* para) { hash_map<int, sockStruct>::iterator it_find; for(it_find = sock_map.begin(); it_find!=sock_map.end(); ++it_find){ if( time((time_t*)0) - (it_find->second).time > 120){ //时间更改 free((it_find->second).recvBuf); sock_map.erase(it_find); close(it_find->first); } } } |
发表评论
要发表评论,您必须先登录。