knex/lib/dialects/mssql/transaction.js

103 lines
2.8 KiB
JavaScript
Raw Normal View History

const Transaction = require('../../transaction');
const { isUndefined } = require('lodash');
const debug = require('debug')('knex:tx');
2016-03-02 17:07:05 +01:00
module.exports = class Transaction_MSSQL extends Transaction {
begin(conn) {
debug('%s: begin', this.txid);
return conn.tx_.begin().then(this._resolver, this._rejecter);
2016-09-12 18:45:35 -04:00
}
2016-03-02 17:07:05 +01:00
async savepoint(conn) {
debug('%s: savepoint at', this.txid);
return this.query(conn, `SAVE TRANSACTION ${this.txid}`);
2016-09-12 18:45:35 -04:00
}
2016-03-02 17:07:05 +01:00
commit(conn, value) {
this._completed = true;
debug('%s: commit', this.txid);
return conn.tx_.commit().then(() => this._resolver(value), this._rejecter);
2016-09-12 18:45:35 -04:00
}
2016-03-02 17:07:05 +01:00
release(conn, value) {
return this._resolver(value);
2016-09-12 18:45:35 -04:00
}
2016-03-02 17:07:05 +01:00
rollback(conn, error) {
this._completed = true;
debug('%s: rolling back', this.txid);
return conn.tx_.rollback().then(
() => {
let err = error;
if (isUndefined(error)) {
if (this.doNotRejectOnRollback) {
this._resolver();
return;
}
err = new Error(`Transaction rejected with non-error: ${error}`);
}
this._rejecter(err);
},
(err) => {
if (error) err.originalError = error;
return this._rejecter(err);
}
);
2016-09-12 18:45:35 -04:00
}
2016-03-02 17:07:05 +01:00
async rollbackTo(conn, error) {
debug('%s: rolling backTo', this.txid);
await this.query(conn, `ROLLBACK TRANSACTION ${this.txid}`, 2, error);
this._rejecter(error);
2016-09-12 18:45:35 -04:00
}
2016-03-02 17:07:05 +01:00
// Acquire a connection and create a disposer - either using the one passed
// via config or getting one off the client. The disposer will be called once
// the original promise is marked completed.
2019-11-28 22:44:18 +03:00
acquireConnection(config, cb) {
const configConnection = config && config.connection;
return new Promise((resolve, reject) => {
2019-06-07 17:30:39 -04:00
try {
resolve(
2019-11-28 22:44:18 +03:00
(this.outerTx ? this.outerTx.conn : null) ||
2019-06-07 17:30:39 -04:00
configConnection ||
2019-11-28 22:44:18 +03:00
this.client.acquireConnection()
2019-06-07 17:30:39 -04:00
);
} catch (e) {
reject(e);
}
2016-03-02 17:07:05 +01:00
})
2019-11-28 22:44:18 +03:00
.then((conn) => {
conn.__knexTxId = this.txid;
if (!this.outerTx) {
this.conn = conn;
conn.tx_ = conn.transaction();
}
return conn;
})
2019-11-28 22:44:18 +03:00
.then(async (conn) => {
try {
return await cb(conn);
} finally {
if (!this.outerTx) {
if (conn.tx_) {
if (!this._completed) {
debug('%s: unreleased transaction', this.txid);
conn.tx_.rollback();
}
conn.tx_ = null;
}
this.conn = null;
if (!configConnection) {
debug('%s: releasing connection', this.txid);
this.client.releaseConnection(conn);
} else {
debug('%s: not releasing external connection', this.txid);
}
}
}
});
2016-03-02 17:07:05 +01:00
}
};