-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathBucket.cpp
150 lines (131 loc) · 3.17 KB
/
Bucket.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
#include "istat/Bucket.h"
#include "istat/strfunc.h"
#include <string>
#include <sstream>
#include <cstring>
#include <cmath>
#include <ctime>
#include <iostream>
#include <limits>
float stabilizeFloat(float f) {
return -std::numeric_limits<float>::infinity() == f
? std::numeric_limits<float>::min()
: std::numeric_limits<float>::infinity() == f
? std::numeric_limits<float>::max()
: f;
}
namespace istat
{
Bucket::Bucket(bool clear)
{
if (clear)
{
/* allow for placement new to not clear the data */
memset((char*)this, 0, sizeof(*this));
}
}
Bucket::Bucket(double s, float sq, float mi, float ma, int c, time_t time)
: FileBucketLayout(s, sq, mi, ma, c, time)
{
}
Bucket::Bucket(Bucket const &o, time_t time)
{
memcpy(this, &o, sizeof(*this));
time_ = time;
}
std::string Bucket::dateStr() const
{
return iso_8601_datetime(time_);
}
time_t Bucket::time() const
{
return time_;
}
double Bucket::sum() const
{
return stabilizeFloat(sum_);
}
float Bucket::sumSq() const
{
return stabilizeFloat(sumSq_);
}
float Bucket::min() const
{
return stabilizeFloat(min_);
}
float Bucket::max() const
{
return stabilizeFloat(max_);
}
int Bucket::count() const
{
return count_;
}
void Bucket::setCount(int count)
{
count_ = count;
}
void Bucket::update(Bucket const &o)
{
if (count_ == 0)
{
*this = o;
}
else
{
sum_ = sum_ + o.sum_;
sumSq_ = sumSq_ + o.sumSq_;
min_ = std::min(min_, o.min_);
max_ = std::max(max_, o.max_);
count_ = count_ + o.count_;
}
}
void Bucket::expUpdate(Bucket const &o, double lambda)
{
if (count_ == 0)
{
*this = o;
}
else
{
double me = lambda;
double you = 1 - lambda;
sum_ = sum_ * me + o.sum_ * you;
sumSq_ = (float)(sumSq_ * me + o.sumSq_ * you);
min_ = (float)(min_ * me + o.min_ * you);
max_ = (float)(max_ * me + o.max_ * you);
// truncate, round up on 0.5
count_ = std::max((int32_t)(count_ * me + o.count_ * you + 0.5), 1);
time_ = o.time_;
}
}
void Bucket::collatedUpdate(double v, time_t t)
{
if(count_ == 0)
{
time_ = t;
}
sum_ += v;
min_ = max_ = sum_;
sumSq_ = sum_ * sum_;
count_ = 1;
}
double Bucket::avg() const
{
return stabilizeFloat(count_ > 0 ? double(sum_) / double(count_) : 0);
}
float Bucket::sdev() const
{
if (count_ < 2)
{
return 0;
}
// because of cancellation, this may be slightly negative
double diff = double(count_) * double(sumSq_) - sum_ * sum_;
if (diff < 0)
{
diff = 0;
}
return stabilizeFloat(sqrt(diff / (double(count_) * (double(count_) - 1))));
}
}