-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTx.go
185 lines (173 loc) · 4.78 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
package db
import (
"database/sql"
"errors"
"fmt"
"time"
)
type Tx struct {
conn *sql.Tx
lastSql *string
lastArgs []interface{}
Error error
logger *dbLogger
logSlow time.Duration
isCommitedOrRollbacked bool
}
func (tx *Tx) Commit() error {
if tx.isCommitedOrRollbacked {
return nil
}
if tx.conn == nil {
return errors.New("operate on a bad connection")
}
err := tx.conn.Commit()
if err != nil {
tx.logger.LogQueryError(err.Error(), *tx.lastSql, tx.lastArgs, -1)
} else {
tx.isCommitedOrRollbacked = true
}
return err
}
func (tx *Tx) Rollback() error {
if tx.isCommitedOrRollbacked {
return nil
}
if tx.conn == nil {
return errors.New("operate on a bad connection")
}
err := tx.conn.Rollback()
//logError(err.Error(), *tx.lastSql, tx.lastArgs)
if err != nil {
tx.logger.LogQueryError(err.Error(), *tx.lastSql, tx.lastArgs, -1)
} else {
tx.isCommitedOrRollbacked = true
}
return err
}
func (tx *Tx) Finish(ok bool) error {
if tx.isCommitedOrRollbacked {
return nil
}
if ok {
return tx.Commit()
} else {
return tx.Rollback()
}
//if tx.isCommitedOrRollbacked {
// return nil
//}
//return tx.Rollback()
}
func (tx *Tx) CheckFinished() error {
if tx.isCommitedOrRollbacked {
return nil
}
return tx.Rollback()
}
func (tx *Tx) Prepare(requestSql string) *Stmt {
tx.lastSql = &requestSql
r := basePrepare(nil, tx.conn, requestSql)
r.logger = tx.logger
if r.Error != nil {
tx.logger.LogQueryError(r.Error.Error(), *tx.lastSql, tx.lastArgs, -1)
}
return r
}
func (tx *Tx) Exec(requestSql string, args ...interface{}) *ExecResult {
tx.lastSql = &requestSql
tx.lastArgs = args
r := baseExec(nil, tx.conn, requestSql, args...)
r.logger = tx.logger
if r.Error != nil {
tx.logger.LogQueryError(r.Error.Error(), *tx.lastSql, tx.lastArgs, r.usedTime)
} else {
if tx.logSlow > 0 && r.usedTime >= float32(tx.logSlow/time.Millisecond) {
// 记录慢请求日志
tx.logger.LogQuery(*tx.lastSql, tx.lastArgs, r.usedTime)
}
}
return r
}
func (tx *Tx) Query(requestSql string, args ...interface{}) *QueryResult {
tx.lastSql = &requestSql
tx.lastArgs = args
r := baseQuery(nil, tx.conn, requestSql, args...)
r.logger = tx.logger
if r.Error != nil {
tx.logger.LogQueryError(r.Error.Error(), *tx.lastSql, tx.lastArgs, r.usedTime)
} else {
if tx.logSlow > 0 && r.usedTime >= float32(tx.logSlow/time.Millisecond) {
// 记录慢请求日志
tx.logger.LogQuery(*tx.lastSql, tx.lastArgs, r.usedTime)
}
}
return r
}
func (tx *Tx) Insert(table string, data interface{}) *ExecResult {
requestSql, values := MakeInsertSql(table, data, false)
tx.lastSql = &requestSql
tx.lastArgs = values
r := baseExec(nil, tx.conn, requestSql, values...)
r.logger = tx.logger
if r.Error != nil {
tx.logger.LogQueryError(r.Error.Error(), *tx.lastSql, tx.lastArgs, r.usedTime)
} else {
if tx.logSlow > 0 && r.usedTime >= float32(tx.logSlow/time.Millisecond) {
// 记录慢请求日志
tx.logger.LogQuery(*tx.lastSql, tx.lastArgs, r.usedTime)
}
}
return r
}
func (tx *Tx) Replace(table string, data interface{}) *ExecResult {
requestSql, values := MakeInsertSql(table, data, true)
tx.lastSql = &requestSql
tx.lastArgs = values
r := baseExec(nil, tx.conn, requestSql, values...)
r.logger = tx.logger
if r.Error != nil {
tx.logger.LogQueryError(r.Error.Error(), *tx.lastSql, tx.lastArgs, r.usedTime)
} else {
if tx.logSlow > 0 && r.usedTime >= float32(tx.logSlow/time.Millisecond) {
// 记录慢请求日志
tx.logger.LogQuery(*tx.lastSql, tx.lastArgs, r.usedTime)
}
}
return r
}
func (tx *Tx) Update(table string, data interface{}, wheres string, args ...interface{}) *ExecResult {
requestSql, values := MakeUpdateSql(table, data, wheres, args...)
tx.lastSql = &requestSql
tx.lastArgs = values
r := baseExec(nil, tx.conn, requestSql, values...)
r.logger = tx.logger
if r.Error != nil {
tx.logger.LogQueryError(r.Error.Error(), *tx.lastSql, tx.lastArgs, r.usedTime)
} else {
if tx.logSlow > 0 && r.usedTime >= float32(tx.logSlow/time.Millisecond) {
// 记录慢请求日志
tx.logger.LogQuery(*tx.lastSql, tx.lastArgs, r.usedTime)
}
}
return r
}
func (tx *Tx) Delete(table string, wheres string, args ...interface{}) *ExecResult {
if wheres != "" {
wheres = " where " + wheres
}
requestSql := fmt.Sprintf("delete from %s%s", makeTableName(table), wheres)
tx.lastSql = &requestSql
tx.lastArgs = args
r := baseExec(nil, tx.conn, requestSql, args...)
r.logger = tx.logger
if r.Error != nil {
tx.logger.LogQueryError(r.Error.Error(), *tx.lastSql, tx.lastArgs, r.usedTime)
} else {
if tx.logSlow > 0 && r.usedTime >= float32(tx.logSlow/time.Millisecond) {
// 记录慢请求日志
tx.logger.LogQuery(*tx.lastSql, tx.lastArgs, r.usedTime)
}
}
return r
}