mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
update "core" extra nodes to use newer Buffer syntax
This commit is contained in:
parent
a64d758e18
commit
6c3c16f210
@ -52,7 +52,7 @@ module.exports = function(RED) {
|
|||||||
payload += node.addCh;
|
payload += node.addCh;
|
||||||
}
|
}
|
||||||
else if (node.addCh !== "") {
|
else if (node.addCh !== "") {
|
||||||
payload = Buffer.concat([payload,new Buffer(node.addCh)]);
|
payload = Buffer.concat([payload,new Buffer.from(node.addCh)]);
|
||||||
}
|
}
|
||||||
node.port.write(payload,function(err,res) {
|
node.port.write(payload,function(err,res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
@ -94,8 +94,8 @@ module.exports = function(RED) {
|
|||||||
var node = this;
|
var node = this;
|
||||||
node.tout = null;
|
node.tout = null;
|
||||||
var buf;
|
var buf;
|
||||||
if (node.serialConfig.out != "count") { buf = new Buffer(bufMaxSize); }
|
if (node.serialConfig.out != "count") { buf = new Buffer.alloc(bufMaxSize); }
|
||||||
else { buf = new Buffer(Number(node.serialConfig.newline)); }
|
else { buf = new Buffer.alloc(Number(node.serialConfig.newline)); }
|
||||||
var i = 0;
|
var i = 0;
|
||||||
node.status({fill:"grey",shape:"dot",text:"node-red:common.status.not-connected"});
|
node.status({fill:"grey",shape:"dot",text:"node-red:common.status.not-connected"});
|
||||||
node.port = serialPool.get(this.serialConfig.serialport,
|
node.port = serialPool.get(this.serialConfig.serialport,
|
||||||
@ -108,17 +108,17 @@ module.exports = function(RED) {
|
|||||||
|
|
||||||
var splitc;
|
var splitc;
|
||||||
if (node.serialConfig.newline.substr(0,2) == "0x") {
|
if (node.serialConfig.newline.substr(0,2) == "0x") {
|
||||||
splitc = new Buffer([parseInt(node.serialConfig.newline)]);
|
splitc = new Buffer.from([parseInt(node.serialConfig.newline)]);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
splitc = new Buffer(node.serialConfig.newline.replace("\\n","\n").replace("\\r","\r").replace("\\t","\t").replace("\\e","\e").replace("\\f","\f").replace("\\0","\0")); // jshint ignore:line
|
splitc = new Buffer.from(node.serialConfig.newline.replace("\\n","\n").replace("\\r","\r").replace("\\t","\t").replace("\\e","\e").replace("\\f","\f").replace("\\0","\0")); // jshint ignore:line
|
||||||
}
|
}
|
||||||
|
|
||||||
this.port.on('data', function(msg) {
|
this.port.on('data', function(msg) {
|
||||||
// single char buffer
|
// single char buffer
|
||||||
if ((node.serialConfig.newline === 0)||(node.serialConfig.newline === "")) {
|
if ((node.serialConfig.newline === 0)||(node.serialConfig.newline === "")) {
|
||||||
if (node.serialConfig.bin !== "bin") { node.send({"payload": String.fromCharCode(msg)}); }
|
if (node.serialConfig.bin !== "bin") { node.send({"payload": String.fromCharCode(msg)}); }
|
||||||
else { node.send({"payload": new Buffer([msg])}); }
|
else { node.send({"payload": new Buffer.from([msg])}); }
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// do the timer thing
|
// do the timer thing
|
||||||
@ -130,7 +130,7 @@ module.exports = function(RED) {
|
|||||||
else {
|
else {
|
||||||
node.tout = setTimeout(function () {
|
node.tout = setTimeout(function () {
|
||||||
node.tout = null;
|
node.tout = null;
|
||||||
var m = new Buffer(i+1);
|
var m = new Buffer.alloc(i+1);
|
||||||
buf.copy(m,0,0,i+1);
|
buf.copy(m,0,0,i+1);
|
||||||
if (node.serialConfig.bin !== "bin") { m = m.toString(); }
|
if (node.serialConfig.bin !== "bin") { m = m.toString(); }
|
||||||
node.send({"payload": m});
|
node.send({"payload": m});
|
||||||
@ -145,7 +145,7 @@ module.exports = function(RED) {
|
|||||||
buf[i] = msg;
|
buf[i] = msg;
|
||||||
i += 1;
|
i += 1;
|
||||||
if ( i >= parseInt(node.serialConfig.newline)) {
|
if ( i >= parseInt(node.serialConfig.newline)) {
|
||||||
var m = new Buffer(i);
|
var m = new Buffer.alloc(i);
|
||||||
buf.copy(m,0,0,i);
|
buf.copy(m,0,0,i);
|
||||||
if (node.serialConfig.bin !== "bin") { m = m.toString(); }
|
if (node.serialConfig.bin !== "bin") { m = m.toString(); }
|
||||||
node.send({"payload":m});
|
node.send({"payload":m});
|
||||||
@ -158,7 +158,7 @@ module.exports = function(RED) {
|
|||||||
buf[i] = msg;
|
buf[i] = msg;
|
||||||
i += 1;
|
i += 1;
|
||||||
if ((msg === splitc[0]) || (i === bufMaxSize)) {
|
if ((msg === splitc[0]) || (i === bufMaxSize)) {
|
||||||
var n = new Buffer(i);
|
var n = new Buffer.alloc(i);
|
||||||
buf.copy(n,0,0,i);
|
buf.copy(n,0,0,i);
|
||||||
if (node.serialConfig.bin !== "bin") { n = n.toString(); }
|
if (node.serialConfig.bin !== "bin") { n = n.toString(); }
|
||||||
node.send({"payload":n});
|
node.send({"payload":n});
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-serialport",
|
"name" : "node-red-node-serialport",
|
||||||
"version" : "0.4.2",
|
"version" : "0.4.3",
|
||||||
"description" : "Node-RED nodes to talk to serial ports",
|
"description" : "Node-RED nodes to talk to serial ports",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
"serialport" : "~4.0.7"
|
"serialport" : "~4.0.7"
|
||||||
|
@ -16,12 +16,12 @@ module.exports = function(RED) {
|
|||||||
// Take base64 string and make into binary buffer
|
// Take base64 string and make into binary buffer
|
||||||
var regexp = new RegExp('^[A-Za-z0-9+\/=]*$');
|
var regexp = new RegExp('^[A-Za-z0-9+\/=]*$');
|
||||||
if ( regexp.test(msg.payload) && (msg.payload.length % 4 === 0) ) {
|
if ( regexp.test(msg.payload) && (msg.payload.length % 4 === 0) ) {
|
||||||
msg.payload = new Buffer(msg.payload,'base64');
|
msg.payload = new Buffer.from(msg.payload,'base64');
|
||||||
node.send(msg);
|
node.send(msg);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
//node.log("Not a Base64 string - maybe we should encode it...");
|
//node.log("Not a Base64 string - maybe we should encode it...");
|
||||||
msg.payload = (new Buffer(msg.payload,"binary")).toString('base64');
|
msg.payload = (new Buffer.from(msg.payload,"binary")).toString('base64');
|
||||||
node.send(msg);
|
node.send(msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,5 +23,5 @@ If the input is a Base64 string it converts it back to a binary buffer.
|
|||||||
Sample Flow
|
Sample Flow
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
<pre><code>[{"id":"d2ccae00.2d335","type":"inject","name":"","topic":"","payload":"","payloadType":"none","repeat":"","crontab":"","once":false,"x":136,"y":99,"z":"385bdf8b.c7a42","wires":[["e03cae10.1fc35"]]},{"id":"b778ef09.48871","type":"base64","name":"","x":411.5,"y":160,"z":"385bdf8b.c7a42","wires":[["6295d1b1.9d6a3","46b597ba.b94a68"]]},{"id":"6295d1b1.9d6a3","type":"debug","name":"","active":true,"console":"false","complete":"false","x":610,"y":160,"z":"385bdf8b.c7a42","wires":[]},{"id":"ead9e7c9.152618","type":"debug","name":"","active":true,"console":"false","complete":"false","x":610,"y":240,"z":"385bdf8b.c7a42","wires":[]},{"id":"46b597ba.b94a68","type":"base64","name":"","x":411.5,"y":240,"z":"385bdf8b.c7a42","wires":[["ead9e7c9.152618"]]},{"id":"1c9124e9.e36edb","type":"inject","name":"","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"","once":false,"x":1775,"y":113,"z":"385bdf8b.c7a42","wires":[[]]},{"id":"48a892ea.b7576c","type":"debug","name":"","active":true,"console":"false","complete":"false","x":2171,"y":210,"z":"385bdf8b.c7a42","wires":[]},{"id":"e03cae10.1fc35","type":"function","name":"","func":"msg.payload = new Buffer(\"12345\");\nreturn msg;","outputs":1,"x":250,"y":160,"z":"385bdf8b.c7a42","wires":[["b778ef09.48871"]]}]
|
<pre><code>[{"id":"d2ccae00.2d335","type":"inject","name":"","topic":"","payload":"","payloadType":"none","repeat":"","crontab":"","once":false,"x":136,"y":99,"z":"385bdf8b.c7a42","wires":[["e03cae10.1fc35"]]},{"id":"b778ef09.48871","type":"base64","name":"","x":411.5,"y":160,"z":"385bdf8b.c7a42","wires":[["6295d1b1.9d6a3","46b597ba.b94a68"]]},{"id":"6295d1b1.9d6a3","type":"debug","name":"","active":true,"console":"false","complete":"false","x":610,"y":160,"z":"385bdf8b.c7a42","wires":[]},{"id":"ead9e7c9.152618","type":"debug","name":"","active":true,"console":"false","complete":"false","x":610,"y":240,"z":"385bdf8b.c7a42","wires":[]},{"id":"46b597ba.b94a68","type":"base64","name":"","x":411.5,"y":240,"z":"385bdf8b.c7a42","wires":[["ead9e7c9.152618"]]},{"id":"1c9124e9.e36edb","type":"inject","name":"","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"","once":false,"x":1775,"y":113,"z":"385bdf8b.c7a42","wires":[[]]},{"id":"48a892ea.b7576c","type":"debug","name":"","active":true,"console":"false","complete":"false","x":2171,"y":210,"z":"385bdf8b.c7a42","wires":[]},{"id":"e03cae10.1fc35","type":"function","name":"","func":"msg.payload = new Buffer.from(\"12345\");\nreturn msg;","outputs":1,"x":250,"y":160,"z":"385bdf8b.c7a42","wires":[["b778ef09.48871"]]}]
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-base64",
|
"name" : "node-red-node-base64",
|
||||||
"version" : "0.0.4",
|
"version" : "0.0.5",
|
||||||
"description" : "A Node-RED node to pack and unpack objects to base64 format",
|
"description" : "A Node-RED node to pack and unpack objects to base64 format",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
},
|
},
|
||||||
|
@ -35,7 +35,7 @@ describe('base64 node', function() {
|
|||||||
msg.should.have.a.property("payload","QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVo=");
|
msg.should.have.a.property("payload","QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVo=");
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
n1.emit("input", {payload: Buffer("ABCDEFGHIJKLMNOPQRSTUVWXYZ")});
|
n1.emit("input", {payload: Buffer.from("ABCDEFGHIJKLMNOPQRSTUVWXYZ")});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ describe('exif node', function() {
|
|||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
|
||||||
exifNode1.receive({payload:new Buffer("hello")});
|
exifNode1.receive({payload:new Buffer.from("hello")});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -90,7 +90,7 @@ describe('exif node', function() {
|
|||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
|
||||||
exifNode1.receive({payload:new Buffer("hello")});
|
exifNode1.receive({payload:new Buffer.from("hello")});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -125,7 +125,7 @@ describe('exif node', function() {
|
|||||||
done();
|
done();
|
||||||
},150);
|
},150);
|
||||||
|
|
||||||
exifNode1.receive({payload:new Buffer("hello")});
|
exifNode1.receive({payload:new Buffer.from("hello")});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -133,7 +133,7 @@ describe('exif node', function() {
|
|||||||
var exif = require('exif');
|
var exif = require('exif');
|
||||||
var ExifImage = exif.ExifImage;
|
var ExifImage = exif.ExifImage;
|
||||||
// this time just use a buffer that isn't an jpeg image
|
// this time just use a buffer that isn't an jpeg image
|
||||||
var data = new Buffer("hello");
|
var data = new Buffer.from("hello");
|
||||||
var eD;
|
var eD;
|
||||||
var flow = [{id:"exifNode1", type:"exif", wires:[["helperNode1"]]},
|
var flow = [{id:"exifNode1", type:"exif", wires:[["helperNode1"]]},
|
||||||
{id:"helperNode1", type:"helper"}];
|
{id:"helperNode1", type:"helper"}];
|
||||||
@ -185,7 +185,7 @@ describe('exif node', function() {
|
|||||||
it('should report if no payload', function(done) {
|
it('should report if no payload', function(done) {
|
||||||
var exif = require('exif');
|
var exif = require('exif');
|
||||||
var ExifImage = exif.ExifImage;
|
var ExifImage = exif.ExifImage;
|
||||||
var data = new Buffer("hello");
|
var data = new Buffer.from("hello");
|
||||||
var eD;
|
var eD;
|
||||||
var flow = [{id:"exifNode1", type:"exif", wires:[["helperNode1"]]},
|
var flow = [{id:"exifNode1", type:"exif", wires:[["helperNode1"]]},
|
||||||
{id:"helperNode1", type:"helper"}];
|
{id:"helperNode1", type:"helper"}];
|
||||||
@ -211,7 +211,7 @@ describe('exif node', function() {
|
|||||||
it('should report if bad latitude', function(done) {
|
it('should report if bad latitude', function(done) {
|
||||||
var exif = require('exif');
|
var exif = require('exif');
|
||||||
var ExifImage = exif.ExifImage;
|
var ExifImage = exif.ExifImage;
|
||||||
var data = new Buffer("hello");
|
var data = new Buffer.from("hello");
|
||||||
var eD;
|
var eD;
|
||||||
var flow = [{id:"exifNode1", type:"exif", wires:[["helperNode1"]]},
|
var flow = [{id:"exifNode1", type:"exif", wires:[["helperNode1"]]},
|
||||||
{id:"helperNode1", type:"helper"}];
|
{id:"helperNode1", type:"helper"}];
|
||||||
@ -251,7 +251,7 @@ describe('exif node', function() {
|
|||||||
it('should report if bad longitude', function(done) {
|
it('should report if bad longitude', function(done) {
|
||||||
var exif = require('exif');
|
var exif = require('exif');
|
||||||
var ExifImage = exif.ExifImage;
|
var ExifImage = exif.ExifImage;
|
||||||
var data = new Buffer("hello");
|
var data = new Buffer.from("hello");
|
||||||
var eD;
|
var eD;
|
||||||
var flow = [{id:"exifNode1", type:"exif", wires:[["helperNode1"]]},
|
var flow = [{id:"exifNode1", type:"exif", wires:[["helperNode1"]]},
|
||||||
{id:"helperNode1", type:"helper"}];
|
{id:"helperNode1", type:"helper"}];
|
||||||
@ -291,7 +291,7 @@ describe('exif node', function() {
|
|||||||
it('should report if unsure about location', function(done) {
|
it('should report if unsure about location', function(done) {
|
||||||
var exif = require('exif');
|
var exif = require('exif');
|
||||||
var ExifImage = exif.ExifImage;
|
var ExifImage = exif.ExifImage;
|
||||||
var data = new Buffer("hello");
|
var data = new Buffer.from("hello");
|
||||||
var eD;
|
var eD;
|
||||||
var flow = [{id:"exifNode1", type:"exif", wires:[["helperNode1"]]},
|
var flow = [{id:"exifNode1", type:"exif", wires:[["helperNode1"]]},
|
||||||
{id:"helperNode1", type:"helper"}];
|
{id:"helperNode1", type:"helper"}];
|
||||||
|
Loading…
Reference in New Issue
Block a user