2014-09-01 17:18:45 +02:00
|
|
|
'use strict';
|
|
|
|
|
2014-04-08 16:25:57 -04:00
|
|
|
// SQLite3
|
|
|
|
// -------
|
2015-04-22 10:34:14 -04:00
|
|
|
var Promise = require('../../promise')
|
2014-04-08 16:25:57 -04:00
|
|
|
|
2015-04-22 10:34:14 -04:00
|
|
|
var inherits = require('inherits')
|
|
|
|
var assign = require('lodash/object/assign')
|
|
|
|
var pluck = require('lodash/collection/pluck');
|
|
|
|
|
|
|
|
var Client = require('../../client')
|
|
|
|
var helpers = require('../../helpers')
|
|
|
|
|
|
|
|
var QueryCompiler = require('./query/compiler')
|
|
|
|
var SchemaCompiler = require('./schema/compiler')
|
|
|
|
var ColumnCompiler = require('./schema/columncompiler')
|
|
|
|
var TableCompiler = require('./schema/tablecompiler')
|
|
|
|
var SQLite3_DDL = require('./schema/ddl')
|
2014-04-08 16:25:57 -04:00
|
|
|
|
|
|
|
function Client_SQLite3(config) {
|
2015-04-19 16:31:52 -04:00
|
|
|
Client.call(this, config)
|
2014-04-08 16:25:57 -04:00
|
|
|
}
|
2015-04-19 16:31:52 -04:00
|
|
|
inherits(Client_SQLite3, Client)
|
2014-04-08 16:25:57 -04:00
|
|
|
|
2015-04-19 16:31:52 -04:00
|
|
|
assign(Client_SQLite3.prototype, {
|
2014-04-08 16:25:57 -04:00
|
|
|
|
2015-04-19 16:31:52 -04:00
|
|
|
dialect: 'sqlite3',
|
2014-04-08 16:25:57 -04:00
|
|
|
|
2015-04-22 10:34:14 -04:00
|
|
|
driverName: 'sqlite3',
|
2014-07-03 11:59:29 +02:00
|
|
|
|
2015-04-22 10:34:14 -04:00
|
|
|
SchemaCompiler: SchemaCompiler,
|
2014-04-08 16:25:57 -04:00
|
|
|
|
2015-04-19 16:31:52 -04:00
|
|
|
QueryCompiler: QueryCompiler,
|
2014-04-16 01:23:50 -04:00
|
|
|
|
2015-04-22 10:34:14 -04:00
|
|
|
ColumnCompiler: ColumnCompiler,
|
|
|
|
|
|
|
|
TableCompiler: TableCompiler,
|
|
|
|
|
|
|
|
ddl: function(compiler, pragma, connection) {
|
|
|
|
return new SQLite3_DDL(this, compiler, pragma, connection)
|
|
|
|
},
|
|
|
|
|
2015-04-19 16:31:52 -04:00
|
|
|
// Get a raw connection from the database, returning a promise with the connection object.
|
|
|
|
acquireRawConnection: function() {
|
2015-04-22 10:34:14 -04:00
|
|
|
var client = this;
|
2015-04-19 16:31:52 -04:00
|
|
|
return new Promise(function(resolve, reject) {
|
2015-04-22 10:34:14 -04:00
|
|
|
var db = new client.driver.Database(client.connectionSettings.filename, function(err) {
|
|
|
|
if (err) return reject(err)
|
|
|
|
resolve(db)
|
|
|
|
})
|
|
|
|
})
|
2015-04-19 16:31:52 -04:00
|
|
|
},
|
2014-04-08 16:25:57 -04:00
|
|
|
|
2015-04-19 16:31:52 -04:00
|
|
|
// Used to explicitly close a connection, called internally by the pool
|
|
|
|
// when a connection times out or the pool is shutdown.
|
|
|
|
destroyRawConnection: function(connection, cb) {
|
2015-04-22 10:34:14 -04:00
|
|
|
connection.close()
|
2015-04-19 16:31:52 -04:00
|
|
|
cb()
|
2015-04-22 10:34:14 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
// Runs the query on the specified connection, providing the bindings and any other necessary prep work.
|
|
|
|
_query: function(connection, obj) {
|
|
|
|
var method = obj.method;
|
|
|
|
var callMethod;
|
|
|
|
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]) {
|
|
|
|
return rejecter(new Error('Error calling ' + callMethod + ' on connection.'))
|
|
|
|
}
|
|
|
|
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"
|
|
|
|
obj.context = this;
|
|
|
|
return resolver(obj)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
_stream: function(connection, sql, stream) {
|
|
|
|
var client = this;
|
|
|
|
return new Promise(function(resolver, rejecter) {
|
|
|
|
stream.on('error', rejecter)
|
|
|
|
stream.on('end', resolver)
|
|
|
|
return client._query(connection, sql).then(function(obj) {
|
|
|
|
return obj.response
|
|
|
|
}).map(function(row) {
|
|
|
|
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.
|
|
|
|
processResponse: function(obj, runner) {
|
|
|
|
var ctx = obj.context;
|
|
|
|
var response = obj.response;
|
|
|
|
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 = pluck(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;
|
|
|
|
}
|
2015-04-22 11:45:12 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
poolDefaults: function(config) {
|
|
|
|
return assign(Client.prototype.poolDefaults.call(this, config), {
|
|
|
|
min: 1,
|
|
|
|
max: 1
|
|
|
|
})
|
|
|
|
}
|
2015-04-19 16:31:52 -04:00
|
|
|
|
|
|
|
})
|
2014-04-08 16:25:57 -04:00
|
|
|
|
2015-04-22 10:34:14 -04:00
|
|
|
module.exports = Client_SQLite3
|