pimatic
Version:
A home automation server and framework for the Raspberry PI running on node.js
220 lines (166 loc) • 7.07 kB
JavaScript
;
exports.__esModule = true;
var _map2 = require('lodash/map');
var _map3 = _interopRequireDefault(_map2);
var _assign2 = require('lodash/assign');
var _assign3 = _interopRequireDefault(_assign2);
var _inherits = require('inherits');
var _inherits2 = _interopRequireDefault(_inherits);
var _client = require('../../client');
var _client2 = _interopRequireDefault(_client);
var _bluebird = require('bluebird');
var _bluebird2 = _interopRequireDefault(_bluebird);
var _helpers = require('../../helpers');
var helpers = _interopRequireWildcard(_helpers);
var _transaction = require('./transaction');
var _transaction2 = _interopRequireDefault(_transaction);
var _compiler = require('./query/compiler');
var _compiler2 = _interopRequireDefault(_compiler);
var _compiler3 = require('./schema/compiler');
var _compiler4 = _interopRequireDefault(_compiler3);
var _tablecompiler = require('./schema/tablecompiler');
var _tablecompiler2 = _interopRequireDefault(_tablecompiler);
var _columncompiler = require('./schema/columncompiler');
var _columncompiler2 = _interopRequireDefault(_columncompiler);
var _string = require('../../query/string');
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
// Always initialize with the "QueryBuilder" and "QueryCompiler"
// objects, which extend the base 'lib/query/builder' and
// 'lib/query/compiler', respectively.
// MySQL Client
// -------
function Client_MySQL(config) {
_client2.default.call(this, config);
}
(0, _inherits2.default)(Client_MySQL, _client2.default);
(0, _assign3.default)(Client_MySQL.prototype, {
dialect: 'mysql',
driverName: 'mysql',
_driver: function _driver() {
return require('mysql');
},
queryCompiler: function queryCompiler() {
return new (Function.prototype.bind.apply(_compiler2.default, [null].concat([this], Array.prototype.slice.call(arguments))))();
},
schemaCompiler: function schemaCompiler() {
return new (Function.prototype.bind.apply(_compiler4.default, [null].concat([this], Array.prototype.slice.call(arguments))))();
},
tableCompiler: function tableCompiler() {
return new (Function.prototype.bind.apply(_tablecompiler2.default, [null].concat([this], Array.prototype.slice.call(arguments))))();
},
columnCompiler: function columnCompiler() {
return new (Function.prototype.bind.apply(_columncompiler2.default, [null].concat([this], Array.prototype.slice.call(arguments))))();
},
transaction: function transaction() {
return new (Function.prototype.bind.apply(_transaction2.default, [null].concat([this], Array.prototype.slice.call(arguments))))();
},
_escapeBinding: (0, _string.makeEscape)(),
wrapIdentifier: function wrapIdentifier(value) {
return value !== '*' ? '`' + value.replace(/`/g, '``') + '`' : '*';
},
// Get a raw connection, called by the `pool` whenever a new
// connection needs to be added to the pool.
acquireRawConnection: function acquireRawConnection() {
var _this = this;
return new _bluebird2.default(function (resolver, rejecter) {
var connection = _this.driver.createConnection(_this.connectionSettings);
connection.connect(function (err) {
if (err) return rejecter(err);
connection.on('error', function (err) {
connection.__knex__disposed = err;
});
resolver(connection);
});
});
},
// Used to explicitly close a connection, called internally by the pool
// when a connection times out or the pool is shutdown.
destroyRawConnection: function destroyRawConnection(connection) {
connection.removeAllListeners();
connection.end(function (err) {
if (err) connection.__knex__disposed = err;
});
},
validateConnection: function validateConnection(connection) {
return connection.state === 'connected' || connection.state === 'authenticated';
},
// 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: function _stream(connection, obj, stream, options) {
options = options || {};
return new _bluebird2.default(function (resolver, rejecter) {
stream.on('error', rejecter);
stream.on('end', resolver);
connection.query(obj.sql, obj.bindings).stream(options).pipe(stream);
});
},
// Runs the query on the specified connection, providing the bindings
// and any other necessary prep work.
_query: function _query(connection, obj) {
if (!obj || typeof obj === 'string') obj = { sql: obj };
return new _bluebird2.default(function (resolver, rejecter) {
var _obj = obj;
var sql = _obj.sql;
if (!sql) return resolver();
if (obj.options) sql = (0, _assign3.default)({ sql: sql }, obj.options);
connection.query(sql, obj.bindings, function (err, rows, fields) {
if (err) return rejecter(err);
obj.response = [rows, fields];
resolver(obj);
});
});
},
// Process the response as returned from the query.
processResponse: function processResponse(obj, runner) {
if (obj == null) return;
var response = obj.response;
var method = obj.method;
var rows = response[0];
var fields = response[1];
if (obj.output) return obj.output.call(runner, rows, fields);
switch (method) {
case 'select':
case 'pluck':
case 'first':
{
var resp = helpers.skim(rows);
if (method === 'pluck') return (0, _map3.default)(resp, obj.pluck);
return method === 'first' ? resp[0] : resp;
}
case 'insert':
return [rows.insertId];
case 'del':
case 'update':
case 'counter':
return rows.affectedRows;
default:
return response;
}
},
canCancelQuery: true,
cancelQuery: function cancelQuery(connectionToKill) {
var _this2 = this;
var acquiringConn = this.acquireConnection();
// Error out if we can't acquire connection in time.
// Purposely not putting timeout on `KILL QUERY` execution because erroring
// early there would release the `connectionToKill` back to the pool with
// a `KILL QUERY` command yet to finish.
return acquiringConn.timeout(100).then(function (conn) {
return _this2.query(conn, {
method: 'raw',
sql: 'KILL QUERY ?',
bindings: [connectionToKill.threadId],
options: {}
});
}).finally(function () {
// NOT returning this promise because we want to release the connection
// in a non-blocking fashion
acquiringConn.then(function (conn) {
return _this2.releaseConnection(conn);
});
});
}
});
exports.default = Client_MySQL;
module.exports = exports['default'];