-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchange_filter.cpp
480 lines (453 loc) · 11.7 KB
/
change_filter.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
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
/*
* Fledge "change" filter plugin.
*
* Copyright (c) 2019 Dianomic Systems
*
* Released under the Apache 2.0 Licence
*
* Author: Mark Riddoch
*/
#include <reading.h>
#include <reading_set.h>
#include <utility>
#include <logger.h>
#include <change_filter.h>
using namespace std;
using namespace rapidjson;
/**
* Construct a ChangeFilter, call the base class constructor and handle the
* parsing of the configuration category the required change
*/
ChangeFilter::ChangeFilter(const std::string& filterName,
ConfigCategory& filterConfig,
OUTPUT_HANDLE *outHandle,
OUTPUT_STREAM out) :
FledgeFilter(filterName, filterConfig,
outHandle, out),
m_name(filterConfig.getName()), m_state(false)
{
handleConfig(filterConfig);
}
/**
* Destructor for the filter.
*/
ChangeFilter::~ChangeFilter()
{
}
/**
* Called with a set of readings, iterate over the readings applying
* the change filter to create the output readings
*
* @param readings The readings to process
* @param out The output readings
*/
void ChangeFilter::ingest(vector<Reading *> *readings, vector<Reading *>& out)
{
lock_guard<mutex> guard(m_configMutex);
if (m_state)
{
triggeredIngest(readings, out);
}
else
{
untriggeredIngest(readings, out);
}
}
/**
* Called when in the triggered state to forward the readings until the timestamp
* in the readign becomes greater than the stop time for the forwarding.
*
* @param readings The readings to process
* @param out The output readings
*/
void ChangeFilter::triggeredIngest(vector<Reading *> *readings, vector<Reading *>& out)
{
int offset = 0;
for (vector<Reading *>::const_iterator reading = readings->begin();
reading != readings->end();
++reading)
{
if ((*reading)->getAssetName().compare(m_asset) == 0)
{
evaluate(*reading); // A change might occur that causes the m_stopTime to be updated
struct timeval tm;
(*reading)->getUserTimestamp(&tm);
if ((tm.tv_sec > m_stopTime.tv_sec)
|| (tm.tv_sec == m_stopTime.tv_sec && tm.tv_usec > m_stopTime.tv_usec))
{
Logger::getLogger()->debug("Reached the end of the triggered time");
m_state = false;
readings->erase(readings->begin(), readings->begin() + offset);
return untriggeredIngest(readings, out);
}
}
// We either have a different asset that should pass unaltered or
// we have not reached the end of the post change time period
out.push_back(*reading);
offset++;
}
readings->clear();
}
/**
* Called when in the triggered state to average the readings and evaluate the
* trigger expression. If the state changes to untrigger then the triggerIngest
* method will be called.
*
* @param readings The readings to process
* @param out The output readings
*/
void ChangeFilter::untriggeredIngest(vector<Reading *> *readings, vector<Reading *>& out)
{
int offset = 0; // Offset within the vector
for (vector<Reading *>::const_iterator reading = readings->begin();
reading != readings->end();
++reading)
{
if ((*reading)->getAssetName().compare(m_asset) == 0)
{
if (evaluate(*reading))
{
m_state = true;
clearAverage();
// Remove the readings we have dealt with
readings->erase(readings->begin(), readings->begin() + offset);
sendPretrigger(out);
Logger::getLogger()->debug("Send the preTrigger buffer");
return triggeredIngest(readings, out);
}
bufferPretrigger(*reading);
if (m_rate.tv_sec != 0 || m_rate.tv_usec != 0)
{
addAverageReading(*reading, out);
}
delete *reading;
}
else
{
out.push_back(*reading);
}
offset++;
}
readings->clear();
}
/**
* If we have a preTrigger buffer defined in the configuration then
* keep a copy of the reading in the pretrigger buffer. Remove any readings
* that are older than the defined pretrigger age.
*
* @param reading Reading to buffer
*/
void ChangeFilter::bufferPretrigger(Reading *reading)
{
Reading *t;
struct timeval now, t1, t2, res;
if (m_preTrigger == 0) // No pretrigger buffering
{
return;
}
m_buffer.push_back(new Reading(*reading));
/*
* Remove the entries from the front of the pretrigger buffer taht are
* older than the pre trigger time.
*/
t2.tv_sec = m_preTrigger / 1000;
t2.tv_usec = (m_preTrigger % 1000) * 1000;
for (;;)
{
t = m_buffer.front();
t->getUserTimestamp(&t1);
reading->getUserTimestamp(&now);
timersub(&now, &t1, &res);
if (timercmp(&res, &t2, >))
{
t = m_buffer.front();
delete t;
m_buffer.pop_front();
}
else
{
break;
}
}
}
/**
* Send the pretigger buffer data
*
* @param out The output buffer
*/
void ChangeFilter::sendPretrigger(vector<Reading *>& out)
{
while (!m_buffer.empty())
{
Reading *r = m_buffer.front();
out.push_back(r);
m_buffer.pop_front();
}
}
/**
* Add a reading to the average data. If the period has enxpired in which
* to send a reading then the average will be calculated and added to the
* out buffer.
*
* @param reading The reading to add
* @param out The output buffer to add any average to.
*/
void ChangeFilter::addAverageReading(Reading *reading, vector<Reading *>& out)
{
vector<Datapoint *> datapoints = reading->getReadingData();
for (auto it = datapoints.begin(); it != datapoints.end(); it++)
{
DatapointValue& dpvalue = (*it)->getData();
if (dpvalue.getType() == DatapointValue::T_INTEGER)
{
addDataPoint((*it)->getName(), (double)dpvalue.toInt());
}
if (dpvalue.getType() == DatapointValue::T_FLOAT)
{
addDataPoint((*it)->getName(), dpvalue.toDouble());
}
}
m_averageCount++;
struct timeval t1, res;
reading->getUserTimestamp(&t1);
timeradd(&m_lastSent, &m_rate, &res);
if (timercmp(&t1, &res, >))
{
out.push_back(averageReading(reading));
m_lastSent = t1;
}
}
/**
* Add a data point to the average data
*
* @param name The datapoint name
* @param value The datapoint value
*/
void ChangeFilter::addDataPoint(const string& name, double value)
{
map<string, double>::iterator it = m_averageMap.find(name);
if (it != m_averageMap.end())
{
it->second += value;
}
else
{
m_averageMap.insert(pair<string, double>(name, value));
}
}
/**
* Create a average reading using the asset name and times from the reading
* passed in and the data accumulated in the average map
*
* @param reading The reading to take the asset name and times from
*/
Reading *ChangeFilter::averageReading(Reading *templateReading)
{
string asset = templateReading->getAssetName();
vector<Datapoint *> datapoints;
for (map<string, double>::iterator it = m_averageMap.begin();
it != m_averageMap.end(); it++)
{
DatapointValue dpv(it->second / m_averageCount);
it->second = 0.0;
datapoints.push_back(new Datapoint(it->first, dpv));
}
m_averageCount = 0;
Reading *rval = new Reading(asset, datapoints);
struct timeval tm;
templateReading->getUserTimestamp(&tm);
rval->setUserTimestamp(tm);
templateReading->getTimestamp(&tm);
rval->setTimestamp(tm);
return rval;
}
/**
* Clear the average data having triggered a change of state
*
*/
void ChangeFilter::clearAverage()
{
for (map<string, double>::iterator it = m_averageMap.begin();
it != m_averageMap.end(); it++)
{
it->second = 0.0;
}
}
bool ChangeFilter::evaluate(Reading *reading)
{
static bool firstCall = true;
double value;
string strValue;
bool isString = false;
const std::vector<Datapoint *> datapoints = reading->getReadingData();
for (auto itr = datapoints.cbegin(); itr != datapoints.cend(); ++itr)
{
if ((*itr)->getName().compare(m_trigger) == 0)
{
if ((*itr)->getData().getType() == DatapointValue::T_INTEGER)
{
value = (*itr)->getData().toInt();
}
else if ((*itr)->getData().getType() == DatapointValue::T_FLOAT)
{
value = (*itr)->getData().toDouble();
}
else if ((*itr)->getData().getType() == DatapointValue::T_STRING)
{
strValue = (*itr)->getData().toString();
isString = true;
}
else if (firstCall)
{
Logger::getLogger()->fatal(
"Filter %s can not monitor changes on the asset %s, datapoint %s, it is not a simple value",
m_name.c_str(), m_asset.c_str(), m_trigger.c_str());
}
if (isString)
{
if (firstCall)
{
m_prevStrValue = strValue;
firstCall = false;
}
else if (strValue.compare(m_prevStrValue))
{
// Triggered set to state and the stop time
m_state = true;
gettimeofday(&m_stopTime, NULL);
m_stopTime.tv_usec += ((m_postTrigger % 1000) * 1000);
m_stopTime.tv_sec += (m_postTrigger / 1000);
m_prevStrValue = strValue;
}
}
else
{
double tolarance = (m_prevValue * m_change) / 100;
if (firstCall)
{
m_prevValue = value;
firstCall = false;
}
else if ((m_change == 0 && m_prevValue != value) || fabs(m_prevValue - value) >= tolarance)
{
// Triggered set to state and the stop time
m_state = true;
gettimeofday(&m_stopTime, NULL);
m_stopTime.tv_usec += ((m_postTrigger % 1000) * 1000);
m_stopTime.tv_sec += (m_postTrigger / 1000);
m_prevValue = value;
}
}
}
}
if (m_state)
{
Logger::getLogger()->debug("Change filter %s has triggered", m_name.c_str());
}
return m_state;
}
/**
* Handle a reconfiguration request
*
* @param newConfig The new configuration
*/
void ChangeFilter::reconfigure(const string& newConfig)
{
lock_guard<mutex> guard(m_configMutex);
setConfig(newConfig);
handleConfig(m_config);
m_pendingReconfigure = true;
}
/**
* Handle the configuration of the plugin.
*
*
* @param conf The configuration category for the filter.
*/
void ChangeFilter::handleConfig(const ConfigCategory& config)
{
if (config.itemExists("asset"))
{
setAsset(config.getValue("asset"));
}
else
{
Logger::getLogger()->fatal("No configuration item named asset");
}
if (config.itemExists("trigger"))
{
setTrigger(config.getValue("trigger"));
}
else
{
Logger::getLogger()->fatal("No configuration item named trigger");
}
if (config.itemExists("change"))
{
m_change = strtol(config.getValue("change").c_str(), NULL, 10);
}
else
{
Logger::getLogger()->fatal("No configuration item named change");
}
if (config.itemExists("preTrigger"))
{
m_preTrigger = strtol(config.getValue("preTrigger").c_str(), NULL, 10);
}
else
{
Logger::getLogger()->fatal("No configuration item named preTrigger");
}
if (config.itemExists("postTrigger"))
{
m_postTrigger = strtol(config.getValue("postTrigger").c_str(), NULL, 10);
}
else
{
Logger::getLogger()->fatal("No configuration item named postTrigger");
}
if (config.itemExists("rate") && config.itemExists("rateUnit"))
{
int rate = strtol(config.getValue("rate").c_str(), NULL, 10);
string unit = config.getValue("rateUnit");
if (rate == 0)
{
m_rate.tv_sec = 0;
m_rate.tv_usec = 0;
}
else if (unit.compare("per second") == 0)
{
m_rate.tv_sec = 0;
m_rate.tv_usec = 1000000 / rate;
}
else if (unit.compare("per minute") == 0)
{
m_rate.tv_sec = 60 / rate;
m_rate.tv_usec = 0;
}
else if (unit.compare("per hour") == 0)
{
m_rate.tv_sec = 3600 / rate;
m_rate.tv_usec = 0;
}
else if (unit.compare("per day") == 0)
{
m_rate.tv_sec = (24 * 60 * 60) / rate;
m_rate.tv_usec = 0;
}
}
else
{
Logger::getLogger()->fatal("No configuration items named rate and rateUnit");
}
if (m_asset.compare("") == 0)
{
Logger::getLogger()->warn("No value has been given for the asset to evaluate in the change filter. The filter will have no effect");
disableFilter();
}
if (m_trigger.compare("") == 0)
{
Logger::getLogger()->warn("No value has been given for the trigger datapoint to evaluate in the change filter. The filter will have no effect");
disableFilter();
}
}