1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

First release of multi connection tcpget

This commit is contained in:
Nathanaël Lécaudé 2016-11-09 10:15:23 -05:00
parent 0a5a42b32a
commit aef2c9e5cf

View File

@ -385,6 +385,7 @@ module.exports = function(RED) {
} }
RED.nodes.registerType("tcp out",TcpOut); RED.nodes.registerType("tcp out",TcpOut);
var clients = {};
function TcpGet(n) { function TcpGet(n) {
RED.nodes.createNode(this,n); RED.nodes.createNode(this,n);
this.server = n.server; this.server = n.server;
@ -407,16 +408,8 @@ module.exports = function(RED) {
} // jshint ignore:line } // jshint ignore:line
} }
var buf;
if (this.out == "count") {
if (this.splitc === 0) { buf = new Buffer(1); }
else { buf = new Buffer(this.splitc); }
}
else { buf = new Buffer(65536); } // set it to 64k... hopefully big enough for most TCP packets.... but only hopefully
this.connected = false; this.connected = false;
var node = this; var node = this;
var client;
var m; var m;
this.on("input", function(msg) { this.on("input", function(msg) {
@ -426,24 +419,35 @@ module.exports = function(RED) {
msg.payload = msg.payload.toString(); msg.payload = msg.payload.toString();
} }
if (!node.connected) { if (!node.connected) {
client = net.Socket();
if (socketTimeout !== null) { client.setTimeout(socketTimeout); }
var host = node.server || msg.host; var host = node.server || msg.host;
var port = node.port || msg.port; var port = node.port || msg.port;
node.connection_id = host + ":" + port;
var buf;
if (this.out == "count") {
if (this.splitc === 0) { buf = new Buffer(1); }
else { buf = new Buffer(this.splitc); }
}
else { buf = new Buffer(65536); } // set it to 64k... hopefully big enough for most TCP packets.... but only hopefully
clients[node.connection_id] = net.Socket();
node.warn('timeout ' + socketTimeout);
if (socketTimeout !== null) { clients[node.connection_id].setTimeout(socketTimeout); }
if (host && port) { if (host && port) {
client.connect(port, host, function() { var cid = node.connection_id;
clients[cid].connect(port, host, function() {
//node.log(RED._("tcpin.errors.client-connected")); //node.log(RED._("tcpin.errors.client-connected"));
node.status({fill:"green",shape:"dot",text:"common.status.connected"}); node.status({fill:"green",shape:"dot",text:"common.status.connected"});
node.connected = true; node.connected = true;
client.write(msg.payload); clients[cid].write(msg.payload);
}); });
} }
else { else {
node.warn(RED._("tcpin.errors.no-host")); node.warn(RED._("tcpin.errors.no-host"));
} }
client.on('data', function(data) { clients[node.connection_id].on('data', function(data) {
if (node.out == "sit") { // if we are staying connected just send the buffer if (node.out == "sit") { // if we are staying connected just send the buffer
m.payload = data; m.payload = data;
node.send(m); node.send(m);
@ -456,17 +460,17 @@ module.exports = function(RED) {
for (var j = 0; j < data.length; j++ ) { for (var j = 0; j < data.length; j++ ) {
if (node.out === "time") { if (node.out === "time") {
// do the timer thing // do the timer thing
if (node.tout) { if (clients[cid].timeout) {
i += 1; i += 1;
buf[i] = data[j]; buf[i] = data[j];
} }
else { else {
node.tout = setTimeout(function () { clients[cid].timeout = setTimeout(function () {
node.tout = null; clients[cid].timeout = null;
msg.payload = new Buffer(i+1); msg.payload = new Buffer(i+1);
buf.copy(msg.payload,0,0,i+1); buf.copy(msg.payload,0,0,i+1);
node.send(msg); node.send(msg);
if (client) { node.status({}); client.destroy(); } if (clients[cid]) { node.status({}); clients[cid].destroy(); }
}, node.splitc); }, node.splitc);
i = 0; i = 0;
buf[0] = data[j]; buf[0] = data[j];
@ -480,7 +484,7 @@ module.exports = function(RED) {
msg.payload = new Buffer(i); msg.payload = new Buffer(i);
buf.copy(msg.payload,0,0,i); buf.copy(msg.payload,0,0,i);
node.send(msg); node.send(msg);
if (client) { node.status({}); client.destroy(); } if (clients[cid]) { node.status({}); clients[cid].destroy(); }
i = 0; i = 0;
} }
} }
@ -492,7 +496,7 @@ module.exports = function(RED) {
msg.payload = new Buffer(i); msg.payload = new Buffer(i);
buf.copy(msg.payload,0,0,i); buf.copy(msg.payload,0,0,i);
node.send(msg); node.send(msg);
if (client) { node.status({}); client.destroy(); } if (clients[cid]) { node.status({}); clients[cid].destroy(); }
i = 0; i = 0;
} }
} }
@ -500,47 +504,47 @@ module.exports = function(RED) {
} }
}); });
client.on('end', function() { clients[node.connection_id].on('end', function() {
//console.log("END"); //console.log("END");
node.connected = false; node.connected = false;
node.status({fill:"grey",shape:"ring",text:"common.status.disconnected"}); node.status({fill:"grey",shape:"ring",text:"common.status.disconnected"});
client = null; clients[cid] = null;
}); });
client.on('close', function() { clients[node.connection_id].on('close', function() {
//console.log("CLOSE"); //console.log("CLOSE");
node.connected = false; node.connected = false;
if (node.done) { node.done(); } if (node.done) { node.done(); }
}); });
client.on('error', function() { clients[node.connection_id].on('error', function() {
//console.log("ERROR"); //console.log("ERROR");
node.connected = false; node.connected = false;
node.status({fill:"red",shape:"ring",text:"common.status.error"}); node.status({fill:"red",shape:"ring",text:"common.status.error"});
node.error(RED._("tcpin.errors.connect-fail"),msg); node.error(RED._("tcpin.errors.connect-fail"),msg);
if (client) { client.destroy(); } if (clients[cid]) { clients[cid].destroy(); }
}); });
client.on('timeout',function() { clients[node.connection_id].on('timeout',function() {
//console.log("TIMEOUT"); //console.log("TIMEOUT");
node.connected = false; node.connected = false;
node.status({fill:"grey",shape:"dot",text:"tcpin.errors.connect-timeout"}); node.status({fill:"grey",shape:"dot",text:"tcpin.errors.connect-timeout"});
//node.warn(RED._("tcpin.errors.connect-timeout")); //node.warn(RED._("tcpin.errors.connect-timeout"));
if (client) { if (clients[cid]) {
client.connect(port, host, function() { clients[cid].connect(port, host, function() {
node.connected = true; node.connected = true;
node.status({fill:"green",shape:"dot",text:"common.status.connected"}); node.status({fill:"green",shape:"dot",text:"common.status.connected"});
}); });
} }
}); });
} }
else { client.write(msg.payload); } else { clients[node.connection_id].write(msg.payload); }
}); });
this.on("close", function(done) { this.on("close", function(done) {
node.done = done; node.done = done;
if (client) { if (clients[cid]) {
client.destroy(); clients[node.connection_id].destroy();
} }
node.status({}); node.status({});
if (!node.connected) { done(); } if (!node.connected) { done(); }