mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 09:20:52 +08:00
118 lines
2.2 KiB
C++
118 lines
2.2 KiB
C++
#include "stdafx.h"
|
||
#include "util.h"
|
||
#include "https_client.h"
|
||
|
||
static void usage(const char* procname)
|
||
{
|
||
printf("usage: %s -h [help]\r\n"
|
||
" -s server_addr [default: 127.0.0.1:8888]\r\n"
|
||
" -k [keep alive, default: false]\r\n"
|
||
" -L data_length [default: 1024]\r\n"
|
||
" -c cocurrent [default: 1]\r\n"
|
||
" -S [use ssl, default: no]\r\n"
|
||
" -n count [default: 10]\r\n", procname);
|
||
}
|
||
|
||
int main(int argc, char* argv[])
|
||
{
|
||
int ch, cocurrent = 1, count = 10, length = 1024;
|
||
bool keep_alive = false, use_ssl = false;
|
||
acl::string server_addr("127.0.0.1:1443");
|
||
acl::string domain;
|
||
|
||
// 初始化 acl 库
|
||
acl::acl_cpp_init();
|
||
acl::log::stdout_open(true);
|
||
|
||
while ((ch = getopt(argc, argv, "hs:c:n:kSH:")) > 0)
|
||
{
|
||
switch (ch)
|
||
{
|
||
case 'h':
|
||
usage(argv[0]);
|
||
return 0;
|
||
case 'c':
|
||
cocurrent = atoi(optarg);
|
||
break;
|
||
case 'n':
|
||
count = atoi(optarg);
|
||
break;
|
||
case 'k':
|
||
keep_alive = true;
|
||
break;
|
||
case 's':
|
||
server_addr = optarg;
|
||
break;
|
||
case 'S':
|
||
use_ssl = true;
|
||
break;
|
||
case 'H':
|
||
domain = optarg;
|
||
break;
|
||
default:
|
||
break;
|
||
}
|
||
}
|
||
|
||
if (domain.empty())
|
||
domain = server_addr;
|
||
|
||
static acl::polarssl_conf ssl_conf;
|
||
|
||
struct timeval begin;
|
||
gettimeofday(&begin, NULL);
|
||
|
||
std::list<https_client*> threads;
|
||
|
||
for (int i = 0; i < cocurrent; i++)
|
||
{
|
||
// 创建线程
|
||
https_client* thread = new https_client(server_addr, domain,
|
||
keep_alive, count, length);
|
||
|
||
if (use_ssl)
|
||
thread->set_ssl_conf(&ssl_conf);
|
||
|
||
// 设置创建的线程为非分离模式,以便于下面可以调<E4BBA5> thread::wait
|
||
// 等待线程结束
|
||
thread->set_detachable(false);
|
||
|
||
// 将线程放在队列中
|
||
threads.push_back(thread);
|
||
|
||
// 启动线程
|
||
thread->start();
|
||
}
|
||
|
||
// sleep(2);
|
||
|
||
std::list<https_client*>::iterator it = threads.begin();
|
||
for (; it != threads.end(); ++it)
|
||
{
|
||
// 等待线程结束
|
||
if ((*it)->wait(NULL) == false)
|
||
printf("wait one thread(%lu) error\r\n",
|
||
(*it)->thread_id());
|
||
/*
|
||
else
|
||
printf("wait one thread(%lu) ok\r\n",
|
||
(*it)->thread_id());
|
||
*/
|
||
// 删除动态创建的线程对象
|
||
delete *it;
|
||
|
||
}
|
||
|
||
struct timeval end;
|
||
gettimeofday(&end, NULL);
|
||
|
||
double spent = util::stamp_sub(&end, &begin);
|
||
printf("total: %d, spent: %.2f, speed: %.f\r\n", count,
|
||
spent, (count * 1000) / (spent > 1 ? spent : 1));
|
||
|
||
printf("enter any key to exit\r\n");
|
||
getchar();
|
||
|
||
return 0;
|
||
}
|