forked from go-pg/pg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tx.go
242 lines (207 loc) · 5.46 KB
/
tx.go
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
package pg
import (
"io"
"os"
"gopkg.in/pg.v4/internal/pool"
"gopkg.in/pg.v4/orm"
"gopkg.in/pg.v4/types"
)
// When true Tx does not issue BEGIN, COMMIT, and ROLLBACK.
// It is primarily useful for testing and can be enabled with
// GO_PG_NO_TX environment variable.
var noTx bool
func init() {
noTx = os.Getenv("GO_PG_NO_TX") != ""
}
// Tx is an in-progress database transaction.
//
// A transaction must end with a call to Commit or Rollback.
//
// After a call to Commit or Rollback, all operations on the transaction fail
// with ErrTxDone.
//
// The statements prepared for a transaction by calling the transaction's
// Prepare or Stmt methods are closed by the call to Commit or Rollback.
type Tx struct {
db *DB
_cn *pool.Conn
stmts []*Stmt
}
// Begin starts a transaction. Most callers should use RunInTransaction instead.
func (db *DB) Begin() (*Tx, error) {
cn, err := db.conn()
if err != nil {
return nil, err
}
tx := &Tx{
db: db,
_cn: cn,
}
if !noTx {
if _, err := tx.Exec("BEGIN"); err != nil {
tx.close(err)
return nil, err
}
}
return tx, nil
}
// RunInTransaction runs a function in a transaction. If function
// returns an error transaction is rollbacked, otherwise transaction
// is committed.
func (db *DB) RunInTransaction(fn func(*Tx) error) error {
tx, err := db.Begin()
if err != nil {
return err
}
if err := fn(tx); err != nil {
tx.Rollback()
return err
}
return tx.Commit()
}
func (tx *Tx) conn() (*pool.Conn, error) {
if tx._cn == nil {
return nil, errTxDone
}
tx._cn.SetReadTimeout(tx.db.opt.ReadTimeout)
tx._cn.SetWriteTimeout(tx.db.opt.WriteTimeout)
return tx._cn, nil
}
// Stmt returns a transaction-specific prepared statement from an existing statement.
func (tx *Tx) Stmt(stmt *Stmt) *Stmt {
stmt, err := tx.Prepare(stmt.q)
if err != nil {
return &Stmt{stickyErr: err}
}
return stmt
}
// Prepare creates a prepared statement for use within a transaction.
//
// The returned statement operates within the transaction and can no longer
// be used once the transaction has been committed or rolled back.
//
// To use an existing prepared statement on this transaction, see Tx.Stmt.
func (tx *Tx) Prepare(q string) (*Stmt, error) {
cn, err := tx.conn()
if err != nil {
return nil, err
}
stmt, err := prepare(tx.db, cn, q)
if err != nil {
return nil, err
}
stmt.inTx = true
tx.stmts = append(tx.stmts, stmt)
return stmt, nil
}
// Exec executes a query with the given parameters in a transaction.
func (tx *Tx) Exec(query interface{}, params ...interface{}) (*types.Result, error) {
cn, err := tx.conn()
if err != nil {
return nil, err
}
res, err := simpleQuery(cn, query, params...)
if err != nil {
return nil, err
}
return res, nil
}
// ExecOne acts like Exec, but query must affect only one row. It
// returns ErrNoRows error when query returns zero rows or
// ErrMultiRows when query returns multiple rows.
func (tx *Tx) ExecOne(query interface{}, params ...interface{}) (*types.Result, error) {
res, err := tx.Exec(query, params...)
if err != nil {
return nil, err
}
return assertOneAffected(res)
}
// Query executes a query with the given parameters in a transaction.
func (tx *Tx) Query(model interface{}, query interface{}, params ...interface{}) (*types.Result, error) {
cn, err := tx.conn()
if err != nil {
return nil, err
}
res, err := simpleQueryData(cn, model, query, params...)
if err != nil {
return nil, err
}
return res, nil
}
// QueryOne acts like Query, but query must return only one row. It
// returns ErrNoRows error when query returns zero rows or
// ErrMultiRows when query returns multiple rows.
func (tx *Tx) QueryOne(model interface{}, query interface{}, params ...interface{}) (*types.Result, error) {
mod, err := newSingleModel(model)
if err != nil {
return nil, err
}
res, err := tx.Query(mod, query, params...)
if err != nil {
return nil, err
}
return assertOneAffected(res)
}
// Model returns new query for the model.
func (tx *Tx) Model(model interface{}) *orm.Query {
return orm.NewQuery(tx, model)
}
// Select selects the model by primary key.
func (tx *Tx) Select(model interface{}) error {
return orm.Select(tx, model)
}
// Create inserts the model updating primary keys if they are empty.
func (tx *Tx) Create(model ...interface{}) error {
return orm.Create(tx, model...)
}
// Update updates the model by primary key.
func (tx *Tx) Update(model interface{}) error {
return orm.Update(tx, model)
}
// Delete deletes the model by primary key.
func (tx *Tx) Delete(model interface{}) error {
return orm.Delete(tx, model)
}
// Commit commits the transaction.
func (tx *Tx) Commit() (err error) {
if !noTx {
_, err = tx.Exec("COMMIT")
}
tx.close(err)
return err
}
// Rollback aborts the transaction.
func (tx *Tx) Rollback() (err error) {
if !noTx {
_, err = tx.Exec("ROLLBACK")
}
tx.close(err)
return err
}
func (tx *Tx) FormatQuery(dst []byte, query string, params ...interface{}) []byte {
return tx.db.FormatQuery(dst, query, params...)
}
func (tx *Tx) close(err error) error {
if tx._cn == nil {
return errTxDone
}
for _, stmt := range tx.stmts {
_ = stmt.Close()
}
tx.stmts = nil
err = tx.db.freeConn(tx._cn, err)
tx._cn = nil
return err
}
// CopyFrom copies data from reader to a table.
func (tx *Tx) CopyFrom(r io.Reader, query string, params ...interface{}) (*types.Result, error) {
cn, err := tx.conn()
if err != nil {
return nil, err
}
res, err := copyFrom(cn, r, query, params...)
if err != nil {
return nil, err
}
return res, nil
}