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';
|
2016-05-18 20:22:50 +10:00
|
|
|
import { isUndefined, map, assign } from 'lodash'
|
2016-03-02 17:07:05 +01:00
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
import Client from '../../client';
|
|
|
|
import * as helpers from '../../helpers';
|
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';
|
2016-03-02 17:07:05 +01:00
|
|
|
|
|
|
|
function Client_SQLite3(config) {
|
|
|
|
Client.call(this, config)
|
|
|
|
if (isUndefined(config.useNullAsDefault)) {
|
2016-05-17 01:01:34 +10:00
|
|
|
helpers.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)
|
|
|
|
|
|
|
|
assign(Client_SQLite3.prototype, {
|
|
|
|
|
|
|
|
dialect: 'sqlite3',
|
|
|
|
|
|
|
|
driverName: 'sqlite3',
|
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
_driver() {
|
2016-03-02 17:07:05 +01:00
|
|
|
return require('sqlite3')
|
|
|
|
},
|
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
SchemaCompiler,
|
2016-03-02 17:07:05 +01:00
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
QueryCompiler,
|
2016-03-02 17:07:05 +01:00
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
ColumnCompiler,
|
2016-03-02 17:07:05 +01:00
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
TableCompiler,
|
2016-03-02 17:07:05 +01:00
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
ddl(compiler, pragma, connection) {
|
2016-03-02 17:07:05 +01:00
|
|
|
return new SQLite3_DDL(this, compiler, pragma, connection)
|
|
|
|
},
|
|
|
|
|
|
|
|
// Get a raw connection from the database, returning a promise with the connection object.
|
2016-05-17 01:01:34 +10:00
|
|
|
acquireRawConnection() {
|
|
|
|
const client = this;
|
2016-03-02 17:07:05 +01:00
|
|
|
return new Promise(function(resolve, reject) {
|
2016-05-17 01:01:34 +10:00
|
|
|
const db = new client.driver.Database(client.connectionSettings.filename, function(err) {
|
2016-03-02 17:07:05 +01:00
|
|
|
if (err) return reject(err)
|
|
|
|
resolve(db)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
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.
|
|
|
|
destroyRawConnection(connection, cb) {
|
2016-03-02 17:07:05 +01:00
|
|
|
connection.close()
|
|
|
|
cb()
|
|
|
|
},
|
|
|
|
|
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]) {
|
2016-05-17 01:01:34 +10: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) {
|
|
|
|
if (err) return rejecter(err)
|
|
|
|
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;
|
2016-03-02 17:07:05 +01:00
|
|
|
return resolver(obj)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
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) {
|
|
|
|
stream.on('error', rejecter)
|
|
|
|
stream.on('end', resolver)
|
2016-05-17 01:01:34 +10:00
|
|
|
return client._query(connection, sql).then(obj => obj.response).map(function(row) {
|
2016-03-02 17:07:05 +01:00
|
|
|
stream.write(row)
|
|
|
|
}).catch(function(err) {
|
|
|
|
stream.emit('error', err)
|
|
|
|
}).then(function() {
|
|
|
|
stream.end()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
// 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;
|
2016-03-02 17:07:05 +01:00
|
|
|
if (obj.output) return obj.output.call(runner, response)
|
|
|
|
switch (obj.method) {
|
|
|
|
case 'select':
|
|
|
|
case 'pluck':
|
|
|
|
case 'first':
|
|
|
|
response = helpers.skim(response)
|
|
|
|
if (obj.method === 'pluck') response = map(response, obj.pluck)
|
|
|
|
return obj.method === 'first' ? response[0] : response;
|
|
|
|
case 'insert':
|
|
|
|
return [ctx.lastID];
|
|
|
|
case 'del':
|
|
|
|
case 'update':
|
|
|
|
case 'counter':
|
|
|
|
return ctx.changes;
|
|
|
|
default:
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
poolDefaults(config) {
|
2016-03-02 17:07:05 +01:00
|
|
|
return assign(Client.prototype.poolDefaults.call(this, config), {
|
|
|
|
min: 1,
|
|
|
|
max: 1
|
|
|
|
})
|
2016-03-19 19:14:46 +01:00
|
|
|
},
|
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
ping(resource, callback) {
|
2016-03-19 19:14:46 +01:00
|
|
|
resource.each('SELECT 1', callback);
|
2016-03-02 17:07:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
2016-05-17 01:01:34 +10:00
|
|
|
export default Client_SQLite3
|