2016-03-02 17:07:05 +01:00
|
|
|
// SQLite3
|
|
|
|
// -------
|
2016-08-09 17:23:07 -04:00
|
|
|
import Promise from 'bluebird';
|
2016-03-02 17:07:05 +01:00
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
import inherits from 'inherits';
|
2018-07-09 08:10:34 -04:00
|
|
|
import { isUndefined, map, assign, defaults } from 'lodash';
|
2016-03-02 17:07:05 +01:00
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
import Client from '../../client';
|
2016-03-02 17:07:05 +01:00
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
import QueryCompiler from './query/compiler';
|
|
|
|
import SchemaCompiler from './schema/compiler';
|
|
|
|
import ColumnCompiler from './schema/columncompiler';
|
|
|
|
import TableCompiler from './schema/tablecompiler';
|
|
|
|
import SQLite3_DDL from './schema/ddl';
|
2019-05-26 01:23:20 +05:30
|
|
|
import SQLite3_Formatter from './formatter';
|
2016-03-02 17:07:05 +01:00
|
|
|
|
|
|
|
function Client_SQLite3(config) {
|
2018-07-09 08:10:34 -04:00
|
|
|
Client.call(this, config);
|
2016-03-02 17:07:05 +01:00
|
|
|
if (isUndefined(config.useNullAsDefault)) {
|
2018-05-29 17:42:03 +02:00
|
|
|
this.logger.warn(
|
2016-05-17 01:01:34 +10:00
|
|
|
'sqlite does not support inserting default values. Set the ' +
|
2018-07-09 08:10:34 -04:00
|
|
|
'`useNullAsDefault` flag to hide this warning. ' +
|
|
|
|
'(see docs http://knexjs.org/#Builder-insert).'
|
2016-05-17 01:01:34 +10:00
|
|
|
);
|
2016-03-02 17:07:05 +01:00
|
|
|
}
|
|
|
|
}
|
2018-07-09 08:10:34 -04:00
|
|
|
inherits(Client_SQLite3, Client);
|
2016-03-02 17:07:05 +01:00
|
|
|
|
|
|
|
assign(Client_SQLite3.prototype, {
|
|
|
|
dialect: 'sqlite3',
|
|
|
|
|
|
|
|
driverName: 'sqlite3',
|
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
_driver() {
|
2018-07-09 08:10:34 -04:00
|
|
|
return require('sqlite3');
|
2016-03-02 17:07:05 +01:00
|
|
|
},
|
|
|
|
|
2016-09-13 08:15:58 -04:00
|
|
|
schemaCompiler() {
|
2018-07-09 08:10:34 -04:00
|
|
|
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() {
|
2018-07-09 08:10:34 -04:00
|
|
|
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() {
|
2018-07-09 08:10:34 -04:00
|
|
|
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() {
|
2018-07-09 08:10:34 -04:00
|
|
|
return new TableCompiler(this, ...arguments);
|
2016-09-13 08:15:58 -04:00
|
|
|
},
|
2016-03-02 17:07:05 +01:00
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
ddl(compiler, pragma, connection) {
|
2018-07-09 08:10:34 -04:00
|
|
|
return new SQLite3_DDL(this, compiler, pragma, connection);
|
2016-03-02 17:07:05 +01:00
|
|
|
},
|
|
|
|
|
2017-09-08 14:58:59 +03:00
|
|
|
wrapIdentifierImpl(value) {
|
2018-07-09 08:10:34 -04:00
|
|
|
return value !== '*' ? `\`${value.replace(/`/g, '``')}\`` : '*';
|
2017-05-28 22:48:18 +02:00
|
|
|
},
|
|
|
|
|
2016-03-02 17:07:05 +01:00
|
|
|
// Get a raw connection from the database, returning a promise with the connection object.
|
2016-05-17 01:01:34 +10:00
|
|
|
acquireRawConnection() {
|
2016-09-13 18:12:23 -04:00
|
|
|
return new Promise((resolve, reject) => {
|
2018-07-09 08:10:34 -04:00
|
|
|
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
|
|
|
}
|
2018-07-09 08:10:34 -04:00
|
|
|
);
|
|
|
|
});
|
2016-03-02 17:07:05 +01:00
|
|
|
},
|
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
// Used to explicitly close a connection, called internally by the pool when
|
|
|
|
// a connection times out or the pool is shutdown.
|
2016-09-13 18:12:23 -04:00
|
|
|
destroyRawConnection(connection) {
|
2018-07-09 08:10:34 -04:00
|
|
|
return Promise.fromCallback(connection.close.bind(connection));
|
2016-03-02 17:07:05 +01:00
|
|
|
},
|
|
|
|
|
2016-05-17 01:01:34 +10: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';
|
|
|
|
}
|
|
|
|
return new Promise(function(resolver, rejecter) {
|
|
|
|
if (!connection || !connection[callMethod]) {
|
2018-07-09 08:10:34 -04:00
|
|
|
return rejecter(
|
|
|
|
new Error(`Error calling ${callMethod} on connection.`)
|
|
|
|
);
|
2016-03-02 17:07:05 +01:00
|
|
|
}
|
|
|
|
connection[callMethod](obj.sql, obj.bindings, function(err, response) {
|
2018-07-09 08:10:34 -04:00
|
|
|
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"
|
2016-05-18 19:59:24 +10:00
|
|
|
obj.context = this;
|
2018-07-09 08:10:34 -04:00
|
|
|
return resolver(obj);
|
|
|
|
});
|
|
|
|
});
|
2016-03-02 17:07:05 +01:00
|
|
|
},
|
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
_stream(connection, sql, stream) {
|
|
|
|
const client = this;
|
2016-03-02 17:07:05 +01:00
|
|
|
return new Promise(function(resolver, rejecter) {
|
2018-07-09 08:10:34 -04:00
|
|
|
stream.on('error', rejecter);
|
|
|
|
stream.on('end', resolver);
|
|
|
|
return client
|
|
|
|
._query(connection, sql)
|
|
|
|
.then((obj) => obj.response)
|
|
|
|
.map(function(row) {
|
|
|
|
stream.write(row);
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
stream.emit('error', err);
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
stream.end();
|
|
|
|
});
|
|
|
|
});
|
2016-03-02 17:07:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Ensures the response is returned in the same format as other clients.
|
2016-05-17 01:01:34 +10:00
|
|
|
processResponse(obj, runner) {
|
2016-05-18 19:59:24 +10:00
|
|
|
const ctx = obj.context;
|
2016-05-17 01:01:34 +10:00
|
|
|
let { response } = obj;
|
2018-07-09 08:10:34 -04:00
|
|
|
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':
|
2018-07-09 08:10:34 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-09-06 14:51:29 -05:00
|
|
|
poolDefaults() {
|
2018-07-09 08:10:34 -04:00
|
|
|
return defaults(
|
|
|
|
{ min: 1, max: 1 },
|
|
|
|
Client.prototype.poolDefaults.call(this)
|
|
|
|
);
|
|
|
|
},
|
2019-05-26 01:23:20 +05:30
|
|
|
|
|
|
|
formatter() {
|
|
|
|
return new SQLite3_Formatter(this, ...arguments);
|
2019-05-26 18:03:07 -07:00
|
|
|
},
|
2018-07-09 08:10:34 -04:00
|
|
|
});
|
2016-03-02 17:07:05 +01:00
|
|
|
|
2018-07-09 08:10:34 -04:00
|
|
|
export default Client_SQLite3;
|