2014-07-04 17:12:00 +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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
module.exports = function(RED) {
|
|
|
|
"use strict";
|
|
|
|
var reconnect = RED.settings.sqliteReconnectTime || 20000;
|
|
|
|
var sqlite3 = require('sqlite3');
|
|
|
|
|
|
|
|
function SqliteNodeDB(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
|
|
|
|
this.dbname = n.db;
|
|
|
|
var node = this;
|
|
|
|
|
|
|
|
node.doConnect = function() {
|
|
|
|
node.db = new sqlite3.Database(node.dbname);
|
2015-04-16 11:58:34 +02:00
|
|
|
node.db.on('open', function() {
|
|
|
|
if (node.tick) { clearTimeout(node.tick); }
|
|
|
|
node.log("opened "+node.dbname+" ok");
|
2014-07-04 17:12:00 +02:00
|
|
|
});
|
|
|
|
node.db.on('error', function(err) {
|
2015-04-16 11:58:34 +02:00
|
|
|
node.error("failed to open "+node.dbname, err);
|
2015-03-18 09:47:09 +01:00
|
|
|
node.tick = setTimeout(function() { node.doConnect(); }, reconnect);
|
2014-07-04 17:12:00 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
node.on('close', function () {
|
|
|
|
if (node.tick) { clearTimeout(node.tick); }
|
|
|
|
if (node.db) { node.db.close(); }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("sqlitedb",SqliteNodeDB);
|
|
|
|
|
|
|
|
|
|
|
|
function SqliteNodeIn(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.mydb = n.mydb;
|
|
|
|
this.mydbConfig = RED.nodes.getNode(this.mydb);
|
|
|
|
|
|
|
|
if (this.mydbConfig) {
|
|
|
|
this.mydbConfig.doConnect();
|
|
|
|
var node = this;
|
|
|
|
node.on("input", function(msg) {
|
|
|
|
if (typeof msg.topic === 'string') {
|
|
|
|
//console.log("query:",msg.topic);
|
2015-01-26 11:57:13 +01:00
|
|
|
var bind = Array.isArray(msg.payload) ? msg.payload : [];
|
|
|
|
node.mydbConfig.db.all(msg.topic, bind, function(err, row) {
|
2015-03-18 09:47:09 +01:00
|
|
|
if (err) { node.error(err,msg); }
|
2014-07-04 17:12:00 +02:00
|
|
|
else {
|
|
|
|
msg.payload = row;
|
|
|
|
node.send(msg);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (typeof msg.topic !== 'string') {
|
2015-03-18 09:47:09 +01:00
|
|
|
node.error("msg.topic : the query is not defined as a string",msg);
|
2014-07-04 17:12:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.error("Sqlite database not configured");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("sqlite",SqliteNodeIn);
|
|
|
|
}
|