forked from go-sql-driver/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection.go
329 lines (280 loc) · 6.09 KB
/
connection.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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
//
// Copyright 2012 Julien Schmidt. All rights reserved.
// http://www.julienschmidt.com
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at http://mozilla.org/MPL/2.0/.
package mysql
import (
"bufio"
"database/sql/driver"
"errors"
"net"
"strconv"
"strings"
"time"
)
type mysqlConn struct {
cfg *config
server *serverSettings
netConn net.Conn
bufReader *bufio.Reader
protocol uint8
sequence uint8
affectedRows uint64
insertId uint64
lastCmdTime time.Time
keepaliveTimer *time.Timer
}
type config struct {
user string
passwd string
net string
addr string
dbname string
params map[string]string
}
type serverSettings struct {
protocol byte
version string
flags ClientFlag
charset uint8
scrambleBuff []byte
threadID uint32
keepalive int64
}
// Handles parameters set in DSN
func (mc *mysqlConn) handleParams() (e error) {
for param, val := range mc.cfg.params {
switch param {
// Charset
case "charset":
charsets := strings.Split(val, ",")
for _, charset := range charsets {
e = mc.exec("SET NAMES " + charset)
if e == nil {
break
}
}
if e != nil {
return
}
// TLS-Encryption
case "tls":
dbgLog.Print("TLS-Encryption not implemented yet")
// Compression
case "compress":
dbgLog.Print("Compression not implemented yet")
// We don't want to set keepalive as system var
case "keepalive":
continue
// System Vars
default:
e = mc.exec("SET " + param + "=" + val + "")
if e != nil {
return
}
}
}
// KeepAlive
if val, param := mc.cfg.params["keepalive"]; param {
mc.server.keepalive, e = strconv.ParseInt(val, 10, 64)
if e != nil {
return errors.New("Invalid keepalive time")
}
// Get keepalive time by MySQL system var wait_timeout
if mc.server.keepalive == 1 {
val, e = mc.getSystemVar("wait_timeout")
mc.server.keepalive, e = strconv.ParseInt(val, 10, 64)
if e != nil {
return errors.New("Error getting wait_timeout")
}
// Trigger 1min BEFORE wait_timeout
if mc.server.keepalive > 60 {
mc.server.keepalive -= 60
}
}
if mc.server.keepalive > 0 {
mc.lastCmdTime = time.Now()
// Ping-Timer to avoid timeout
mc.keepaliveTimer = time.AfterFunc(
time.Duration(mc.server.keepalive)*time.Second, func() {
var diff time.Duration
for {
// Fires only if diff > keepalive. Makes it collision safe
for mc.netConn != nil &&
mc.lastCmdTime.Unix()+mc.server.keepalive > time.Now().Unix() {
diff = mc.lastCmdTime.Sub(time.Unix(time.Now().Unix()-mc.server.keepalive, 0))
time.Sleep(diff)
}
if mc.netConn != nil {
if e := mc.Ping(); e != nil {
break
}
} else {
return
}
}
})
}
}
return
}
func (mc *mysqlConn) Begin() (driver.Tx, error) {
e := mc.exec("START TRANSACTION")
if e != nil {
return nil, e
}
return &mysqlTx{mc}, e
}
func (mc *mysqlConn) Close() (e error) {
if mc.server.keepalive > 0 {
mc.keepaliveTimer.Stop()
}
mc.writeCommandPacket(COM_QUIT)
mc.bufReader = nil
mc.netConn.Close()
mc.netConn = nil
return
}
func (mc *mysqlConn) Prepare(query string) (driver.Stmt, error) {
// Send command
e := mc.writeCommandPacket(COM_STMT_PREPARE, query)
if e != nil {
return nil, e
}
stmt := mysqlStmt{new(stmtContent)}
stmt.mc = mc
// Read Result
var columnCount uint16
columnCount, e = stmt.readPrepareResultPacket()
if e != nil {
return nil, e
}
if stmt.paramCount > 0 {
stmt.params, e = stmt.mc.readColumns(stmt.paramCount)
if e != nil {
return nil, e
}
}
if columnCount > 0 {
_, e = stmt.mc.readUntilEOF()
if e != nil {
return nil, e
}
}
return stmt, e
}
func (mc *mysqlConn) Exec(query string, args []driver.Value) (driver.Result, error) {
if len(args) > 0 {
return nil, driver.ErrSkip
}
mc.affectedRows = 0
mc.insertId = 0
e := mc.exec(query)
if e != nil {
return nil, e
}
if mc.affectedRows == 0 && mc.insertId == 0 {
return driver.ResultNoRows, e
}
return &mysqlResult{
affectedRows: int64(mc.affectedRows),
insertId: int64(mc.insertId)},
e
}
// Internal function to execute commands
func (mc *mysqlConn) exec(query string) (e error) {
// Send command
e = mc.writeCommandPacket(COM_QUERY, query)
if e != nil {
return
}
// Read Result
var resLen int
resLen, e = mc.readResultSetHeaderPacket()
if e != nil {
return
}
if resLen > 0 {
_, e = mc.readUntilEOF()
if e != nil {
return
}
mc.affectedRows, e = mc.readUntilEOF()
if e != nil {
return
}
}
return
}
func (mc *mysqlConn) Query(query string, args []driver.Value) (driver.Rows, error) {
if len(args) > 0 {
return nil, driver.ErrSkip
}
// Send command
e := mc.writeCommandPacket(COM_QUERY, query)
if e != nil {
return nil, e
}
// Read Result
var resLen int
resLen, e = mc.readResultSetHeaderPacket()
if e != nil {
return nil, e
}
rows := mysqlRows{&rowsContent{mc, false, nil, false}}
if resLen > 0 {
// Columns
rows.content.columns, e = mc.readColumns(resLen)
if e != nil {
return nil, e
}
}
return rows, e
}
// Gets the value of the given MySQL System Variable
func (mc *mysqlConn) getSystemVar(name string) (val string, e error) {
// Send command
e = mc.writeCommandPacket(COM_QUERY, "SELECT @@"+name)
if e != nil {
return
}
// Read Result
resLen, e := mc.readResultSetHeaderPacket()
if e != nil {
return
}
if resLen > 0 {
var n uint64
n, e = mc.readUntilEOF()
if e != nil {
return
}
var row *[]*[]byte
row, e = mc.readRow(int(n))
if e != nil {
return
}
_, e = mc.readUntilEOF()
if e != nil {
return
}
val = string(*(*row)[0])
}
return
}
// *** DEPRECATED ***
// Executes a simple Ping-CMD to test or keepalive the connection
func (mc *mysqlConn) Ping() (e error) {
// Send command
e = mc.writeCommandPacket(COM_PING)
if e != nil {
return
}
// Read Result
e = mc.readResultOK()
return
}