#include "lib_acl.h" #include #include #include #include #include "fiber/libfiber.h" #include "stamp.h" static long long int __total_count = 0; static int __total_clients = 0; static int __total_error_clients = 0; static int __conn_timeout = 0; static int __rw_timeout = 0; static int __max_loop = 10000; static int __max_fibers = 100; static int __left_fibers = 100; static int __read_data = 0; static struct timeval __begin; static void echo_client(ACL_VSTREAM *cstream) { char buf[8192]; int ret, i; const char *str = "hello world\r\n"; for (i = 0; i < __max_loop; i++) { if (acl_vstream_writen(cstream, str, strlen(str)) == ACL_VSTREAM_EOF) { printf("write error: %s\r\n", acl_last_serror()); break; } if (!__read_data) { __total_count++; if (__total_count % 10000 == 0) { printf("fiber-%d: total %lld, curr %d\r\n", acl_fiber_self(), __total_count, i); acl_fiber_yield(); } continue; } ret = acl_vstream_gets(cstream, buf, sizeof(buf) - 1); if (ret == ACL_VSTREAM_EOF) { printf("gets error: %s, i: %d\r\n", acl_last_serror(), i); break; } __total_count++; //buf[ret] = 0; //printf("gets line: %s", buf); } acl_vstream_close(cstream); } static void fiber_connect(ACL_FIBER *fiber acl_unused, void *ctx) { const char *addr = (const char *) ctx; ACL_VSTREAM *cstream = acl_vstream_connect(addr, ACL_BLOCKING, __conn_timeout, __rw_timeout, 4096); if (cstream == NULL) { printf("fiber-%d: connect %s error %s\r\n", acl_fiber_self(), addr, acl_last_serror()); __total_error_clients++; } else { __total_clients++; printf("fiber-%d: connect %s ok, clients: %d, fd: %d\r\n", acl_fiber_self(), addr, __total_clients, ACL_VSTREAM_SOCK(cstream)); echo_client(cstream); } --__left_fibers; printf("max_fibers: %d, left: %d\r\n", __max_fibers, __left_fibers); if (__left_fibers == 0) { double spent; struct timeval end; gettimeofday(&end, NULL); spent = stamp_sub(&end, &__begin); printf("fibers: %d, clients: %d, error: %d, count: %lld, " "spent: %.2f, speed: %.2f\r\n", __max_fibers, __total_clients, __total_error_clients, __total_count, spent, (__total_count * 1000) / (spent > 0 ? spent : 1)); //acl_fiber_schedule_stop(); } } static void fiber_main(ACL_FIBER *fiber acl_unused, void *ctx) { char *addr = (char *) ctx; int i; for (i = 0; i < __max_fibers; i++) { acl_fiber_create(fiber_connect, addr, 327680); //acl_fiber_sleep(1); } } static void usage(const char *procname) { printf("usage: %s -h [help]\r\n" " -s addr\r\n" " -t connt_timeout\r\n" " -r rw_timeout\r\n" " -c max_fibers\r\n" " -w [if wait for echo data from server, dafault: no]\r\n" " -n max_loop\r\n", procname); } int main(int argc, char *argv[]) { int ch; char addr[256]; acl_msg_stdout_enable(1); snprintf(addr, sizeof(addr), "%s", "0.0.0.0:9002"); while ((ch = getopt(argc, argv, "hc:n:s:t:r:w")) > 0) { switch (ch) { case 'h': usage(argv[0]); return 0; case 'c': __max_fibers = atoi(optarg); __left_fibers = __max_fibers; break; case 't': __conn_timeout = atoi(optarg); break; case 'r': __rw_timeout = atoi(optarg); break; case 'n': __max_loop = atoi(optarg); break; case 's': snprintf(addr, sizeof(addr), "%s", optarg); break; case 'w': __read_data = 1; break; default: break; } } gettimeofday(&__begin, NULL); acl_fiber_create(fiber_main, addr, 327680); printf("call fiber_schedule\r\n"); acl_fiber_schedule(); return 0; }