-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathfastbit.cpp
711 lines (598 loc) · 22.3 KB
/
fastbit.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
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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
/**
* \file fastbit.cpp
* \author Petr Kramolis <[email protected]>
* \brief ipficol storage plugin based on fastbit
*
* Copyright (C) 2015 CESNET, z.s.p.o.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name of the Company nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* ALTERNATIVELY, provided that this notice is retained in full, this
* product may be distributed under the terms of the GNU General Public
* License (GPL) version 2 or later, in which case the provisions
* of the GPL apply INSTEAD OF those given above.
*
* This software is provided ``as is, and any express or implied
* warranties, including, but not limited to, the implied warranties of
* merchantability and fitness for a particular purpose are disclaimed.
* In no event shall the company or contributors be liable for any
* direct, indirect, incidental, special, exemplary, or consequential
* damages (including, but not limited to, procurement of substitute
* goods or services; loss of use, data, or profits; or business
* interruption) however caused and on any theory of liability, whether
* in contract, strict liability, or tort (including negligence or
* otherwise) arising in any way out of the use of this software, even
* if advised of the possibility of such damage.
*
*/
extern "C" {
#include <ipfixcol/storage.h>
#include <ipfixcol/verbose.h>
/* API version constant */
IPFIXCOL_API_VERSION;
}
#include <pthread.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <map>
#include <iostream>
#include <iomanip>
#include <string>
#include <fstream>
#include <iostream>
#include <fastbit/ibis.h>
#include "pugixml.hpp"
#include "fastbit.h"
#include "fastbit_table.h"
#include "fastbit_element.h"
#include "config_struct.h"
volatile bool terminate = false;
void ipv6_addr_non_canonical(char *str, const struct in6_addr *addr)
{
sprintf(str, "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
addr->s6_addr[0], addr->s6_addr[1],
addr->s6_addr[2], addr->s6_addr[3],
addr->s6_addr[4], addr->s6_addr[5],
addr->s6_addr[6], addr->s6_addr[7],
addr->s6_addr[8], addr->s6_addr[9],
addr->s6_addr[10], addr->s6_addr[11],
addr->s6_addr[12], addr->s6_addr[13],
addr->s6_addr[14], addr->s6_addr[15]);
}
/**
* \brief Returns the length of an element, based on its type
*
* @param type Element type
*
*/
int get_len_from_type(ELEMENT_TYPE type)
{
int len;
switch (type) {
case ET_DATE_TIME_MILLISECONDS:
case ET_DATE_TIME_MICROSECONDS:
case ET_DATE_TIME_NANOSECONDS:
case ET_MAC_ADDRESS:
case ET_FLOAT_64:
case ET_SIGNED_64:
case ET_UNSIGNED_64:
len = 8;
break;
case ET_BOOLEAN:
case ET_DATE_TIME_SECONDS:
case ET_FLOAT_32:
case ET_IPV4_ADDRESS:
case ET_SIGNED_32:
case ET_UNSIGNED_32:
len = 4;
break;
case ET_SIGNED_16:
case ET_UNSIGNED_16:
len = 2;
break;
case ET_SIGNED_8:
case ET_UNSIGNED_8:
len = 1;
break;
case ET_IPV6_ADDRESS:
case ET_STRING:
case ET_OCTET_ARRAY:
case ET_BASIC_LIST:
case ET_SUB_TEMPLATE_LIST:
case ET_SUB_TEMPLATE_MULTILIST:
default:
len = -1;
break;
}
return len;
}
void *reorder_index(void *config)
{
struct fastbit_config *conf = static_cast<struct fastbit_config*>(config);
ibis::table *index_table;
std::string dir;
ibis::part *reorder_part;
ibis::table::stringArray ibis_columns;
bool no_dirs = true;
while (!terminate || !no_dirs) {
/* Sleep until there is a work to do */
pthread_mutex_lock(&conf->mutex);
while(!terminate && (*conf->dirs).empty()) {
pthread_cond_wait(&conf->mutex_cond, &conf->mutex);
}
/* Nothing to do, start again and check termination flag */
if ((*conf->dirs).empty()) {
pthread_mutex_unlock(&conf->mutex);
no_dirs = true;
continue;
}
/* Get the dir to process */
no_dirs = false;
dir = (*conf->dirs).back();
(*conf->dirs).pop_back();
pthread_mutex_unlock(&conf->mutex);
/* Reorder partitions */
if (conf->reorder) {
MSG_DEBUG(msg_module, "Reordering: %s", dir.c_str());
reorder_part = new ibis::part(dir.c_str(), NULL, false);
reorder_part->reorder(); /* TODO return value */
delete reorder_part;
}
/* Build indexes */
if (conf->indexes == 1) { /* Build all indexes */
MSG_DEBUG(msg_module, "Creating indexes: %s", dir.c_str());
index_table = ibis::table::create(dir.c_str());
index_table->buildIndexes(NULL);
delete index_table;
} else if (conf->indexes == 2) { /* Build selected indexes */
index_table = ibis::table::create(dir.c_str());
ibis_columns = index_table->columnNames();
for (unsigned int i = 0; i < conf->index_en_id->size(); i++) {
for (unsigned int j = 0; j < ibis_columns.size(); j++) {
if ((*conf->index_en_id)[i] == std::string(ibis_columns[j])) {
MSG_DEBUG(msg_module, "Creating indexes: %s%s", dir.c_str(), (*conf->index_en_id)[i].c_str());
index_table->buildIndex(ibis_columns[j]);
}
}
}
delete index_table;
}
ibis::fileManager::instance().flushDir(dir.c_str());
}
return NULL;
}
std::string generate_path(struct fastbit_config *config, std::string exporter_ip_addr, uint32_t odid)
{
struct tm *timeinfo = localtime(&(config->last_flush));
const int ft_size = 1000;
char formated_time[ft_size];
std::string path;
std::stringstream ss;
ss << odid;
std::string odid_str = ss.str();
strftime(formated_time, ft_size, (config->sys_dir).c_str(), timeinfo);
path = std::string(formated_time);
size_t pos = 0;
while ((pos = path.find("%E", pos)) != std::string::npos) {
path.replace(pos, 2, exporter_ip_addr);
}
pos = 0;
while ((pos = path.find("%o", pos)) != std::string::npos) {
path.replace(pos, 2, odid_str);
}
path += config->window_dir;
return path;
}
void update_window_name(struct fastbit_config *conf)
{
static int flushed = 1;
/* Change window directory name */
if (conf->dump_name == PREFIX) {
conf->window_dir = conf->prefix + "/";
} else if (conf->dump_name == INCREMENTAL) {
std::stringstream ss;
ss << std::setw(12) << std::setfill('0') << flushed;
conf->window_dir = conf->prefix + ss.str() + "/";
ss.str("");
flushed++;
} else {
char formated_time[17];
struct tm *timeinfo = localtime(&(conf->last_flush));
strftime(formated_time, 17, "%Y%m%d%H%M%S", timeinfo);
conf->window_dir = conf->prefix + std::string(formated_time) + "/";
}
}
/**
* \brief Flushes the data for the specified exporter and ODID
*
* @param conf Plugin configuration data structure
* @param exporter_ip_addr Exporter IP address, as String
* @param odid Observation domain ID
*/
void flush_data(struct fastbit_config *conf, std::string exporter_ip_addr, uint32_t odid,
std::map<uint16_t,template_table*> *templates)
{
std::map<uint16_t, template_table*>::iterator table;
std::stringstream ss;
std::map<std::string, std::map<uint32_t, od_info>*>::iterator exporter_it;
std::map<uint32_t, od_info>::iterator odid_it;
std::string flushed_path;
/* Check whether exporter is listed in data structure */
if ((exporter_it = conf->od_infos->find(exporter_ip_addr)) == conf->od_infos->end()) {
MSG_ERROR(msg_module, "Could not find exporter in od_infos; aborting...");
return;
}
/* Check whether ODID is listed in data structure (under exporter) */
if ((odid_it = exporter_it->second->find(odid)) == exporter_it->second->end()) {
MSG_ERROR(msg_module, "Could not find ODID %u in od_infos; aborting...", odid);
return;
}
std::string path = odid_it->second.path;
pthread_mutex_lock(&conf->mutex);;
{
MSG_DEBUG(msg_module, "Flushing data to disk (exporter: %s, ODID: %u)",
odid_it->second.exporter_ip_addr.c_str(), odid);
MSG_DEBUG(msg_module, " > Exported: %u", odid_it->second.flow_watch.exported_flows());
MSG_DEBUG(msg_module, " > Received: %u", odid_it->second.flow_watch.received_flows());
for (table = templates->begin(); table != templates->end(); table++) {
if ((*table).second->flush(path, flushed_path) == 0) {
conf->dirs->push_back(flushed_path);
}
(*table).second->reset_rows();
}
if (odid_it->second.flow_watch.write(path) == -1) {
MSG_ERROR(msg_module, "Unable to write flow statistics: %s", path.c_str());
}
odid_it->second.flow_watch.reset_state();
}
pthread_mutex_unlock(&conf->mutex);
pthread_cond_signal(&conf->mutex_cond);
}
/**
* \brief Flushes the data for *all* exporters and ODIDs
*
* @param conf Plugin configuration data structure
*/
void flush_all_data(struct fastbit_config *conf)
{
std::map<std::string, std::map<uint32_t, od_info>*> *od_infos = conf->od_infos;
std::map<std::string, std::map<uint32_t, od_info>*>::iterator exporter_it;
std::map<uint32_t, od_info>::iterator odid_it;
/* Iterate over all exporters and ODIDs and flush data */
for (exporter_it = od_infos->begin(); exporter_it != od_infos->end(); ++exporter_it) {
for (odid_it = exporter_it->second->begin(); odid_it != exporter_it->second->end(); ++odid_it) {
flush_data(conf, exporter_it->first, odid_it->first, &(odid_it->second.template_info));
}
}
}
int process_startup_xml(char *params, struct fastbit_config *c)
{
struct tm *timeinfo;
char formated_time[17];
std::string path, time_window, record_limit, name_type, name_prefix,
indexes, reorder, create_sp_files, test, template_field_lengths, time_alignment;
pugi::xml_document doc;
doc.load(params);
if (doc) {
pugi::xpath_node ie = doc.select_single_node("fileWriter");
path = ie.node().child_value("path");
/* Make sure path ends with '/' character */
if (path.at(path.size() - 1) != '/') {
c->sys_dir = path + "/";
} else {
c->sys_dir = path;
}
indexes = ie.node().child_value("onTheFlyIndexes");
c->indexes = (indexes == "yes");
create_sp_files = ie.node().child_value("createSpFiles");
c->create_sp_files = (create_sp_files == "yes");
reorder = ie.node().child_value("reorder");
c->reorder = (reorder == "yes");
template_field_lengths = ie.node().child_value("useTemplateFieldLengths");
c->use_template_field_lengths =
(!ie.node().child("useTemplateFieldLengths") || template_field_lengths == "yes");
pugi::xpath_node_set index_e = doc.select_nodes("fileWriter/indexes/element");
for (pugi::xpath_node_set::const_iterator it = index_e.begin(); it != index_e.end(); ++it) {
pugi::xpath_node node = *it;
std::string en = "0";
std::string id = "0";
for (pugi::xml_attribute_iterator ait = node.node().attributes_begin();
ait != node.node().attributes_end(); ++ait) {
if (std::string(ait->name()) == "enterprise") {
en = ait->value();
} else if (std::string(ait->name()) == "id") {
id = ait->value();
}
}
/* Check whether enterprise and field IDs are valid */
int en_int = strtoi(en.c_str(), 10);
int id_int = strtoi(id.c_str(), 10);
if (en_int == INT_MAX || id_int == INT_MAX) {
MSG_ERROR(msg_module, "Invalid enterprise or field ID (enterprise ID: %s, field ID: %s)",
en.c_str(), id.c_str());
return 1;
}
/* Make sure IPv6 elements are indexed */
const ipfix_element_t *element = get_element_by_id(id_int, en_int);
if (element && element->type == ET_IPV6_ADDRESS) {
c->index_en_id->push_back("e" + en + "id" + id + "p0");
c->index_en_id->push_back("e" + en + "id" + id + "p1");
} else {
c->index_en_id->push_back("e" + en + "id" + id);
}
}
if (c->index_en_id->size() > 0 && c->indexes) {
c->indexes = 2; /* Mark elements for indexes */
}
ie = doc.select_single_node("fileWriter/dumpInterval");
time_window = ie.node().child_value("timeWindow");
c->time_window = atoi(time_window.c_str());
record_limit = ie.node().child_value("recordLimit");
c->records_window = atoi(record_limit.c_str());
record_limit = ie.node().child_value("bufferSize");
c->buff_size = atoi(record_limit.c_str());
time_alignment = ie.node().child_value("timeAlignment");
ie = doc.select_single_node("fileWriter/namingStrategy");
name_prefix = ie.node().child_value("prefix");
c->prefix = name_prefix;
time(&(c->last_flush));
name_type = ie.node().child_value("type");
if (name_type == "time") {
c->dump_name = TIME;
if (time_alignment == "yes") {
if (c->time_window > 0) {
/* operators '/' and '*' are used for round down time to time window */
c->last_flush = ((c->last_flush / c->time_window) * c->time_window);
}
}
timeinfo = localtime(&(c->last_flush));
strftime(formated_time, 17, "%Y%m%d%H%M%S", timeinfo);
c->window_dir = c->prefix + std::string(formated_time) + "/";
} else if (name_type == "incremental") {
c->dump_name = INCREMENTAL;
c->window_dir = c->prefix + "000000000001/";
} else if (name_type == "prefix") {
c->dump_name = PREFIX;
if (c->prefix == "") {
c->prefix = "fbitfiles";
}
c->window_dir = c->prefix + "/";
}
} else {
return 1;
}
return 0;
}
extern "C"
int storage_init(char *params, void **config)
{
MSG_DEBUG(msg_module, "Fastbit plugin: initialization");
struct fastbit_config *c = NULL;
/* Create config structure */
*config = new struct fastbit_config;
if (*config == NULL) {
MSG_ERROR(msg_module, "Memory allocation failed (%s:%d)", __FILE__, __LINE__);
return 1;
}
c = (struct fastbit_config*) *config;
c->od_infos = new std::map<std::string, std::map<uint32_t, struct od_info>*>;
if (c->od_infos == NULL) {
MSG_ERROR(msg_module, "Memory allocation failed (%s:%d)", __FILE__, __LINE__);
return 1;
}
c->index_en_id = new std::vector<std::string>;
if (c->index_en_id == NULL) {
MSG_ERROR(msg_module, "Memory allocation failed (%s:%d)", __FILE__, __LINE__);
return 1;
}
c->dirs = new std::vector<std::string>;
if (c->dirs == NULL) {
MSG_ERROR(msg_module, "Memory allocation failed (%s:%d)", __FILE__, __LINE__);
return 1;
}
/* Parse configuration xml and updated configure structure according to it */
if (process_startup_xml(params, c)) {
MSG_ERROR(msg_module, "Unable to parse plugin configuration");
return 1;
}
/* On startup we expect to write to new directory */
c->new_dir = true;
/* Create index thread */
if (pthread_create(&c->index_thread, NULL, reorder_index, c) != 0) {
MSG_ERROR(msg_module, "pthread_create");
}
return 0;
}
extern "C"
int store_packet(void *config, const struct ipfix_message *ipfix_msg,
const struct ipfix_template_mgr *template_mgr)
{
(void) template_mgr;
std::map<uint16_t, template_table*>::iterator table;
struct fastbit_config *conf = (struct fastbit_config *) config;
std::map<uint16_t, template_table*> *templates = NULL;
std::map<uint16_t, template_table*> *old_templates = NULL; /* Templates to be removed */
std::map<std::string, std::map<uint32_t, od_info>*> *od_infos = conf->od_infos;
std::map<std::string, std::map<uint32_t, od_info>*>::iterator exporter_it;
std::map<uint32_t, od_info>::iterator odid_it;
static int rcnt = 0;
uint16_t template_id;
uint32_t odid = ntohl(ipfix_msg->pkt_header->observation_domain_id);
struct input_info_network *input = (struct input_info_network *) ipfix_msg->input_info;
int rc_flows = 0;
uint64_t rc_flows_sum = 0;
char exporter_ip_addr_tmp[INET6_ADDRSTRLEN];
if (input->l3_proto == 6) { /* IPv6 */
ipv6_addr_non_canonical(exporter_ip_addr_tmp, &(input->src_addr.ipv6));
} else { /* IPv4 */
inet_ntop(AF_INET, &(input->src_addr.ipv4.s_addr), exporter_ip_addr_tmp, INET_ADDRSTRLEN);
}
/* Convert to C++ string for use in `od_infos` data structure */
std::string exporter_ip_addr (exporter_ip_addr_tmp);
/* Find exporter in od_infos data structure */
if ((exporter_it = od_infos->find(exporter_ip_addr)) == od_infos->end()) {
MSG_INFO(msg_module, "Received data for new exporter: %s", exporter_ip_addr.c_str());
/* Add new exporter to data structure */
std::map<uint32_t, od_info> *new_exporter = new std::map<uint32_t, od_info>;
od_infos->insert(std::make_pair(exporter_ip_addr, new_exporter));
exporter_it = od_infos->find(exporter_ip_addr);
}
/* Find ODID in template_info data structure (under exporter) */
if ((odid_it = exporter_it->second->find(odid)) == exporter_it->second->end()) {
MSG_INFO(msg_module, "Received new ODID for exporter %s: %u", exporter_ip_addr.c_str(), odid);
/* Add new ODID to data structure (under exporter) */
od_info new_odid;
new_odid.exporter_ip_addr = exporter_ip_addr;
new_odid.path = generate_path(conf, exporter_ip_addr, odid);
exporter_it->second->insert(std::make_pair(odid, new_odid));
odid_it = exporter_it->second->find(odid);
}
templates = &(odid_it->second.template_info);
/* Process all datasets in message */
int i;
for (i = 0 ; i < MSG_MAX_DATA_COUPLES && ipfix_msg->data_couple[i].data_set; i++) {
if (ipfix_msg->data_couple[i].data_template == NULL) {
/* Skip data couples without templates */
continue;
}
template_id = ipfix_msg->data_couple[i].data_template->template_id;
/* If template (ID) is unknown, add it to the template map */
if ((table = templates->find(template_id)) == templates->end()) {
MSG_DEBUG(msg_module, "Received new template: %hu", template_id);
template_table *table_tmp = new template_table(template_id, conf->buff_size);
if (table_tmp->parse_template(ipfix_msg->data_couple[i].data_template, conf) != 0) {
/* Template cannot be parsed, skip data set */
delete table_tmp;
continue;
}
templates->insert(std::pair<uint16_t, template_table*>(template_id, table_tmp));
table = templates->find(template_id);
} else {
/* Check template time. On reception of a new template it is crucial to rewrite the old one. */
if (ipfix_msg->data_couple[i].data_template->first_transmission > table->second->get_first_transmission()) {
MSG_DEBUG(msg_module, "Received new template with already used template ID: %hu", template_id);
/* Init map for old template if necessary */
if (old_templates == NULL) {
old_templates = new std::map<uint16_t,template_table*>;
}
/* Store old template */
old_templates->insert(std::pair<uint16_t, template_table*>(table->first, table->second));
/* Flush data */
flush_data(conf, exporter_ip_addr, odid, old_templates);
/* Remove rewritten template */
delete table->second;
delete old_templates;
old_templates = NULL;
/* Remove old template from current list */
templates->erase(table);
/* Add the new template */
template_table *table_tmp = new template_table(template_id, conf->buff_size);
if (table_tmp->parse_template(ipfix_msg->data_couple[i].data_template, conf) != 0) {
/* Template cannot be parsed; skip data set */
delete table_tmp;
continue;
}
templates->insert(std::pair<uint16_t, template_table*>(template_id, table_tmp));
table = templates->find(template_id);
/* New template was created; create new directory if necessary */
}
}
/* Check whether data has to be flushed before storing data record */
bool flush_records = conf->records_window > 0 && rcnt > conf->records_window;
bool flush_time = false;
time_t now;
if (conf->time_window > 0) {
time(&now);
flush_time = difftime(now, conf->last_flush) > conf->time_window;
}
if (flush_records || flush_time) {
/* Flush data for all exporters and ODIDs */
flush_all_data(conf);
/* Time management differs between flush policies (records vs. time) */
if (flush_records) {
time(&(conf->last_flush));
} else if (flush_time) {
while (difftime(now, conf->last_flush) > conf->time_window) {
conf->last_flush = conf->last_flush + conf->time_window;
}
}
/* Update window name and path */
update_window_name(conf);
odid_it->second.path = generate_path(conf, exporter_ip_addr, (*odid_it).first);
rcnt = 0;
conf->new_dir = true;
}
/* Store this data record */
rc_flows = (*table).second->store(ipfix_msg->data_couple[i].data_set, odid_it->second.path, conf->new_dir);
if (rc_flows >= 0) {
rc_flows_sum += rc_flows;
rcnt += rc_flows;
} else {
/* No need for showing error message here, since it is already done
* by store() in case of an error */
// MSG_ERROR(msg_module, "An error occurred during FastBit table store; no records were stored");
}
}
/* We've told all tables that the directory has changed */
conf->new_dir = false;
if (rc_flows_sum) {
odid_it->second.flow_watch.add_flows(rc_flows_sum);
}
odid_it->second.flow_watch.update_seq_no(ntohl(ipfix_msg->pkt_header->sequence_number));
return 0;
}
extern "C"
int store_now(const void *config)
{
(void) config;
return 0;
}
extern "C"
int storage_close(void **config)
{
struct fastbit_config *conf = (struct fastbit_config *) (*config);
std::map<std::string, std::map<uint32_t, od_info>*> *od_infos = conf->od_infos;
std::map<std::string, std::map<uint32_t, od_info>*>::iterator exporter_it;
std::map<uint32_t, od_info>::iterator odid_it;
std::map<uint16_t, template_table*> *templates;
std::map<uint16_t, template_table*>::iterator table;
/* Iterate over all exporters and ODIDs, flush data and release templates */
for (exporter_it = od_infos->begin(); exporter_it != od_infos->end(); ++exporter_it) {
for (odid_it = exporter_it->second->begin(); odid_it != exporter_it->second->end(); ++odid_it) {
templates = &(odid_it->second.template_info);
flush_data(conf, exporter_it->first, odid_it->first, templates);
/* Free templates */
for (table = templates->begin(); table != templates->end(); table++) {
delete (*table).second;
}
}
delete (*exporter_it).second;
}
/* Tell index thread to terminate */
terminate = true;
pthread_cond_signal(&conf->mutex_cond);
MSG_INFO(msg_module, "Waiting for the index thread to finish");
if (pthread_join(conf->index_thread, NULL) != 0) {
MSG_ERROR(msg_module, "pthread_join");
}
MSG_INFO(msg_module, "Index thread finished");
/* Free config structure */
delete od_infos;
delete conf->index_en_id;
delete conf->dirs;
delete conf;
return 0;
}