blob: d16c35f92261c9d5820da52c7cbd6a54f0449652 (
plain)
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
|
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) ZenJu (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
#ifndef STATISTICS_H_INCLUDED
#define STATISTICS_H_INCLUDED
#include <map>
#include <wx/string.h>
class PerfCheck
{
public:
PerfCheck(unsigned windowSizeRemainingTime, //unit: [ms]
unsigned windowSizeBytesPerSecond); //
~PerfCheck();
void addSample(int objectsCurrent, double dataCurrent, long timeMs); //timeMs must be ascending!
wxString getRemainingTime(double dataRemaining) const;
wxString getBytesPerSecond() const; //for window
wxString getOverallBytesPerSecond() const; //for all samples
private:
const long windowSizeRemTime; //unit: [ms]
const long windowSizeBPS; //
const long windowMax;
struct Record
{
Record(int objCount, double data) : objCount_(objCount), data_(data) {}
int objCount_;
double data_; //unit: [bytes]
};
std::multimap<long, Record> samples; //time, unit: [ms]
};
#endif // STATISTICS_H_INCLUDED
|