-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.cpp
More file actions
469 lines (416 loc) · 14.7 KB
/
client.cpp
File metadata and controls
469 lines (416 loc) · 14.7 KB
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
// client.cpp
#include <algorithm>
#include <cmath>
#include <cinttypes>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cerrno>
#include <numeric>
#include <vector>
#include <fstream>
#include <string>
#include <climits>
#include <utility>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "common.h"
static constexpr const char* kOutputDir = "output";
struct LatencySummary {
uint32_t payload_size = 0;
int sample_count = 0;
double avg_ns = 0.0;
uint64_t min_ns = 0;
uint64_t max_ns = 0;
uint64_t p50_ns = 0;
uint64_t p90_ns = 0;
uint64_t p99_ns = 0;
uint64_t p999_ns = 0;
double variance_ns2 = 0.0;
double throughput_rps = 0.0;
};
static bool send_all(int fd, const void* buffer, size_t len)
{
const auto* data = static_cast<const char*>(buffer);
size_t sent = 0;
while (sent < len) {
ssize_t n = send(fd, data + sent, len - sent, 0);
if (n < 0) {
if (errno == EINTR) {
continue; // interrupted by signal, retry
}
if (errno == EAGAIN || errno == EWOULDBLOCK) {
fprintf(stderr, "send would block\n");
continue;
}
fprintf(stderr, "send failed: %s\n", strerror(errno));
return false;
}
if (n == 0) {
fprintf(stderr, "send returned 0 (connection closed).\n");
return false;
}
sent += static_cast<size_t>(n);
}
return true;
}
static bool recv_all(int fd, void* buffer, size_t len)
{
auto* data = static_cast<char*>(buffer);
size_t recvd = 0;
while (recvd < len) {
ssize_t n = recv(fd, data + recvd, len - recvd, 0);
if (n < 0) { // recv returns -1 on error
if (errno == EINTR) {
continue; // interrupted by signal, retry
}
if (errno == EAGAIN || errno == EWOULDBLOCK) {
fprintf(stderr, "recv would block\n");
continue;
}
fprintf(stderr, "recv failed: %s (errno = %d)\n",
strerror(errno), errno);
return false;
}
if (n == 0) {
fprintf(stderr, "recv returned 0 (connection closed).\n");
return false;
}
recvd += static_cast<size_t>(n);
}
return true;
}
static bool recv_message(int fd, std::vector<char>& buffer)
{
buffer.resize(sizeof(Msg));
if (!recv_all(fd, buffer.data(), sizeof(Msg))) {
return false;
}
const auto* header = reinterpret_cast<const Msg*>(buffer.data());
if (header->payload_size < sizeof(Msg)) {
std::fprintf(stderr,
"server payload_size=%" PRIu32 " is smaller than header size %zu\n",
header->payload_size,
sizeof(Msg));
return false;
}
const size_t payload_bytes = header->payload_size - sizeof(Msg);
buffer.resize(header->payload_size);
if (payload_bytes > 0 &&
!recv_all(fd, buffer.data() + sizeof(Msg), payload_bytes)) {
return false;
}
return true;
}
static bool compute_statistics(const std::vector<uint64_t>& rtts,
uint32_t payload_size,
LatencySummary* summary)
{
if (rtts.empty()) {
return false;
}
std::vector<uint64_t> sorted = rtts;
std::sort(sorted.begin(), sorted.end());
const int count = static_cast<int>(sorted.size());
const uint64_t sum =
std::accumulate(sorted.begin(), sorted.end(), static_cast<uint64_t>(0));
const uint64_t min = sorted.front();
const uint64_t max = sorted.back();
const double avg = static_cast<long double>(sum) / count;
const auto percentile = [&](double ratio) {
if (sorted.empty()) {
return uint64_t{0};
}
double position = ratio * (sorted.size() - 1);
size_t idx = static_cast<size_t>(std::llround(position));
if (idx >= sorted.size()) {
idx = sorted.size() - 1;
}
return sorted[idx];
};
const uint64_t p50 = percentile(0.5);
const uint64_t p90 = percentile(0.9);
const uint64_t p99 = percentile(0.99);
const uint64_t p999 = percentile(0.999);
long double variance_acc = 0;
for (uint64_t value : sorted) {
const long double diff = static_cast<long double>(value) - avg;
variance_acc += diff * diff;
}
const double variance = static_cast<double>(variance_acc / count);
const double throughput = (avg > 0.0) ? (1e9 / avg) : 0.0;
summary->payload_size = payload_size;
summary->sample_count = count;
summary->avg_ns = avg;
summary->min_ns = min;
summary->max_ns = max;
summary->p50_ns = p50;
summary->p90_ns = p90;
summary->p99_ns = p99;
summary->p999_ns = p999;
summary->variance_ns2 = variance;
summary->throughput_rps = throughput;
return true;
}
static void print_statistics(const LatencySummary& s)
{
printf("\n=== Latency Statistics ===\n");
printf("Payload size: %" PRIu32 " bytes\n", s.payload_size);
printf("Samples: %d\n", s.sample_count);
printf("Average latency: %.2f ns (%.3f us)\n", s.avg_ns, s.avg_ns / 1000.0);
printf("Median (P50): %" PRIu64 " ns (%.3f us)\n", s.p50_ns, s.p50_ns / 1000.0);
printf("P90: %" PRIu64 " ns (%.3f us)\n", s.p90_ns, s.p90_ns / 1000.0);
printf("P99: %" PRIu64 " ns (%.3f us)\n", s.p99_ns, s.p99_ns / 1000.0);
printf("P99.9: %" PRIu64 " ns (%.3f us)\n", s.p999_ns, s.p999_ns / 1000.0);
printf("Minimum: %" PRIu64 " ns (%.3f us)\n", s.min_ns, s.min_ns / 1000.0);
printf("Maximum: %" PRIu64 " ns (%.3f us)\n", s.max_ns, s.max_ns / 1000.0);
printf("Variance: %.2f ns^2\n", s.variance_ns2);
printf("Throughput: %.2f requests/sec\n", s.throughput_rps);
}
static bool validate_payload_args(uint32_t payload_size, int msg_count)
{
if (msg_count <= 0) {
std::fprintf(stderr, "msg_count must be > 0\n");
return false;
}
if (payload_size < sizeof(Msg)) {
std::fprintf(stderr,
"payload_size must be >= %zu bytes\n",
sizeof(Msg));
return false;
}
return true;
}
static int connect_tcp(const char* server_ip, int port)
{
int fd = socket(AF_INET, SOCK_STREAM, 0);
if (fd < 0) {
perror("socket");
return -1;
}
struct sockaddr_in addr;
memset(&addr, 0, sizeof(addr));
addr.sin_family = AF_INET;
addr.sin_port = htons(port);
if (inet_pton(AF_INET, server_ip, &addr.sin_addr) <= 0) {
perror("inet_pton");
close(fd);
return -1;
}
if (connect(fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
perror("connect");
close(fd);
return -1;
}
return fd;
}
static bool run_payload_test_on_fd(int fd,
const char* server_ip,
int port,
uint32_t payload_size,
int msg_count,
LatencySummary* summary,
std::vector<uint64_t>* samples,
bool print_result = true,
bool skip_validation = false)
{
if (!skip_validation && !validate_payload_args(payload_size, msg_count)) {
return false;
}
if (print_result) {
printf("\nConnected to %s:%d with payload_size=%" PRIu32
", sending %d messages...\n",
server_ip, port, payload_size, msg_count);
}
std::vector<char> send_buffer(payload_size);
auto* header = reinterpret_cast<Msg*>(send_buffer.data());
header->payload_size = payload_size;
const size_t payload_bytes = payload_size - sizeof(Msg);
char* payload_start = send_buffer.data() + sizeof(Msg);
std::fill(payload_start, payload_start + payload_bytes, 0x42);
std::vector<char> recv_buffer;
std::vector<uint64_t> rtts;
rtts.reserve(msg_count);
for (int i = 0; i < msg_count; ++i) {
const uint64_t send_ts = now_ns();
if (!send_all(fd, send_buffer.data(), send_buffer.size())) {
fprintf(stderr, "send_all failed at i=%d\n", i);
return false;
}
if (!recv_message(fd, recv_buffer)) {
fprintf(stderr, "recv_message failed at i=%d\n", i);
return false;
}
uint64_t now = now_ns();
uint64_t rtt_ns = now - send_ts;
rtts.push_back(rtt_ns);
}
if (!compute_statistics(rtts, payload_size, summary)) {
fprintf(stderr, "No RTT data collected for payload_size=%" PRIu32 "\n",
payload_size);
return false;
}
if (samples) {
*samples = std::move(rtts);
}
if (print_result) {
print_statistics(*summary);
}
return true;
}
static std::string make_csv_basename(const char* basename)
{
std::string name = (basename && basename[0] != '\0')
? std::string(basename)
: std::string("output");
const std::string suffix = ".csv";
if (name.length() >= suffix.length() &&
name.compare(name.length() - suffix.length(), suffix.length(), suffix) == 0) {
name.erase(name.length() - suffix.length());
}
return name;
}
static bool ensure_directory_exists(const std::string& path)
{
struct stat info {};
if (stat(path.c_str(), &info) == 0) {
return S_ISDIR(info.st_mode);
}
if (errno != ENOENT) {
fprintf(stderr, "Failed to access %s: %s\n", path.c_str(), strerror(errno));
return false;
}
if (mkdir(path.c_str(), 0755) == 0 || errno == EEXIST) {
return true;
}
fprintf(stderr, "Failed to create directory %s: %s\n", path.c_str(), strerror(errno));
return false;
}
int main(int argc, char *argv[]) {
if (argc < 5) {
fprintf(stderr,
"Usage: %s <server_ip> <port> <msg_count> <payload_size|-1> "
"[output_basename]\n",
argv[0]);
return 1;
}
const char *server_ip = argv[1];
int port = atoi(argv[2]);
char* endptr = nullptr;
long msg_count_long = strtol(argv[3], &endptr, 10);
if (*endptr != '\0' || msg_count_long <= 0 || msg_count_long > INT_MAX) {
fprintf(stderr, "msg_count must be a positive integer\n");
return 1;
}
int msg_count = static_cast<int>(msg_count_long);
char* payload_end = nullptr;
long payload_arg = strtol(argv[4], &payload_end, 10);
if (*payload_end != '\0') {
fprintf(stderr, "payload_size must be an integer or -1\n");
return 1;
}
const char* output_basename = (argc >= 6) ? argv[5] : nullptr;
bool sweep_payloads = (payload_arg == -1);
if (sweep_payloads && (!output_basename || output_basename[0] == '\0')) {
fprintf(stderr, "output_basename is required when payload_size is -1.\n");
return 1;
}
std::vector<uint32_t> payload_sizes;
if (sweep_payloads) {
const uint32_t presets[] = {512, 1024, 2048, 4096, 8192, 64, 128, 256};
payload_sizes.assign(presets, presets + (sizeof(presets) / sizeof(presets[0])));
} else {
if (payload_arg <= 0) {
fprintf(stderr, "payload_size must be positive or -1\n");
return 1;
}
payload_sizes.push_back(static_cast<uint32_t>(payload_arg));
}
std::string output_dir;
std::string output_base;
std::ofstream summary_file;
std::string summary_path;
output_dir = kOutputDir;
if (!ensure_directory_exists(output_dir)) {
fprintf(stderr, "Failed to create output directory: %s\n", output_dir.c_str());
return 1;
}
output_base = make_csv_basename(output_basename);
summary_path = output_dir + "/" + output_base + "_sum.csv";
summary_file.open(summary_path);
if (!summary_file.is_open()) {
fprintf(stderr, "Failed to open %s for writing\n", summary_path.c_str());
return 1;
}
summary_file << "payload_size,avg_latency_ns,min_latency_ns,p50_ns,"
"p90_ns,p99_ns,p99.9_ns,max_latency_ns,throughput_rps\n";
int shared_fd = connect_tcp(server_ip, port);
if (shared_fd < 0) {
return 1;
}
bool overall_success = true;
for (size_t idx = 0; idx < payload_sizes.size(); ++idx) {
uint32_t payload_size = payload_sizes[idx];
if (idx == 0) {
LatencySummary warmup_summary{};
if (!run_payload_test_on_fd(shared_fd,
server_ip,
port,
payload_size,
msg_count,
&warmup_summary,
nullptr,
false)) {
overall_success = false;
}
}
LatencySummary summary{};
std::vector<uint64_t> samples;
bool ok = run_payload_test_on_fd(shared_fd,
server_ip,
port,
payload_size,
msg_count,
&summary,
sweep_payloads ? &samples : nullptr);
if (!ok) {
overall_success = false;
continue;
}
if (summary_file.is_open()) {
summary_file << summary.payload_size << ','
<< summary.avg_ns << ','
<< summary.min_ns << ','
<< summary.p50_ns << ','
<< summary.p90_ns << ','
<< summary.p99_ns << ','
<< summary.p999_ns << ','
<< summary.max_ns << ','
<< summary.throughput_rps << '\n';
const std::string detail_path =
output_dir + "/" + output_base + "_" + std::to_string(payload_size) + ".csv";
std::ofstream detail_file(detail_path);
if (!detail_file.is_open()) {
fprintf(stderr, "Failed to open %s for writing\n", detail_path.c_str());
overall_success = false;
continue;
}
detail_file << "latency_ns\n";
for (uint64_t value : samples) {
detail_file << value << '\n';
}
}
}
if (shared_fd >= 0) {
close(shared_fd);
}
if (summary_file.is_open()) {
summary_file.close();
printf("\nAggregated results written to %s\n", summary_path.c_str());
}
return overall_success ? 0 : 1;
}