123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /**
- * Class for processing PCAPs to collect statistical data.
- */
- #ifndef CPP_PCAPREADER_MAIN_H
- #define CPP_PCAPREADER_MAIN_H
- #include <iomanip>
- #include <tins/tins.h>
- #include <iostream>
- #include <time.h>
- #include <stdio.h>
- #include <sys/stat.h>
- #include <unordered_map>
- #include "statistics.h"
- #include "statistics_db.h"
- using namespace Tins;
- class pcap_processor {
- public:
- /*
- * Class constructor
- */
- pcap_processor(std::string path, std::string extraTests);
- /*
- * Attributes
- */
- statistics stats;
- std::string filePath;
- bool hasUnrecognized;
- /*
- * Methods
- */
- inline bool file_exists(const std::string &filePath);
- void process_packets(const Packet &pkt);
- long double get_timestamp_mu_sec(const int after_packet_number);
- std::string merge_pcaps(const std::string pcap_path);
- void collect_statistics();
- void write_to_database(std::string database_path);
- static int get_db_version() { return statistics_db::DB_VERSION; };
- };
- #endif //CPP_PCAPREADER_MAIN_H
|