transaction.js
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import Promise from 'bluebird';
import Transaction from '../../transaction';
const debugTx = require('debug')('knex:tx')
export default class Oracle_Transaction extends Transaction {
// disable autocommit to allow correct behavior (default is true)
begin() {
return Promise.resolve()
}
commit(conn, value) {
this._completed = true
return conn.commitAsync()
.return(value)
.then(this._resolver, this._rejecter)
}
release(conn, value) {
return this._resolver(value)
}
rollback(conn, err) {
this._completed = true
debugTx('%s: rolling back', this.txid)
return conn.rollbackAsync()
.throw(err)
.catch(this._rejecter)
}
acquireConnection(config) {
const t = this
return Promise.try(() =>
config.connection || t.client.acquireConnection()
).tap(connection => {
if (!t.outerTx) {
connection.setAutoCommit(false)
}
}).disposer(connection => {
debugTx('%s: releasing connection', t.txid)
connection.setAutoCommit(true)
if (!config.connection) {
t.client.releaseConnection(connection)
} else {
debugTx('%s: not releasing external connection', t.txid)
}
})
}
}