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
|
#include <string>
#include <stdlib.h>
#include <iostream>
#include <vector>
#include <chrono>
#include <set>
#include <unordered_map>
#include <random>
#include <string.h>
#include <algorithm>
#include <fstream>
#include <math.h>
#include <unistd.h>
#include <sstream>
#include "fieldstat.h"
#include "utils.hpp"
using namespace std;
string gen_rand_string(int len)
{
char cstr[len + 1];
for (int i = 0; i < len; i++)
{
cstr[i] = 'a' + rand() % 26;
}
cstr[len] = '\0';
string s(cstr);
return s;
}
/* -------------------------------------------------------------------------- */
/* taglist wrapper */
/* -------------------------------------------------------------------------- */
Fieldstat_tag_list_wrapper::Fieldstat_tag_list_wrapper(const struct fieldstat_tag_list *tag_list) {
tag_list_c.tag = (struct fieldstat_tag *)malloc(sizeof(struct fieldstat_tag) * tag_list->n_tag);
tag_list_c.n_tag = tag_list->n_tag;
for (size_t i = 0; i < tag_list->n_tag; i++)
{
// copy the tag_list
tag_list_c.tag[i].key = strdup(tag_list->tag[i].key);
tag_list_c.tag[i].type = tag_list->tag[i].type;
switch (tag_list->tag[i].type)
{
case TAG_INTEGER:
tag_list_c.tag[i].value_longlong = tag_list->tag[i].value_longlong;
break;
case TAG_DOUBLE:
tag_list_c.tag[i].value_double = tag_list->tag[i].value_double;
break;
case TAG_CSTRING:
tag_list_c.tag[i].value_str = strdup(tag_list->tag[i].value_str);
break;
default:
break;
}
}
}
Fieldstat_tag_list_wrapper::Fieldstat_tag_list_wrapper(const char * key, int value)
{
tag_list_c.tag = (struct fieldstat_tag *)malloc(sizeof(struct fieldstat_tag));
tag_list_c.n_tag = 1;
tag_list_c.tag[0].key = strdup(key);
tag_list_c.tag[0].type = TAG_INTEGER;
tag_list_c.tag[0].value_longlong = value;
}
Fieldstat_tag_list_wrapper::Fieldstat_tag_list_wrapper(const char * key, const char *value)
{
tag_list_c.tag = (struct fieldstat_tag *)malloc(sizeof(struct fieldstat_tag));
tag_list_c.n_tag = 1;
tag_list_c.tag[0].key = strdup(key);
tag_list_c.tag[0].type = TAG_CSTRING;
tag_list_c.tag[0].value_str = strdup(value);
}
Fieldstat_tag_list_wrapper::~Fieldstat_tag_list_wrapper() {
for (size_t i = 0; i < tag_list_c.n_tag; i++) {
free((char *)tag_list_c.tag[i].key);
if (tag_list_c.tag[i].type == TAG_CSTRING) {
free((char *)tag_list_c.tag[i].value_str);
}
}
free(tag_list_c.tag);
}
Fieldstat_tag_list_wrapper::Fieldstat_tag_list_wrapper(std::uniform_int_distribution<int> &dist, int tag_count)
{
tag_list_c.tag = (struct fieldstat_tag *)malloc(sizeof(struct fieldstat_tag) * tag_count);
tag_list_c.n_tag = tag_count;
std::mt19937 rng(1);
for (int i = 0; i < tag_count; i++)
{
tag_list_c.tag[i].key = strdup(gen_rand_string(10).c_str());
int rand_ret = rand() % 3;
if (rand_ret == 0)
{
tag_list_c.tag[i].type = TAG_INTEGER;
tag_list_c.tag[i].value_longlong = static_cast<long long>(dist(rng));
}
else if (rand_ret == 1)
{
tag_list_c.tag[i].type = TAG_DOUBLE;
tag_list_c.tag[i].value_double = static_cast<double>(dist(rng)) + 0.5;
}
else
{
tag_list_c.tag[i].type = TAG_CSTRING;
tag_list_c.tag[i].value_str = strdup(gen_rand_string(10).c_str());
}
}
}
Fieldstat_tag_list_wrapper::Fieldstat_tag_list_wrapper() {
tag_list_c.tag = NULL;
tag_list_c.n_tag = 0;
}
Fieldstat_tag_list_wrapper::Fieldstat_tag_list_wrapper(const Fieldstat_tag_list_wrapper &tag_list_wrapper){
const struct fieldstat_tag_list *tag_list = tag_list_wrapper.get_c_struct();
tag_list_c.tag = (struct fieldstat_tag *)malloc(sizeof(struct fieldstat_tag) * tag_list->n_tag);
tag_list_c.n_tag = tag_list->n_tag;
for (size_t i = 0; i < tag_list->n_tag; i++)
{
// copy the tag_list
tag_list_c.tag[i].key = strdup(tag_list->tag[i].key);
tag_list_c.tag[i].type = tag_list->tag[i].type;
switch (tag_list->tag[i].type)
{
case TAG_INTEGER:
tag_list_c.tag[i].value_longlong = tag_list->tag[i].value_longlong;
break;
case TAG_DOUBLE:
tag_list_c.tag[i].value_double = tag_list->tag[i].value_double;
break;
case TAG_CSTRING:
tag_list_c.tag[i].value_str = strdup(tag_list->tag[i].value_str);
break;
default:
break;
}
}
}
const struct fieldstat_tag *Fieldstat_tag_list_wrapper::get_tag() const
{
return tag_list_c.tag;
}
size_t Fieldstat_tag_list_wrapper::get_tag_count() const
{
return tag_list_c.n_tag;
}
const struct fieldstat_tag_list *Fieldstat_tag_list_wrapper::get_c_struct() const
{
return &tag_list_c;
}
void Fieldstat_tag_list_wrapper::print_tag_list() const
{
printf("tag_list_c.n_tag: %zu\n", tag_list_c.n_tag);
for (size_t i = 0; i < tag_list_c.n_tag; i++)
{
printf("tag_list_c.tag[%zu].key: %s\n", i, tag_list_c.tag[i].key);
printf("tag_list_c.tag[%zu].type: %d\n", i, (int)tag_list_c.tag[i].type);
switch (tag_list_c.tag[i].type)
{
case TAG_INTEGER:
printf("tag_list_c.tag[%zu].value_longlong: %lld\n", i, tag_list_c.tag[i].value_longlong);
break;
case TAG_DOUBLE:
printf("tag_list_c.tag[%zu].value_double: %lf\n", i, tag_list_c.tag[i].value_double);
break;
case TAG_CSTRING:
printf("tag_list_c.tag[%zu].value_str: %s\n", i, tag_list_c.tag[i].value_str);
break;
default:
break;
}
}
printf("print end\n");
}
string Fieldstat_tag_list_wrapper::to_string() const
{
string str = "";
for (size_t i = 0; i < tag_list_c.n_tag; i++)
{
str += tag_list_c.tag[i].key;
str += ":";
switch (tag_list_c.tag[i].type)
{
case TAG_INTEGER:
str += std::to_string(tag_list_c.tag[i].value_longlong);
break;
case TAG_DOUBLE:
str += std::to_string(tag_list_c.tag[i].value_double);
break;
case TAG_CSTRING:
str += tag_list_c.tag[i].value_str;
break;
default:
break;
}
str += ",";
}
return str;
}
bool Fieldstat_tag_list_wrapper::operator==(const Fieldstat_tag_list_wrapper &tag_list_wrapper) const
{
const struct fieldstat_tag_list *tag_list = tag_list_wrapper.get_c_struct();
if (tag_list_c.n_tag != tag_list->n_tag) {
return false;
}
for (size_t i = 0; i < tag_list_c.n_tag; i++) {
if (strcmp((char *)tag_list_c.tag[i].key, (char *)tag_list->tag[i].key) != 0) {
return false;
}
if (tag_list_c.tag[i].type != tag_list->tag[i].type) {
return false;
}
switch (tag_list_c.tag[i].type) {
case TAG_INTEGER:
if (tag_list_c.tag[i].value_longlong != tag_list->tag[i].value_longlong) {
return false;
}
break;
case TAG_DOUBLE:
if (tag_list_c.tag[i].value_double != tag_list->tag[i].value_double) {
return false;
}
break;
case TAG_CSTRING:
if (strcmp((char *)tag_list_c.tag[i].value_str, (char *)tag_list->tag[i].value_str) != 0) {
return false;
}
break;
default:
break;
}
}
return true;
}
Fieldstat_tag_list_wrapper& Fieldstat_tag_list_wrapper::sort_tag_list()
{
std::sort(tag_list_c.tag, tag_list_c.tag + tag_list_c.n_tag, [](const struct fieldstat_tag &a, const struct fieldstat_tag &b) {
return strcmp((char *)a.key, (char *)b.key) < 0;
});
return *this;
}
double test_cal_topk_accuracy(vector<struct Fieldstat_tag_list_wrapper *> &test_result, unordered_map<string, int> &expected_count)
{
std::vector<std::pair<std::string, int>> countVector(expected_count.begin(), expected_count.end());
std::sort(countVector.begin(), countVector.end(), [](const std::pair<std::string, int> &a, const std::pair<std::string, int> &b) {
return a.second > b.second;
});
std::set<std::string> myset;
int min_in_max_count = 0;
size_t i;
for (i = 0; i < test_result.size(); ++i) {
myset.insert(countVector[i].first);
min_in_max_count = countVector[i].second;
}
while (i < countVector.size()) {
if (countVector[i].second != min_in_max_count) {
break;
}
myset.insert(countVector[i].first);
i++;
}
// cout << "myset : " << endl;
// for (auto it = myset.begin(); it != myset.end(); it++) {
// cout << *it << endl;
// }
// cout << "------------------------- " << endl;
int correct = 0;
for (size_t i = 0; i < test_result.size(); i++) {
string key = test_result[i]->to_string();
if (myset.find(key) != myset.end()) {
correct++;
}
}
double accuracy = (double)correct / test_result.size();
return accuracy;
}
//===========================================================================
//= Function to generate Zipf (power law) distributed random variables =
//= - Input: alpha and N =
//= - Output: Returns with Zipf distributed random variable =
//===========================================================================
int zipf(double alpha, int n)
{
static bool first = true; // Static first time flag
static double c = 0; // Normalization constant
double z; // Uniform random number (0 < z < 1)
double sum_prob; // Sum of probabilities
double zipf_value; // Computed exponential value to be returned
int i; // Loop counter
// Compute normalization constant on first call only
if (first)
{
for (i=1; i<=n; i++)
c = c + (1.0 / pow((double) i, alpha));
c = 1.0 / c;
first = false;
}
// Pull a uniform random number (0 < z < 1)
do
{
z = (double)rand() / (double)RAND_MAX;
}
while ((z == 0.0) || (z == 1.0));
// Map z to the value
sum_prob = 0;
for (i=1; i<=n; i++)
{
sum_prob = sum_prob + c / pow((double) i, alpha);
if (sum_prob >= z)
{
zipf_value = i;
break;
}
}
return(zipf_value);
}
// class SpreadSketchZipfGenerator {
// private:
// const int MAX_DATA = 1000000;
// std::pair<std::string, std::string> *loadeds;
// unsigned cursor;
// public:
// SpreadSketchZipfGenerator(double alpha, int n) {
// }
// struct Flow next() {
// int r_cursor = cursor % MAX_DATA;
// struct Flow flow;
// flow.src_ip = loadeds[r_cursor].first;
// flow.dst_ip = loadeds[r_cursor].second;
// cursor++;
// return flow;
// }
// ~SpreadSketchZipfGenerator() {
// delete[] loadeds;
// }
// double _alpha;
// int _n;
// };
SpreadSketchZipfGenerator::SpreadSketchZipfGenerator(double alpha, int n) {
_alpha = alpha;
_n = n;
// generate data and write them to file
std::string filename = "zipf_" + std::to_string(alpha) + "_" + std::to_string(n) + ".txt";
std::unordered_map<int, int> fanout_map; // src_ip_id -> fanout being used
if (access(filename.c_str(), F_OK) != 0) {
printf("file %s not found, generating data\n", filename.c_str());
std::ofstream file(filename);
if (!file.is_open()) {
printf("failed to open file %s\n", filename.c_str());
return;
}
for (int i = 0; i < MAX_DATA; i++) {
int src_id = zipf(alpha, n);
int fanout = fanout_map.find(src_id) == fanout_map.end() ? 0 : fanout_map[src_id];
fanout_map[src_id] = fanout + 1;
file << "s_" << src_id << " d_" << fanout << std::endl;
}
file.close();
printf("data generated and saved to file %s\n", filename.c_str());
}
// load data
std::ifstream file(filename);
if (!file.is_open()) {
printf("failed to open file %s\n", filename.c_str());
return;
}
loadeds = new std::pair<std::string, std::string>[MAX_DATA];
std::string line;
int i = 0;
while (std::getline(file, line) && i < MAX_DATA) {
std::istringstream iss(line);
std::string src_ip, dst_ip;
iss >> src_ip >> dst_ip;
loadeds[i] = std::make_pair(src_ip, dst_ip);
i++;
}
file.close();
}
SpreadSketchZipfGenerator::~SpreadSketchZipfGenerator() {
delete[] loadeds;
}
struct Flow SpreadSketchZipfGenerator::next() {
int r_cursor = cursor % MAX_DATA;
struct Flow flow;
flow.src_ip = loadeds[r_cursor].first;
flow.dst_ip = loadeds[r_cursor].second;
cursor++;
return flow;
}
|