forked from mapsme/omim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.hpp
55 lines (45 loc) · 945 Bytes
/
stats.hpp
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
#pragma once
#include "base/base.hpp"
#include <sstream>
#include <string>
namespace base
{
template <typename T>
class NoopStats
{
public:
NoopStats() {}
void operator() (T const &) {}
std::string GetStatsStr() const { return ""; }
};
template <typename T>
class AverageStats
{
public:
AverageStats() = default;
template <typename Iter>
AverageStats(Iter begin, Iter end)
{
for (auto it = begin; it != end; ++it)
operator()(*it);
}
void operator()(T const & x)
{
++m_count;
m_sum += x;
}
std::string GetStatsStr() const
{
std::ostringstream out;
out << "N: " << m_count;
if (m_count > 0)
out << " Avg: " << GetAverage();
return out.str();
}
double GetAverage() const { return m_count == 0 ? 0.0 : m_sum / static_cast<double>(m_count); }
uint32_t GetCount() const { return m_count; }
private:
uint32_t m_count = 0;
double m_sum = 0.0;
};
} // namespace base