mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 14:56:01 +00:00
180 lines
4.3 KiB
JavaScript
180 lines
4.3 KiB
JavaScript
// @ts-check
|
|
const _ = require('lodash');
|
|
const stream = require('stream');
|
|
const driverBases = require('../frontend/drivers');
|
|
const Analyser = require('./Analyser');
|
|
const { splitQuery, sqliteSplitterOptions } = require('dbgate-query-splitter');
|
|
const { runStreamItem, waitForDrain } = require('./helpers');
|
|
const { getLogger, createBulkInsertStreamBase, extractErrorLogData } = global.DBGATE_PACKAGES['dbgate-tools'];
|
|
|
|
const logger = getLogger('sqliteDriver');
|
|
|
|
let libsqlValue;
|
|
function getLibsql() {
|
|
if (!libsqlValue) {
|
|
libsqlValue = require('libsql');
|
|
}
|
|
return libsqlValue;
|
|
}
|
|
|
|
function extractColumns(row) {
|
|
if (!row) return [];
|
|
|
|
const columns = Object.keys(row).map((columnName) => ({ columnName }));
|
|
return columns;
|
|
}
|
|
|
|
/** @type {import('dbgate-types').EngineDriver<import('libsql').Database>} */
|
|
const libsqlDriver = {
|
|
...driverBases[1],
|
|
analyserClass: Analyser,
|
|
async connect({ databaseFile, isReadOnly, authToken, databaseUrl, ...rest }) {
|
|
const Database = getLibsql();
|
|
const client = databaseFile
|
|
? new Database(databaseFile, { readonly: !!isReadOnly })
|
|
: new Database(databaseUrl, { authToken, readonly: !!isReadOnly });
|
|
|
|
return {
|
|
client,
|
|
};
|
|
},
|
|
async close(dbhan) {
|
|
// sqlite close is sync, returns this
|
|
dbhan.client.close();
|
|
},
|
|
// @ts-ignore
|
|
async query(dbhan, sql) {
|
|
const stmt = dbhan.client.prepare(sql);
|
|
|
|
const rows = stmt.all();
|
|
const stmtColumns = stmt.columns();
|
|
const columns = stmtColumns.length > 0 ? stmtColumns : extractColumns(rows[0]);
|
|
|
|
return {
|
|
rows,
|
|
columns: columns.map((col) => ({
|
|
columnName: col.name,
|
|
dataType: col.type,
|
|
})),
|
|
};
|
|
},
|
|
async stream(dbhan, sql, options) {
|
|
const sqlSplitted = splitQuery(sql, sqliteSplitterOptions);
|
|
|
|
const rowCounter = { count: 0, date: null };
|
|
|
|
console.log('#stream', sql);
|
|
const inTransaction = dbhan.client.transaction(() => {
|
|
for (const sqlItem of sqlSplitted) {
|
|
runStreamItem(dbhan, sqlItem, options, rowCounter);
|
|
}
|
|
|
|
if (rowCounter.date) {
|
|
options.info({
|
|
message: `${rowCounter.count} rows affected`,
|
|
time: new Date(),
|
|
severity: 'info',
|
|
});
|
|
}
|
|
});
|
|
|
|
try {
|
|
inTransaction();
|
|
} catch (error) {
|
|
logger.error(extractErrorLogData(error), 'Stream error');
|
|
const { message, procName } = error;
|
|
options.info({
|
|
message,
|
|
line: 0,
|
|
procedure: procName,
|
|
time: new Date(),
|
|
severity: 'error',
|
|
});
|
|
}
|
|
|
|
options.done();
|
|
// return stream;
|
|
},
|
|
async script(dbhan, sql, { useTransaction } = {}) {
|
|
const runScript = () => {
|
|
for (const sqlItem of splitQuery(sql, this.getQuerySplitterOptions('script'))) {
|
|
const stmt = dbhan.client.prepare(sqlItem);
|
|
stmt.run();
|
|
}
|
|
};
|
|
|
|
if (useTransaction) {
|
|
dbhan.client.transaction(() => {
|
|
runScript();
|
|
})();
|
|
} else {
|
|
runScript();
|
|
}
|
|
},
|
|
|
|
async readQueryTask(stmt, pass) {
|
|
// let sent = 0;
|
|
for (const row of stmt.iterate()) {
|
|
// sent++;
|
|
if (!pass.write(row)) {
|
|
// console.log('WAIT DRAIN', sent);
|
|
await waitForDrain(pass);
|
|
}
|
|
}
|
|
pass.end();
|
|
},
|
|
async readQuery(dbhan, sql, structure) {
|
|
const pass = new stream.PassThrough({
|
|
objectMode: true,
|
|
highWaterMark: 100,
|
|
});
|
|
|
|
const stmt = dbhan.client.prepare(sql);
|
|
const columns = stmt.columns();
|
|
|
|
pass.write({
|
|
__isStreamHeader: true,
|
|
...(structure || {
|
|
columns: columns.map((col) => ({
|
|
columnName: col.name,
|
|
dataType: col.type,
|
|
})),
|
|
}),
|
|
});
|
|
this.readQueryTask(stmt, pass);
|
|
|
|
return pass;
|
|
},
|
|
async writeTable(dbhan, name, options) {
|
|
return createBulkInsertStreamBase(this, stream, dbhan, name, options);
|
|
},
|
|
async getVersion(dbhan) {
|
|
const { rows } = await this.query(dbhan, 'select sqlite_version() as version');
|
|
const { version } = rows[0];
|
|
|
|
return {
|
|
version,
|
|
versionText: `SQLite ${version}`,
|
|
};
|
|
},
|
|
|
|
getAuthTypes() {
|
|
const res = [
|
|
{
|
|
title: 'File',
|
|
name: 'file',
|
|
disabledFields: ['databaseUrl', 'authToken'],
|
|
},
|
|
{
|
|
title: 'URL',
|
|
name: 'url',
|
|
disabledFields: ['databaseFile'],
|
|
},
|
|
];
|
|
|
|
return res;
|
|
},
|
|
};
|
|
|
|
module.exports = libsqlDriver;
|