-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqlite_pool.js
474 lines (421 loc) · 14.6 KB
/
sqlite_pool.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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
/*jslint node: true */
"use strict";
var _ = require('lodash');
var conf = require("./conf.js");
var sqlite_migrations = require('./sqlite_migrations');
var EventEmitter = require('events').EventEmitter;
var bCordova = (typeof window === 'object' && window.cordova);
var sqlite3;
var path;
var cordovaSqlite;
if (bCordova){
// will error before deviceready
//cordovaSqlite = window.cordova.require('cordova-sqlite-plugin.SQLite');
}
else{
sqlite3 = require('sqlite3');//.verbose();
path = require('./desktop_app.js').getAppDataDir() + '/';
console.log("path="+path);
}
var bLoading = true;
module.exports = function(db_name, MAX_CONNECTIONS, bReadOnly){
function openDb(cb){
if (bCordova){
var db = new cordovaSqlite(db_name);
db.open(cb);
return db;
}
else
return new sqlite3.Database(path + db_name, bReadOnly ? sqlite3.OPEN_READONLY : sqlite3.OPEN_READWRITE, cb);
}
var eventEmitter = new EventEmitter();
var bReady = false;
var arrConnections = [];
var arrQueue = [];
function connect(handleConnection){
console.log("opening new db connection");
var db = openDb(function(err){
if (err)
throw Error(err);
console.log("opened db");
setTimeout(function(){ bLoading = false; }, 15000);
// if (!bCordova)
// db.serialize();
connection.query("PRAGMA foreign_keys = 1", function(){
connection.query("PRAGMA busy_timeout=30000", function(){
connection.query("PRAGMA journal_mode=WAL", function(){
connection.query("PRAGMA synchronous=FULL", function(){
connection.query("PRAGMA temp_store=MEMORY", function(){
if (!conf.bLight)
connection.query("PRAGMA cache_size=-200000", function () { });
sqlite_migrations.migrateDb(connection, function(){
handleConnection(connection);
});
});
});
});
});
});
});
var connection = {
db: db,
bInUse: true,
currentQuery: null,
start_ts: 0,
release: function(){
//console.log("released connection");
this.bInUse = false;
if (arrQueue.length === 0)
return;
var connectionHandler = arrQueue.shift();
this.bInUse = true;
connectionHandler(this);
},
query: function(){
if (!this.bInUse)
throw Error("this connection was returned to the pool");
var last_arg = arguments[arguments.length - 1];
var bHasCallback = (typeof last_arg === 'function');
if (!bHasCallback) // no callback
last_arg = function(){};
var sql = arguments[0];
//console.log("======= query: "+sql);
var bSelect = !!sql.match(/^\s*SELECT/i);
var count_arguments_without_callback = bHasCallback ? (arguments.length-1) : arguments.length;
var new_args = [];
var self = this;
for (var i=0; i<count_arguments_without_callback; i++) // except the final callback
new_args.push(arguments[i]);
if (count_arguments_without_callback === 1) // no params
new_args.push([]);
if (!bHasCallback)
return new Promise(function(resolve){
new_args.push(resolve);
self.query.apply(self, new_args);
});
expandArrayPlaceholders(new_args);
// add callback with error handling
new_args.push(function(err, result){
//console.log("query done: "+sql);
if (err){
console.error("\nfailed query:", new_args);
throw Error(err+"\n"+sql+"\n"+new_args[1].map(function(param){ if (param === null) return 'null'; if (param === undefined) return 'undefined'; return param;}).join(', '));
}
// note that sqlite3 sets nonzero this.changes even when rows were matched but nothing actually changed (new values are same as old)
// this.changes appears to be correct for INSERTs despite the documentation states the opposite
if (!bSelect && !bCordova)
result = {affectedRows: this.changes, insertId: this.lastID};
if (bSelect && bCordova) // note that on android, result.affectedRows is 1 even when inserted many rows
result = result.rows || [];
//console.log("changes="+this.changes+", affected="+result.affectedRows);
var consumed_time = Date.now() - start_ts;
// var profiler = require('./profiler.js');
// if (!bLoading)
// profiler.add_result(sql.substr(0, 40).replace(/\n/, '\\n'), consumed_time);
if (consumed_time > 25)
console.log("long query took "+consumed_time+"ms:\n"+new_args.filter(function(a, i){ return (i<new_args.length-1); }).join(", ")+"\nload avg: "+require('os').loadavg().join(', '));
self.start_ts = 0;
self.currentQuery = null;
last_arg(result);
});
var start_ts = Date.now();
this.start_ts = start_ts;
this.currentQuery = new_args;
if (bCordova)
self.db.query.apply(self.db, new_args);
else
bSelect ? self.db.all.apply(self.db, new_args) : self.db.run.apply(self.db, new_args);
},
cquery: function(){
var conf = require('./conf.js');
if (conf.bFaster)
return arguments[arguments.length - 1]();
this.query.apply(this, arguments);
},
printLongQuery: function () {
if (!this.start_ts || this.start_ts > Date.now() - 60 * 1000)
return;
console.log("in long query", this.currentQuery);
},
addQuery: addQuery,
escape: escape,
addTime: addTime,
getNow: getNow,
getUnixTimestamp: getUnixTimestamp,
getFromUnixTime: getFromUnixTime,
getRandom: getRandom,
getIgnore: getIgnore,
forceIndex: forceIndex,
dropTemporaryTable: dropTemporaryTable
};
setInterval(connection.printLongQuery.bind(connection), 60 * 1000);
arrConnections.push(connection);
}
// accumulate array of functions for async.series()
// it applies both to individual connection and to pool
function addQuery(arr) {
var self = this;
var query_args = [];
for (var i=1; i<arguments.length; i++) // except first, which is array
query_args.push(arguments[i]);
arr.push(function(callback){ // add callback for async.series() member tasks
if (typeof query_args[query_args.length-1] !== 'function')
query_args.push(function(){callback();}); // add callback
else{
var f = query_args[query_args.length-1];
query_args[query_args.length-1] = function(){ // add callback() call to the end of the function
f.apply(f, arguments);
callback();
}
}
self.query.apply(self, query_args);
});
}
function takeConnectionFromPool(handleConnection){
if (!handleConnection)
return new Promise(resolve => takeConnectionFromPool(resolve));
if (!bReady){
console.log("takeConnectionFromPool will wait for ready");
eventEmitter.once('ready', function(){
console.log("db is now ready");
takeConnectionFromPool(handleConnection);
});
return;
}
// first, try to find a free connection
for (var i=0; i<arrConnections.length; i++)
if (!arrConnections[i].bInUse){
//console.log("reusing previously opened connection");
arrConnections[i].bInUse = true;
return handleConnection(arrConnections[i]);
}
// second, try to open a new connection
if (arrConnections.length < MAX_CONNECTIONS)
return connect(handleConnection);
// third, queue it
//console.log("queuing");
arrQueue.push(handleConnection);
}
function onDbReady(){
if (bCordova && !cordovaSqlite)
cordovaSqlite = window.cordova.require('cordova-sqlite-plugin.SQLite');
bReady = true;
eventEmitter.emit('ready');
}
function getCountUsedConnections(){
var count = 0;
for (var i=0; i<arrConnections.length; i++)
if (arrConnections[i].bInUse)
count++;
return count;
}
// takes a connection from the pool, executes the single query on this connection, and immediately releases the connection
function query(){
//console.log(arguments[0]);
var self = this;
var args = arguments;
var last_arg = args[args.length - 1];
var bHasCallback = (typeof last_arg === 'function');
if (!bHasCallback) // no callback
last_arg = function(){};
var count_arguments_without_callback = bHasCallback ? (args.length-1) : args.length;
var new_args = [];
for (var i=0; i<count_arguments_without_callback; i++) // except callback
new_args.push(args[i]);
if (!bHasCallback)
return new Promise(function(resolve){
new_args.push(resolve);
self.query.apply(self, new_args);
});
takeConnectionFromPool(function(connection){
// add callback that releases the connection before calling the supplied callback
new_args.push(function(rows){
connection.release();
last_arg(rows);
});
connection.query.apply(connection, new_args);
});
}
function close(cb){
if (!cb)
cb = function(){};
bReady = false;
if (arrConnections.length === 0)
return cb();
arrConnections[0].db.close(cb);
arrConnections.shift();
}
// interval is string such as -8 SECOND
function addTime(interval){
return "datetime('now', '"+interval+"')";
}
function getNow(){
return "datetime('now')";
}
function getUnixTimestamp(date){
return "strftime('%s', "+date+")";
}
function getFromUnixTime(ts){
return "datetime("+ts+", 'unixepoch')";
}
function getRandom(){
return "RANDOM()";
}
function forceIndex(index){
return "INDEXED BY " + index;
}
function dropTemporaryTable(table) {
return "DROP TABLE IF EXISTS " + table;
}
// note that IGNORE behaves differently from mysql. In particular, if you insert and forget to specify a NOT NULL colum without DEFAULT value,
// sqlite will ignore while mysql will throw an error
function getIgnore(){
return "OR IGNORE";
}
function escape(str){
if (typeof str === 'string')
return str.indexOf('\0') === -1 ? "'"+str.replace(/'/g, "''")+"'" : "CAST (X'" + Buffer.from(str, 'utf8').toString('hex') + "' AS TEXT)";
else if (Array.isArray(str))
return str.map(function(member){ return escape(member); }).join(",");
else
throw Error("escape: unknown type "+(typeof str));
}
createDatabaseIfNecessary(db_name, onDbReady);
var pool = {};
pool.query = query;
pool.addQuery = addQuery;
pool.takeConnectionFromPool = takeConnectionFromPool;
pool.getCountUsedConnections = getCountUsedConnections;
pool.close = close;
pool.escape = escape;
pool.addTime = addTime;
pool.getNow = getNow;
pool.getUnixTimestamp = getUnixTimestamp;
pool.getFromUnixTime = getFromUnixTime;
pool.getRandom = getRandom;
pool.getIgnore = getIgnore;
pool.forceIndex = forceIndex;
pool.dropTemporaryTable = dropTemporaryTable;
return pool;
};
// expands IN(?) into IN(?,?,?) and flattens parameter array
// the function modifies first two memebers of the args array in place
// will misbehave if there are ? in SQL comments
function expandArrayPlaceholders(args){
var sql = args[0];
var params = args[1];
if (!Array.isArray(params) || params.length === 0)
return;
var assocLengthsOfArrayParams = {};
for (var i=0; i<params.length; i++)
if (Array.isArray(params[i])){
if (params[i].length === 0)
throw Error("empty array in query params");
assocLengthsOfArrayParams[i] = params[i].length;
}
if (Object.keys(assocLengthsOfArrayParams).length === 0)
return;
var arrParts = sql.split('?');
if (arrParts.length - 1 !== params.length)
throw Error("wrong parameter count");
var expanded_sql = "";
for (var i=0; i<arrParts.length; i++){
expanded_sql += arrParts[i];
if (i === arrParts.length-1) // last part
break;
var len = assocLengthsOfArrayParams[i];
if (len) // array
expanded_sql += _.fill(Array(len), "?").join(",");
else
expanded_sql += "?";
}
var flattened_params = _.flatten(params);
args[0] = expanded_sql;
args[1] = flattened_params;
}
function getParentDirPath(){
switch(window.cordova.platformId){
case 'ios':
return window.cordova.file.applicationStorageDirectory + '/Library';
case 'android':
default:
return window.cordova.file.applicationStorageDirectory;
}
}
function getDatabaseDirName(){
switch(window.cordova.platformId){
case 'ios':
return 'LocalDatabase';
case 'android':
default:
return 'databases';
}
}
function getDatabaseDirPath(){
return getParentDirPath() + '/' + getDatabaseDirName();
}
function createDatabaseIfNecessary(db_name, onDbReady){
console.log('createDatabaseIfNecessary '+db_name);
var initial_db_filename = 'initial.' + db_name;
// on mobile platforms, copy initial sqlite file from app root to data folder where we can open it for writing
if (bCordova){
console.log("will wait for deviceready");
document.addEventListener("deviceready", function onDeviceReady(){
console.log("deviceready handler");
console.log("data dir: "+window.cordova.file.dataDirectory);
console.log("app dir: "+window.cordova.file.applicationDirectory);
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function onFileSystemSuccess(fs){
window.resolveLocalFileSystemURL(getDatabaseDirPath() + '/' + db_name, function(fileEntry){
console.log("database file already exists");
onDbReady();
}, function onSqliteNotInited(err) { // file not found
console.log("will copy initial database file");
window.resolveLocalFileSystemURL(window.cordova.file.applicationDirectory + "/www/" + initial_db_filename, function(fileEntry) {
console.log("got initial db fileentry");
// get parent dir
window.resolveLocalFileSystemURL(getParentDirPath(), function(parentDirEntry) {
console.log("resolved parent dir");
parentDirEntry.getDirectory(getDatabaseDirName(), {create: true}, function(dbDirEntry){
console.log("resolved db dir");
fileEntry.copyTo(dbDirEntry, db_name, function(){
console.log("copied initial cordova database");
onDbReady();
}, function(err){
throw Error("failed to copyTo: "+JSON.stringify(err));
});
}, function(err){
throw Error("failed to getDirectory databases: "+JSON.stringify(err));
});
}, function(err){
throw Error("failed to resolveLocalFileSystemURL of parent dir: "+JSON.stringify(err));
});
}, function(err){
throw Error("failed to getFile: "+JSON.stringify(err));
});
});
}, function onFailure(err){
throw Error("failed to requestFileSystem: "+err);
});
}, false);
}
else{ // copy initial db to app folder
var fs = require('fs');
fs.stat(path + db_name, function(err, stats){
console.log("stat "+err);
if (!err) // already exists
return onDbReady();
console.log("will copy initial db");
var mode = parseInt('700', 8);
var parent_dir = require('path').dirname(path);
fs.mkdir(parent_dir, mode, function(err){
console.log('mkdir '+parent_dir+': '+err);
fs.mkdir(path, mode, function(err){
console.log('mkdir '+path+': '+err);
// fs.createReadStream(__dirname + '/initial-db/' + initial_db_filename).pipe(fs.createWriteStream(path + db_name)).on('finish', onDbReady);
fs.writeFileSync(path + db_name, fs.readFileSync(__dirname + '/initial-db/' + initial_db_filename));
onDbReady();
});
});
});
}
}