-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.js
402 lines (376 loc) · 16.6 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
'use strict';
/*
* Created with @iobroker/create-adapter v2.1.1
*/
// 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');
const { isDeepStrictEqual } = require('util');
// Load your modules here, e.g.:
// const fs = require("fs");
class DragIndicator extends utils.Adapter {
/**
* @param [options] options of the adapter
*/
constructor(options) {
super({
...options,
name: 'drag-indicator',
});
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;
this.additionalIds = {
max: '.max',
min: '.min',
reset: '.reset',
actual: '.actual',
};
this.observedValuesId = 'observed_Values.';
this.cronJobs = {};
this.jobId = 'jobId';
// define arrays for selected states and calculation
this.activeStates = {};
this.activeStatesLastAdditionalValues = {};
}
/**
* Is called when databases are connected and adapter received configuration.
*/
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,
true,
);
}
}
}
}
}
}
this.subscribeForeignObjects('*');
this.setState(this.subscribecounterId, this.subscribecounter, true);
}
/**
* 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 cronJob in this.cronJobs) {
schedule.cancelJob(this.cronJobs[cronJob][this.jobId]);
}
callback();
} catch (e) {
this.log.error(e);
callback();
}
}
async addObjectAndCreateState(id, common, customInfo, state, countUpSubscibecounter) {
// 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] = {};
this.activeStates[id].customInfo = customInfo;
// Create adapter internal object
const tempId = this.createStatestring(id);
await this.setObjectAsync(tempId, {
type: 'channel',
common: {
name: customInfo.channelName,
},
native: {},
});
// create adapter internal states
for (const myId in this.additionalIds) {
const tempId = this.createStatestring(id) + this.additionalIds[myId];
if (this.additionalIds[myId] == this.additionalIds.reset) {
await this.setObjectNotExistsAsync(tempId, {
type: 'state',
common: {
name: myId,
type: 'boolean',
role: 'reset',
read: true,
write: true,
def: false,
},
native: {},
});
this.log.debug(`state ${tempId} added / activated`);
this.subscribeStates(tempId);
this.activeStatesLastAdditionalValues[`${this.namespace}.${tempId}`] = id;
this.setState(tempId, false, true);
} else {
await this.setObjectNotExistsAsync(tempId, {
type: 'state',
common: {
name: common.name,
type: common.type,
role: common.role,
unit: common.unit,
read: true,
write: this.additionalIds[myId] !== this.additionalIds.actual,
},
native: {},
});
if (this.additionalIds[myId] !== this.additionalIds.actual) {
this.log.debug(`state ${tempId} added / activated`);
this.subscribeStates(tempId);
}
const lastState = await this.getStateAsync(tempId);
if (lastState !== undefined && lastState !== null) {
this.activeStatesLastAdditionalValues[`${this.namespace}.${tempId}`] = lastState.val;
} else {
this.activeStatesLastAdditionalValues[`${this.namespace}.${tempId}`] = state.val;
this.setState(tempId, state.val, true);
}
}
}
if (customInfo.resetCronJob != '') {
// check that ther is a cronjob configured
if (!this.cronJobs[customInfo.resetCronJob]) {
this.cronJobs[customInfo.resetCronJob] = {};
this.cronJobs[customInfo.resetCronJob][this.jobId] = schedule.scheduleJob(
customInfo.resetCronJob,
this.resetWithCronJob.bind(this, customInfo.resetCronJob),
);
}
this.cronJobs[customInfo.resetCronJob][this.createStatestring(id)] = {};
this.activeStates[id].lastCronJob = customInfo.resetCronJob;
} else {
this.activeStates[id].lastCronJob = '';
}
// Subcribe main state
if (countUpSubscibecounter) {
this.subscribeForeignStates(id);
this.subscribecounter += 1;
this.setState(this.subscribecounterId, this.subscribecounter, true);
}
}
// if the id is scheduled, it will be deleted from active array
removefromCronJob(cronJob, id) {
if (this.activeStates[id].lastCronJob != '') {
delete this.cronJobs[cronJob][this.createStatestring(id)];
if (Object.keys(this.cronJobs[cronJob]).length <= 1) {
this.log.debug(`job canceled: ${cronJob}`);
schedule.cancelJob(this.cronJobs[cronJob][this.jobId]);
delete this.cronJobs[cronJob];
}
this.activeStates[id].lastCronJob = '';
}
}
createStatestring(id) {
return `${this.observedValuesId}${id.replace(/\./g, '_')}`;
}
// clear the state from the active array. if selected the state will be deleted
async clearStateArrayElement(id, deleteState) {
// Unsubscribe and delete states if exists
if (this.activeStates[id]) {
this.removefromCronJob(this.activeStates[id].lastCronJob, id);
delete this.activeStates[id];
this.subscribecounter -= 1;
this.setState(this.subscribecounterId, this.subscribecounter, true);
if (!this.activeStatesLastAdditionalValues[id]) {
// Dont unsubscribe in case of is additional value
this.unsubscribeForeignStates(id);
this.log.debug(`state ${id} not longer subscribed`);
} else {
this.log.debug(`state ${id} not longer subscribed as active state, but still as additional`);
}
}
if (this.config.deleteStatesWithDisable || deleteState) {
for (const myId in this.additionalIds) {
const tempId = this.createStatestring(id) + this.additionalIds[myId];
const myObj = await this.getObjectAsync(tempId);
if (myObj) {
this.unsubscribeStatesAsync(tempId);
this.log.debug(`state ${tempId} removed`);
this.delObjectAsync(tempId);
this.log.debug(`state ${this.namespace}.${tempId} deleted`);
}
}
// Delete channel Object
this.delObjectAsync(this.createStatestring(id));
}
}
/***************************************************************************************
* ********************************** 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]) {
const state = await this.getForeignStateAsync(id);
if (state) {
if (!isDeepStrictEqual(this.activeStates[id].customInfo, customInfo)) {
this.removefromCronJob(this.activeStates[id].lastCronJob, id);
await this.addObjectAndCreateState(id, obj.common, customInfo, state, false);
}
}
} else {
const state = await this.getForeignStateAsync(id);
if (state) {
this.addObjectAndCreateState(id, obj.common, customInfo, state, true);
} 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) + this.additionalIds.consumed);
if (this.activeStates[id] || obj) {
this.clearStateArrayElement(id, true);
}
}
}
resetWithCronJob(cronJob) {
for (const ele in this.cronJobs[cronJob]) {
if (ele != this.jobId) {
this.resetValues(
`${this.namespace}.${ele}${this.additionalIds.reset}`,
this.namespace.length,
this.additionalIds.reset.length,
);
}
}
}
/**
* Is called if a subscribed state changes
*
* @param id id of the changed state
* @param state state (val & ack) of the changed state-id
*/
async onStateChange(id, state) {
if (state) {
// Check if state.val is reachable
if (state.val !== undefined && state.val !== null) {
// Check Changes in Foreign states
if (this.activeStates[id]) {
let tempId = this.createStatestring(id) + this.additionalIds.max;
if (state.val > this.activeStatesLastAdditionalValues[`${this.namespace}.${tempId}`]) {
this.activeStatesLastAdditionalValues[`${this.namespace}.${tempId}`] = state.val;
this.setStateAsync(tempId, state.val, true);
} else {
tempId = this.createStatestring(id) + this.additionalIds.min;
if (state.val < this.activeStatesLastAdditionalValues[`${this.namespace}.${tempId}`]) {
this.activeStatesLastAdditionalValues[`${this.namespace}.${tempId}`] = state.val;
this.setStateAsync(tempId, state.val, true);
}
}
// Set actual value to internal state
tempId = this.createStatestring(id) + this.additionalIds.actual;
this.setStateAsync(tempId, state.val, true);
}
// Check Changes in internal States (also if id is active state)
if (
this.activeStatesLastAdditionalValues[id] !== undefined &&
this.activeStatesLastAdditionalValues[id] !== null &&
!state.ack
) {
const extentionLength = this.additionalIds.reset.length;
const extention = id.substring(id.length - extentionLength);
const prefixLengt = this.namespace.length;
const prefix = id.substring(0, prefixLengt);
if (extention == this.additionalIds.reset && prefix == this.namespace) {
// check that reset is true
if (state.val == true) {
this.resetValues(id, prefixLengt, extentionLength);
this.setStateAsync(id, true, true);
} else {
this.setStateAsync(id, false, true);
}
} else {
this.activeStatesLastAdditionalValues[id] = state.val;
this.setStateAsync(id, state.val, true);
}
}
}
} else {
// The state was deleted
this.log.debug(`state ${id} deleted`);
}
}
async resetValues(id, prefixLengt, extentionLength) {
const subId = id.substring(prefixLengt + 1, id.length - extentionLength);
// Get current state
const curState = await this.getForeignStateAsync(this.activeStatesLastAdditionalValues[id]);
if (curState) {
this.activeStatesLastAdditionalValues[`${this.namespace}.${subId}${this.additionalIds.max}`] = curState.val;
this.setStateAsync(subId + this.additionalIds.max, curState.val, true);
this.activeStatesLastAdditionalValues[`${this.namespace}.${subId}${this.additionalIds.min}`] = curState.val;
this.setStateAsync(subId + this.additionalIds.min, curState.val, true);
}
}
// 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);
// }
// }
// }
}
if (require.main !== module) {
// Export the constructor in compact mode
/**
* @param [options] options of the adapter
*/
module.exports = options => new DragIndicator(options);
} else {
// otherwise start the instance directly
new DragIndicator();
}