171 lines
4.4 KiB
JavaScript
Raw Normal View History

2016-03-02 17:07:05 +01:00
// SQLite3
// -------
const inherits = require('inherits');
const defaults = require('lodash/defaults');
const map = require('lodash/map');
const { promisify } = require('util');
2016-03-02 17:07:05 +01:00
const Client = require('../../client');
2016-03-02 17:07:05 +01:00
const QueryCompiler = require('./query/compiler');
const SchemaCompiler = require('./schema/compiler');
const ColumnCompiler = require('./schema/columncompiler');
const TableCompiler = require('./schema/tablecompiler');
const SQLite3_DDL = require('./schema/ddl');
const SQLite3_Formatter = require('./formatter');
2016-03-02 17:07:05 +01:00
function Client_SQLite3(config) {
Client.call(this, config);
if (config.useNullAsDefault === undefined) {
this.logger.warn(
'sqlite does not support inserting default values. Set the ' +
'`useNullAsDefault` flag to hide this warning. ' +
'(see docs http://knexjs.org/#Builder-insert).'
);
2016-03-02 17:07:05 +01:00
}
}
inherits(Client_SQLite3, Client);
2016-03-02 17:07:05 +01:00
Object.assign(Client_SQLite3.prototype, {
2016-03-02 17:07:05 +01:00
dialect: 'sqlite3',
driverName: 'sqlite3',
_driver() {
return require('sqlite3');
2016-03-02 17:07:05 +01:00
},
2016-09-13 08:15:58 -04:00
schemaCompiler() {
return new SchemaCompiler(this, ...arguments);
2016-09-13 08:15:58 -04:00
},
2016-03-02 17:07:05 +01:00
2016-09-13 08:15:58 -04:00
queryCompiler() {
return new QueryCompiler(this, ...arguments);
2016-09-13 08:15:58 -04:00
},
2016-03-02 17:07:05 +01:00
2016-09-13 08:15:58 -04:00
columnCompiler() {
return new ColumnCompiler(this, ...arguments);
2016-09-13 08:15:58 -04:00
},
2016-03-02 17:07:05 +01:00
2016-09-13 08:15:58 -04:00
tableCompiler() {
return new TableCompiler(this, ...arguments);
2016-09-13 08:15:58 -04:00
},
2016-03-02 17:07:05 +01:00
ddl(compiler, pragma, connection) {
return new SQLite3_DDL(this, compiler, pragma, connection);
2016-03-02 17:07:05 +01:00
},
wrapIdentifierImpl(value) {
return value !== '*' ? `\`${value.replace(/`/g, '``')}\`` : '*';
},
2016-03-02 17:07:05 +01:00
// Get a raw connection from the database, returning a promise with the connection object.
acquireRawConnection() {
return new Promise((resolve, reject) => {
const db = new this.driver.Database(
this.connectionSettings.filename,
(err) => {
if (err) {
return reject(err);
}
resolve(db);
2016-09-13 18:12:23 -04:00
}
);
});
2016-03-02 17:07:05 +01:00
},
// Used to explicitly close a connection, called internally by the pool when
// a connection times out or the pool is shutdown.
async destroyRawConnection(connection) {
const close = promisify((cb) => connection.close(cb));
return close();
2016-03-02 17:07:05 +01:00
},
// Runs the query on the specified connection, providing the bindings and any
// other necessary prep work.
_query(connection, obj) {
const { method } = obj;
let callMethod;
2016-03-02 17:07:05 +01:00
switch (method) {
case 'insert':
case 'update':
case 'counter':
case 'del':
callMethod = 'run';
break;
default:
callMethod = 'all';
}
2020-04-19 00:40:23 +02:00
return new Promise(function (resolver, rejecter) {
2016-03-02 17:07:05 +01:00
if (!connection || !connection[callMethod]) {
return rejecter(
new Error(`Error calling ${callMethod} on connection.`)
);
2016-03-02 17:07:05 +01:00
}
2020-04-19 00:40:23 +02:00
connection[callMethod](obj.sql, obj.bindings, function (err, response) {
if (err) return rejecter(err);
2016-03-02 17:07:05 +01:00
obj.response = response;
// We need the context here, as it contains
// the "this.lastID" or "this.changes"
obj.context = this;
return resolver(obj);
});
});
2016-03-02 17:07:05 +01:00
},
_stream(connection, sql, stream) {
const client = this;
2020-04-19 00:40:23 +02:00
return new Promise(function (resolver, rejecter) {
stream.on('error', rejecter);
stream.on('end', resolver);
return client
._query(connection, sql)
.then((obj) => obj.response)
2019-10-11 11:12:56 +03:00
.then((rows) => rows.forEach((row) => stream.write(row)))
2020-04-19 00:40:23 +02:00
.catch(function (err) {
stream.emit('error', err);
})
2020-04-19 00:40:23 +02:00
.then(function () {
stream.end();
});
});
2016-03-02 17:07:05 +01:00
},
// Ensures the response is returned in the same format as other clients.
processResponse(obj, runner) {
const ctx = obj.context;
let { response } = obj;
if (obj.output) return obj.output.call(runner, response);
2016-03-02 17:07:05 +01:00
switch (obj.method) {
case 'select':
case 'pluck':
case 'first':
if (obj.method === 'pluck') response = map(response, obj.pluck);
2016-03-02 17:07:05 +01:00
return obj.method === 'first' ? response[0] : response;
case 'insert':
return [ctx.lastID];
case 'del':
case 'update':
case 'counter':
return ctx.changes;
default:
return response;
}
},
poolDefaults() {
return defaults(
{ min: 1, max: 1 },
Client.prototype.poolDefaults.call(this)
);
},
formatter() {
return new SQLite3_Formatter(this, ...arguments);
},
});
2016-03-02 17:07:05 +01:00
module.exports = Client_SQLite3;