-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdb.js
More file actions
760 lines (717 loc) · 32.8 KB
/
db.js
File metadata and controls
760 lines (717 loc) · 32.8 KB
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
const url = require('url');
const fs = require('fs');
const Lite = require('sqlite'); //sqlite is wrapper for sqlite3
const Lite3 = require('sqlite3');
const { breakOn, zipObject, uriArgs, parseBool, isPending } = require('./toolbox.js');
trace = x => { console.log(x); return x; }
// flatToTree makes keys containing dots to object
// {a: 1, "b.c": 2} ==> { a:1, b: { c: 2 } }
flatToTree = (o, subOn = '.') => {
let root = {}; // this is object where we copy values
let filler = (cur, ks, level) => // recursive function to create subjects and fill results
level === ks.length - 1 // check if last step, no subobjects
? cur[ks[level]] = o[ks.join(subOn)] // fill with value, take it from main object
: filler( cur[ks[level]] = cur[ks[level]] || {}, ks, level + 1); // create object if needed and continue with filling
Object.keys(o).forEach(key => filler(root,key.split(subOn), 0));
return root;
}
// so, these functions with Object.mapDeep helps will make strings to integer where only numbers are present
// for example poolMax=1 in URL is treated as string but drivers are waiting integer
// it's a bit hack but it's better than check all arguments manually
parseIntSoft = str => typeof str === 'string' && str.match(/-?[0-9]/) ? parseInt(str, 10) : str;
mapInt = o => Object.mapDeep(o, parseIntSoft);
sslFiles = c => {
if (c.ssl && typeof c.ssl === 'object') {
return Object.assign({}, c, { ssl: Object.assign({} // return new object, don't change old (just nice)
, !c.ssl.ca ? {} : { ca : fs.readFileSync(c.ssl.ca ) } // only if there is this key, add this to ssl object
, !c.ssl.key ? {} : { key : fs.readFileSync(c.ssl.key ) }
, !c.ssl.cert ? {} : { cert: fs.readFileSync(c.ssl.cert) }
)})
} else return c;
}
function urlToConnection(dbUrl) {
let u = url.parse(dbUrl);
if (['postgresql:','postgres:','pg:','psql:'].includes(u.protocol)) {
return Object.assign({},
sslFiles(mapInt(flatToTree(uriArgs(u.query)))),
{ type: 'pg'
, port: parseInt(u.port || 5432)
, host: u.hostname
, database: u.pathname ? u.pathname.split('/')[1] : ''
},
!u.auth ? {} : (([u,p]) => ({user: u, password: p}))(breakOn(u.auth, ':')));
} else
if (['mysql:','my:'].includes(u.protocol)) {
return Object.assign({},
sslFiles(mapInt(flatToTree(uriArgs(u.query)))),
{ type: 'my'
, port: parseInt(u.port || 3306)
, host: u.hostname
, database: u.pathname ? u.pathname.split('/')[1] : ''
},
!u.auth ? {} : (([u,p]) => ({user: u, password: p}))(breakOn(u.auth, ':')));
} else
if (['file:','sqlite:','sqlite3:'].includes(u.protocol)) {
return Object.assign({}, mapInt(flatToTree(uriArgs(u.query))), { type: 'lt' , filename: u.pathname });
} else
if (['db2:'].includes(u.protocol)) {
let c = Object.assign({},
mapInt(flatToTree(uriArgs(u.query))),
{ type: 'db2'
, port: parseInt(u.port || 6000)
, host: u.hostname
, database: u.pathname ? u.pathname.split('/')[1] : ''
},
!u.auth ? {} : (([u,p]) => ({user: u, password: p}))(breakOn(u.auth, ':')));
c.connectString = `DATABASE=${c.database};HOSTNAME=${c.host};UID=${c.user};PWD=${c.password};PORT=${c.port};PROTOCOL=TCPIP`;
return c;
} else
if (['oracle:'].includes(u.protocol)) {
let c = Object.assign({},
mapInt(flatToTree(uriArgs(u.query))),
{ type: 'or'
, port: parseInt(u.port || 1521)
, host: u.hostname
, database: u.pathname ? u.pathname.split('/')[1] : ''
},
!u.auth ? {} : (([u,p]) => ({user: u, password: p}))(breakOn(u.auth, ':')));
c.connectString = c.host + ':' + c.port + '/' + c.database;
return c;
}
else throw "Unknown protocol: " + u.protocol;
return u;
}
async function DbConn(props) {
let c;
switch (props.type.toLowerCase()) {
case 'psql':
case 'postgresql':
case 'postgres':
case 'pg': c = await DbConnPg(props); break;
case 'maria':
case 'mariadb':
case 'mysql':
case 'my': c = await DbConnMy(props); break;
case 'file':
case 'sqlite':
case 'lt': c = await DbConnLt(props); break;
case 'or': c = await DbConnOr(props); break;
case 'db2': c = await DbConnDb2(props); break;
default: throw new Error("Connection props must have `type` property with value 'sqlite', 'pg', 'mysql' or 'or' (for Oracle)");
}
return c;
}
async function DbConnPg(props) {
const pg = require('pg');
pg.types.setTypeParser(1082, x => x); // date
pg.types.setTypeParser(1114, x => x); // timestamp without time zone
pg.types.setTypeParser(1184, x => x); // timestamp with time zone
// numbers must be handled as numbers, not strings
pg.types.setTypeParser(20, parseInt);
pg.types.setTypeParser(21, parseInt);
pg.types.setTypeParser(23, parseInt);
pg.types.setTypeParser(26, parseInt);
pg.types.setTypeParser(701, parseFloat);
pg.types.setTypeParser(700, parseFloat);
const adm = { value: new pg.Pool(Object.assign({}, props, { max: 1 })) };
return Object.create(DbConnPg.Proto, { pg: { value: pg }, props: { value: props }, pool: { value: new pg.Pool(props) }, _schema: { value: null, enumerable: true, writable: true }, _admin: adm });
}
DbConnPg.Proto = {
// end: async function () { return null; /* await this.pool.end() */ },
query: async function (q, args = [], cancelCall) {
if (cancelCall && !isPending(cancelCall)) { // just to save some resource if there is canceled query
throw { cancelCall: true };
}
const client = await this.pool.connect();
const cancelFn = async () => {
await this._admin.query("SELECT pg_cancel_backend(" + client.processID + ")");
// I really don't know why but without special query the previous query doesn't disappear. So, easiest possible query.
await client.query("SELECT 1");
}
try {
return this.runQ(q, args, client, cancelCall, cancelFn);
}
catch (e) { throw e; }
finally { client.release(); }
},
runQ: async function (q, args = [], client, cancelCall, cancelQueryFn) {
let R;
try {
R = await Promise.race([client.query(q, args), cancelCall]);
}
catch (e) {
if ((e || {}).cancelCall) {
// client.cancel();
await cancelQueryFn();
throw e;
}
throw e;
}
let r = R.rows;
let o = R.fields.map(f => f.name);
let t = R.fields.map(f => {
if (!DbConnPg.types[f.dataTypeID]) {
console.warn('Warning: no DbConnPg.type ' + f.dataTypeID);
return ['Unsupported (' + f.dataTypeID + ')', 'str'];
}
return DbConnPg.types[f.dataTypeID];
})
return { data: r, cols: o, types: t.map(([_,t]) => t), rawTypes: t.map(([t]) => t) };
},
transaction: async function (cancelCall) {
if (cancelCall && !isPending(cancelCall)) { // just to save some resource if there is canceled query
throw { cancelCall: true };
}
const client = await this.pool.connect();
let q = this.query.bind(this);
await client.query('BEGIN');
const cancelFn = async () => {
await this._admin.query("SELECT pg_cancel_backend(" + client.processID + ")");
// I really don't know why but without special query the previous query doesn't disappear. So, easiest possible query.
try { await client.query("ROLLBACK"); } catch (_) {}
try { await client.query("SELECT 1"); } catch (_) {}
}
return {
commit : async () => { await client.query('COMMIT' ); client.release(); },
rollback: async () => { await client.query('ROLLBACK'); try { client.release(); } catch (_) {} },
query: (sql,args = []) => this.runQ(sql, args, client, cancelCall, cancelFn),
exec: async (sql, args = []) => {
try {
let { rowCount } = await Promise.race( [ client.query(sql, args), cancelCall ] );
return rowCount;
} catch (SQLE) {
if ( (SQLE||{}).cancelCall ) {
await cancelFn();
client.release();
throw SQLE;
} else {
await client.query('ROLLBACK');
client.release();
throw SQLE;
}
}
}
}
},
/*
exec: async function (sql) {
const client = await this.pool.connect();
try {
return await client.query(sql);
} finally {
client.release();
}
},
*/
schema: async function () {
if (!this._schema) await this.learn();
return Promise.resolve(this._schema);
},
learn: async function () {
/*
let [tables, fields, constr] = await Promise.all(
[ this.query(DbConnPg.queryTables)
, this.query(DbConnPg.queryFields)
, this.query(DbConnPg.queryConstraints)]);
*/
let client = await this.pool.connect();
const [tables, fields] = await Promise.all([ client.query(DbConnPg.queryTables) , client.query(DbConnPg.queryFields) ]);
// let constr = this.query(DbConnPg.queryConstraints)]);
let T = DbConnPg.types;
let tmap = new Map(); Object.keys(T).forEach(k => tmap.set(T[k][0], T[k][1]));
let b = { read: false, write: false, hidden: true, prot: false };
this._schema =
tables.rows.map( t => Object.assign({}, b, { _: 'table', name: t.name, comment: t.comment })).concat (
fields.rows.map( f => Object.assign({}, b, { _: 'field', name: f.attname, table: f.relname, comment: f.comment, autonum: false, type: f.type, genType: tmap.get(f.type) || 'str', notnull: f.attnotnull })))
// constr.rows.map( r => { _: '
client.release();
}
};
// FIXME: real types are not checked and written quite randomly
DbConnPg.types = {
20 : [ 'int8' , 'int' ]
, 21 : [ 'int2' , 'int' ]
, 23 : [ 'int4' , 'int' ]
, 26 : [ 'oid' , 'int' ]
, 700 : [ 'float4', 'double']
, 701 : [ 'float8', 'double']
, 16 : [ 'bit' , 'bool' ]
, 1082 : [ 'date' , 'date' ]
, 1083 : [ 'time' , 'time' ]
, 1266 : [ 'time with time zone', 'time' ]
, 1114 : [ 'timestamp without time zone', 'datetime' ]
, 1184 : [ 'timestamp with time zone', 'datetime']
, 20 : [ 'bigint' , 'int' ]
, 21 : [ 'smallint', 'int' ]
, 23 : [ 'integer' , 'int' ] // TODO what's the difference between 23 and 26
, 26 : [ 'oid' , 'int' ] // OID
, 1700 : [ 'numeric' , 'float'] // TODO: should this be text
, 700 : [ 'real' , 'float' ] // TODO is this really 'real'? check
, 701 : [ 'double precision', 'float' ]
, 16 : [ 'boolean', 'bool' ]
, 25 : [ 'text', 'str']
, 1043 : [ 'varchar', 'str']
, 1007 : [ 'json' , 'str' ]
, 114 : [ 'json', 'str']
, 3802 : [ 'jsonb' , 'str' ]
, 2278 : [ 'void', 'str']
, 1009 : [ '_regproc', 'str']
, 705 : [ 'text', 'str'] /// TODO NOT SURE
, 1042 : [ 'bpchar', 'str']
, 17 : [ 'bytea', 'str']
, 1186 : [ 'interval', 'duration']
/*
, 1000 : parseArray);
, 1007 : parseArray);
, 1016 : parseArray);
, 1008 : parseArray);
, 1009 : parseArray);
*/
/*
, 600 : [ parsePoint); // point
, 651 : [ parseStringArray); // cidr[]
, 718 : [ parseCircle); // circle
, 1000 : [ parseBoolArray);
, 1001 : [ parseByteAArray);
, 1005 : [ parseIntegerArray); // _int2
, 1007 : [ parseIntegerArray); // _int4
, 1028 : [ parseIntegerArray); // oid[]
, 1016 : [ parseBigIntegerArray); // _int8
, 1017 : [ parsePointArray); // point[]
, 1021 : [ parseFloatArray); // _float4
, 1022 : [ parseFloatArray); // _float8
, 1231 : [ parseFloatArray); // _numeric
, 1014 : [ parseStringArray); //char
, 1015 : [ parseStringArray); //varchar
, 1008 : [ parseStringArray);
, 1009 : [ parseStringArray);
, 1040 : [ parseStringArray); // macaddr[]
, 1041 : [ parseStringArray); // inet[]
, 1115 : [ parseDateArray); // timestamp without time zone[]
, 1182 : [ parseDateArray); // _date
, 1185 : [ parseDateArray); // timestamp with time zone[]
, 17 : [ parseByteA);
, 114 : [ JSON.parse.bind(JSON)); // json
, 3802 : [ JSON.parse.bind(JSON)); // jsonb
, 199 : [ parseJsonArray); // json[]
, 3807 : [ parseJsonArray); // jsonb[]
, 3907 : [ parseStringArray); // numrange[]
, 2951 : [ parseStringArray); // uuid[]
, 791 : [ parseStringArray); // money[]
, 1183 : [ parseStringArray); // time[]
, 1270 : [ parseStringArray); // timetz[]
*/
}
DbConnPg.queryTables =
" SELECT c.relname AS name, COALESCE(pg_catalog.obj_description(c.oid, 'pg_class'), '') AS comment" +
" FROM pg_catalog.pg_class c" +
" LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace" +
" WHERE c.relkind IN ('r','v','m')" +
" AND n.nspname <> 'pg_catalog'" +
" AND n.nspname <> 'information_schema'" +
" AND n.nspname !~ '^pg_toast'" +
" AND pg_catalog.pg_table_is_visible(c.oid)" +
" ORDER BY c.relname";
DbConnPg.queryFields =
" SELECT c.relname, a.attname, pg_catalog.format_type(a.atttypid, a.atttypmod) AS type, coalesce(pg_catalog.col_description(a.attrelid, a.attnum),'') AS comment, a.attnotnull" +
" FROM pg_catalog.pg_attribute a" +
" JOIN ( " +
" SELECT c.oid, c.relname" +
" FROM pg_catalog.pg_class c LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace" +
" WHERE c.relkind IN ('r','v','m') AND n.nspname <> 'pg_catalog' AND n.nspname <> 'information_schema' AND n.nspname !~ '^pg_toast'" +
" AND pg_catalog.pg_table_is_visible(c.oid)" +
" ) AS c ON c.oid = a.attrelid" +
" WHERE a.attnum > 0 AND NOT a.attisdropped" +
" ORDER BY c.relname, a.attnum";
DbConnPg.queryConstraints =
" SELECT relname, pg_catalog.pg_get_constraintdef(c.oid) as key" +
" FROM pg_catalog.pg_constraint c" +
" JOIN pg_catalog.pg_namespace ns ON ns.oid = c.connamespace" +
" JOIN pg_catalog.pg_class cl ON cl.oid = c.conrelid" +
" WHERE cl.relkind IN ('r','v','m')" +
" AND ns.nspname <> 'pg_catalog'" +
" AND ns.nspname <> 'information_schema'" +
" AND ns.nspname !~ '^pg_toast'" + +
" AND pg_catalog.pg_table_is_visible(cl.oid)";
async function DbConnMy(props) {
const my = require('mysql');
return Object.create(DbConnMy.Proto, { props: { value: props }, pool: { value: my.createPool(Object.assign({dateStrings: true}, props)) }, _schema: { value: null, writable: true } });
}
DbConnMy.Proto = {
// end: async function () { await this.client.end() },
query: function (q, args = []) {
return new Promise((return_, onErr) => this.pool.query(q, args, (err, res, fields) => {
if (err) { onErr( err); return; }
let t = fields.map(f => DbConnMy.types[f.type] || ['str','str']);
return_({ data: res, cols: fields.map(f => f.name), types: t.map(t => t[1]), rawTypes: t.map(t => t[0]) })
}
));
},
transaction: function () { return new Promise((return_, throw_) => {
this.pool.getConnection((err, client) => {
if (err) { throw_(err); return; }
client.query('BEGIN', err => {
if (err) { throw_(err); return; }
return_({
commit : () => { client.query('COMMIT' , () => client.release() ) }
, rollback: () => { client.query('ROLLBACK', () => { try { client.release(); } catch (_) {} } ) }
, query: (sql, args = []) => {
return new Promise(ok => client.query(sql, args, (err,res,fld) => ok({ data: res, cols: fld.map(f => f.Field), types: fields.map(f => f.Type), rawTypes: fields.map(f => f.Type) })));
}
, exec : (sql, args = []) => {
let ok, nok, P;
P = new Promise((ok_,nok_) => { ok = ok_, nok = nok_; });
client.query(sql, args, (err,res,fld) => {
if (err) nok(err); // TODO rollback, close
else ok(res.affectedRows)
});
return P;
}
});
})
})
})
},
schema: async function () {
if (!this._schema) await this.learn();
return Promise.resolve(this._schema);
},
learn: async function () {
let R = this._schema = [];
let Q = q => new Promise((ret, problem) => this.pool.query(q, (e, r, f) => { if (e) problem(e); else ret([r,f]) }))
let [tables,tf] = await Q("SHOW TABLES");
tables = tables.map(t => t[tf[0].name]);
for (let i = 0; i < tables.length; i++) {
let [cols] = await Q('SHOW FULL COLUMNS FROM ' + tables[i]);
R.push({_: 'table', name: tables[i], comment: null }) // TODO: comment
cols.forEach(c =>
R.push({_: 'field', name: c.Field, table: tables[i], comment: c.Comment, autonum: c.Extra.indexOf('auto_increment') > -1, type: c.Type, genType: 'str'}) // FIXME genType
)
}
}
}
// https://dev.mysql.com/doc/internals/en/com-query-response.html#column-type
DbConnMy.types = {
[0x00]: [ 'decimal' , 'float' ] // MYSQL_TYPE_DECIMAL 0x00 Implemented by ProtocolBinary::MYSQL_TYPE_DECIMAL
, [0x01]: [ 'tiny' , 'int'] // MYSQL_TYPE_TINY 0x01 Implemented by ProtocolBinary::MYSQL_TYPE_TINY
, [0x02]: [ 'short' , 'int'] // MYSQL_TYPE_SHORT 0x02 Implemented by ProtocolBinary::MYSQL_TYPE_SHORT
, [0x03]: [ 'long' , 'int'] // MYSQL_TYPE_LONG 0x03 Implemented by ProtocolBinary::MYSQL_TYPE_LONG
, [0x04]: [ 'float' , 'float'] // MYSQL_TYPE_FLOAT 0x04 Implemented by ProtocolBinary::MYSQL_TYPE_FLOAT
, [0x05]: [ 'double' , 'float'] // MYSQL_TYPE_DOUBLE 0x05 Implemented by ProtocolBinary::MYSQL_TYPE_DOUBLE
, [0x06]: [ 'null' , 'str'] // MYSQL_TYPE_NULL 0x06 Implemented by ProtocolBinary::MYSQL_TYPE_NULL FIXME
, [0x07]: [ 'timestamp' , 'datetime'] // MYSQL_TYPE_TIMESTAMP 0x07 Implemented by ProtocolBinary::MYSQL_TYPE_TIMESTAMP
, [0x08]: [ 'longlong' , 'int'] // MYSQL_TYPE_LONGLONG 0x08 Implemented by ProtocolBinary::MYSQL_TYPE_LONGLONG
, [0x09]: [ 'int24' , 'int'] // MYSQL_TYPE_INT24 0x09 Implemented by ProtocolBinary::MYSQL_TYPE_INT24
, [0x0a]: [ 'date' , 'date'] // MYSQL_TYPE_DATE 0x0a Implemented by ProtocolBinary::MYSQL_TYPE_DATE
, [0x0b]: [ 'time' , 'time'] // MYSQL_TYPE_TIME 0x0b Implemented by ProtocolBinary::MYSQL_TYPE_TIME
, [0x0c]: [ 'datetime' , 'datetime'] // MYSQL_TYPE_DATETIME 0x0c Implemented by ProtocolBinary::MYSQL_TYPE_DATETIME
, [0x0d]: [ 'year' , 'int'] // MYSQL_TYPE_YEAR 0x0d Implemented by ProtocolBinary::MYSQL_TYPE_YEAR
, [0x0e]: [ 'date' , 'date'] // MYSQL_TYPE_NEWDATE [a] 0x0e see Protocol::MYSQL_TYPE_DATE
, [0x0f]: [ 'varchar' , 'str'] // MYSQL_TYPE_VARCHAR 0x0f Implemented by ProtocolBinary::MYSQL_TYPE_VARCHAR
, [0x10]: [ 'bit' , 'str'] // MYSQL_TYPE_BIT 0x10 Implemented by ProtocolBinary::MYSQL_TYPE_BIT
, [0x11]: [ 'timestamp' , 'datetime'] // MYSQL_TYPE_TIMESTAMP2 [a] 0x11 see Protocol::MYSQL_TYPE_TIMESTAMP
, [0x12]: [ 'datetime' , 'datetime'] // MYSQL_TYPE_DATETIME2 [a] 0x12 see Protocol::MYSQL_TYPE_DATETIME
, [0x13]: [ 'time' , 'time'] // MYSQL_TYPE_TIME2 [a] 0x13 see Protocol::MYSQL_TYPE_TIME
, [0xf6]: [ 'decimal' , 'float'] // MYSQL_TYPE_NEWDECIMAL 0xf6 Implemented by ProtocolBinary::MYSQL_TYPE_NEWDECIMAL
, [0xf7]: [ 'enum' , 'str'] // MYSQL_TYPE_ENUM 0xf7 Implemented by ProtocolBinary::MYSQL_TYPE_ENUM
, [0xf8]: [ 'set' , 'str'] // MYSQL_TYPE_SET 0xf8 Implemented by ProtocolBinary::MYSQL_TYPE_SET
, [0xf9]: [ 'tinyblob' , 'str'] // MYSQL_TYPE_TINY_BLOB 0xf9 Implemented by ProtocolBinary::MYSQL_TYPE_TINY_BLOB
, [0xfa]: [ 'mediumblob', 'str'] // MYSQL_TYPE_MEDIUM_BLOB 0xfa Implemented by ProtocolBinary::MYSQL_TYPE_MEDIUM_BLOB
, [0xfb]: [ 'longblob' , 'str'] // MYSQL_TYPE_LONG_BLOB 0xfb Implemented by ProtocolBinary::MYSQL_TYPE_LONG_BLOB
, [0xfc]: [ 'blob' , 'str'] // MYSQL_TYPE_BLOB 0xfc Implemented by ProtocolBinary::MYSQL_TYPE_BLOB
, [0xfd]: [ 'var_string', 'str'] // MYSQL_TYPE_VAR_STRING 0xfd Implemented by ProtocolBinary::MYSQL_TYPE_VAR_STRING
, [0xfe]: [ 'string' , 'str'] // MYSQL_TYPE_STRING 0xfe Implemented by ProtocolBinary::MYSQL_TYPE_STRING
, [0xff]: [ 'geometry' , 'str'] // MYSQL_TYPE_GEOMETRY 0xff
}
async function DbConnLt(props) {
let conn = await Lite.open({ filename: props.filename || ':memory:', driver: Lite3.Database, mode: Lite3.OPEN_READWRITE });
let pragma, P = DbConnLt.Pragmas;
for (pragma in P)
if (props[pragma])
await conn.run("PRAGMA " + pragma + " = " + P[pragma](props[pragma]))
return Object.create(DbConnLt.Proto, { conn: { value: conn }, _schema: { value: null, writable: true }, props: { value: props } });
}
DbConnLt.Proto = {
// end: async function () { await this.client.end() },
query: async function (q, args = []) {
const client = this.conn;
let R = await client.all(q, args);
let cols = R.length ? Object.keys(R[0]) : [];
let types = new Array(cols.length);
let unknown = cols.length;
let tmap = { number: 'double', "boolean": 'bool' }
// find types
for (let r = 0; r < R.length && unknown > 0; r ++)
for (let c = 0; c < cols.length; c++)
if (!types[c])
if (R[r][c] !== null) types[c] = typeof R[r][cols[c]];
// default to text
let typesGen = [];
for (let r = 0; r < types.length; r++) typesGen[r] = tmap[types[r]] || 'str';
return { data: R, cols: R.length === 0 ? [] : Object.keys(R[0]), types: typesGen, rawTypes: types };
},
transaction: async function () {
const client = this.conn; // await Lite.open(this.props.filename || ':memory:', { Promise });
// await client.run('BEGIN'); // FIXME: how to do transactions in :memory:
return {
query: (sql, args = []) => this.query(sql, args)
, exec: async (sql, args = []) => { // TODO error handling and rollback
let {changes, lastID} = await client.run(sql, args);
return changes;
}
, rollback: async () => { }
, commit: async () => {
// await client.run('COMMIT');
// await client.close();
}
}
},
schema: async function () {
if (!this._schema) await this.learn();
return this._schema;
},
learn: async function () {
// FIXME: notnull is missing
const client = this.conn;
let tables = await client.all(DbConnLt.queryTables);
let fields = [];
let base = { read: false, write: false, hidden: false, prot: false, notnull: false };
for (let t = 0; t < tables.length; t++) {
let f = await client.all(DbConnLt.queryFields(tables[t].name))
fields = fields.concat(f.map( f => Object.assign({_: 'field', name: f.name, table: tables[t].name }, base)));
}
this._schema = tables.map(t => Object.assign({_: 'table', name: t.name, comment: '' }, base)).concat(fields);
}
};
DbConnLt.queryTables = "SELECT name FROM sqlite_master WHERE type IN ('table', 'view') AND name != 'sqlite_sequence'"
DbConnLt.queryFields = t => "PRAGMA table_info('" + t + "')"; // FIXME: escape
DbConnLt.queryConstr = t => "PRAGMA foreign_key_list('" + t + "')";
DbConnLt.Pragmas = {
application_id: parseInt
, auto_vacuum: parseInt // yeah, NONE/FULL/INCREMENTAL should also be supported
, automatic_index: x => parseBool(x)?'1':'0'
, busy_timeout: parseInt
, cache_size: parseInt
, cache_spill: x => parseBool(x)?'1':'0'
, case_sensitive_like: x => parseBool(x)?'1':'0'
, cell_size_check: x => parseBool(x)?'1':'0'
, checkpoint_fullfsync:x => parseBool(x)?'1':'0'
, defer_foreign_keys: x => parseBool(x)?'1':'0'
, encoding: x => x
, foreign_keys: x => parseBool(x)?'1':'0'
, fullfsync: x => parseBool(x)?'1':'0'
, ignore_check_constraints: x => parseBool(x)?'1':'0'
, journal_mode: x => x // user's business to know how to connect ['DELETE', 'TRUNCATE', 'PERSIST','MEMORY','WAL','OFF'].includes(x) ? x : (throw new Error("Invalid journal mode: " + x))
, journal_size_limit: parseInt
, legacy_file_format: x => parseBool(x)?'1':'0'
, locking_mode: x => x
, max_page_count: parseInt
, mmap_size: parseInt
// , optimize:
, page_size: parseInt
, query_only: x => parseBool(x)?'1':'0'
// , quick_check:
, read_uncommitted: x => parseBool(x)?'1':'0'
, recursive_triggers: x => parseBool(x)?'1':'0'
, reverse_unordered_selects: x => parseBool(x)?'1':'0'
// , schema_version:
, secure_delete: x => (typeof x === 'string' && x.toLowerCase() === 'fast') ? 'FAST' : (parseBool(x)?'1':'0')
, soft_heap_limit: parseInt
, synchronous: parseInt // TODO, shoud be more sophisticated
, temp_store: parseInt // TODO
, threads: parseInt
, user_version: parseInt
, wal_autocheckpoint: parseInt
// , wal_checkpoint:
, writable_schema: x => parseBool(x)?'1':'0'
};
async function DbConnOr(props) {
const oracledb = require('oracledb');
oracledb.autoCommit = false;
return Object.create(DbConnOr.Proto, { props: { value: props }, pool: { value: await oracledb.createPool(props) }, _schema: { value: null, writable: true } } );
}
DbConnOr.Proto = {
// end: async function () { await this.client.end() },
query: async function (q, args = []) {
let client = await this.pool.getConnection();
let R = await client.execute(q.trim().replace(/;$/, ''), args, { extendedMetaData: true /* , outFormat: oracledb.OBJECT */ }); // TODO outFormat object is probably faster (no need to do it by myself here)
client.release(err => { if (err) console.error(err) } );
let cols = R.metaData.map(f => f.name);
let rt = [], gt = []; // raw- and generaly type
R.metaData
.map(f => [f.dbType, ... (DbConnOr.types[f.dbType] || [])]) // put all values for type to one array
.forEach(([dbType, rawType, genType]) => {
if (!rawType) {
console.warn('Unsupported Oracle type, dbType: ' + dbType + '; query: ' + q); // TODO: what should be right logging for that
rt.push(dbType.toString());
gt.push('str'); // TODO: should convert all columns to string
} else {
rt.push(rawType);
gt.push(genType);
}
});
return { data: R.rows.map(r => zipObject(cols, r )), cols, types: gt, rawTypes: rt };
},
transaction: async function () {
const client = await this.pool.getConnection();
await client.execute('BEGIN');
return {
query: (sql, args = []) => client.execute(sql, args)
, exec: async (sql, args = []) => (await client.execute(sql, args)).rowsAffected // TODO error handling and rollback
, commit: async () => { await client.execute('COMMIT'); client.release(); }
, rollback: async () => { await client.execute('ROLLBACK'); try { client.release(); } catch (_) {} }
}
},
schema: async function () {
if (!this._schema) await this.learn();
return this._schema;
},
learn: async function () {
const client = await this.pool.getConnection();
let sch = [], curTable = '', base = { read: false, write: false, hidden: false, prot: false };
(await client.execute(DbConnOr.queryFields)).rows.forEach(([tname, cname, dtype, dlen]) => {
if (curTable != tname)
sch.push(Object.assign({_: 'table', comment: '', name: tname }, base));
sch.push(Object.assign({_: 'field', comment: '', table: tname, name: cname, type: dtype, genType: 'str', autonum: false }, base)); // FIXME genType
});
client.release();
this._schema = sch;
}
};
DbConnOr.queryFields = "SELECT table_name, column_name, data_type, data_length FROM USER_TAB_COLUMNS";
// Based on true story: https://github.com/oracle/node-oracledb/blob/master/doc/api.md#oracledbconstantsdbtype
DbConnOr.types =
{ 101 : [ 'BINARY_DOUBLE', 'int' ]
, 100 : [ 'BINARY_FLOAT', 'double']
, 113 : [ 'BLOB', 'str' ]
, 96 : [ 'CHAR', 'str' ]
, 112 : [ 'CLOB', 'str' ]
, 12 : [ 'DATE', 'date' ]
, 8 : [ 'LONG', 'str' ]
, 24 : [ 'LONG RAW', 'str' ]
, 1096 : [ 'NCHAR', 'str']
, 1112 : [ 'NCLOB', 'str']
, 2 : [ 'NUMBER', 'double' ]
, 1001 : [ 'NVARCHAR', 'str' ]
, 23 : [ 'RAW', 'str' ]
, 104 : [ 'ROWID', 'int' ]
, 187 : [ 'TIMESTAMP', 'datetime' ]
, 232 : [ 'TIMESTAMP WITH LOCAL TIME ZONE', 'datetime' ]
, 188 : [ 'TIMESTAMP WITH TIME ZONE', 'datetime' ]
, 1 : [ 'VARCHAR2', 'str' ]
};
async function DbConnDb2(props) {
const db2Pool = require('ibm_db').Pool;
const pool = new db2Pool();
if (props.max) pool.setMaxPoolSize(props.max);
return Object.create(DbConnDb2.Proto, { pool: { value: pool }, props: { value: props }, _schema: { value: null, writable: true } });
}
DbConnDb2.Proto = {
// end: async function () { await this.client.end() },
query: async function (q, args = []) {
return new Promise((ok, failure) => {
this.pool.open(this.props.connectString, (connErr, db) => {
if (connErr) { failure(connErr); return; }
db.queryResult(q.trim().replace(/;$/, ''), args, (err, R) => {
if (err) {
failure(err);
return;
}
let cols = R.getColumnMetadataSync();
let data = R.fetchAllSync();
let rt = [], gt = []; // raw- and generaly type
cols
.map(f => [f.SQL_DESC_TYPE_NAME, ... (DbConnDb2.types[f.SQL_DESC_TYPE_NAME] || [])]) // put all values for type to one array
.forEach(([dbType, rawType, genType]) => {
if (!rawType) {
console.warn('Unsupported DB2 type, dbType: ' + dbType + '; query: ' + q); // TODO: what should be right logging for that
rt.push(dbType.toString());
gt.push('str'); // TODO: should convert all columns to string
} else {
rt.push(rawType);
gt.push(genType);
}
});
db.close();
ok({ data: data, cols: cols.map(c => c.SQL_DESC_CONCISE_TYPE), types: gt, rawTypes: rt });
})
});
})
},
transaction: async function () {
return new Promise((ok, failure) => { this.pool.open(this.props.connectString, (connErr, db) => {
if (connErr) { failure(connErr); return; }
db.query('BEGIN', [], err => {
if (err) failure(err);
else ok({
query: (sql, args = []) => (new Promise((ok, failure) => db.query(sql, args, (err, R) => err ? failure(err) : ok(R) )))
, exec: async (sql, args = []) => ( // TODO error handling and rollback
new Promise((ok, failure) => {
db.prepare(sql, (err, stmt) => {
if (err) failure(err);
else stmt.execute(args, (err, R) => err ? failure(err) : ok(R) )
})
})
)
, rollback: async () => (new Promise((ok, failure) => db.query('COMMIT' , [], (err, R) => (err ? failure(err) : ok())) ))
, commit: async () => (new Promise((ok, failure) => db.query('ROLLBACK', [], (err, R) => (err ? failure(err) : ok())) ))
})
});
}) });
},
schema: async function () {
if (!this._schema) await this.learn();
return this._schema;
},
learn: async function () {
let sch = [], curTable = '', base = { read: false, write: false, hidden: false, prot: false }, tableDone = 0;
return new Promise((ok, failure) => { this.pool.open(this.props.connectString, (connErr, db) => {
if (connErr) { failure(connErr); return; }
db.query(DbConnDb2.queryTables, [], (err, tables) => {
if (err) { failure(err); return; }
else {
for (let t = 0; t < tables.length; t++) {
let tname = tables[t].TABNAME;
db.query(DbConnDb2.queryFields, [ tname ], (err, cols) => {
if (err) { failure(err); return; }
sch.push(Object.assign({_: 'table', comment: '', name: tname }, base));
cols.forEach(({NAME, COLTYPE}) => {
sch.push(Object.assign({_: 'field', comment: '', table: tname, name: NAME, type: COLTYPE.trim(), genType: (DbConnDb2.types[ COLTYPE.trim() ]||['?','?'])[1], autonum: false }, base))
});
if (++tableDone === tables.length) ok(this._schema = sch);
});
}
}
})
}) })
}
};
DbConnDb2.queryTables = "select tabname from syscat.tables";
DbConnDb2.queryFields = "select name, coltype from Sysibm.syscolumns where tbname = ?";
DbConnDb2.types =
{ "SMALLINT": [ "SMALLINT", "int" ]
, "INTEGER": [ "INTEGER", "int" ]
, "BIGINT": [ "BIGINT", "int" ]
, "REAL": [ "REAL", "double" ]
, "NUMERIC": [ "NUMERIC", "double" ]
, "DECIMAL": [ "DECIMAL", "double" ]
, "DOUBLE": [ "DOUBLE", "double" ]
, "DECFLOAT": [ "DECFLOAT", "double" ]
, "CHAR": [ "CHAR", "str" ]
, "VARCHAR": [ "VARCHAR", "str" ]
, "CBLOB": [ "CBLOB", "str" ]
, "BLOB": [ "BLOB", "str" ]
, "CLOB": [ "CLOB", "str" ]
, "MONEY": [ "MONEY", "double" ]
, "DISTINCT": [ "DISTINCT", "str" ] // not sure this is str
, "GRAPHIC": [ "GRAPHIC", "str" ]
, "VARBINARY" : [ "VARBINARY", "str" ]
, "VARGRAPH" : [ "VARGRAPH", "str" ]
, "DATE" : [ "DATE", "date" ]
, "TIME" : [ "TIME", "time" ]
, "XML" : [ "XML", "str" ]
, "TIMESTAMP" : [ "TIMESTAMP", "datetime" ]
, "TIMESTAMP WITHOUT TIME ZONE" : [ "TIMESTAMP WITHOUT TIME ZONE", "datetime" ]
, "TIMESTAMP WITH TIME ZONE" : [ "TIMESTAMP WITH TIME ZONE", "datetime" ]
};
module.exports = { urlToConnection, DbConn }