-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
connector.go
260 lines (222 loc) · 6.45 KB
/
connector.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
/*
* Copyright © 2015-2018 Aeneas Rekkas <aeneas+oss@aeneas.io>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @author Aeneas Rekkas <aeneas+oss@aeneas.io>
* @copyright 2015-2018 Aeneas Rekkas <aeneas+oss@aeneas.io>
* @license Apache-2.0
*/
// Package sqlcon provides helpers for dealing with SQL connectivity.
package sqlcon
import (
"database/sql"
"fmt"
"net/url"
"runtime"
"strconv"
"strings"
"time"
"github.com/go-sql-driver/mysql"
"github.com/jmoiron/sqlx"
"github.com/lib/pq"
"github.com/luna-duclos/instrumentedsql"
"github.com/luna-duclos/instrumentedsql/opentracing"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/ory/x/resilience"
)
// SQLConnection represents a connection to a SQL database.
type SQLConnection struct {
db *sqlx.DB
URL *url.URL
L logrus.FieldLogger
options
driverName string
}
// NewSQLConnection returns a new SQLConnection.
func NewSQLConnection(db string, l logrus.FieldLogger, opts ...OptionModifier) (*SQLConnection, error) {
u, err := url.Parse(db)
if err != nil {
return nil, errors.WithStack(err)
}
if l == nil {
logger := logrus.New()
// Basically avoids any logging because no one uses panics
logger.Level = logrus.PanicLevel
l = logger
}
connection := &SQLConnection{
URL: u,
L: l,
}
for _, opt := range opts {
opt(&connection.options)
}
return connection, nil
}
func cleanURLQuery(c *url.URL) *url.URL {
cleanurl := new(url.URL)
*cleanurl = *c
q := cleanurl.Query()
q.Del("max_conns")
q.Del("max_idle_conns")
q.Del("max_conn_lifetime")
q.Del("parseTime")
cleanurl.RawQuery = q.Encode()
return cleanurl
}
// GetDatabaseRetry tries to connect to a database and fails after failAfter.
func (c *SQLConnection) GetDatabaseRetry(maxWait time.Duration, failAfter time.Duration) (*sqlx.DB, error) {
if err := resilience.Retry(c.L, maxWait, failAfter, func() (err error) {
c.db, err = c.GetDatabase()
if err != nil {
return err
}
return nil
}); err != nil {
return nil, errors.WithStack(err)
}
return c.db, nil
}
// GetDatabase retrusn a database instance.
func (c *SQLConnection) GetDatabase() (*sqlx.DB, error) {
if c.db != nil {
return c.db, nil
}
var err error
var registeredDriver string
clean := cleanURLQuery(c.URL)
sqlDriver := clean.Scheme
if registeredDriver, err = c.registerDriver(); err != nil {
return nil, errors.Wrap(err, "could not register driver")
}
c.L.Infof("Connecting with %s", c.URL.Scheme+"://*:*@"+c.URL.Host+c.URL.Path+"?"+clean.RawQuery)
u := connectionString(clean)
if registeredDriver == "cockroach" {
registeredDriver = "postgres"
}
db, err := sql.Open(registeredDriver, u)
if err != nil {
return nil, errors.Wrapf(err, "could not open SQL connection")
}
if sqlDriver == "cockroach" {
sqlDriver = "postgres"
}
c.db = sqlx.NewDb(db, sqlDriver) // This must be clean.Scheme otherwise things like `Rebind()` won't work
if err := c.db.Ping(); err != nil {
return nil, errors.Wrapf(err, "could not ping SQL connection")
}
c.L.Infof("Connected to SQL!")
maxConns := maxParallelism() * 2
if v := c.URL.Query().Get("max_conns"); v != "" {
s, err := strconv.ParseInt(v, 10, 64)
if err != nil {
c.L.Warnf("max_conns value %s could not be parsed to int: %s", v, err)
} else {
maxConns = int(s)
}
}
maxIdleConns := maxParallelism()
if v := c.URL.Query().Get("max_idle_conns"); v != "" {
s, err := strconv.ParseInt(v, 10, 64)
if err != nil {
c.L.Warnf("max_idle_conns value %s could not be parsed to int: %s", v, err)
} else {
maxIdleConns = int(s)
}
}
maxConnLifetime := time.Duration(0)
if v := c.URL.Query().Get("max_conn_lifetime"); v != "" {
s, err := time.ParseDuration(v)
if err != nil {
c.L.Warnf("max_conn_lifetime value %s could not be parsed to int: %s", v, err)
} else {
maxConnLifetime = s
}
}
c.db.SetMaxOpenConns(maxConns)
c.db.SetMaxIdleConns(maxIdleConns)
c.db.SetConnMaxLifetime(maxConnLifetime)
return c.db, nil
}
func maxParallelism() int {
maxProcs := runtime.GOMAXPROCS(0)
numCPU := runtime.NumCPU()
if maxProcs < numCPU {
return maxProcs
}
return numCPU
}
func connectionString(clean *url.URL) string {
if clean.Scheme == "mysql" {
q := clean.Query()
q.Set("parseTime", "true")
clean.RawQuery = q.Encode()
}
username := clean.User.Username()
userinfo := username
password, hasPassword := clean.User.Password()
if hasPassword {
if clean.Scheme == "mysql" {
userinfo = userinfo + ":" + password
} else {
userinfo = url.QueryEscape(userinfo) + ":" + url.QueryEscape(password)
}
}
clean.User = nil
u := clean.String()
clean.User = url.UserPassword(username, password)
if strings.HasPrefix(u, clean.Scheme+"://") {
u = strings.Replace(u, clean.Scheme+"://", clean.Scheme+"://"+userinfo+"@", 1)
}
if clean.Scheme == "mysql" {
u = strings.Replace(u, "mysql://", "", -1)
}
if clean.Scheme == "cockroach" {
u = strings.Replace(u, "cockroach://", "postgres://", 1)
}
return u
}
func (c *SQLConnection) registerDriver() (string, error) {
if c.driverName != "" {
return c.driverName, nil
}
driverName := c.URL.Scheme
if c.UseTracedDriver {
driverName = "instrumented-sql-driver"
if len(c.options.forcedDriverName) > 0 {
driverName = c.options.forcedDriverName
}
tracingOpts := []instrumentedsql.Opt{instrumentedsql.WithTracer(opentracing.NewTracer(c.AllowRoot))}
if c.OmitArgs {
tracingOpts = append(tracingOpts, instrumentedsql.WithOmitArgs())
}
switch c.URL.Scheme {
case "mysql":
sql.Register(driverName,
instrumentedsql.WrapDriver(mysql.MySQLDriver{}, tracingOpts...))
case "cockroach":
fallthrough
case "postgres":
// Why does this have to be a pointer? Because the Open method for postgres has a pointer receiver
// and does not satisfy the driver.Driver interface.
sql.Register(driverName,
instrumentedsql.WrapDriver(&pq.Driver{}, tracingOpts...))
default:
return "", fmt.Errorf("unsupported scheme (%s) in DSN", c.URL.Scheme)
}
}
c.driverName = driverName
return driverName, nil
}