-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsqlite.js
308 lines (278 loc) · 11.4 KB
/
sqlite.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
module.exports = function(RED) {
"use strict";
var Database = function(name, config, node)
{
var reconnect = RED.settings.sqliteReconnectTime || 20000;
var sqlite3 = require('sqlite3');
this.dbname = name || config.db;
this.mod = config.mode;
if (config.mode === "RWC") { this.mode = sqlite3.OPEN_READWRITE | sqlite3.OPEN_CREATE; }
if (config.mode === "RW") { this.mode = sqlite3.OPEN_READWRITE; }
if (config.mode === "RO") { this.mode = sqlite3.OPEN_READONLY; }
var self = this;
this.doConnect = function(callback) {
self.db = self.db || new sqlite3.Database(self.dbname,self.mode);
self.db.on('open', function() {
if (node.tick) { clearTimeout(node.tick); }
node.log("opened "+self.dbname+" ok");
callback(null);
});
self.db.on('error', function(err) {
node.error("failed to open "+self.dbname, err);
node.tick = setTimeout(function() { self.doConnect(); }, reconnect);
callback(err);
});
}
this.queue = [];
this.busy = false;
this.doQuery = function(query, params, callback, batch = false)
{
this.queue.push({query: query, params: params, callback: callback, batch: batch});
this.processQueue();
};
this.process = function(q) {
if (q === undefined)
{
this.busy = false;
return;
}
var self = this;
if (q.batch)
{
self.db.exec(q.query, function(err) {
if (err) {
q.callback(err, null, self.queue.length);
}
else {
q.callback(null, null, self.queue.length);
}
q = self.queue.shift();
self.process(q);
})
}
else
{
//node.log("Doing query " + q.query);
self.db.all(q.query, q.params, function(err, row) {
if (err) {
q.callback(err, null, self.queue.length)
}
else {
q.callback(null, row, self.queue.length)
}
q = self.queue.shift();
self.process(q);
});
}
};
this.processQueue = function() {
if (this.busy) {
return;
}
this.busy = true;
if (this.queue.length === 0)
{
this.busy = false;
return;
}
var q = this.queue.shift();
this.process(q);
};
this.loadExtension = function(extension, callback) {
self.db.loadExtension(extension, callback);
};
}
function SqliteNodeDB(config) {
RED.nodes.createNode(this,config);
var node = this;
node.databases = {};
node.on('close', function (done) {
if (node.tick) { clearTimeout(node.tick); }
for(let key in node.databases)
{
if (node.databases[key].db)
node.databases[key].db.close();
}
done();
});
node.get = function(name, callback = function() {})
{
if (this.databases[name] === undefined || this.databases[name] === null)
{
this.databases[name] = new Database(name, config, node);
var self = this;
this.databases[name].doConnect(function(err) {
if (err) {
callback(err, null)
delete self.databases[name];
} else {
callback(null, self.databases[name])
}
});
}
else
{
callback(null, this.databases[name]);
}
}
}
RED.nodes.registerType("sqliteQueuedDb",SqliteNodeDB);
function SqliteNodeIn(config) {
RED.nodes.createNode(this,config);
this.dbName = config.dbName||"msg.database";
this.mydb = config.mydb;
this.db = config.db;
this.sqlquery = config.sqlquery||"msg.topic";
this.sql = config.sql;
this.mydbConfig = RED.nodes.getNode(this.mydb);
var node = this;
node.status({});
node.showStatus = false;
this.database = null;
if (node.mydbConfig) {
node.status({fill:"green",shape:"dot",text:this.mydbConfig.mode});
if (node.dbName !== "msg.database") {
node.mydbConfig.get(node.db, function(err, db) {
node.log("opened database in advance");
node.database = db;
node.showStatus = true;
});
}
var bind = [];
var processQuery = function(msg, db) {
if (node.sqlquery == "msg.topic"){
if (typeof msg.topic === 'string') {
if (msg.topic.length > 0) {
bind = Array.isArray(msg.payload) ? msg.payload : [];
db.doQuery(msg.topic, bind, function(err, row, queueSize) {
if (node.showStatus) {
node.status({fill:queueSize == 0 ? "green" : "yellow" ,shape:"dot",text:"In queue: (" + queueSize +")"});
}
if (err) { node.error(err,msg); }
else {
msg.payload = row;
node.send(msg);
}
});
}
}
else {
node.error("msg.topic : the query is not defined as a string",msg);
node.status({fill:"red",shape:"dot",text:"msg.topic error"});
}
}
if (node.sqlquery == "batch") {
if (typeof msg.topic === 'string') {
if (msg.topic.length > 0) {
db.doQuery(msg.topic, null, function(err) {
if (err) { node.error(err,msg);}
else {
msg.payload = [];
node.send(msg);
}
}, true);
}
}
else {
node.error("msg.topic : the query is not defined as string", msg);
node.status({fill:"red", shape:"dot",text:"msg.topic error"});
}
}
if (node.sqlquery == "fixed"){
if (typeof node.sql === 'string') {
if (node.sql.length > 0) {
db.doQuery(node.sql, bind, function(err, row) {
if (err) { node.error(err,msg); }
else {
msg.payload = row;
node.send(msg);
}
});
}
}
else{
if (node.sql === null || node.sql == "") {
node.error("SQL statement config not set up",msg);
node.status({fill:"red",shape:"dot",text:"SQL config not set up"});
}
}
}
if (node.sqlquery == "prepared"){
if (typeof node.sql === 'string' && typeof msg.params !== "undefined" && typeof msg.params === "object") {
if (node.sql.length > 0) {
db.doQuery(node.sql, msg.params, function(err, row) {
if (err) { node.error(err,msg); }
else {
msg.payload = row;
node.send(msg);
}
});
}
}
else {
if (node.sql === null || node.sql == "") {
node.error("Prepared statement config not set up",msg);
node.status({fill:"red",shape:"dot",text:"Prepared statement not set up"});
}
if (typeof msg.params == "undefined") {
node.error("msg.params not passed");
node.status({fill:"red",shape:"dot",text:"msg.params not defined"});
}
else if (typeof msg.params != "object") {
node.error("msg.params not an object");
node.status({fill:"red",shape:"dot",text:"msg.params not an object"});
}
}
}
};
var doQuery = function(msg) {
if (node.dbName === "msg.database")
{
if (typeof msg.database === 'string')
{
var db = node.mydbConfig.get(msg.database, function(err, db) {
if (!err) {
if (msg.hasOwnProperty("extension")) {
db.loadExtension(msg.extension, function(err) {
if (err) { node.error(err,msg); }
else { processQuery(msg, db); }
});
}
else { processQuery(msg, db); }
}
});
}
else
{
node.error("msg.database : the database name is not defined as string", msg);
node.status({fill:"red", shape:"dot",text:"msg.database error"});
}
}
else
{
if (node.database !== null)
{
if (msg.hasOwnProperty("extension")) {
node.database.loadExtension(msg.extension, function(err) {
if (err) { node.error(err,msg); }
else { processQuery(msg, node.database); }
});
}
else { processQuery(msg, node.database); }
}
else
{
node.error("Sqlite database not configured correctly");
}
}
}
node.on("input", function(msg) {
doQuery(msg);
});
}
else {
node.error("Sqlite database not configured");
}
}
RED.nodes.registerType("queuedsqlite",SqliteNodeIn);
}