-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.js
412 lines (377 loc) · 17.7 KB
/
main.js
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
'use strict';
/*
* Created with @iobroker/create-adapter v2.1.0
*/
// The adapter-core module gives you access to the core ioBroker functions
// you need to create an adapter
const utils = require('@iobroker/adapter-core');
const schedule = require('node-schedule');
// Load your modules here, e.g.:
// const fs = require("fs");
class LowpassFilter extends utils.Adapter {
/**
* @param [options] options of adapter constructor
*/
constructor(options) {
super({
...options,
name: 'lowpass-filter',
});
this.on('ready', this.onReady.bind(this));
this.on('stateChange', this.onStateChange.bind(this));
this.on('objectChange', this.onObjectChange.bind(this));
// this.on("message", this.onMessage.bind(this));
this.on('unload', this.onUnload.bind(this));
this.subscribecounterId = 'info.subscribedStatesCount';
this.subscribecounter = 0;
// define arrays for selected states and calculation
this.activeStates = {};
// define cron jobs
this.cronJobs = {};
this.jobId = 'job';
}
/***************************************************************************************
* ********************************** Init *********************************************
***************************************************************************************/
async onReady() {
// Initialize your adapter here
//Read all states with custom configuration
const customStateArray = await this.getObjectViewAsync('system', 'custom', {});
// Request if there is an object
if (customStateArray && customStateArray.rows) {
for (let index = 0; index < customStateArray.rows.length; index++) {
if (customStateArray.rows[index].value !== null) {
// Request if there is an object for this namespace an its enabled
if (
customStateArray.rows[index].value[this.namespace] &&
customStateArray.rows[index].value[this.namespace].enabled === true
) {
const id = customStateArray.rows[index].id;
const obj = await this.getForeignObjectAsync(id);
if (obj) {
const common = obj.common;
const state = await this.getForeignStateAsync(id);
if (state) {
await this.addObjectAndCreateState(
id,
common,
customStateArray.rows[index].value[this.namespace],
state,
);
}
}
}
}
}
}
this.subscribeForeignObjects('*');
this.setState(this.subscribecounterId, this.subscribecounter, true);
}
/***************************************************************************************
* ********************************** Changes ******************************************
***************************************************************************************/
async onObjectChange(id, obj) {
if (obj) {
try {
if (!obj.common.custom || !obj.common.custom[this.namespace]) {
if (this.activeStates[id]) {
this.clearStateArrayElement(id, false);
return;
}
} else {
const customInfo = obj.common.custom[this.namespace];
if (this.activeStates[id]) {
this.activeStates[id].filterTime = customInfo.filterTime;
this.activeStates[id].separateFilterTimeForNegativeDifference =
customInfo.separateFilterTimeForNegativeDifference;
this.activeStates[id].filterTimeNegative = customInfo.filterTimeNegative;
this.activeStates[id].refreshWithStatechange = customInfo.refreshWithStatechange;
this.activeStates[id].limitInNegativeDirection = customInfo.limitInNegativeDirection;
this.activeStates[id].negativeLimit = customInfo.negativeLimit;
this.activeStates[id].limitInPositiveDirection = customInfo.limitInPositiveDirection;
this.activeStates[id].positiveLimit = customInfo.positiveLimit;
this.activeStates[id].limitDecimalplaces = customInfo.limitDecimalplaces;
this.activeStates[id].decimalplaces = customInfo.decimalplaces;
if (this.activeStates[id].refreshRate != customInfo.refreshRate) {
this.removeIdFromSchedule(id);
this.activeStates[id].refreshRate = customInfo.refreshRate;
this.addIdToSchedule(id);
}
this.output(id);
} else {
const state = await this.getForeignStateAsync(id);
if (state) {
this.addObjectAndCreateState(id, obj.common, customInfo, state);
} else {
this.log.error(`could not read state ${id}`);
}
}
}
} catch (error) {
this.log.error(error);
this.clearStateArrayElement(id, false);
}
} else {
// The object was deleted
// Check if the object is kwnow
const obj = await this.getObjectAsync(this.createStatestring(id));
if (this.activeStates[id] || obj) {
if (obj) {
this.clearStateArrayElement(id, true);
} else {
this.clearStateArrayElement(id, false);
}
}
}
}
/**
* Is called if a subscribed state changes
*
* @param id id of the changed state
* @param state state (val & ack) of the changed ste-id
*/
onStateChange(id, state) {
if (state) {
if (this.activeStates[id]) {
// Check null, ignored values and limit
if (state.val != null) {
if (!this.activeStates[id].ignoredValues[state.val.toString()]) {
// Limit value
if (
this.activeStates[id].limitInNegativeDirection &&
state.val < this.activeStates[id].negativeLimit
) {
this.activeStates[id].currentValue = this.activeStates[id].negativeLimit;
this.log.debug(
`State ${id} is set to value ${state.val} and will be limitted to ${this.activeStates[id].currentValue}`,
);
} else if (
this.activeStates[id].limitInPositiveDirection &&
state.val > this.activeStates[id].positiveLimit
) {
this.activeStates[id].currentValue = this.activeStates[id].positiveLimit;
this.log.debug(
`State ${id} is set to value ${state.val} and will be limitted to ${this.activeStates[id].currentValue}`,
);
} else {
this.activeStates[id].currentValue = state.val;
}
// claculate or output values
if (this.activeStates[id].refreshRate == 0 || this.activeStates[id].refreshWithStatechange) {
this.output(id);
} else {
this.calculateLowpassValue(id);
}
} else {
this.log.debug(`State ${id} is set to value ${state.val} and will be ignored`);
}
} else {
this.log.debug(`State ${id} is set to value ${state.val} and will be ignored`);
}
}
} else {
// The state was deleted
}
}
// If you need to accept messages in your adapter, uncomment the following block and the corresponding line in the constructor.
// /**
// * Some message was sent to this instance over message box. Used by email, pushover, text2speech, ...
// * Using this method requires "common.messagebox" property to be set to true in io-package.json
// * @param {ioBroker.Message} obj
// */
// onMessage(obj) {
// if (typeof obj === "object" && obj.message) {
// if (obj.command === "send") {
// // e.g. send email or pushover or whatever
// this.log.debug("send command");
// // Send response in callback if required
// if (obj.callback) this.sendTo(obj.from, obj.command, "Message received", obj.callback);
// }
// }
// }
/***************************************************************************************
* *********************************** Unload ******************************************
***************************************************************************************/
/**
* Is called when adapter shuts down - callback has to be called under any circumstances!
*
* @param callback function wich is called after shutdown adapter
*/
onUnload(callback) {
try {
// clear all schedules
for (const seconds in this.cronJobs) {
schedule.cancelJob(this.cronJobs[seconds][this.jobId]);
}
callback();
} catch (e) {
this.log.error(e);
callback();
}
}
/***************************************************************************************
* ************************** own defined functions ************************************
***************************************************************************************/
/***************************************************************************************
* **************************** custom objec handling **********************************
***************************************************************************************/
createStatestring(id) {
return `filtered_Values.${id.replace(/\./g, '_')}`;
}
async addObjectAndCreateState(id, common, customInfo, state) {
// check if custominfo is available
if (!customInfo) {
return;
}
if (common.type != 'number') {
this.log.error(`state ${id} is not type number, but ${common.type}`);
return;
}
this.activeStates[id] = {
stateId: id,
lastValue: state.val,
currentValue: state.val,
lowpassValue: state.val,
lastTimestamp: Date.now(),
filterTime: customInfo.filterTime,
separateFilterTimeForNegativeDifference: customInfo.separateFilterTimeForNegativeDifference,
filterTimeNegative: customInfo.filterTimeNegative,
refreshRate: customInfo.refreshRate,
refreshWithStatechange: customInfo.refreshWithStatechange,
limitInNegativeDirection: customInfo.limitInNegativeDirection,
negativeLimit: customInfo.negativeLimit,
limitInPositiveDirection: customInfo.limitInPositiveDirection,
positiveLimit: customInfo.positiveLimit,
limitDecimalplaces: customInfo.limitDecimalplaces,
decimalplaces: customInfo.decimalplaces,
ignoredValues: {},
};
// assign cronJob
this.addIdToSchedule(id);
// Create Object
await this.setObjectNotExistsAsync(this.createStatestring(id), {
type: 'state',
common: {
name: common.name,
type: 'number',
role: 'indicator',
unit: common.unit,
read: true,
write: false,
def: state.val,
},
native: {},
});
this.log.debug(`state ${id} added`);
this.subscribeForeignStates(id);
this.subscribecounter += 1;
this.setState(this.subscribecounterId, this.subscribecounter, true);
await this.output(id);
}
// clear the state from the active array. if selected the state will be deleted
clearStateArrayElement(id, deleteObject) {
if (this.activeStates[id]) {
this.removeIdFromSchedule(id);
delete this.activeStates[id];
this.subscribecounter -= 1;
this.setState(this.subscribecounterId, this.subscribecounter, true);
this.unsubscribeForeignStates(id);
this.log.debug(`state ${id} removed`);
if (this.config.deleteStatesWithDisable || deleteObject) {
this.delObjectAsync(this.createStatestring(id));
this.log.debug(`state ${this.namespace}.${this.createStatestring(id)} deleted`);
}
} else if (deleteObject) {
this.delObjectAsync(this.createStatestring(id));
this.log.debug(`state ${this.namespace}.${this.createStatestring(id)} deleted`);
}
}
/***************************************************************************************
* *********************************** Schedule ****************************************
***************************************************************************************/
addIdToSchedule(id) {
if (this.activeStates[id].refreshRate != 0) {
if (!this.cronJobs[this.activeStates[id].refreshRate]) {
this.cronJobs[this.activeStates[id].refreshRate] = {};
if (this.activeStates[id].refreshRate != 60) {
this.cronJobs[this.activeStates[id].refreshRate][this.jobId] = schedule.scheduleJob(
`*/${this.activeStates[id].refreshRate} * * * * *`,
this.outputAddedIds.bind(this, this.activeStates[id].refreshRate),
);
} else {
this.cronJobs[this.activeStates[id].refreshRate][this.jobId] = schedule.scheduleJob(
`0 * * * * *`,
this.outputAddedIds.bind(this, this.activeStates[id].refreshRate),
);
}
}
// Add id to object
this.cronJobs[this.activeStates[id].refreshRate][id] = {};
}
}
// if the id is scheduled, it will be deleted from active array
removeIdFromSchedule(id) {
if (this.activeStates[id].refreshRate != 0) {
delete this.cronJobs[this.activeStates[id].refreshRate][id];
if (Object.keys(this.cronJobs[this.activeStates[id].refreshRate]).length <= 1) {
schedule.cancelJob(this.cronJobs[this.activeStates[id].refreshRate][this.jobId]);
delete this.cronJobs[this.activeStates[id].refreshRate];
}
}
}
// output all added id of the given schedule
outputAddedIds(seconds) {
for (const id in this.cronJobs[seconds]) {
if (id == this.jobId) {
continue;
}
this.output(id);
}
}
/***************************************************************************************
* **************************** calculation of filter **********************************
***************************************************************************************/
calculateLowpassValue(id) {
const timestamp = Date.now();
let filterTime = 0;
if (
this.activeStates[id].currentValue >= this.activeStates[id].lowpassValue ||
!this.activeStates[id].separateFilterTimeForNegativeDifference
) {
filterTime = this.activeStates[id].filterTime;
} else {
filterTime = this.activeStates[id].filterTimeNegative;
}
if (filterTime != 0) {
this.activeStates[id].lowpassValue +=
(this.activeStates[id].lastValue - this.activeStates[id].lowpassValue) *
(1 - Math.exp(-(timestamp - this.activeStates[id].lastTimestamp) / (filterTime * 200))); // 200 because 1000ms / 5tau = 200
} else {
this.activeStates[id].lowpassValue = this.activeStates[id].currentValue;
}
// Output with the desired decimal places
if (this.activeStates[id].limitDecimalplaces) {
this.activeStates[id].lowpassValue =
Math.round(this.activeStates[id].lowpassValue * this.activeStates[id].decimalplaces) /
this.activeStates[id].decimalplaces;
}
this.activeStates[id].lastTimestamp = timestamp;
this.activeStates[id].lastValue = this.activeStates[id].currentValue;
}
// output the calculated values
async output(id) {
this.calculateLowpassValue(id);
// Forreign wird hier verwendet, damit der Adapter eigene States wiederum filtern kann (Filter des Filters)
await this.setStateAsync(this.createStatestring(id), this.activeStates[id].lowpassValue, true);
}
}
if (require.main !== module) {
// Export the constructor in compact mode
/**
* @param [options] options of exported adapter
*/
module.exports = options => new LowpassFilter(options);
} else {
// otherwise start the instance directly
new LowpassFilter();
}