forked from zettajs/zetta-device
-
Notifications
You must be signed in to change notification settings - Fork 0
/
device.js
383 lines (316 loc) · 9.74 KB
/
device.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
var EventEmitter = require('events').EventEmitter;
var uuid = require('node-uuid');
var streams = require('zetta-streams');
var ObjectStream = streams.ObjectStream;
var BinaryStream = streams.BinaryStream;
var ConsumerStream = streams.ConsumerStream;
var Device = module.exports = function Device() {
this.id = uuid.v4();
this.streams = {}; // has __getter__ for consumer streams
this._streams = {}; // has actual streams supplied to .stream and .monitor
this._emitter = new EventEmitter();
this._allowed = {};
this._transitions = {};
this._monitors = [];
this._pubsub = null;
this._log = null;
var self = this;
this.on = function(type, handler) {
self._emitter.on(type, handler);
}.bind(this);
// TODO: Namespace this as something weird so there's no accidental override.
this.call = this.call.bind(this);
this.emit = this._emitter.emit.bind(this._emitter);
};
var ReservedKeys = ['id', 'streams', '_streams', 'type', 'state', '_state', '_allowed', '_transitions', '_monitors'];
['log', 'info', 'warn', 'error'].forEach(function(level) {
Device.prototype[level] = function(message, data) {
this._log.emit(level, (this.name || this.type || 'device') + '-log', message, data);
};
});
// Default Remote Update Hook
// Filter _monitors and delete keys that are not in the input
Device.prototype._remoteUpdate = function(input, cb) {
var self = this;
var monitors = this._monitors;
var inputKeys = Object.keys(input);
var acceptableKeyFilter = function(key) {
return monitors.indexOf(key) === -1;
};
inputKeys
.filter(acceptableKeyFilter)
.forEach(function(key) {
self[key] = input[key];
});
Object.keys(this._properties())
.filter(acceptableKeyFilter)
.forEach(function(key) {
if (ReservedKeys.indexOf(key) === -1 && inputKeys.indexOf(key) === -1) {
delete self[key];
}
});
this.save(cb);
};
// Default Remote Fetch Hook
Device.prototype._remoteFetch = function() {
return this._properties();
};
Device.prototype._remoteDestroy = function(cb) {
cb(null, true);
};
Device.prototype._generate = function(config) {
var self = this;
this.type = config._type;
this.name = config._name;
this._state = config._state;
this._transitions = config.transitions;
this._allowed = config.allowed;
if (Object.keys(this._transitions).length) {
var stateStream = self._createStream('state', ObjectStream);
Object.defineProperty(this, 'state', {
get: function(){
return self._state;
},
set: function(newValue){
self._state = newValue;
stateStream.write(newValue);
}
});
}
this._monitors = [];
config.monitors.forEach(function(name) {
self._initMonitor(name);
self._monitors.push(name);
});
Object.keys(config.streams).forEach(function(name) {
var s = config.streams[name];
self._initStream(name, s.handler, s.options);
});
// Update remote fetch handler
if (typeof config._remoteFetch === 'function') {
this._remoteFetch = config._remoteFetch.bind(this);
}
// Update remote update handler
if (typeof config._remoteUpdate === 'function') {
this._remoteUpdate = config._remoteUpdate.bind(this);
}
if (typeof config._remoteDestroy === 'function') {
this._remoteDestroy = config._remoteDestroy.bind(this);
}
};
Device.prototype.available = function(transition) {
var allowed = this._allowed[this.state];
if (!allowed) {
return false;
}
if(allowed.indexOf(transition) > -1) {
return true;
} else {
return false;
}
};
Device.prototype.call = function(/* type, ...args */) {
var args = Array.prototype.slice.call(arguments);
var type = args[0];
var next = args[args.length-1];
var self = this;
var rest = null;
if(typeof next !== 'function') {
next = function(err){
if (err) {
self._log.emit('log', 'device',
'Error calling ' + self.type + ' transition ' + type + ' (' + err + ')');
}
};
rest = args.slice(1, args.length);
} else {
rest = args.slice(1, args.length - 1);
}
var cb = function callback(err) {
if (err) {
next(err);
return;
}
var cbArgs = Array.prototype.slice.call(arguments);
cbArgs.unshift(type);
self._emitter.emit.apply(self._emitter, cbArgs);
var args = [];
if (self._transitions[type].fields) {
self._transitions[type].fields.forEach(function(field, idx) {
args.push({ name: field.name, value: rest[idx] });
});
}
self._sendLogStreamEvent(type, args, function(json) {
self._log.emit('log', 'device', self.type + ' transition ' + type, json);
});
next.apply(next, arguments);
};
var handlerArgs = rest.concat([cb]);
if(this.state == 'zetta-device-destroy') {
return next(new Error('Machine destroyed. Cannot use transition ' + type));
}
if (this._transitions[type]) {
if(this._transitions[type].handler === undefined){
return next(new Error('Machine does not implement transition '+type));
}
var state = self.state;
if (self.available(type)) {
this._transitions[type].handler.apply(this, handlerArgs);
} else {
next(new Error('Machine cannot use transition ' + type + ' while in ' + state));
}
} else {
next(new Error('Machine cannot use transition ' + type + ' not defined'));
}
};
// Helper method to return normal properties on device that does not get overidden by user
// setting a remoteFetch function.
Device.prototype._properties = function() {
var properties = {};
var self = this;
var reserved = ['streams'];
Object.keys(self).forEach(function(key) {
if (reserved.indexOf(key) === -1 && typeof self[key] !== 'function' && key[0] !== '_') {
properties[key] = self[key];
}
});
this._monitors.forEach(function(name) {
properties[name] = self[name];
});
return properties;
};
// External method to return properties using default remote fetch or
// user supplied remote fetch call
Device.prototype.properties = function() {
var properties = this._remoteFetch();
// filter out underscored properties
Object.keys(properties).forEach(function(key) {
if (key[0] === '_') {
delete properties[key];
}
});
// overide id, name, type, and state
properties.id = this.id;
properties.type = this.type;
properties.name = this.name;
// State not always set
if (this.state !== undefined) {
properties.state = this.state;
}
return properties;
};
// Called from zetta api resource to handle remote update
// Provides filters that should run both on user defined update hook and default hook
Device.prototype._handleRemoteUpdate = function(properties, cb) {
var self = this;
Object.keys(properties).forEach(function(key) {
// filter all methods and reserved keys and underscored
if (typeof self[key] === 'function' || ReservedKeys.indexOf(key) !== -1 || key[0] === '_') {
delete properties[key];
}
});
// Either default update hook or user supplied
this._remoteUpdate(properties, function(err) {
if (err) {
return cb(err);
}
self._sendLogStreamEvent('zetta-properties-update', []);
cb();
});
};
Device.prototype._handleRemoteDestroy = function(cb) {
this._remoteDestroy(function(err, destroyFlag) {
if(err) {
return cb(err);
}
cb(null, destroyFlag);
});
};
Device.prototype.save = function(cb) {
this._registry.save(this, cb);
};
Device.prototype._initMonitor = function(queueName) {
var stream = this._createStream(queueName, ObjectStream);
var self = this;
var value = this[queueName]; // initialize value
Object.defineProperty(this, queueName, {
get: function(){
return value;
},
set: function(newValue){
value = newValue;
stream.write(newValue);
}
});
return this;
};
Device.prototype._initStream = function(queueName, handler, options) {
if (!options) {
options = {};
}
var Type = (options.binary) ? BinaryStream : ObjectStream;
var stream = this._createStream(queueName, Type);
handler.call(this, stream);
return this;
};
Device.prototype.createReadStream = function(name) {
var stream = this._streams[name];
if (!stream) {
throw new Error('Steam does not exist: ' + name);
}
var queue = this.type + '/' + this.id + '/' + name;
return new ConsumerStream(queue, { objectMode: stream._writableState.objectMode }, this._pubsub);
};
Device.prototype._createStream = function(name, StreamType) {
var self = this;
var queue = this.type + '/' + this.id + '/' + name;
var stream = new StreamType(queue, {}, this._pubsub);
this._streams[name] = stream;
Object.defineProperty(this.streams, name, {
get: function(){
return self.createReadStream(name);
}
});
return stream;
};
Device.prototype.transitionsAvailable = function() {
var self = this;
var allowed = this._allowed[this.state];
var ret = {};
if (!allowed) {
return ret;
}
Object.keys(this._transitions).forEach(function(name) {
if (allowed && allowed.indexOf(name) > -1) {
ret[name] = self._transitions[name];
}
});
return ret;
};
Device.prototype._sendLogStreamEvent = function(transition, args, cb) {
var self = this;
var topic = self.type + '/' + self.id + '/logs';
var json = ObjectStream.format(topic, null);
delete json.data;
json.transition = transition;
json.input = args;
json.properties = self.properties();
json.transitions = self.transitionsAvailable();
self._pubsub.publish(topic, json);
if(cb) {
cb(json);
}
};
Device.prototype.destroy = function(cb) {
var self = this;
if(!cb) {
cb = function() {};
}
self.emit('destroy', self, cb);
};
Device.prototype.enableStream = function(name) {
this._streams[name].enabled = true;
};
Device.prototype.disableStream = function(name) {
this._streams[name].enabled = false;
};