-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathWindowAggregate.cpp
More file actions
257 lines (214 loc) · 5.21 KB
/
WindowAggregate.cpp
File metadata and controls
257 lines (214 loc) · 5.21 KB
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
#include <string>
#include <vector>
#include <deque>
#include <graphlab/flexible_type/flexible_type.hpp>
#include <graphlab/sdk/toolkit_function_macros.hpp>
#include <graphlab/sdk/toolkit_class_macros.hpp>
#include <graphlab/sdk/gl_sarray.hpp>
#include <graphlab/sdk/gl_sframe.hpp>
using namespace graphlab;
class BASE_AGGREGATE {
protected:
flexible_type state;
bool _is_incremental;
size_t num_elements;
public:
BASE_AGGREGATE() {
initiate();
}
// init phase
virtual void initiate() {
state = 0;
_is_incremental = false;
num_elements = 0;
}
// process phase
virtual void add_element(const flexible_type & value) { }
// delete phase
virtual void remove_element(const flexible_type & value) { }
// emit phase
virtual flexible_type emit() { return state; }
virtual bool is_incremental() {
return _is_incremental;
}
virtual flex_type_enum output_type(const flex_type_enum & input_type) {
return input_type;
}
};
class AVG : public BASE_AGGREGATE {
public:
AVG(): BASE_AGGREGATE() {
initiate();
}
// init phase
void initiate() {
state = 0;
_is_incremental = true;
num_elements = 0;
}
// process phase
void add_element(const flexible_type & value) {
state += value;
num_elements++;
}
// delete phase
void remove_element(const flexible_type & value) {
state -= value;
num_elements--;
}
// emit phase
flexible_type emit() {
flex_float state_float = state;
return state_float / (num_elements) ;
}
flex_type_enum output_type(const flex_type_enum & input_type) {
return flex_type_enum::FLOAT;
}
};
class MAX : public BASE_AGGREGATE {
public:
MAX(): BASE_AGGREGATE() {
initiate();
}
// init phase
void initiate() {
num_elements = 0;
state = 0;
_is_incremental = false;
}
// process phase
void add_element(const flexible_type & value) {
if(num_elements == 0)
state = value;
else if(value > state)
state = value;
num_elements++;
}
// emit phase
flexible_type emit() {
return state;
}
};
class MIN : public BASE_AGGREGATE {
public:
MIN(): BASE_AGGREGATE() {
initiate();
}
// init phase
void initiate() {
num_elements = 0;
state = 0;
_is_incremental = false;
}
// process phase
void add_element(const flexible_type & value) {
if(num_elements == 0)
state = value;
else if(value < state)
state = value;
num_elements++;
}
// emit phase
flexible_type emit() {
return state;
}
};
class COUNT : public BASE_AGGREGATE {
public:
COUNT(): BASE_AGGREGATE() {
initiate();
}
// init phase
void initiate() {
state = 0;
_is_incremental = true;
}
// process phase
void add_element(const flexible_type & value) {
state += 1;
}
// delete phase
void remove_element(const flexible_type & value) {
state -= 1;
}
// emit phase
flexible_type emit() {
return state;
}
};
class SUM: public BASE_AGGREGATE {
public:
SUM(): BASE_AGGREGATE() {
initiate();
}
// init phase
void initiate() {
state = 0;
_is_incremental = true;
}
// process phase
void add_element(const flexible_type & value) {
state += value;
}
// delete phase
void remove_element(const flexible_type & value) {
state -= value;
}
// emit phase
flexible_type emit() {
return state;
}
};
size_t COUNT_AGG() {
return (size_t)new COUNT();
}
size_t SUM_AGG() {
return (size_t)new SUM();
}
size_t MIN_AGG() {
return (size_t)new MIN();
}
size_t MAX_AGG() {
return (size_t)new MAX();
}
size_t AVG_AGG() {
return (size_t)new AVG();
}
gl_sarray window_aggregate(std::function<size_t()> fn,gl_sarray & sa,size_t window_size) {
BASE_AGGREGATE * agg = reinterpret_cast<BASE_AGGREGATE*>(fn());
gl_sarray_writer writer(agg->output_type(sa.dtype()), 1);
if(window_size <= 0)
return writer.close();
std::deque<flexible_type> * mydeque = new std::deque<flexible_type>();
for (const auto &elem: sa.range_iterator()) {
mydeque->push_back(elem);
agg->add_element(elem);
if(mydeque->size() == window_size) {
flexible_type agg_value = agg->emit();
writer.write(agg_value,0);
if(agg->is_incremental()) {
flexible_type & oldest_value = mydeque->front();
agg->remove_element(oldest_value);
mydeque->pop_front();
} else {
mydeque->pop_front();
agg->initiate();
std::deque<flexible_type>::iterator it = mydeque->begin();
while (it != mydeque->end()){
agg->add_element(*it++);
}
}
}
}
delete agg;
delete mydeque;
return writer.close();
}
BEGIN_FUNCTION_REGISTRATION
REGISTER_FUNCTION(SUM_AGG);
REGISTER_FUNCTION(COUNT_AGG);
REGISTER_FUNCTION(MAX_AGG);
REGISTER_FUNCTION(MIN_AGG);
REGISTER_FUNCTION(AVG_AGG);
REGISTER_FUNCTION(window_aggregate,"aggregate_fn","sarray","window_size");
END_FUNCTION_REGISTRATION