Child: [3429b5] (diff)

Download this file

sensor.js    426 lines (381 with data), 12.6 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
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
// const deviceClass = require("../drivercomponent/deviceClass")(this.app.models);
let evaluator = require("math-expression-evaluator");
let logger;
// code for connecting to pubsub
let vfosMessagingPubsub = require("../pubsub/index.js");
// this parameters could be read from some external json
let broker = "amqp://fitman.uninova.pt";
let userName = "producer1";
let platformDomain = "pt.vfos";
let routingKeys = ["drivers"];
let communications = new vfosMessagingPubsub(broker, userName, platformDomain, routingKeys);
let pubsub = 0;
module.exports = function (sensor) {
/**
* register a sensor of a given device
* @param {string} deviceId ID of device
* @param {sensorConfiguration} sensorData data of the sensor
* @callback {Function} callback Callback function
* @param {Error|string} err Error object
* @param {any} result Result object
*/
sensor.addSensorToDevice = function (deviceId, sensorData, callback) {
// objects to create or find instances on the database
const sensorDataObject = this.app.models.sensorData;
const sensorConfiguration = this.app.models.sensorConfiguration;
// I have to register the sensor and the sensorConfiguration
const deviceConf = this.app.models.deviceConfiguration;
deviceConf.find({where: {_did: deviceId}, limit: 1}).then(
function (deviceConfig) {
sensorConfiguration.create(sensorData)
.then(function (result) {
// Checking if there are triggers so that a subscription can be created
if (sensorConf.triggers.length > 0) {
// 2. It retrieves a specific driver to process the reading on the appropiate protocol according to the sensor
// it send a logger function to store the logs that will be sent to the platform
let specificDriver = require("../driverImplementation/" + sensorConfig.driver.protocol)(logger);
// 3. It uses the driver to make the propietary call to the physical device and receive it in agnostic format
specificDriver.subscribe(deviceConfig, sensorConfig, pushToPlatform);
// 4. create to topic associated to the sensor to push the data
if (pubsub){
let prefixMessagingPrivateDestination2 = "pt.vfos";
let componentMessagingPrivateDestination2 = sensorData._did + "." + sensorData._sid;
}
}
callback(null, result.id);
})
.catch(function (err) {
console.log(err);
});
}).catch(function (err) {
console.log(err);
});
function pushToPlatform(data){
// 6. It will push the data to the vf-OS platform
if (pubsub){
communications.sendPrivateMessage(prefixMessagingPrivateDestination2, componentMessagingPrivateDestination2, data_package);
}
}
}
/**
* Store proprietary data from Device or Gateway
* @param {string} deviceId ID of device
* @param {string} sensorId ID of sensor
* @param {dataMeasure} dataMeasure data from the sensor
* @callback {Function} callback Callback function
* @param {Error|string} err Error object
* @param {any} result Result object
*/
sensor.storeSensorData = function (deviceId, sensorId, dataMeasure, callback) {
// Replace the code below with your implementation.
// Please make sure the callback is invoked.
process.nextTick(function () {
var err = new Error('Not implemented');
callback(err);
});
/*
var err0 = new Error('Invalid ID supplied');
err0.statusCode = 400;
return cb(err0);
*/
/*
var err1 = new Error('device not found');
err1.statusCode = 404;
return cb(err1);
*/
}
/**
* Get data from device / sensor
* @param {string} deviceId ID of device
* @param {string} sensorId ID of sensor
* @callback {Function} callback Callback function
* @param {Error|string} err Error object
* @param {dataMeasure} result Result object
*/
sensor.getDataSensor = function (deviceId, sensorId, callback) {
// 1. It retrieves sensor configuration info
const sensorConfiguration = this.app.models.sensorConfiguration;
const deviceConf = this.app.models.deviceConfiguration;
deviceConf.find({where: {_did: deviceId}, limit: 1}).then(
function (deviceConfig) {
sensorConfiguration.find({where: {_sid: sensorId}, limit: 1})
.then(function (sensorConfig) {
// 2. It retrieves a specific driver to process the reading on the appropiate protocol according to the sensor
// it send a logger function to store the logs that will be sent to the platform
let specificDriver = require("../driverImplementation/" + sensorConfig[0].driver.protocol)(logger);
// 3. It uses the driver to make the propietary call to the physical device and receive it in agnostic format
specificDriver.readSensorData(deviceConfig[0], sensorConfig[0]).then(compute_and_store).catch(function(e){callback(null, e);});
function compute_and_store(data) {
// 4. It substitutes the value of the sensor within a computing expression and processes it
data = evaluator.lex(sensorConfig[0].computingExpression.replace("%v", data)).toPostfix().postfixEval();
let data_package = {
data: data,
unit: sensorConfig[0].properties.unit,
timestamp: new Date()
}
// 5. If historicalData is activated, it stores the measure in a local database
if (sensorConfig[0].historicData) {
storage.storeSensorMeasure(data_package);
}
// 6. It will push the data to the vf-OS platform
if (pubsub){
communications.sendPrivateMessage(prefixMessagingPrivateDestination2, componentMessagingPrivateDestination2, data_package);
}
// 7. It finishes the request method when called using the REST API
callback(null, data_package); //protocol agnostic
}
});
}
).catch(function (err) {
console.log(err);
});
}
/**
* Send Command to Device / Sensor
* @param {string} deviceId ID of device
* @param {string} sensorId ID of sensor
* @param {commandOrder} command command sent to the sensor
* @callback {Function} callback Callback function
* @param {Error|string} err Error object
* @param {any} result Result object
*/
sensor.sendCommand = function (deviceId, sensorId, command, callback) {
// 1. It retrieves sensor configuration info
const sensorConfiguration = this.app.models.sensorConfiguration;
const deviceConf = this.app.models.deviceConfiguration;
deviceConf.find({where: {_did: deviceId}, limit: 1}).then(
function (deviceConfig) {
sensorConfiguration.find({where: {_sid: sensorId}, limit: 1})
.then(function (sensorConfig) {
// 2. It retrieves a specific driver to process the reading on the appropiate protocol according to the sensor
// it send a logger function to store the logs that will be sent to the platform
let specificDriver = require("../driverImplementation/" + sensorConfig.driver.protocol)(logger);
// 3. It uses the driver to make the propietary call send data to the sensor in agnostic
specificDriver.sendCommand(sensorConfig, command).then((data_package) => callback(null, data_package));
})
.catch(function (err) {
console.log(err);
});
});
/*
var err0 = new Error('Invalid ID supplied');
err0.statusCode = 400;
return cb(err0);
*/
/*
var err1 = new Error('device not found');
err1.statusCode = 404;
return cb(err1);
*/
}
/**
* Get historic data from device / sensor
* @param {string} deviceId ID of device
* @param {string} sensorId ID of sensor
* @param {string} offset number of minutes
* @callback {Function} callback Callback function
* @param {Error|string} err Error object
* @param {dataMeasure} result Result object
*/
sensor.getHistoricDataSensor = function (deviceId, sensorId, offset, callback) {
// Replace the code below with your implementation.
// Please make sure the callback is invoked.
process.nextTick(function () {
var err = new Error('Not implemented');
callback(err);
});
/*
var err0 = new Error('Invalid ID supplied');
err0.statusCode = 400;
return cb(err0);
*/
/*
var err1 = new Error('device not found');
err1.statusCode = 404;
return cb(err1);
*/
}
sensor.remoteMethod('addSensorToDevice', {
isStatic: true,
consumes: ['appplication/json'],
produces: ['application/json'],
accepts: [{
arg: 'deviceId',
type: 'string',
description: 'ID of device',
required: true,
http: {
source: 'path'
}
},
{
arg: 'sensorData',
type: 'sensorConfiguration',
description: 'data of the sensor',
required: true,
http: {
source: 'body'
}
}
],
returns: [],
http: {
verb: 'post',
path: '/devices/:deviceId/sensors'
},
description: 'register a sensor of a given device'
});
sensor.remoteMethod('storeSensorData', {
isStatic: true,
consumes: ['appplication/json'],
accepts: [{
arg: 'deviceId',
type: 'string',
description: 'ID of device',
required: true,
http: {
source: 'path'
}
},
{
arg: 'sensorId',
type: 'string',
description: 'ID of sensor',
required: true,
http: {
source: 'path'
}
},
{
arg: 'dataMeasure',
type: 'dataMeasure',
description: 'data from the sensor',
required: true,
http: {
source: 'body'
}
}
],
returns: [],
http: {
verb: 'post',
path: '/devices/:deviceId/sensors/:sensorId/Data'
},
description: 'Store proprietary data from Device or Gateway'
});
sensor.remoteMethod('getDataSensor', {
isStatic: true,
produces: ['application/json'],
accepts: [{
arg: 'deviceId',
type: 'string',
description: 'ID of device',
required: true,
http: {
source: 'path'
}
},
{
arg: 'sensorId',
type: 'string',
description: 'ID of sensor',
required: true,
http: {
source: 'path'
}
}
],
returns: [{
description: 'successful operation',
type: 'dataMeasure',
arg: 'data',
root: true
}],
http: {
verb: 'get',
path: '/devices/:deviceId/sensors/:sensorId/Data'
},
description: 'Get data from device / sensor'
});
sensor.remoteMethod('sendCommand', {
isStatic: true,
consumes: ['appplication/json'],
accepts: [{
arg: 'deviceId',
type: 'string',
description: 'ID of device',
required: true,
http: {
source: 'path'
}
},
{
arg: 'sensorId',
type: 'string',
description: 'ID of sensor',
required: true,
http: {
source: 'path'
}
},
{
arg: 'command',
type: 'commandOrder',
description: 'command sent to the sensor',
required: true,
http: {
source: 'body'
}
}
],
returns: [],
http: {
verb: 'post',
path: '/devices/:deviceId/sensors/:sensorId/Command'
},
description: 'Send Command to Device / Sensor'
});
sensor.remoteMethod('getHistoricDataSensor', {
isStatic: true,
produces: ['application/json'],
accepts: [{
arg: 'deviceId',
type: 'string',
description: 'ID of device',
required: true,
http: {
source: 'path'
}
},
{
arg: 'sensorId',
type: 'string',
description: 'ID of sensor',
required: true,
http: {
source: 'path'
}
},
{
arg: 'offset',
type: 'string',
description: 'number of minutes',
required: true,
http: {
source: 'query'
}
}
],
returns: [{
description: 'successful operation',
type: ['dataMeasure'],
arg: 'data',
root: true
}],
http: {
verb: 'get',
path: '/devices/:deviceId/sensors/:sensorId/Data/HistoricData'
},
description: 'Get historic data from device / sensor'
});
}