-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
wrk.cpp
275 lines (234 loc) · 7.24 KB
/
wrk.cpp
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
/*
* @build: make examples
* @server bin/httpd -s restart -d
* @client bin/curl -v http://127.0.0.1:8080/
* @usage: bin/wrk -c 1000 -d 10 -t 4 http://127.0.0.1:8080/
*
*/
#include "hv.h"
#include "hmain.h" // import parse_opt
#include "hloop.h"
#include "EventLoopThreadPool.h"
#include "HttpMessage.h"
#include "HttpParser.h"
using namespace hv;
static const char options[] = "hvc:d:t:";
static const char detail_options[] = R"(
-h Print help infomation
-v Show verbose infomation
-c <connections> Number of connections, default: 1000
-d <duration> Duration of test, default: 10s
-t <threads> Number of threads, default: 4
)";
static int connections = 1000;
static int duration = 10;
static int threads = 4;
static bool verbose = false;
static const char* url = NULL;
static bool https = false;
static char ip[64] = "127.0.0.1";
static int port = 80;
static bool stop = false;
static HttpRequestPtr request;
static std::string request_msg;
typedef struct connection_s {
hio_t* io;
HttpParserPtr parser;
HttpResponsePtr response;
uint64_t request_cnt;
uint64_t response_cnt;
uint64_t ok_cnt;
uint64_t readbytes;
connection_s()
: parser(HttpParser::New(HTTP_CLIENT, HTTP_V1))
, response(std::make_shared<HttpResponse>())
, request_cnt(0)
, response_cnt(0)
, ok_cnt(0)
, readbytes(0)
{
response->http_cb = [](HttpMessage* res, http_parser_state state, const char* data, size_t size) {
// wrk no need to save data to body
};
}
void SendRequest() {
hio_write(io, request_msg.data(), request_msg.size());
++request_cnt;
parser->InitResponse(response.get());
}
bool RecvResponse(const char* data, int size) {
readbytes += size;
int nparse = parser->FeedRecvData(data, size);
if (nparse != size) {
fprintf(stderr, "http parse error!\n");
hio_close(io);
return false;
}
if (parser->IsComplete()) {
++response_cnt;
if (response->status_code == HTTP_STATUS_OK) {
++ok_cnt;
}
return true;
}
return false;
}
} connection_t;
static connection_t** conns = NULL;
static std::atomic<int> connected_num(0);
static std::atomic<int> disconnected_num(0);
static void print_help() {
printf("Usage: wrk [%s] <url>\n", options);
printf("Options:\n%s\n", detail_options);
}
static void print_cmd() {
printf("Running %ds test @ %s\n", duration, url);
printf("%d threads and %d connections\n", threads, connections);
}
static void print_result() {
uint64_t total_request_cnt = 0;
uint64_t total_response_cnt = 0;
uint64_t total_ok_cnt = 0;
uint64_t total_readbytes = 0;
connection_t* conn = NULL;
for (int i = 0; i < connections; ++i) {
conn = conns[i];
total_request_cnt += conn->request_cnt;
total_response_cnt += conn->response_cnt;
total_ok_cnt += conn->ok_cnt;
total_readbytes += conn->readbytes;
}
printf("%llu requests, %llu OK, %lluMB read in %ds\n",
LLU(total_request_cnt),
LLU(total_ok_cnt),
LLU(total_readbytes >> 20),
duration);
printf("Requests/sec: %8llu\n", LLU(total_response_cnt / duration));
printf("Transfer/sec: %8lluMB\n", LLU((total_readbytes / duration) >> 20));
}
static void start_reconnect(hio_t* io);
static void on_close(hio_t* io) {
if (++disconnected_num == connections) {
if (verbose) {
printf("all disconnected\n");
}
}
if (!stop) {
// NOTE: nginx keepalive_requests = 100
start_reconnect(io);
}
}
static void on_recv(hio_t* io, void* buf, int readbytes) {
connection_t* conn = (connection_t*)hevent_userdata(io);
if (conn->RecvResponse((const char*)buf, readbytes)) {
conn->SendRequest();
}
}
static void on_connect(hio_t* io) {
if (++connected_num == connections) {
if (verbose) {
printf("all connected\n");
}
}
connection_t* conn = (connection_t*)hevent_userdata(io);
conn->SendRequest();
hio_setcb_read(io, on_recv);
hio_read(io);
}
static void start_connect(hloop_t* loop, connection_t* conn) {
hio_t* io = hio_create_socket(loop, ip, port, HIO_TYPE_TCP, HIO_CLIENT_SIDE);
if (io == NULL) {
perror("socket");
exit(1);
}
conn->io = io;
hevent_set_userdata(io, conn);
if (https) {
hio_enable_ssl(io);
}
tcp_nodelay(hio_fd(io), 1);
hio_setcb_connect(io, on_connect);
hio_setcb_close(io, on_close);
hio_connect(io);
}
static void start_reconnect(hio_t* io) {
hloop_t* loop = hevent_loop(io);
connection_t* conn = (connection_t*)hevent_userdata(io);
start_connect(loop, conn);
}
int main(int argc, char** argv) {
// parse cmdline
main_ctx_init(argc, argv);
int ret = parse_opt(argc, argv, options);
if (ret != 0) {
print_help();
exit(ret);
}
if (get_arg("h") || g_main_ctx.arg_list_size != 1) {
print_help();
exit(0);
}
url = g_main_ctx.arg_list[0];
if (get_arg("v")) {
verbose = true;
}
const char* strConnections = get_arg("c");
const char* strDuration = get_arg("d");
const char* strThreads = get_arg("t");
if (strConnections) connections = atoi(strConnections);
if (strDuration) duration = atoi(strDuration);
if (strThreads) threads = atoi(strThreads);
print_cmd();
// ParseUrl
request = std::make_shared<HttpRequest>();
request->url = url;
request->ParseUrl();
https = request->scheme == "https";
const char* host = request->host.c_str();
port = request->port;
// ResolveAddr
if (is_ipaddr(host)) {
strcpy(ip, host);
} else {
sockaddr_u addr;
if (ResolveAddr(host, &addr) != 0) {
fprintf(stderr, "Could not resolve host: %s\n", host);
exit(1);
}
sockaddr_ip(&addr, ip, sizeof(ip));
}
// Test connect
printf("Connect to %s:%d ...\n", ip, port);
int connfd = ConnectTimeout(ip, port);
if (connfd < 0) {
fprintf(stderr, "Could not connect to %s:%d\n", ip, port);
exit(1);
} else {
closesocket(connfd);
}
// Dump request
request->headers["User-Agent"] = std::string("libhv/") + hv_version();
request->headers["Connection"] = "keep-alive";
request_msg = request->Dump(true, true);
printf("%s", request_msg.c_str());
// EventLoopThreadPool
EventLoopThreadPool loop_threads(threads);
loop_threads.start(true);
// connections
conns = (connection_t**)malloc(sizeof(connection_t*) * connections);
for (int i = 0; i < connections; ++i) {
conns[i] = new connection_t;
EventLoopPtr loop = loop_threads.nextLoop();
hloop_t* hloop = loop->loop();
loop->runInLoop(std::bind(start_connect, loop->loop(), conns[i]));
}
// stop after duration
loop_threads.loop()->setTimeout(duration * 1000, [&loop_threads](TimerID timerID){
stop = true;
loop_threads.stop(false);
});
// wait loop_threads exit
loop_threads.join();
print_result();
return 0;
}