Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 1x 1x 1x 1x 1x 1x 1x 1x 50x 50x 2x 48x 2x 46x 2x 44x 2x 42x 2x 40x 2x 38x 36x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 2x 2x 2x 2x 4x 2x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 2x 20x 2x 18x 2x 16x 2x 14x 2x 12x 2x 10x 2x 8x 6x 4x 4x 4x 4x 4x 164x 20x 144x 164x 143x 21x 21x 23x 23x 2x 2x 21x 21x 7x 7x 7x 7x 7x 2x 5x 14x 7x 7x 2x 5x 7x 7x 7x 2x 5x 1x 1x | 'use strict'; const { EventEmitter } = require('events'); const { URL } = require('url'); const async = require('async'); const { AmqpQueue } = require('general-mq/lib/amqp-queue'); const { DataTypes, Status, Events } = require('general-mq/lib/constants'); const { MqttQueue } = require('general-mq/lib/mqtt-queue'); const { Connection, DataMqStatus, Options, getConnection, removeConnection, newDataQueues, } = require('./lib'); const { MgrStatus, Errors } = require('./constants'); /** * Uplink data from broker to application. * * @typedef {Object} AppUlData * @property {string} dataId * @property {Date} time * @property {Date} pub * @property {string} deviceId * @property {string} networkId * @property {string} networkCode * @property {string} networkAddr * @property {boolean} isPublic * @property {Buffer} data * @property {Object} [extension] */ /** * Downlink data from application to broker. * * @typedef {Object} AppDlData * @property {string} correlationId * @property {string} [deviceId] * @property {string} [networkCode] * @property {string} [networkAddr] * @property {Buffer} data * @property {Object} [extension] */ /** * Downlink data response for `AppDlData`. * * @typedef {Object} AppDlDataResp * @property {string} correlationId * @property {string} [dataId] * @property {string} [error] * @property {string} [message] */ /** * Downlink data result when processing or completing data transfer to the device. * * @typedef {Object} AppDlDataResult * @property {string} dataId * @property {number} status * @property {string} [message] */ /** * Connection status event. * * @event ApplicationMgr#status * @type {Status} */ /** * @typedef {Object} AppMgrMsgHandlers * @property {OnAppUlData} onUlData * @property {OnAppDlDataResp} onDlDataResp * @property {OnAppDlDataResult} onDlDataResult */ /** * @callback OnAppUlData * @param {ApplicationMgr} mgr * @param {AppUlData} data * @param {function} callback * @param {?Error} callback.err Use error to NACK the message. */ /** * @callback OnAppDlDataResp * @param {ApplicationMgr} mgr * @param {AppDlDataResp} data * @param {function} callback * @param {?Error} callback.err Use error to NACK the message. */ /** * @callback OnAppDlDataResult * @param {ApplicationMgr} mgr * @param {AppDlDataResult} data * @param {function} callback * @param {?Error} callback.err Use error to NACK the message. */ /** * The manager for application queues. * * @class ApplicationMgr * @fires ApplicationMgr#status */ class ApplicationMgr extends EventEmitter { /** * @param {Map<string, Connection>} connPool * @param {URL} hostUri * @param {Options} opts * @param {AppMgrMsgHandlers} handler * @throws {Error} Wrong arguments. */ constructor(connPool, hostUri, opts, handler) { super(); if (!connPool || !(connPool instanceof Map)) { throw Error('`connPool` is not a Connection pool map'); } else if (!hostUri || !(hostUri instanceof URL) || !URL.canParse(hostUri.toString())) { throw Error('`hostUri` is not a valid URI'); } else if (!opts || typeof opts !== DataTypes.Object || Array.isArray(opts)) { throw Error('`opts` is not an object'); } else if (!opts.unitId) { throw Error('`opts.unitId` cannot be empty for application'); } else if (!handler || typeof handler !== DataTypes.Object || Array.isArray(handler)) { throw Error('`handler` is not an object'); } else if ( typeof handler.onUlData !== DataTypes.Function || typeof handler.onDlDataResp !== DataTypes.Function || typeof handler.onDlDataResult !== DataTypes.Function ) { throw Error('`onUlData`, `onDlDataResp` and `onDlDataResult` must be functions'); } const conn = getConnection(connPool, hostUri); const queues = newDataQueues(conn, opts, QUEUE_PREFIX, false); conn.conn.connect(); this.#opts = { ...opts }; this.#connPool = connPool; this.#hostUri = hostUri.toString(); this.#uldata = queues.uldata; this.#dldata = queues.dldata; this.#dldataResp = queues.dldataResp; this.#dldataResult = queues.dldataResult; this.#status = MgrStatus.NotReady; this.#mgrMsgHandler = handler; this.#uldata.on(Events.Status, this.#gmqStatusHandler.bind(this)); this.#uldata.setMsgHandler(this.#gmqMsgHandler.bind(this)); this.#uldata.connect(); this.#dldata.on(Events.Status, this.#gmqStatusHandler.bind(this)); this.#dldata.setMsgHandler(this.#gmqMsgHandler.bind(this)); this.#dldata.connect(); this.#dldataResp.on(Events.Status, this.#gmqStatusHandler.bind(this)); this.#dldataResp.setMsgHandler(this.#gmqMsgHandler.bind(this)); this.#dldataResp.connect(); this.#dldataResult.on(Events.Status, this.#gmqStatusHandler.bind(this)); this.#dldataResult.setMsgHandler(this.#gmqMsgHandler.bind(this)); this.#dldataResult.connect(); conn.count += 4; } /** * @returns {string} The associated unit ID of the application. */ unitId() { return this.#opts.unitId; } /** * @returns {string} The associated unit code of the application. */ unitCode() { return this.#opts.unitCode; } /** * @returns {string} The application ID. */ id() { return this.#opts.id; } /** * @returns {string} The application code. */ name() { return this.#opts.name; } /** * @returns {MgrStatus} Manager status. */ status() { return this.#status; } /** * @returns {DataMqStatus} Manager status. */ mqStatus() { return { uldata: this.#uldata.status(), dldata: this.#dldata.status(), dldataResp: this.#dldataResp.status(), dldataResult: this.#dldataResult.status(), ctrl: Status.Closed, }; } /** * To close the manager queues. * The underlying connection will be closed when there are no queues use it. * * @param {function} callback * @param {?Error} callback.err */ close(callback) { const self = this; async.waterfall( [ function (cb) { self.#uldata.removeAllListeners(); self.#uldata.close((err) => { cb(err || null); }); }, function (cb) { self.#dldata.removeAllListeners(); self.#dldata.close((err) => { cb(err || null); }); }, function (cb) { self.#dldataResp.removeAllListeners(); self.#dldataResp.close((err) => { cb(err || null); }); }, function (cb) { self.#dldataResult.removeAllListeners(); self.#dldataResult.close((err) => { cb(err || null); }); }, function (cb) { removeConnection(self.#connPool, self.#hostUri, 4, (err) => { cb(err || null); }); }, ], callback ); } /** * Send downlink data `AppDlData` to the broker. * * @param {AppDlData} data * @param {function} callback * @param {?Error} callback.err * @throws {Error} Wrong arguments. */ sendDlData(data, callback) { if (!data || typeof data !== DataTypes.Object || Array.isArray(data)) { throw Error('`data` is not an object'); } else if (!data.correlationId || typeof data.correlationId !== DataTypes.String) { throw Error(ErrParamCorrId); } else if (data.deviceId !== undefined && typeof data.deviceId !== DataTypes.String) { throw Error('`data.deviceId` is not a string'); } else if (data.networkCode !== undefined && typeof data.networkCode !== DataTypes.String) { throw Error('`data.networkCode` is not a string'); } else if (data.networkAddr !== undefined && typeof data.networkAddr !== DataTypes.String) { throw Error('`data.networkAddr` is not a string'); } else if (!(data.data instanceof Buffer)) { throw Error('`data.data` is not a Buffer'); } else if ( data.extension !== undefined && (!data.extension || typeof data.extension !== DataTypes.Object || Array.isArray(data.extension)) ) { throw Error('`data.extension` is not an object'); } if (!data.deviceId) { if ((data.networkCode && !data.networkAddr) || (!data.networkCode && data.networkAddr)) { throw Error(Errors.ErrParamDev); } } const dldata = { correlationId: data.correlationId, deviceId: data.deviceId || undefined, networkCode: data.networkCode || undefined, networkAddr: data.networkAddr || undefined, data: data.data.toString('hex'), extension: data.extension || undefined, }; const payload = Buffer.from(JSON.stringify(dldata)); this.#dldata.sendMsg(payload, (err) => { callback(err || null); }); } /** * The handler for the gmq.Queue#status events. */ #gmqStatusHandler(_queue, _status) { let status; if ( this.#uldata.status() === Status.Connected && this.#dldata.status() === Status.Connected && this.#dldataResp.status() === Status.Connected && this.#dldataResult.status() === Status.Connected ) { status = MgrStatus.Ready; } else { status = MgrStatus.NotReady; } if (this.#status === status) { return; } this.#status = status; this.emit(Events.Status, status); } /** * The message handler for the gmq.Queue. */ #gmqMsgHandler(queue, msg) { let data; try { data = JSON.parse(msg.payload.toString()); } catch (e) { queue.ack(msg, (_err) => {}); return; } const self = this; if (queue.name() === this.#uldata.name()) { data.time = new Date(data.time); data.pub = new Date(data.pub); data.data = Buffer.from(data.data, 'hex'); this.#mgrMsgHandler.onUlData(this, data, (err) => { if (err) { self.#uldata.nack(msg, (_err) => {}); } else { self.#uldata.ack(msg, (_err) => {}); } }); } else if (queue.name() === this.#dldataResp.name()) { this.#mgrMsgHandler.onDlDataResp(this, data, (err) => { if (err) { self.#dldataResp.nack(msg, (_err) => {}); } else { self.#dldataResp.ack(msg, (_err) => {}); } }); } else if (queue.name() === this.#dldataResult.name()) { this.#mgrMsgHandler.onDlDataResult(this, data, (err) => { if (err) { self.#dldataResult.nack(msg, (_err) => {}); } else { self.#dldataResult.ack(msg, (_err) => {}); } }); } else E{ return; } } /** @type {Options} */ #opts; /** * Information for delete connection automatically. * * @type {Map<string, Connection>} */ #connPool; /** * Information for delete connection automatically. * * @type {string} */ #hostUri; /** @type {AmqpQueue|MqttQueue} */ #uldata; /** @type {AmqpQueue|MqttQueue} */ #dldata; /** @type {AmqpQueue|MqttQueue} */ #dldataResp; /** @type {AmqpQueue|MqttQueue} */ #dldataResult; /** @type {Status} */ #status; /** @type {AppMgrMsgHandlers} */ #mgrMsgHandler; } const QUEUE_PREFIX = 'broker.application'; module.exports = { ApplicationMgr, }; |