2013-09-05 16:02:48 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2013-09-05 16:02:48 +02:00
|
|
|
*
|
|
|
|
* 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-04 00:32:04 +02:00
|
|
|
module.exports = function(RED) {
|
2014-05-29 23:13:21 +02:00
|
|
|
"use strict";
|
2015-04-14 19:41:48 +02:00
|
|
|
var fs = require("fs-extra");
|
2015-07-10 15:59:23 +02:00
|
|
|
var os = require("os");
|
2017-06-22 19:41:49 +02:00
|
|
|
var path = require("path");
|
2014-05-29 23:13:21 +02:00
|
|
|
|
2014-05-04 00:32:04 +02:00
|
|
|
function FileNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
2015-03-19 22:25:43 +01:00
|
|
|
this.filename = n.filename;
|
2014-05-04 00:32:04 +02:00
|
|
|
this.appendNewline = n.appendNewline;
|
2014-11-08 16:34:37 +01:00
|
|
|
this.overwriteFile = n.overwriteFile.toString();
|
2015-07-10 15:59:23 +02:00
|
|
|
this.createDir = n.createDir || false;
|
2014-05-04 00:32:04 +02:00
|
|
|
var node = this;
|
2017-06-22 19:41:49 +02:00
|
|
|
node.wstream = null;
|
|
|
|
node.data = [];
|
2015-07-10 15:59:23 +02:00
|
|
|
|
2014-05-04 00:32:04 +02:00
|
|
|
this.on("input",function(msg) {
|
2015-07-10 15:59:23 +02:00
|
|
|
var filename = node.filename || msg.filename || "";
|
2017-06-29 12:40:47 +02:00
|
|
|
if ((!node.filename) && (!node.tout)) {
|
|
|
|
node.tout = setTimeout(function() {
|
|
|
|
node.status({fill:"grey",shape:"dot",text:filename});
|
|
|
|
clearTimeout(node.tout);
|
|
|
|
node.tout = null;
|
|
|
|
},333);
|
|
|
|
}
|
2017-06-22 19:41:49 +02:00
|
|
|
if (filename === "") { node.warn(RED._("file.errors.nofilename")); }
|
|
|
|
else if (node.overwriteFile === "delete") {
|
|
|
|
fs.unlink(filename, function (err) {
|
|
|
|
if (err) { node.error(RED._("file.errors.deletefail",{error:err.toString()}),msg); }
|
|
|
|
else if (RED.settings.verbose) { node.log(RED._("file.status.deletedfile",{file:filename})); }
|
|
|
|
});
|
2014-11-03 14:41:45 +01:00
|
|
|
}
|
2017-06-22 19:41:49 +02:00
|
|
|
else if (msg.hasOwnProperty("payload") && (typeof msg.payload !== "undefined")) {
|
|
|
|
var dir = path.dirname(filename);
|
|
|
|
if (node.createDir) {
|
2018-01-14 01:33:25 +01:00
|
|
|
try {
|
|
|
|
fs.ensureDirSync(dir);
|
|
|
|
} catch(err) {
|
|
|
|
node.error(RED._("file.errors.createfail",{error:err.toString()}),msg);
|
|
|
|
return;
|
|
|
|
}
|
2017-06-22 19:41:49 +02:00
|
|
|
}
|
|
|
|
|
2014-09-09 20:46:38 +02:00
|
|
|
var data = msg.payload;
|
2015-07-10 15:59:23 +02:00
|
|
|
if ((typeof data === "object") && (!Buffer.isBuffer(data))) {
|
2014-11-08 16:34:37 +01:00
|
|
|
data = JSON.stringify(data);
|
2014-09-09 20:46:38 +02:00
|
|
|
}
|
2014-09-26 22:19:16 +02:00
|
|
|
if (typeof data === "boolean") { data = data.toString(); }
|
2015-07-10 15:59:23 +02:00
|
|
|
if (typeof data === "number") { data = data.toString(); }
|
2018-01-14 01:33:25 +01:00
|
|
|
if ((node.appendNewline) && (!Buffer.isBuffer(data))) { data += os.EOL; }
|
2017-06-27 18:11:36 +02:00
|
|
|
node.data.push(Buffer.from(data));
|
2017-06-22 19:41:49 +02:00
|
|
|
|
|
|
|
while (node.data.length > 0) {
|
2018-01-14 01:33:25 +01:00
|
|
|
if (node.overwriteFile === "true") {
|
2017-06-28 18:36:04 +02:00
|
|
|
node.wstream = fs.createWriteStream(filename, { encoding:'binary', flags:'w', autoClose:true });
|
2017-06-28 14:28:01 +02:00
|
|
|
node.wstream.on("error", function(err) {
|
|
|
|
node.error(RED._("file.errors.writefail",{error:err.toString()}),msg);
|
|
|
|
});
|
2017-06-28 18:50:09 +02:00
|
|
|
node.wstream.end(node.data.shift());
|
2017-06-22 19:41:49 +02:00
|
|
|
}
|
|
|
|
else {
|
2017-07-22 23:28:45 +02:00
|
|
|
// Append mode
|
|
|
|
var recreateStream = !node.wstream || !node.filename;
|
|
|
|
if (node.wstream && node.wstreamIno) {
|
|
|
|
// There is already a stream open and we have the inode
|
|
|
|
// of the file. Check the file hasn't been deleted
|
|
|
|
// or deleted and recreated.
|
|
|
|
try {
|
|
|
|
var stat = fs.statSync(filename);
|
|
|
|
// File exists - check the inode matches
|
|
|
|
if (stat.ino !== node.wstreamIno) {
|
|
|
|
// The file has been recreated. Close the current
|
|
|
|
// stream and recreate it
|
|
|
|
recreateStream = true;
|
|
|
|
node.wstream.end();
|
|
|
|
delete node.wstream;
|
|
|
|
delete node.wstreamIno;
|
|
|
|
}
|
|
|
|
} catch(err) {
|
|
|
|
// File does not exist
|
|
|
|
recreateStream = true;
|
|
|
|
node.wstream.end();
|
|
|
|
delete node.wstream;
|
|
|
|
delete node.wstreamIno;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (recreateStream) {
|
2017-06-28 18:36:04 +02:00
|
|
|
node.wstream = fs.createWriteStream(filename, { encoding:'binary', flags:'a', autoClose:true });
|
2017-07-22 23:28:45 +02:00
|
|
|
node.wstream.on("open", function(fd) {
|
|
|
|
try {
|
|
|
|
var stat = fs.statSync(filename);
|
|
|
|
node.wstreamIno = stat.ino;
|
|
|
|
} catch(err) {
|
|
|
|
}
|
|
|
|
});
|
2017-06-22 19:41:49 +02:00
|
|
|
node.wstream.on("error", function(err) {
|
|
|
|
node.error(RED._("file.errors.appendfail",{error:err.toString()}),msg);
|
|
|
|
});
|
2015-07-10 15:59:23 +02:00
|
|
|
}
|
2017-07-22 23:28:45 +02:00
|
|
|
if (node.filename) {
|
|
|
|
// Static filename - write and reuse the stream next time
|
|
|
|
node.wstream.write(node.data.shift());
|
|
|
|
} else {
|
|
|
|
// Dynamic filename - write and close the stream
|
|
|
|
node.wstream.end(node.data.shift());
|
|
|
|
delete node.wstream;
|
|
|
|
delete node.wstreamIno;
|
|
|
|
}
|
2017-06-22 19:41:49 +02:00
|
|
|
}
|
2014-02-20 22:00:54 +01:00
|
|
|
}
|
2014-02-05 11:25:48 +01:00
|
|
|
}
|
2014-05-04 00:32:04 +02:00
|
|
|
});
|
2016-10-10 12:08:06 +02:00
|
|
|
this.on('close', function() {
|
2017-06-28 18:36:04 +02:00
|
|
|
if (node.wstream) { node.wstream.end(); }
|
2017-06-29 12:40:47 +02:00
|
|
|
if (node.tout) { clearTimeout(node.tout); }
|
2016-10-10 12:08:06 +02:00
|
|
|
node.status({});
|
|
|
|
});
|
2014-04-30 23:48:30 +02:00
|
|
|
}
|
2014-05-04 00:32:04 +02:00
|
|
|
RED.nodes.registerType("file",FileNode);
|
2014-05-29 23:13:21 +02:00
|
|
|
|
2014-11-08 16:34:37 +01:00
|
|
|
|
2014-05-04 00:32:04 +02:00
|
|
|
function FileInNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
2015-03-19 22:25:43 +01:00
|
|
|
this.filename = n.filename;
|
2014-05-04 00:32:04 +02:00
|
|
|
this.format = n.format;
|
2017-06-22 19:41:49 +02:00
|
|
|
this.chunk = false;
|
2017-07-04 21:12:53 +02:00
|
|
|
if (n.sendError === undefined) {
|
|
|
|
this.sendError = true;
|
|
|
|
} else {
|
|
|
|
this.sendError = n.sendError;
|
|
|
|
}
|
2017-06-22 19:41:49 +02:00
|
|
|
if (this.format === "lines") { this.chunk = true; }
|
|
|
|
if (this.format === "stream") { this.chunk = true; }
|
2014-05-04 00:32:04 +02:00
|
|
|
var node = this;
|
2017-06-22 19:41:49 +02:00
|
|
|
|
2014-05-04 00:32:04 +02:00
|
|
|
this.on("input",function(msg) {
|
2015-07-10 15:59:23 +02:00
|
|
|
var filename = node.filename || msg.filename || "";
|
|
|
|
if (!node.filename) {
|
2015-03-19 22:25:43 +01:00
|
|
|
node.status({fill:"grey",shape:"dot",text:filename});
|
2014-11-03 14:41:45 +01:00
|
|
|
}
|
2014-06-30 21:43:31 +02:00
|
|
|
if (filename === "") {
|
2015-05-10 22:47:22 +02:00
|
|
|
node.warn(RED._("file.errors.nofilename"));
|
2017-06-22 19:41:49 +02:00
|
|
|
}
|
|
|
|
else {
|
2014-10-09 12:19:14 +02:00
|
|
|
msg.filename = filename;
|
2017-06-27 18:11:36 +02:00
|
|
|
var lines = Buffer.from([]);
|
2017-06-22 19:41:49 +02:00
|
|
|
var spare = "";
|
|
|
|
var count = 0;
|
|
|
|
var type = "buffer";
|
|
|
|
var ch = "";
|
|
|
|
if (node.format === "lines") {
|
|
|
|
ch = "\n";
|
|
|
|
type = "string";
|
|
|
|
}
|
|
|
|
var hwm;
|
|
|
|
var getout = false;
|
|
|
|
|
|
|
|
var rs = fs.createReadStream(filename)
|
|
|
|
.on('readable', function () {
|
|
|
|
var chunk;
|
|
|
|
var hwm = rs._readableState.highWaterMark;
|
|
|
|
while (null !== (chunk = rs.read())) {
|
|
|
|
if (node.chunk === true) {
|
|
|
|
getout = true;
|
|
|
|
if (node.format === "lines") {
|
|
|
|
spare += chunk.toString();
|
|
|
|
var bits = spare.split("\n");
|
|
|
|
for (var i=0; i < bits.length - 1; i++) {
|
|
|
|
var m = {
|
|
|
|
payload:bits[i],
|
|
|
|
topic:msg.topic,
|
|
|
|
filename:msg.filename,
|
|
|
|
parts:{index:count, ch:ch, type:type, id:msg._msgid}
|
|
|
|
}
|
|
|
|
count += 1;
|
|
|
|
node.send(m);
|
|
|
|
}
|
|
|
|
spare = bits[i];
|
|
|
|
}
|
|
|
|
if (node.format === "stream") {
|
|
|
|
var m = {
|
|
|
|
payload:chunk,
|
|
|
|
topic:msg.topic,
|
|
|
|
filename:msg.filename,
|
|
|
|
parts:{index:count, ch:ch, type:type, id:msg._msgid}
|
|
|
|
}
|
|
|
|
count += 1;
|
|
|
|
if (chunk.length < hwm) { // last chunk is smaller that high water mark = eof
|
|
|
|
getout = false;
|
|
|
|
m.parts.count = count;
|
|
|
|
}
|
|
|
|
node.send(m);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lines = Buffer.concat([lines,chunk]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.on('error', function(err) {
|
2017-07-04 20:55:09 +02:00
|
|
|
node.error(err, msg);
|
2017-07-04 21:12:53 +02:00
|
|
|
if (node.sendError) {
|
|
|
|
var sendMessage = RED.util.cloneMessage(msg);
|
|
|
|
delete sendMessage.payload;
|
|
|
|
sendMessage.error = err;
|
|
|
|
node.send(sendMessage);
|
|
|
|
}
|
2017-06-22 19:41:49 +02:00
|
|
|
})
|
|
|
|
.on('end', function() {
|
|
|
|
if (node.chunk === false) {
|
|
|
|
if (node.format === "utf8") { msg.payload = lines.toString(); }
|
|
|
|
else { msg.payload = lines; }
|
|
|
|
node.send(msg);
|
|
|
|
}
|
2018-01-28 13:27:15 +01:00
|
|
|
else if (node.format === "lines") {
|
|
|
|
var m = { payload: spare,
|
|
|
|
parts: {
|
|
|
|
index: count,
|
|
|
|
count: count+1,
|
|
|
|
ch: ch,
|
|
|
|
type: type,
|
|
|
|
id: msg._msgid
|
|
|
|
}
|
|
|
|
};
|
|
|
|
node.send(m);
|
|
|
|
}
|
2017-06-22 19:41:49 +02:00
|
|
|
else if (getout) { // last chunk same size as high water mark - have to send empty extra packet.
|
|
|
|
var m = { parts:{index:count, count:count, ch:ch, type:type, id:msg._msgid} };
|
|
|
|
node.send(m);
|
|
|
|
}
|
|
|
|
});
|
2014-05-04 00:32:04 +02:00
|
|
|
}
|
|
|
|
});
|
2016-10-10 12:08:06 +02:00
|
|
|
this.on('close', function() {
|
|
|
|
node.status({});
|
|
|
|
});
|
2014-05-04 00:32:04 +02:00
|
|
|
}
|
|
|
|
RED.nodes.registerType("file in",FileInNode);
|
2014-11-08 16:34:37 +01:00
|
|
|
}
|