node-red/red/nodes/Node.js

189 lines
5.1 KiB
JavaScript
Raw Normal View History

2014-05-03 23:26:35 +02:00
/**
* Copyright 2014 IBM Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
2014-05-03 23:26:35 +02:00
var util = require("util");
var EventEmitter = require("events").EventEmitter;
var clone = require("clone");
2014-05-14 22:17:54 +02:00
var when = require("when");
2014-05-03 23:26:35 +02:00
var flows = require("./flows");
2014-05-08 15:15:54 +02:00
var comms = require("../comms");
2014-05-03 23:26:35 +02:00
function Node(n) {
this.id = n.id;
flows.add(this);
this.type = n.type;
if (n.name) {
this.name = n.name;
}
this.wires = n.wires || [];
var wc = 0;
this.wires.forEach(function(w) {
wc+=w.length;
});
this._wireCount = wc;
if (wc === 0) {
// With nothing wired to the node, no-op send
this.send = function(msg) {}
} else if (this.wires.length === 1 && this.wires[0].length === 1) {
// Single wire, so we can shortcut the send when
// a single message is sent
this._wire = this.wires[0][0];
}
2014-05-03 23:26:35 +02:00
}
util.inherits(Node, EventEmitter);
2014-05-15 21:55:01 +02:00
Node.prototype._on = Node.prototype.on;
Node.prototype.on = function(event, callback) {
var node = this;
2014-05-14 22:17:54 +02:00
if (event == "close") {
if (callback.length == 1) {
this.close = function() {
return when.promise(function(resolve) {
callback.call(node, function() {
2014-05-14 22:17:54 +02:00
resolve();
});
});
};
2014-05-14 22:17:54 +02:00
} else {
this.close = callback;
}
2014-05-15 21:55:01 +02:00
} else {
this._on(event, callback);
2014-05-14 22:17:54 +02:00
}
};
Node.prototype.close = function() {};
2014-05-03 23:26:35 +02:00
function cloneMessage(msg) {
// Temporary fix for #97
// TODO: remove this http-node-specific fix somehow
var req = msg.req;
var res = msg.res;
delete msg.req;
delete msg.res;
var m = clone(msg);
if (req) {
m.req = req;
msg.req = req;
}
if (res) {
m.res = res;
msg.res = res;
}
return m;
2014-05-14 22:17:54 +02:00
}
2014-05-03 23:26:35 +02:00
Node.prototype.send = function(msg) {
var msgSent = false;
if (msg === null || typeof msg === "undefined") {
2014-07-09 09:01:52 +02:00
return;
2014-05-03 23:26:35 +02:00
} else if (!util.isArray(msg)) {
if (this._wire) {
// A single message and a single wire on output 0
// TODO: pre-load flows.get calls - cannot do in constructor
// as not all nodes are defined at that point
flows.get(this._wire).receive(msg);
return;
} else {
msg = [msg];
}
2014-05-03 23:26:35 +02:00
}
var numOutputs = this.wires.length;
// Build a list of send events so that all cloning is done before
// any calls to node.receive
var sendEvents = [];
// for each output of node eg. [msgs to output 0, msgs to output 1, ...]
for (var i = 0; i < numOutputs; i++) {
var wires = this.wires[i]; // wires leaving output i
2014-05-03 23:26:35 +02:00
if (i < msg.length) {
var msgs = msg[i]; // msgs going to output i
if (msgs !== null && typeof msgs !== "undefined") {
if (!util.isArray(msgs)) {
msgs = [msgs];
2014-05-03 23:26:35 +02:00
}
var node;
var k = 0;
// for each recipent node of that output
for (var j = 0; j < wires.length; j++) {
node = flows.get(wires[j]); // node at end of wire j
if (node) {
// for each msg to send eg. [[m1, m2, ...], ...]
for (k = 0; k < msgs.length; k++) {
if (msgSent) {
sendEvents.push({n:node,m:cloneMessage(msgs[k])});
} else {
// first msg sent so don't clone
sendEvents.push({n:node,m:msgs[k]});
msgSent = true;
2014-05-03 23:26:35 +02:00
}
}
}
}
2014-05-03 23:26:35 +02:00
}
}
}
for (i=0;i<sendEvents.length;i++) {
var ev = sendEvents[i];
ev.n.receive(ev.m);
}
};
2014-05-03 23:26:35 +02:00
Node.prototype.receive = function(msg) {
this.emit("input", msg);
};
2014-05-03 23:26:35 +02:00
2014-07-09 08:42:34 +02:00
function log_helper(self, level, msg) {
var o = {
level: level,
id: self.id,
type: self.type,
msg: msg
};
2014-07-09 08:42:34 +02:00
if (self.name) {
o.name = self.name;
2014-07-02 00:46:25 +02:00
}
self.emit("log", o);
2014-05-03 23:26:35 +02:00
}
2014-07-09 08:42:34 +02:00
Node.prototype.log = function(msg) {
log_helper(this, 'log', msg);
};
2014-07-09 08:42:34 +02:00
2014-05-03 23:26:35 +02:00
Node.prototype.warn = function(msg) {
2014-07-09 08:42:34 +02:00
log_helper(this, 'warn', msg);
};
2014-07-09 08:42:34 +02:00
2014-05-03 23:26:35 +02:00
Node.prototype.error = function(msg) {
2014-07-09 08:42:34 +02:00
log_helper(this, 'error', msg);
};
2014-07-09 08:42:34 +02:00
2014-05-08 15:15:54 +02:00
/**
* status: { fill:"red|green", shape:"dot|ring", text:"blah" }
*/
Node.prototype.status = function(status) {
comms.publish("status/" + this.id, status, true);
};
2014-05-03 23:26:35 +02:00
module.exports = Node;