-
Notifications
You must be signed in to change notification settings - Fork 114
/
event_socket.js
260 lines (228 loc) · 6.98 KB
/
event_socket.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
var util = require('util');
var EventEmitter = require('events').EventEmitter;
var ObjectStream = require('zetta-streams').ObjectStream;
var EventStreamsParser = require('zetta-events-stream-protocol').Parser;
var StreamTopic = require('zetta-events-stream-protocol').StreamTopic;
var buildDeviceActions = require('./api_formats/siren/device.siren').buildActions;
var deviceFormatter = require('./api_formats/siren/device.siren');
var JSCompiler = require('caql-js-compiler');
//Flag to indicate that we expect data back on teh websocket
//Tracking subscriptions
var EventSocket = module.exports = function(ws, query, options) {
EventEmitter.call(this);
if (options === undefined) {
options = {};
}
this.ws = ws;
this.query = [];
this._queryCache = {};
// list of event streams
this._subscriptions = [];
this._subscriptionIndex = 0;
// Flags
this.streamEnabled = !!(options.streamEnabled);
this.filterMultiple = !!(options.filterMultiple);
this.hasBeenSent = function(msg) {
return this._sendBuffer.add(msg);
};
this._sendBuffer = {
add: function(msg) {
if (this._buffer.indexOf(msg) >= 0) {
return true;
}
if (this._buffer.unshift(msg) > this.max) {
this._buffer.pop();
}
return false;
},
max: 50,
_buffer: []
};
// only setup parser when using event stream
if (this.streamEnabled) {
var self = this;
this._parser = new EventStreamsParser();
this._parser.on('error', function(err, original) {
var msg = {
type: 'error',
code: (err.name === 'InvalidTypeError') ? 405 : 400,
timestamp: new Date().getTime(),
topic: (typeof original === 'object') ? original.topic : null,
message: err.message
};
self.ws.send(JSON.stringify(msg));
});
this._parser.on('ping', function(msg) {
var msg = {
type: 'pong',
timestamp: new Date().getTime(),
data: msg.data
};
self.ws.send(JSON.stringify(msg));
});
this._parser.on('subscribe', function(msg) {
var topic = new StreamTopic();
try {
topic.parse(msg.topic);
} catch(err) {
var msg = {
type: 'error',
code: 400,
timestamp: new Date().getTime(),
topic: msg.topic,
message: err.message
};
self.ws.send(JSON.stringify(msg));
return;
}
if (topic.pubsubIdentifier() === '') {
var msg = {
type: 'error',
code: 400,
timestamp: new Date().getTime(),
topic: msg.topic,
message: 'Topic must have server and specific topic. Specific topic missing.'
};
self.ws.send(JSON.stringify(msg));
return;
}
if(topic.streamQuery && !self._queryCache[topic.streamQuery]) {
try {
var compiler = new JSCompiler();
var compiled = compiler.compile(topic.streamQuery);
self._queryCache[topic.streamQuery] = compiled;
} catch(err) {
var msg = {
type: 'error',
code: 400,
timestamp: new Date().getTime(),
topic: msg.topic,
message: err.message
}
self.ws.send(JSON.stringify(msg));
return;
}
}
var subscription = { subscriptionId: ++self._subscriptionIndex, topic: topic, limit: msg.limit };
self._subscriptions.push(subscription);
var msg = {
type: 'subscribe-ack',
timestamp: new Date().getTime(),
topic: msg.topic,
subscriptionId: subscription.subscriptionId
};
self.ws.send(JSON.stringify(msg));
self.emit('subscribe', subscription);
});
this._parser.on('unsubscribe', function(msg) {
self._unsubscribe(msg.subscriptionId, function(err, subscription) {
if (subscription) {
self.emit('unsubscribe', subscription);
}
});
});
} else {
if (!Array.isArray(query)) {
query = [query];
}
this.query = query; // contains .topic, .name
}
this.init();
};
util.inherits(EventSocket, EventEmitter);
EventSocket.prototype._unsubscribe = function(subscriptionId, cb) {
var self = this;
var foundIdx = -1;
self._subscriptions.some(function(subscription, idx) {
if(subscription.subscriptionId === subscriptionId) {
foundIdx = idx;
return true;
}
});
if (foundIdx < 0) {
var msg = {
type: 'error',
code: 405,
timestamp: new Date().getTime(),
message: (new Error('Unable to unsubscribe from invalid subscriptionId')).message
};
self.ws.send(JSON.stringify(msg));
return;
}
var subscription = self._subscriptions.splice(foundIdx, 1)[0];
var msg = {
type: 'unsubscribe-ack',
timestamp: new Date().getTime(),
subscriptionId: subscription.subscriptionId
};
self.ws.send(JSON.stringify(msg));
if (typeof cb === 'function') {
cb(null, subscription);
}
};
EventSocket.prototype.send = function(topic, data) {
if (!Buffer.isBuffer(data) && typeof data === 'object' && data !== null) {
var tmpData = (this.streamEnabled) ? data.data : data;
if (tmpData !== null) {
if (tmpData['transitions']) {
// format device logs
tmpData.actions = buildDeviceActions(tmpData.properties.id, this.ws._env, this.ws._loader, tmpData.transitions);
delete tmpData.transitions;
if (this.streamEnabled) {
data.data = tmpData;
} else {
data = tmpData;
}
} else if (tmpData['query']) {
// format device queries
tmpData = deviceFormatter({ loader: this.ws._loader, env: this.ws._env, model: tmpData.device });
if (this.streamEnabled) {
data.data = tmpData;
} else {
data = tmpData;
}
}
// used for _peer/connect _peer/disconnect
if (topic.indexOf('_peer/') === 0 && typeof tmpData.peer === 'object') {
var properties = tmpData.peer.properties();
if (tmpData.error) {
properties.error = tmpData.error;
}
if (this.streamEnabled) {
data.data = properties;
} else {
data = ObjectStream.format(topic, properties);
}
}
}
try {
data = JSON.stringify(data);
} catch (err) {
console.error('ws JSON.stringify ', err);
return;
}
}
var args = Array.prototype.slice.call(arguments);
args.splice(0, 1); // remove topic
// add callback to args list if it does not have one
if (args.length < 1 && typeof args[args.length - 1] !== 'function') {
args.push(function(err) { });
}
this.ws.send.apply(this.ws, args);
};
EventSocket.prototype.onClose = function() {
this.emit('close');
};
EventSocket.prototype.init = function() {
var self = this;
this.ws.on('message', function(buffer) {
if (self.streamEnabled) {
self._parser.add(buffer);
}
});
this.ws.on('close', this.onClose.bind(this));
this.ws.on('error',function(err){
console.error('ws error:', err);
self.onClose();
});
};