1
1
2
- /*
3
- * author : wangbojing
4
-
5
- * 测试操作系统的并发量
6
- */
7
2
8
3
9
4
#include <stdio.h>
@@ -363,7 +358,6 @@ static int nSend(int sockfd, const void *buffer, int length, int flags) {
363
358
364
359
static int curfds = 1 ;
365
360
static int nRun = 0 ;
366
- int sockfds [MAX_PORT ] = {0 };
367
361
368
362
369
363
void client_job (job_t * job ) {
@@ -428,21 +422,59 @@ int listenfd(int fd, int *fds) {
428
422
return 0 ;
429
423
}
430
424
431
- struct timeval tv_begin ;
432
- struct timeval tv_cur ;
433
-
434
- void * listen_thread (void * arg ) {
435
-
425
+ int main (void ) {
436
426
int i = 0 ;
437
- int epoll_fd = * (int * )arg ;
438
- struct epoll_event events [MAX_EPOLLSIZE ];
427
+ int sockfds [MAX_PORT ] = {0 };
439
428
429
+ printf ("C1000K Server Start\n" );
440
430
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 ;
441
471
gettimeofday (& tv_begin , NULL );
472
+
473
+ struct epoll_event events [MAX_EPOLLSIZE ];
442
474
443
475
while (1 ) {
444
476
445
- int nfds = epoll_wait (epoll_fd , events , curfds , 5 );
477
+ int nfds = epoll_wait (epoll_fd , events , curfds , 5 ); //是不是秘书给累死。
446
478
if (nfds == -1 ) {
447
479
perror ("epoll_wait" );
448
480
break ;
@@ -458,7 +490,7 @@ void *listen_thread(void *arg) {
458
490
int clientfd = accept (sockfd , (struct sockaddr * )& client_addr , & client_len );
459
491
if (clientfd < 0 ) {
460
492
perror ("accept" );
461
- return NULL ;
493
+ return 4 ;
462
494
}
463
495
464
496
if (curfds ++ > 1000 * 1000 ) {
@@ -474,12 +506,12 @@ void *listen_thread(void *arg) {
474
506
}
475
507
#else
476
508
if (curfds % 1000 == 999 ) {
477
-
509
+ struct timeval tv_cur ;
478
510
memcpy (& tv_cur , & tv_begin , sizeof (struct timeval ));
479
-
511
+
480
512
gettimeofday (& tv_begin , NULL );
513
+
481
514
int time_used = TIME_SUB_MS (tv_begin , tv_cur );
482
-
483
515
printf ("connections: %d, sockfd:%d, time_used:%d\n" , curfds , clientfd , time_used );
484
516
}
485
517
#endif
@@ -494,7 +526,7 @@ void *listen_thread(void *arg) {
494
526
} else {
495
527
496
528
int clientfd = events [i ].data .fd ;
497
- #if 1
529
+ #if 0
498
530
if (nRun ) {
499
531
printf (" New Data is Comming\n" );
500
532
client_data_process (clientfd );
@@ -513,79 +545,12 @@ void *listen_thread(void *arg) {
513
545
}
514
546
#else
515
547
client_data_process (clientfd );
548
+
516
549
#endif
517
550
}
518
551
}
519
552
520
553
}
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" );
589
554
}
590
555
591
556
0 commit comments