knex/lib/dialects/mysql/index.js

192 lines
5.2 KiB
JavaScript
Raw Normal View History

2016-03-02 17:07:05 +01:00
// MySQL Client
// -------
const defer = require('lodash/defer');
const map = require('lodash/map');
2021-01-31 13:40:13 +03:00
const { promisify } = require('util');
const Client = require('../../client');
2016-03-02 17:07:05 +01:00
const Transaction = require('./transaction');
const QueryCompiler = require('./query/mysql-querycompiler');
2021-01-01 17:46:10 +02:00
const SchemaCompiler = require('./schema/mysql-compiler');
const TableCompiler = require('./schema/mysql-tablecompiler');
const ColumnCompiler = require('./schema/mysql-columncompiler');
2016-03-02 17:07:05 +01:00
const { makeEscape } = require('../../util/string');
2016-03-02 17:07:05 +01:00
// Always initialize with the "QueryBuilder" and "QueryCompiler"
// objects, which extend the base 'lib/query/builder' and
// 'lib/query/compiler', respectively.
2021-01-31 13:40:13 +03:00
class Client_MySQL extends Client {
_driver() {
return require('mysql');
2021-01-31 13:40:13 +03:00
}
2016-03-02 17:07:05 +01:00
2021-01-07 23:34:46 +02:00
queryCompiler(builder, formatter) {
return new QueryCompiler(this, builder, formatter);
2021-01-31 13:40:13 +03:00
}
2016-03-02 17:07:05 +01:00
2016-09-13 08:15:58 -04:00
schemaCompiler() {
return new SchemaCompiler(this, ...arguments);
2021-01-31 13:40:13 +03:00
}
2016-03-02 17:07:05 +01:00
2016-09-13 08:15:58 -04:00
tableCompiler() {
return new TableCompiler(this, ...arguments);
2021-01-31 13:40:13 +03:00
}
2016-03-02 17:07:05 +01:00
2016-09-13 08:15:58 -04:00
columnCompiler() {
return new ColumnCompiler(this, ...arguments);
2021-01-31 13:40:13 +03:00
}
2016-03-02 17:07:05 +01:00
2016-09-12 18:45:35 -04:00
transaction() {
return new Transaction(this, ...arguments);
2021-01-31 13:40:13 +03:00
}
wrapIdentifierImpl(value) {
return value !== '*' ? `\`${value.replace(/`/g, '``')}\`` : '*';
2021-01-31 13:40:13 +03:00
}
2016-03-02 17:07:05 +01:00
// Get a raw connection, called by the `pool` whenever a new
// connection needs to be added to the pool.
acquireRawConnection() {
return new Promise((resolver, rejecter) => {
const connection = this.driver.createConnection(this.connectionSettings);
connection.on('error', (err) => {
connection.__knex__disposed = err;
});
2016-09-13 18:12:23 -04:00
connection.connect((err) => {
if (err) {
// if connection is rejected, remove listener that was registered above...
connection.removeAllListeners();
return rejecter(err);
}
resolver(connection);
});
});
2021-01-31 13:40:13 +03: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) {
try {
const end = promisify((cb) => connection.end(cb));
return await end();
} catch (err) {
connection.__knex__disposed = err;
} finally {
// see discussion https://github.com/knex/knex/pull/3483
defer(() => connection.removeAllListeners());
}
2021-01-31 13:40:13 +03:00
}
2016-09-13 18:12:23 -04:00
validateConnection(connection) {
if (
connection.state === 'connected' ||
connection.state === 'authenticated'
) {
return true;
}
return false;
2021-01-31 13:40:13 +03:00
}
2016-03-02 17:07:05 +01:00
// Grab a connection, run the query via the MySQL streaming interface,
// and pass that through to the stream we've sent back to the client.
_stream(connection, obj, stream, options) {
if (!obj.sql) throw new Error('The query is empty');
options = options || {};
const queryOptions = Object.assign({ sql: obj.sql }, obj.options);
return new Promise((resolver, rejecter) => {
stream.on('error', rejecter);
stream.on('end', resolver);
const queryStream = connection
.query(queryOptions, obj.bindings)
.stream(options);
queryStream.on('error', (err) => {
rejecter(err);
stream.emit('error', err);
});
queryStream.pipe(stream);
});
2021-01-31 13:40:13 +03:00
}
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) {
if (!obj || typeof obj === 'string') obj = { sql: obj };
if (!obj.sql) throw new Error('The query is empty');
2020-04-19 00:40:23 +02:00
return new Promise(function (resolver, rejecter) {
if (!obj.sql) {
resolver();
return;
}
const queryOptions = Object.assign({ sql: obj.sql }, obj.options);
connection.query(
queryOptions,
obj.bindings,
function (err, rows, fields) {
if (err) return rejecter(err);
obj.response = [rows, fields];
resolver(obj);
}
);
});
2021-01-31 13:40:13 +03:00
}
2016-03-02 17:07:05 +01:00
// Process the response as returned from the query.
processResponse(obj, runner) {
2016-03-02 17:07:05 +01:00
if (obj == null) return;
const { response } = obj;
const { method } = obj;
const rows = response[0];
const fields = response[1];
if (obj.output) return obj.output.call(runner, rows, fields);
2016-03-02 17:07:05 +01:00
switch (method) {
case 'select':
return rows;
case 'first':
return rows[0];
2016-03-02 17:07:05 +01:00
case 'pluck':
return map(rows, obj.pluck);
2016-03-02 17:07:05 +01:00
case 'insert':
return [rows.insertId];
2016-03-02 17:07:05 +01:00
case 'del':
case 'update':
case 'counter':
return rows.affectedRows;
2016-03-02 17:07:05 +01:00
default:
return response;
2016-03-02 17:07:05 +01:00
}
2021-01-31 13:40:13 +03:00
}
async cancelQuery(connectionToKill) {
2021-03-22 00:33:59 +01:00
const conn = await this.acquireRawConnection();
try {
2021-03-22 00:33:59 +01:00
return await this._query(conn, {
sql: 'KILL QUERY ?',
bindings: [connectionToKill.threadId],
options: {},
2016-05-26 11:06:33 -07:00
});
} finally {
2021-03-22 00:33:59 +01:00
await this.destroyRawConnection(conn);
if (conn.__knex__disposed) {
this.logger.warn(`Connection Error: ${conn.__knex__disposed}`);
}
}
2021-01-31 13:40:13 +03:00
}
}
Object.assign(Client_MySQL.prototype, {
dialect: 'mysql',
driverName: 'mysql',
_escapeBinding: makeEscape(),
canCancelQuery: true,
});
2016-03-02 17:07:05 +01:00
module.exports = Client_MySQL;