-
Notifications
You must be signed in to change notification settings - Fork 1
/
stmt.go
407 lines (369 loc) · 12.9 KB
/
stmt.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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
package dbresolver
import (
"context"
"database/sql"
"github.com/hashicorp/go-multierror"
"github.com/jmoiron/sqlx"
"github.com/pkg/errors"
)
// errors.
var (
errSelectedStmtNotFound = errors.New("dbresolver: selected stmt not found")
)
// Stmt is a wrapper around sqlx.Stmt.
type Stmt interface {
Close() error
Exec(args ...interface{}) (sql.Result, error)
ExecContext(ctx context.Context, args ...interface{}) (sql.Result, error)
Get(dest interface{}, args ...interface{}) error
GetContext(ctx context.Context, dest interface{}, args ...interface{}) error
MustExec(args ...interface{}) sql.Result
MustExecContext(ctx context.Context, args ...interface{}) sql.Result
Query(args ...interface{}) (*sql.Rows, error)
QueryContext(ctx context.Context, args ...interface{}) (*sql.Rows, error)
QueryRow(args ...interface{}) *sql.Row
QueryRowContext(ctx context.Context, args ...interface{}) *sql.Row
QueryRowx(args ...interface{}) *sqlx.Row
QueryRowxContext(ctx context.Context, args ...interface{}) *sqlx.Row
Queryx(args ...interface{}) (*sqlx.Rows, error)
QueryxContext(ctx context.Context, args ...interface{}) (*sqlx.Rows, error)
Select(dest interface{}, args ...interface{}) error
SelectContext(ctx context.Context, dest interface{}, args ...interface{}) error
Unsafe() *sqlx.Stmt
}
type stmt struct {
primaries []*sqlx.DB
reads []*sqlx.DB
primaryStmts map[*sqlx.DB]*sqlx.Stmt
readStmts map[*sqlx.DB]*sqlx.Stmt
loadBalancer LoadBalancer
}
var _ Stmt = (*stmt)(nil)
// Close closes all statements.
// Close is a wrapper around sqlx.Stmt.Close.
func (s *stmt) Close() error {
var errs error
for _, stmt := range s.primaryStmts {
if err := stmt.Close(); err != nil {
errs = multierror.Append(errs, err)
}
}
for _, stmt := range s.readStmts {
if err := stmt.Close(); err != nil {
errs = multierror.Append(errs, err)
}
}
return errs
}
// Exec chooses a primary database's statement and executes using chosen statement.
// Exec is a wrapper around sqlx.Stmt.Exec.
func (s *stmt) Exec(args ...interface{}) (sql.Result, error) {
db := s.loadBalancer.Select(context.Background(), s.primaries)
stmt, ok := s.primaryStmts[db]
if !ok {
// Should not happen.
return nil, errors.Wrapf(errSelectedStmtNotFound, "primary db: %v", db)
}
return stmt.Exec(args...)
}
// ExecContext chooses a primary database's statement and executes using chosen statement.
// ExecContext is a wrapper around sqlx.Stmt.ExecContext.
func (s *stmt) ExecContext(ctx context.Context, args ...interface{}) (sql.Result, error) {
db := s.loadBalancer.Select(ctx, s.primaries)
stmt, ok := s.primaryStmts[db]
if !ok {
// Should not happen.
return nil, errors.Wrapf(errSelectedStmtNotFound, "primary db: %v", db)
}
return stmt.ExecContext(ctx, args...)
}
// Get chooses a readable database's statement and Get using chosen statement.
// Get is a wrapper around sqlx.Stmt.Get.
func (s *stmt) Get(dest interface{}, args ...interface{}) error {
db := s.loadBalancer.Select(context.Background(), s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return errors.Wrapf(errSelectedStmtNotFound, "readable db: %v", db)
}
err := stmt.Get(dest, args...)
if isDBConnectionError(err) {
dbPrimary := s.loadBalancer.Select(context.Background(), s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return errors.Wrapf(errSelectedNamedStmtNotFound, "readable db: %v", db)
}
err = stmtPrimary.Get(dest, args...)
}
return err
}
// GetContext chooses a readable database's statement and Get using chosen statement.
// GetContext is a wrapper around sqlx.Stmt.GetContext.
func (s *stmt) GetContext(ctx context.Context, dest interface{}, args ...interface{}) error {
db := s.loadBalancer.Select(ctx, s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return errors.Wrapf(errSelectedStmtNotFound, "readable db: %v", db)
}
err := stmt.GetContext(ctx, dest, args...)
if isDBConnectionError(err) {
dbPrimary := s.loadBalancer.Select(ctx, s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return errors.Wrapf(errSelectedNamedStmtNotFound, "readable db: %v", db)
}
err = stmtPrimary.GetContext(ctx, dest, args...)
}
return err
}
// MustExec chooses a primary database's statement and executes using chosen statement or panic.
// MustExec is a wrapper around sqlx.Stmt.MustExec.
func (s *stmt) MustExec(args ...interface{}) sql.Result {
db := s.loadBalancer.Select(context.Background(), s.primaries)
stmt, ok := s.primaryStmts[db]
if !ok {
// Should not happen.
panic(errors.Wrapf(errSelectedStmtNotFound, "primary db: %v", db))
}
return stmt.MustExec(args...)
}
// MustExecContext chooses a primary database's statement and executes using chosen statement or panic.
// MustExecContext is a wrapper around sqlx.Stmt.MustExecContext.
func (s *stmt) MustExecContext(ctx context.Context, args ...interface{}) sql.Result {
db := s.loadBalancer.Select(ctx, s.primaries)
stmt, ok := s.primaryStmts[db]
if !ok {
// Should not happen.
panic(errors.Wrapf(errSelectedStmtNotFound, "primary db: %v", db))
}
return stmt.MustExecContext(ctx, args...)
}
// Query chooses a readable database's statement and executes using chosen statement.
// Query is a wrapper around sqlx.Stmt.Query.
func (s *stmt) Query(args ...interface{}) (*sql.Rows, error) {
db := s.loadBalancer.Select(context.Background(), s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return nil, errors.Wrapf(errSelectedStmtNotFound, "readable db: %v", db)
}
rows, err := stmt.Query(args...)
if isDBConnectionError(err) {
dbPrimary := s.loadBalancer.Select(context.Background(), s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return nil, errors.Wrapf(errSelectedNamedStmtNotFound, "readable db: %v", db)
}
rows, err = stmtPrimary.Query(args...)
}
return rows, err
}
// QueryContext chooses a readable database's statement and executes using chosen statement.
// QueryContext is a wrapper around sqlx.Stmt.QueryContext.
func (s *stmt) QueryContext(ctx context.Context, args ...interface{}) (*sql.Rows, error) {
db := s.loadBalancer.Select(ctx, s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return nil, errors.Wrapf(errSelectedStmtNotFound, "readable db: %v", db)
}
rows, err := stmt.QueryContext(ctx, args...)
if isDBConnectionError(err) {
dbPrimary := s.loadBalancer.Select(ctx, s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return nil, errors.Wrapf(errSelectedNamedStmtNotFound, "readable db: %v", db)
}
rows, err = stmtPrimary.QueryContext(ctx, args...)
}
return rows, err
}
// QueryRow chooses a readable database's statement, executes using chosen statement and returns *sqlx.Row.
// If selected statement is not found, returns nil.
// QueryRow is a wrapper around sqlx.Stmt.QueryRow.
func (s *stmt) QueryRow(args ...interface{}) *sql.Row {
db := s.loadBalancer.Select(context.Background(), s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return nil
}
row := stmt.QueryRow(args...)
if isDBConnectionError(row.Err()) {
dbPrimary := s.loadBalancer.Select(context.Background(), s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return nil
}
row = stmtPrimary.QueryRow(args...)
}
return row
}
// QueryRowContext chooses a readable database's statement, executes using chosen statement and returns *sqlx.Row.
// If selected statement is not found, returns nil.
// QueryRowContext is a wrapper around sqlx.Stmt.QueryRowContext.
func (s *stmt) QueryRowContext(ctx context.Context, args ...interface{}) *sql.Row {
db := s.loadBalancer.Select(ctx, s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return nil
}
row := stmt.QueryRowContext(ctx, args...)
if isDBConnectionError(row.Err()) {
dbPrimary := s.loadBalancer.Select(ctx, s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return nil
}
row = stmtPrimary.QueryRowContext(ctx, args...)
}
return row
}
// QueryRowx chooses a readable database's statement, executes using chosen statement and returns *sqlx.Row.
// If selected statement is not found, returns nil.
// QueryRowx is a wrapper around sqlx.Stmt.QueryRowx.
func (s *stmt) QueryRowx(args ...interface{}) *sqlx.Row {
db := s.loadBalancer.Select(context.Background(), s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return nil
}
row := stmt.QueryRowx(args...)
if isDBConnectionError(row.Err()) {
dbPrimary := s.loadBalancer.Select(context.Background(), s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return nil
}
row = stmtPrimary.QueryRowx(args...)
}
return row
}
// QueryRowxContext chooses a readable database's statement, executes using chosen statement and returns *sqlx.Row.
// If selected statement is not found, returns nil.
// QueryRowxContext is a wrapper around sqlx.Stmt.QueryRowxContext.
func (s *stmt) QueryRowxContext(ctx context.Context, args ...interface{}) *sqlx.Row {
db := s.loadBalancer.Select(ctx, s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return nil
}
row := stmt.QueryRowxContext(ctx, args...)
if isDBConnectionError(row.Err()) {
dbPrimary := s.loadBalancer.Select(ctx, s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return nil
}
row = stmtPrimary.QueryRowxContext(ctx, args...)
}
return row
}
// Queryx chooses a readable database's statement, executes using chosen statement and returns *sqlx.Rows.
// Queryx is a wrapper around sqlx.Stmt.Queryx.
func (s *stmt) Queryx(args ...interface{}) (*sqlx.Rows, error) {
db := s.loadBalancer.Select(context.Background(), s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return nil, errors.Wrapf(errSelectedStmtNotFound, "readable db: %v", db)
}
rows, err := stmt.Queryx(args...)
if isDBConnectionError(err) {
dbPrimary := s.loadBalancer.Select(context.Background(), s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return nil, errors.Wrapf(errSelectedNamedStmtNotFound, "readable db: %v", db)
}
rows, err = stmtPrimary.Queryx(args...)
}
return rows, err
}
// QueryxContext chooses a readable database's statement, executes using chosen statement and returns *sqlx.Rows.
// QueryxContext is a wrapper around sqlx.Stmt.QueryxContext.
func (s *stmt) QueryxContext(ctx context.Context, args ...interface{}) (*sqlx.Rows, error) {
db := s.loadBalancer.Select(ctx, s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return nil, errors.Wrapf(errSelectedStmtNotFound, "readable db: %v", db)
}
rows, err := stmt.QueryxContext(ctx, args...)
if isDBConnectionError(err) {
dbPrimary := s.loadBalancer.Select(ctx, s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return nil, errors.Wrapf(errSelectedNamedStmtNotFound, "readable db: %v", db)
}
rows, err = stmtPrimary.QueryxContext(ctx, args...)
}
return rows, err
}
// Select chooses a readable database's statement, executes using chosen statement.
// Select is a wrapper around sqlx.Stmt.Select.
func (s *stmt) Select(dest interface{}, args ...interface{}) error {
db := s.loadBalancer.Select(context.Background(), s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return errors.Wrapf(errSelectedStmtNotFound, "readable db: %v", db)
}
err := stmt.Select(dest, args...)
if isDBConnectionError(err) {
dbPrimary := s.loadBalancer.Select(context.Background(), s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return errors.Wrapf(errSelectedNamedStmtNotFound, "readable db: %v", db)
}
err = stmtPrimary.Select(dest, args...)
}
return err
}
// SelectContext chooses a readable database's statement, executes using chosen statement.
// SelectContext is a wrapper around sqlx.Stmt.SelectContext.
func (s *stmt) SelectContext(ctx context.Context, dest interface{}, args ...interface{}) error {
db := s.loadBalancer.Select(ctx, s.reads)
stmt, ok := s.readStmts[db]
if !ok {
// Should not happen.
return errors.Wrapf(errSelectedStmtNotFound, "readable db: %v", db)
}
err := stmt.SelectContext(ctx, dest, args...)
if isDBConnectionError(err) {
dbPrimary := s.loadBalancer.Select(ctx, s.primaries)
stmtPrimary, ok := s.readStmts[dbPrimary]
if !ok {
// Should not happen.
return errors.Wrapf(errSelectedNamedStmtNotFound, "readable db: %v", db)
}
err = stmtPrimary.SelectContext(ctx, dest, args...)
}
return err
}
// Unsafe chooses a primary database's statement and returns underlying sql.Stmt.
// If selected statement is not found, returns nil.
// Unsafe wraps sqlx.Stmt.Unsafe.
func (s *stmt) Unsafe() *sqlx.Stmt {
db := s.loadBalancer.Select(context.Background(), s.primaries)
stmt, ok := s.primaryStmts[db]
if !ok {
// Should not happen.
return nil
}
return stmt.Unsafe()
}