Skip to content

Commit 0f6e347

Browse files
committed
single epoll
1 parent 4c0ae7e commit 0f6e347

File tree

2 files changed

+649
-87
lines changed

2 files changed

+649
-87
lines changed

server_mulport_epoll.c

+52-87
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11

2-
/*
3-
* author : wangbojing
4-
* email : [email protected]
5-
* 测试操作系统的并发量
6-
*/
72

83

94
#include <stdio.h>
@@ -363,7 +358,6 @@ static int nSend(int sockfd, const void *buffer, int length, int flags) {
363358

364359
static int curfds = 1;
365360
static int nRun = 0;
366-
int sockfds[MAX_PORT] = {0};
367361

368362

369363
void client_job(job_t *job) {
@@ -428,21 +422,59 @@ int listenfd(int fd, int *fds) {
428422
return 0;
429423
}
430424

431-
struct timeval tv_begin;
432-
struct timeval tv_cur;
433-
434-
void *listen_thread(void *arg) {
435-
425+
int main(void) {
436426
int i = 0;
437-
int epoll_fd = *(int *)arg;
438-
struct epoll_event events[MAX_EPOLLSIZE];
427+
int sockfds[MAX_PORT] = {0};
439428

429+
printf("C1000K Server Start\n");
440430

431+
threadpool_init(); //
432+
433+
int epoll_fd = epoll_create(MAX_EPOLLSIZE);
434+
435+
for (i = 0;i < MAX_PORT;i ++) {
436+
437+
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
438+
if (sockfd < 0) {
439+
perror("socket");
440+
return 1;
441+
}
442+
443+
struct sockaddr_in addr;
444+
memset(&addr, 0, sizeof(struct sockaddr_in));
445+
446+
addr.sin_family = AF_INET;
447+
addr.sin_port = htons(SERVER_PORT+i);
448+
addr.sin_addr.s_addr = INADDR_ANY;
449+
450+
if (bind(sockfd, (struct sockaddr*)&addr, sizeof(struct sockaddr_in)) < 0) {
451+
perror("bind");
452+
return 2;
453+
}
454+
455+
if (listen(sockfd, 5) < 0) {
456+
perror("listen");
457+
return 3;
458+
}
459+
460+
sockfds[i] = sockfd;
461+
printf("C1000K Server Listen on Port:%d\n", SERVER_PORT+i);
462+
463+
struct epoll_event ev;
464+
465+
ev.events = EPOLLIN | EPOLLET; //EPOLLLT
466+
ev.data.fd = sockfd;
467+
epoll_ctl(epoll_fd, EPOLL_CTL_ADD, sockfd, &ev);
468+
}
469+
470+
struct timeval tv_begin;
441471
gettimeofday(&tv_begin, NULL);
472+
473+
struct epoll_event events[MAX_EPOLLSIZE];
442474

443475
while (1) {
444476

445-
int nfds = epoll_wait(epoll_fd, events, curfds, 5);
477+
int nfds = epoll_wait(epoll_fd, events, curfds, 5); //是不是秘书给累死。
446478
if (nfds == -1) {
447479
perror("epoll_wait");
448480
break;
@@ -458,7 +490,7 @@ void *listen_thread(void *arg) {
458490
int clientfd = accept(sockfd, (struct sockaddr*)&client_addr, &client_len);
459491
if (clientfd < 0) {
460492
perror("accept");
461-
return NULL;
493+
return 4;
462494
}
463495

464496
if (curfds ++ > 1000 * 1000) {
@@ -474,12 +506,12 @@ void *listen_thread(void *arg) {
474506
}
475507
#else
476508
if (curfds % 1000 == 999) {
477-
509+
struct timeval tv_cur;
478510
memcpy(&tv_cur, &tv_begin, sizeof(struct timeval));
479-
511+
480512
gettimeofday(&tv_begin, NULL);
513+
481514
int time_used = TIME_SUB_MS(tv_begin, tv_cur);
482-
483515
printf("connections: %d, sockfd:%d, time_used:%d\n", curfds, clientfd, time_used);
484516
}
485517
#endif
@@ -494,7 +526,7 @@ void *listen_thread(void *arg) {
494526
} else {
495527

496528
int clientfd = events[i].data.fd;
497-
#if 1
529+
#if 0
498530
if (nRun) {
499531
printf(" New Data is Comming\n");
500532
client_data_process(clientfd);
@@ -513,79 +545,12 @@ void *listen_thread(void *arg) {
513545
}
514546
#else
515547
client_data_process(clientfd);
548+
516549
#endif
517550
}
518551
}
519552

520553
}
521-
522-
}
523-
524-
int main(void) {
525-
int i = 0;
526-
527-
printf("C1000K Server Start\n");
528-
529-
threadpool_init(); //
530-
531-
532-
#if 0
533-
int epoll_fd = epoll_create(MAX_EPOLLSIZE);
534-
#else
535-
536-
int epoll_fds[CPU_CORES_SIZE] = {0};
537-
pthread_t thread_id[CPU_CORES_SIZE] = {0};
538-
539-
for (i = 0;i < CPU_CORES_SIZE;i ++) {
540-
epoll_fds[i] = epoll_create(MAX_EPOLLSIZE);
541-
542-
pthread_create(&thread_id[i], NULL, listen_thread, &epoll_fds[i]);
543-
}
544-
545-
546-
#endif
547-
for (i = 0;i < MAX_PORT;i ++) {
548-
549-
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
550-
if (sockfd < 0) {
551-
perror("socket");
552-
return 1;
553-
}
554-
555-
struct sockaddr_in addr;
556-
memset(&addr, 0, sizeof(struct sockaddr_in));
557-
558-
addr.sin_family = AF_INET;
559-
addr.sin_port = htons(SERVER_PORT+i);
560-
addr.sin_addr.s_addr = INADDR_ANY;
561-
562-
if (bind(sockfd, (struct sockaddr*)&addr, sizeof(struct sockaddr_in)) < 0) {
563-
perror("bind");
564-
return 2;
565-
}
566-
567-
if (listen(sockfd, 5) < 0) {
568-
perror("listen");
569-
return 3;
570-
}
571-
572-
sockfds[i] = sockfd;
573-
printf("C1000K Server Listen on Port:%d\n", SERVER_PORT+i);
574-
575-
struct epoll_event ev;
576-
577-
ev.events = EPOLLIN | EPOLLET; //EPOLLLT
578-
ev.data.fd = sockfd;
579-
epoll_ctl(epoll_fds[i%CPU_CORES_SIZE], EPOLL_CTL_ADD, sockfd, &ev);
580-
}
581-
582-
for (i = 0;i < CPU_CORES_SIZE;i ++) {
583-
pthread_join(thread_id[i], NULL);
584-
}
585-
586-
587-
getchar();
588-
printf("end\n");
589554
}
590555

591556

0 commit comments

Comments
 (0)