forked from PLCHome/node-red-contrib-ads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ads-in.js
126 lines (117 loc) · 4.27 KB
/
ads-in.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
module.exports = function (RED) {
'use strict'
var util = require('util')
var debug = require('debug')('node-red-contrib-ads:adsInNode')
function adsInNode(config) {
RED.nodes.createNode(this, config)
var node = this
node.adsDatasource = RED.nodes.getNode(config.datasource)
if (node.adsDatasource) {
debug('config:',config)
//node.onAdsData = function (handle){
// debug('onAdsData:','node.id',node.id,'node.symname',node.symname,'handle.value',handle.value)
// var msg = {}
// RED.util.setMessageProperty(msg, node.inValue, handle.value)
// node.send(msg)
// debug('onAdsData:','node.id',node.id,'node.symname',node.symname,'msg',msg)
//}
this.on("input", function(msg) {
debug('input:',msg)
var cfg = {
useIndex: config.useIndex,
symname: config.varName,
indexGroup: config.indexGroup,
indexOffset: config.indexOffset,
adstype: config.varTyp,
bytelength: config.varSize,
array:config.isArray,
lowindex:config.varLowIndex,
highindex:config.varHighIndex,
timezone: config.timezone,
inValue: (config.inValue||'payload'),
useInputMsg: (config.useInputMsg||false),
//set topic by default to msg.topic
topic: (msg.topic||'')
}
// overwrite default msg.topic by value in topic property (if used)
if (String(config.topic).length > 0) {
cfg.topic = config.topic
}
if (msg.config) {
if (typeof msg.config.varName !== 'undefined') {
cfg.symname = msg.config.varName
}
if (typeof msg.config.indexGroup !== 'undefined') {
cfg.indexGroup = msg.config.indexGroup
}
if (typeof msg.config.indexOffset !== 'undefined') {
cfg.indexOffset = msg.config.indexOffset
}
if (typeof msg.config.useIndex !== 'undefined') {
cfg.useIndex = msg.config.useIndex
}
if (typeof msg.config.varType !== 'undefined') {
cfg.adstype = msg.config.varType
}
if (typeof msg.config.varSize !== 'undefined') {
cfg.bytelength = msg.config.varSize
}
if (typeof msg.config.isarray !== 'undefined') {
cfg.array = msg.config.isarray
}
if (typeof msg.config.varLowIndex !== 'undefined') {
cfg.lowindex = msg.config.varLowIndex
}
if (typeof msg.config.varHighIndex !== 'undefined') {
cfg.highindex = msg.config.varHighIndex
}
if (typeof msg.config.timezone !== 'undefined') {
cfg.timezone = msg.config.timezone
}
if (typeof msg.config.inProperty !== 'undefined') {
cfg.inValue = msg.config.inProperty
}
if (typeof msg.config.useInputMsg !== 'undefined') {
cfg.useInputMsg = msg.config.useInputMsg
}
// overwrite default msg.topic by value in msg.config.topic (if existing)
if (typeof msg.config.topic !== 'undefined') {
if (String(msg.config.topic).length > 0) {
cfg.topic = msg.config.topic
}
}
}
if (cfg.useIndex) {
delete(cfg.symname)
cfg.indexGroup = parseInt(cfg.indexGroup.toString())
if (isNaN(cfg.indexGroup)) {
cfg.indexGroup = 0
}
cfg.indexOffset = parseInt(cfg.indexOffset.toString())
if (isNaN(cfg.indexOffset)) {
cfg.indexOffset = 0
}
} else {
delete(cfg.indexGroup)
delete(cfg.indexOffset)
}
cfg.hasTopic = String(cfg.topic).length > 0
var outMsg = {}
if (cfg.useInputMsg) {
outMsg = Object.assign({},msg)
}
node.adsDatasource.read(node, cfg, function (handle){
RED.util.setMessageProperty(outMsg, cfg.inValue, handle.value)
if (cfg.hasTopic) {
outMsg.topic = cfg.topic
}
node.send(outMsg)
debug('input:','node.id',node.id,'cfg.symname',cfg.symname,'outMsg',outMsg)
})
})
node.on('close', function () {
})
}
}
RED.nodes.registerType('ADS In', adsInNode)
}