-
Notifications
You must be signed in to change notification settings - Fork 1
/
LoadTest.cpp
151 lines (111 loc) · 2.69 KB
/
LoadTest.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
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string>
#include <Request.h>
#include <Response.h>
#include <WorkPile.h>
class ResponseHandler : public WorkPile<HTTP::Response>
{
public:
ResponseHandler() :
WorkPile(1)
{
}
void doWork()
{
HTTP::Response response;
double average = 0;
unsigned long count = 1;
unsigned long errors = 0;
while (! WorkPile::done() || WorkPile::hasWork()) {
if (! WorkPile::getWork(response)) {
break;
}
if (response.codeClass == 200) {
average += (response.elapsed - average) / count;
}
else {
errors++;
}
count++;
}
printf("[processed %ld requests (%ld errors) (%.2f ms avg latency)]\n",
count-1, errors, average);
}
};
class RequestPile : public WorkPile<std::string>
{
public:
RequestPile(int numWorkers) :
WorkPile(numWorkers)
{
}
bool init()
{
WorkPile::init();
responseHandler_.init();
}
void doWork()
{
HTTP::Request request;
HTTP::Response response;
std::string url;
while (! WorkPile::done() || WorkPile::hasWork()) {
if (! WorkPile::getWork(url)) {
break;
}
response = request.get(url);
responseHandler_.putWork(response);
}
}
void finishWork()
{
WorkPile::finishWork();
responseHandler_.finishWork();
}
protected:
ResponseHandler responseHandler_;
};
void usage(int argc, char ** argv)
{
fprintf(stderr, "Usage: %s (-u URL) [-n NUM_REQUESTS] [-t NUM_THREADS]\n",
argv[0]);
exit(0);
}
int main(int argc, char ** argv) {
int c;
int threads = 0;
int requests = 0;
std::string url;
while ((c = getopt(argc, argv, "hn:t:u:")) != -1) {
switch (c) {
case 'h':
usage(argc, argv);
break;
case 'n':
requests = atoi(optarg);
break;
case 't':
threads = atoi(optarg);
break;
case 'u':
url = optarg;
break;
}
}
threads = (threads ? threads : 4);
requests = (requests ? requests : 1000);
if (url.empty()) {
printf("URL not specified.\n\n");
usage(argc, argv);
}
printf("[url=%s threads=%d requests=%d]\n", url.c_str(), threads, requests);
RequestPile pile(threads);
pile.init();
for (int i=0; i < requests; ++i) {
pile.putWork(url);
}
pile.finishWork();
return 0;
}