mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
35 lines
598 B
C
35 lines
598 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
#include <map>
|
||
|
|
||
|
class TimingsDatabase
|
||
|
{
|
||
|
public:
|
||
|
struct instance
|
||
|
{
|
||
|
time_t t;
|
||
|
size_t npoints;
|
||
|
double min, max, mean, median, stddev, npskew;
|
||
|
std::vector<uint64_t> deciles;
|
||
|
};
|
||
|
|
||
|
public:
|
||
|
TimingsDatabase();
|
||
|
TimingsDatabase(const std::string &filename);
|
||
|
~TimingsDatabase();
|
||
|
|
||
|
std::vector<instance> get(const char *name) const;
|
||
|
void add(const char *name, const instance &data);
|
||
|
|
||
|
private:
|
||
|
bool load();
|
||
|
bool save();
|
||
|
|
||
|
private:
|
||
|
std::string filename;
|
||
|
std::multimap<std::string, instance> instances;
|
||
|
};
|