-
Notifications
You must be signed in to change notification settings - Fork 1
/
dbresolver.go
813 lines (719 loc) · 26.2 KB
/
dbresolver.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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
package dbresolver
import (
"context"
"database/sql"
"database/sql/driver"
"time"
"github.com/hashicorp/go-multierror"
"github.com/jmoiron/sqlx"
"github.com/pkg/errors"
)
// errors.
var (
errNoPrimaryDB = errors.New("dbresolver: no primary database")
errInvalidReadWritePolicy = errors.New("dbresolver: invalid read/write policy")
errNoDBToRead = errors.New("dbresolver: no database to read")
)
// ReadWritePolicy is the read/write policy for the primary databases.
type ReadWritePolicy string
// ReadWritePolicies.
const (
ReadWrite ReadWritePolicy = "read-write"
WriteOnly ReadWritePolicy = "write-only"
)
var validReadWritePolicies = map[ReadWritePolicy]struct{}{
ReadWrite: {},
WriteOnly: {},
}
// PrimaryDBsConfig is the config of primary databases.
type PrimaryDBsConfig struct {
DBs []*sqlx.DB
ReadWritePolicy ReadWritePolicy
}
// NewPrimaryDBsConfig creates a new PrimaryDBsConfig and returns it.
func NewPrimaryDBsConfig(dbs []*sqlx.DB, policy ReadWritePolicy) *PrimaryDBsConfig {
return &PrimaryDBsConfig{
DBs: dbs,
ReadWritePolicy: policy,
}
}
// DBResolver chooses one of databases and then executes a query.
// This supposed to be aligned with sqlx.DB.
// Some functions which must select from multiple database are only available for the primary DBResolver
// or the first primary DBResolver (if using multi-primary). For example, `DriverName()`, `Unsafe()`.
type DBResolver interface {
Begin() (*sql.Tx, error)
BeginTx(ctx context.Context, opts *sql.TxOptions) (*sql.Tx, error)
BeginTxx(ctx context.Context, opts *sql.TxOptions) (*sqlx.Tx, error)
Beginx() (*sqlx.Tx, error)
BindNamed(query string, arg interface{}) (string, []interface{}, error)
Close() error
Conn(ctx context.Context) (*sql.Conn, error)
Connx(ctx context.Context) (*sqlx.Conn, error)
Driver() driver.Driver
DriverName() string
Exec(query string, args ...interface{}) (sql.Result, error)
ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error)
Get(dest interface{}, query string, args ...interface{}) error
GetContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error
MapperFunc(mf func(string) string)
MustBegin() *sqlx.Tx
MustBeginTx(ctx context.Context, opts *sql.TxOptions) *sqlx.Tx
MustExec(query string, args ...interface{}) sql.Result
MustExecContext(ctx context.Context, query string, args ...interface{}) sql.Result
NamedExec(query string, arg interface{}) (sql.Result, error)
NamedExecContext(ctx context.Context, query string, arg interface{}) (sql.Result, error)
NamedQuery(query string, arg interface{}) (*sqlx.Rows, error)
NamedQueryContext(ctx context.Context, query string, arg interface{}) (*sqlx.Rows, error)
Ping() error
PingContext(ctx context.Context) error
Prepare(query string) (Stmt, error)
PrepareContext(ctx context.Context, query string) (Stmt, error)
PrepareNamed(query string) (NamedStmt, error)
PrepareNamedContext(ctx context.Context, query string) (NamedStmt, error)
Preparex(query string) (Stmt, error)
PreparexContext(ctx context.Context, query string) (Stmt, error)
Query(query string, args ...interface{}) (*sql.Rows, error)
QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error)
QueryRow(query string, args ...interface{}) *sql.Row
QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row
QueryRowx(query string, args ...interface{}) *sqlx.Row
QueryRowxContext(ctx context.Context, query string, args ...interface{}) *sqlx.Row
Queryx(query string, args ...interface{}) (*sqlx.Rows, error)
QueryxContext(ctx context.Context, query string, args ...interface{}) (*sqlx.Rows, error)
Rebind(query string) string
Select(dest interface{}, query string, args ...interface{}) error
SelectContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error
SetConnMaxIdleTime(d time.Duration)
SetConnMaxLifetime(d time.Duration)
SetMaxIdleConns(n int)
SetMaxOpenConns(n int)
Stats() sql.DBStats
Unsafe() *sqlx.DB
}
type dbResolver struct {
primaries []*sqlx.DB
secondaries []*sqlx.DB
reads []*sqlx.DB
loadBalancer LoadBalancer
}
var _ DBResolver = (*dbResolver)(nil)
// NewDBResolver creates a new DBResolver and returns it.
// If no primary DBResolver is given, it returns an error.
// If you do not give WriteOnly option, it will use the primary DBResolver as the read DBResolver.
// if you do not give LoadBalancer option, it will use the RandomLoadBalancer.
func NewDBResolver(primaryDBsCfg *PrimaryDBsConfig, opts ...OptionFunc) (DBResolver, error) {
if primaryDBsCfg == nil || len(primaryDBsCfg.DBs) == 0 {
return nil, errNoPrimaryDB
}
if primaryDBsCfg.ReadWritePolicy == "" {
primaryDBsCfg.ReadWritePolicy = ReadWrite
}
if _, ok := validReadWritePolicies[primaryDBsCfg.ReadWritePolicy]; !ok {
return nil, errInvalidReadWritePolicy
}
options, err := compileOptions(opts...)
if err != nil {
return nil, err
}
var reads []*sqlx.DB
reads = append(reads, options.SecondaryDBs...)
if primaryDBsCfg.ReadWritePolicy == ReadWrite {
reads = append(reads, primaryDBsCfg.DBs...)
}
if len(reads) == 0 {
return nil, errNoDBToRead
}
return &dbResolver{
primaries: primaryDBsCfg.DBs,
secondaries: options.SecondaryDBs,
reads: reads,
loadBalancer: options.LoadBalancer,
}, nil
}
func compileOptions(opts ...OptionFunc) (*Options, error) {
options := &Options{}
for _, opt := range opts {
opt(options)
}
if options.LoadBalancer == nil {
options.LoadBalancer = NewRandomLoadBalancer()
}
return options, nil
}
func MustNewDBResolver(primaryDBsCfg *PrimaryDBsConfig, opts ...OptionFunc) DBResolver {
db, err := NewDBResolver(primaryDBsCfg, opts...)
if err != nil {
panic(err)
}
return db
}
// Begin chooses a primary database and starts a transaction.
// This supposed to be aligned with sqlx.DB.Begin.
func (r *dbResolver) Begin() (*sql.Tx, error) {
db := r.loadBalancer.Select(context.Background(), r.primaries)
return db.Begin()
}
// BeginTx chooses a primary database and starts a transaction.
// This supposed to be aligned with sqlx.DB.BeginTx.
func (r *dbResolver) BeginTx(ctx context.Context, opts *sql.TxOptions) (*sql.Tx, error) {
db := r.loadBalancer.Select(ctx, r.primaries)
return db.BeginTx(ctx, opts)
}
// BeginTxx chooses a primary database, begins a transaction and returns an *sqlx.Tx.
// This supposed to be aligned with sqlx.DB.BeginTxx.
func (r *dbResolver) BeginTxx(ctx context.Context, opts *sql.TxOptions) (*sqlx.Tx, error) {
db := r.loadBalancer.Select(ctx, r.primaries)
return db.BeginTxx(ctx, opts)
}
// Beginx chooses a primary database, begins a transaction and returns an *sqlx.Tx.
// This supposed to be aligned with sqlx.DB.Beginx.
func (r *dbResolver) Beginx() (*sqlx.Tx, error) {
db := r.loadBalancer.Select(context.Background(), r.primaries)
return db.Beginx()
}
// BindNamed chooses a primary database and binds a query using the DB driver's bindvar type.
// This supposed to be aligned with sqlx.DB.BindNamed.
func (r *dbResolver) BindNamed(query string, arg interface{}) (string, []interface{}, error) {
db := r.loadBalancer.Select(context.Background(), r.primaries)
return db.BindNamed(query, arg)
}
// Close closes all the databases.
func (r *dbResolver) Close() error {
var errs error
for _, db := range r.primaries {
if err := db.Close(); err != nil {
errs = multierror.Append(errs, err)
}
}
for _, db := range r.secondaries {
if err := db.Close(); err != nil {
errs = multierror.Append(errs, err)
}
}
return errs
}
// Conn chooses a primary database and returns a *sql.Conn.
// This supposed to be aligned with sqlx.DB.Conn.
func (r *dbResolver) Conn(ctx context.Context) (*sql.Conn, error) {
db := r.loadBalancer.Select(ctx, r.primaries)
return db.Conn(ctx)
}
// Connx chooses a primary database and returns a *sqlx.Conn.
// This supposed to be aligned with sqlx.DB.Connx.
func (r *dbResolver) Connx(ctx context.Context) (*sqlx.Conn, error) {
db := r.loadBalancer.Select(ctx, r.primaries)
return db.Connx(ctx)
}
// Driver chooses a primary database and returns a driver.Driver.
// This supposed to be aligned with sqlx.DB.Driver.
func (r *dbResolver) Driver() driver.Driver {
db := r.loadBalancer.Select(context.Background(), r.primaries)
return db.Driver()
}
// DriverName chooses a primary database and returns the driverName.
// This supposed to be aligned with sqlx.DB.DriverName.
func (r *dbResolver) DriverName() string {
db := r.loadBalancer.Select(context.Background(), r.primaries)
return db.DriverName()
}
// Exec chooses a primary database and executes a query without returning any rows.
// This supposed to be aligned with sqlx.DB.Exec.
func (r *dbResolver) Exec(query string, args ...interface{}) (sql.Result, error) {
db := r.loadBalancer.Select(context.Background(), r.primaries)
return db.Exec(query, args...)
}
// ExecContext chooses a primary database and executes a query without returning any rows.
// This supposed to be aligned with sqlx.DB.ExecContext.
func (r *dbResolver) ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) {
db := r.loadBalancer.Select(ctx, r.primaries)
return db.Exec(query, args...)
}
// Get chooses a readable database and Get using chosen DB.
// This supposed to be aligned with sqlx.DB.Get.
func (r *dbResolver) Get(dest interface{}, query string, args ...interface{}) error {
db := r.loadBalancer.Select(context.Background(), r.reads)
err := db.Get(dest, query, args...)
if isDBConnectionError(err) {
dbPrimary := r.loadBalancer.Select(context.Background(), r.primaries)
err = dbPrimary.Get(dest, query, args...)
}
return err
}
// GetContext chooses a readable database and Get using chosen DB.
// This supposed to be aligned with sqlx.DB.GetContext.
func (r *dbResolver) GetContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error {
db := r.loadBalancer.Select(ctx, r.reads)
err := db.GetContext(ctx, dest, query, args...)
if isDBConnectionError(err) {
dbPrimary := r.loadBalancer.Select(ctx, r.primaries)
err = dbPrimary.GetContext(ctx, dest, query, args...)
}
return err
}
// MapperFunc sets the mapper function for the all primary databases and secondary databases.
func (r *dbResolver) MapperFunc(mf func(string) string) {
for _, db := range r.primaries {
db.MapperFunc(mf)
}
for _, db := range r.secondaries {
db.MapperFunc(mf)
}
}
// MustBegin chooses a primary database, starts a transaction and returns an *sqlx.Tx or panic.
// This supposed to be aligned with sqlx.DB.MustBegin.
func (r *dbResolver) MustBegin() *sqlx.Tx {
db := r.loadBalancer.Select(context.Background(), r.primaries)
return db.MustBegin()
}
// MustBeginTx chooses a primary database, starts a transaction and returns an *sqlx.Tx or panic.
// This supposed to be aligned with sqlx.DB.MustBeginTx.
func (r *dbResolver) MustBeginTx(ctx context.Context, opts *sql.TxOptions) *sqlx.Tx {
db := r.loadBalancer.Select(ctx, r.primaries)
return db.MustBeginTx(ctx, opts)
}
// MustExec chooses a primary database and executes a query or panic.
// This supposed to be aligned with sqlx.DB.MustExec.
func (r *dbResolver) MustExec(query string, args ...interface{}) sql.Result {
db := r.loadBalancer.Select(context.Background(), r.primaries)
return db.MustExec(query, args...)
}
// MustExecContext chooses a primary database and executes a query or panic.
// This supposed to be aligned with sqlx.DB.MustExecContext.
func (r *dbResolver) MustExecContext(ctx context.Context, query string, args ...interface{}) sql.Result {
db := r.loadBalancer.Select(ctx, r.primaries)
return db.MustExecContext(ctx, query, args...)
}
// NamedExec chooses a primary database and then executes a named query.
// This supposed to be aligned with sqlx.DB.NamedExec.
func (r *dbResolver) NamedExec(query string, arg interface{}) (sql.Result, error) {
db := r.loadBalancer.Select(context.Background(), r.primaries)
return db.NamedExec(query, arg)
}
// NamedExecContext chooses a primary database and then executes a named query.
// This supposed to be aligned with sqlx.DB.NamedExecContext.
func (r *dbResolver) NamedExecContext(ctx context.Context, query string, arg interface{}) (sql.Result, error) {
db := r.loadBalancer.Select(ctx, r.primaries)
return db.NamedExecContext(ctx, query, arg)
}
// NamedQuery chooses a readable database and then executes a named query.
// This supposed to be aligned with sqlx.DB.NamedQuery.
func (r *dbResolver) NamedQuery(query string, arg interface{}) (*sqlx.Rows, error) {
db := r.loadBalancer.Select(context.Background(), r.reads)
rows, err := db.NamedQuery(query, arg)
if isDBConnectionError(err) {
dbPrimary := r.loadBalancer.Select(context.Background(), r.primaries)
rows, err = dbPrimary.NamedQuery(query, arg)
}
return rows, err
}
// NamedQueryContext chooses a readable database and then executes a named query.
// This supposed to be aligned with sqlx.DB.NamedQueryContext.
func (r *dbResolver) NamedQueryContext(ctx context.Context, query string, arg interface{}) (*sqlx.Rows, error) {
db := r.loadBalancer.Select(ctx, r.reads)
rows, err := db.NamedQueryContext(ctx, query, arg)
if isDBConnectionError(err) {
dbPrimary := r.loadBalancer.Select(ctx, r.primaries)
rows, err = dbPrimary.NamedQueryContext(ctx, query, arg)
}
return rows, err
}
// Ping sends a ping to the all databases.
func (r *dbResolver) Ping() error {
var errs error
for _, db := range r.primaries {
if err := db.Ping(); err != nil {
errs = multierror.Append(errs, err)
}
}
for _, db := range r.secondaries {
if err := db.Ping(); err != nil {
errs = multierror.Append(errs, err)
}
}
if errs != nil {
return errs
}
return nil
}
// PingContext sends a ping to the all databases.
func (r *dbResolver) PingContext(ctx context.Context) error {
var errs error
for _, db := range r.primaries {
if err := db.PingContext(ctx); err != nil {
errs = multierror.Append(errs, err)
}
}
for _, db := range r.secondaries {
if err := db.PingContext(ctx); err != nil {
errs = multierror.Append(errs, err)
}
}
if errs != nil {
return errs
}
return nil
}
// Prepare returns a Stmt which can be used sql.Stmt instead.
// This supposed to be aligned with sqlx.DB.Prepare.
func (r *dbResolver) Prepare(query string) (Stmt, error) {
primaryDBStmts := make(map[*sqlx.DB]*sqlx.Stmt, len(r.primaries))
readDBStmts := make(map[*sqlx.DB]*sqlx.Stmt, len(r.reads))
var errs error
for _, db := range r.primaries {
stmt, err := db.Preparex(query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
primaryDBStmts[db] = stmt
}
for _, db := range r.reads {
stmt, err := db.Preparex(query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
readDBStmts[db] = stmt
}
if errs != nil {
return nil, errs
}
return &stmt{
primaries: r.primaries,
reads: r.reads,
primaryStmts: primaryDBStmts,
readStmts: readDBStmts,
loadBalancer: r.loadBalancer,
}, nil
}
// PrepareContext returns a Stmt which can be used sql.Stmt instead.
// This supposed to be aligned with sqlx.DB.PrepareContext.
func (r *dbResolver) PrepareContext(ctx context.Context, query string) (Stmt, error) {
primaryDBStmts := make(map[*sqlx.DB]*sqlx.Stmt, len(r.primaries))
readDBStmts := make(map[*sqlx.DB]*sqlx.Stmt, len(r.reads))
var errs error
for _, db := range r.primaries {
stmt, err := db.PreparexContext(ctx, query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
primaryDBStmts[db] = stmt
}
for _, db := range r.reads {
stmt, err := db.PreparexContext(ctx, query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
readDBStmts[db] = stmt
}
if errs != nil {
return nil, errs
}
return &stmt{
primaries: r.primaries,
reads: r.reads,
primaryStmts: primaryDBStmts,
readStmts: readDBStmts,
loadBalancer: r.loadBalancer,
}, nil
}
// PrepareNamed returns an NamedStmt which can be used sqlx.NamedStmt instead.
// This supposed to be aligned with sqlx.DB.PrepareNamed.
func (r *dbResolver) PrepareNamed(query string) (NamedStmt, error) {
primaryDBStmts := make(map[*sqlx.DB]*sqlx.NamedStmt, len(r.primaries))
readDBStmts := make(map[*sqlx.DB]*sqlx.NamedStmt, len(r.reads))
var errs error
for _, db := range r.primaries {
stmt, err := db.PrepareNamed(query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
primaryDBStmts[db] = stmt
}
for _, db := range r.reads {
stmt, err := db.PrepareNamed(query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
readDBStmts[db] = stmt
}
if errs != nil {
return nil, errs
}
return &namedStmt{
primaries: r.primaries,
reads: r.reads,
primaryStmts: primaryDBStmts,
readStmts: readDBStmts,
loadBalancer: r.loadBalancer,
}, nil
}
// PrepareNamedContext returns an NamedStmt which can be used sqlx.NamedStmt instead.
// This supposed to be aligned with sqlx.DB.PrepareNamedContext.
func (r *dbResolver) PrepareNamedContext(ctx context.Context, query string) (NamedStmt, error) {
primaryDBStmts := make(map[*sqlx.DB]*sqlx.NamedStmt, len(r.primaries))
readDBStmts := make(map[*sqlx.DB]*sqlx.NamedStmt, len(r.reads))
var errs error
for _, db := range r.primaries {
stmt, err := db.PrepareNamedContext(ctx, query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
primaryDBStmts[db] = stmt
}
for _, db := range r.reads {
stmt, err := db.PrepareNamedContext(ctx, query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
readDBStmts[db] = stmt
}
if errs != nil {
return nil, errs
}
return &namedStmt{
primaries: r.primaries,
reads: r.reads,
primaryStmts: primaryDBStmts,
readStmts: readDBStmts,
loadBalancer: r.loadBalancer,
}, nil
}
// Preparex returns an Stmt which can be used sqlx.Stmt instead.
// This supposed to be aligned with sqlx.DB.Preparex.
func (r *dbResolver) Preparex(query string) (Stmt, error) {
primaryDBStmts := make(map[*sqlx.DB]*sqlx.Stmt, len(r.primaries))
readDBStmts := make(map[*sqlx.DB]*sqlx.Stmt, len(r.reads))
var errs error
for _, db := range r.primaries {
stmt, err := db.Preparex(query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
primaryDBStmts[db] = stmt
}
for _, db := range r.reads {
stmt, err := db.Preparex(query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
readDBStmts[db] = stmt
}
if errs != nil {
return nil, errs
}
return &stmt{
primaries: r.primaries,
reads: r.reads,
primaryStmts: primaryDBStmts,
readStmts: readDBStmts,
loadBalancer: r.loadBalancer,
}, nil
}
// PreparexContext returns a Stmt which can be used sqlx.Stmt instead.
// This supposed to be aligned with sqlx.DB.PreparexContext.
func (r *dbResolver) PreparexContext(ctx context.Context, query string) (Stmt, error) {
primaryDBStmts := make(map[*sqlx.DB]*sqlx.Stmt, len(r.primaries))
readDBStmts := make(map[*sqlx.DB]*sqlx.Stmt, len(r.reads))
var errs error
for _, db := range r.primaries {
stmt, err := db.PreparexContext(ctx, query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
primaryDBStmts[db] = stmt
}
for _, db := range r.reads {
stmt, err := db.PreparexContext(ctx, query)
if err != nil {
errs = multierror.Append(errs, err)
continue
}
readDBStmts[db] = stmt
}
if errs != nil {
return nil, errs
}
return &stmt{
primaries: r.primaries,
reads: r.reads,
primaryStmts: primaryDBStmts,
readStmts: readDBStmts,
loadBalancer: r.loadBalancer,
}, nil
}
// Query chooses a readable database, executes the query and executes a query that returns sql.Rows.
// This supposed to be aligned with sqlx.DB.Query.
func (r *dbResolver) Query(query string, args ...interface{}) (*sql.Rows, error) {
db := r.loadBalancer.Select(context.Background(), r.reads)
rows, err := db.Query(query, args...)
if isDBConnectionError(err) {
dbPrimary := r.loadBalancer.Select(context.Background(), r.primaries)
rows, err = dbPrimary.Query(query, args...)
}
return rows, err
}
// QueryContext chooses a readable database, executes the query and executes a query that returns sql.Rows.
// This supposed to be aligned with sqlx.DB.QueryContext.
func (r *dbResolver) QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) {
db := r.loadBalancer.Select(ctx, r.reads)
rows, err := db.QueryContext(ctx, query, args...)
if isDBConnectionError(err) {
dbPrimary := r.loadBalancer.Select(ctx, r.primaries)
rows, err = dbPrimary.QueryContext(ctx, query, args...)
}
return rows, err
}
// QueryRow chooses a readable database, executes the query and executes a query that returns sql.Row.
// This supposed to be aligned with sqlx.DB.QueryRow.
func (r *dbResolver) QueryRow(query string, args ...interface{}) *sql.Row {
db := r.loadBalancer.Select(context.Background(), r.reads)
row := db.QueryRow(query, args...)
if isDBConnectionError(row.Err()) {
dbPrimary := r.loadBalancer.Select(context.Background(), r.primaries)
row = dbPrimary.QueryRow(query, args...)
}
return row
}
// QueryRowContext chooses a readable database, executes the query and executes a query that returns sql.Row.
// This supposed to be aligned with sqlx.DB.QueryRowContext.
func (r *dbResolver) QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row {
db := r.loadBalancer.Select(ctx, r.reads)
row := db.QueryRowContext(ctx, query, args...)
if isDBConnectionError(row.Err()) {
dbPrimary := r.loadBalancer.Select(ctx, r.primaries)
row = dbPrimary.QueryRowContext(ctx, query, args...)
}
return row
}
// QueryRowx chooses a readable database, queries the database and returns an *sqlx.Row.
// This supposed to be aligned with sqlx.DB.QueryRowx.
func (r *dbResolver) QueryRowx(query string, args ...interface{}) *sqlx.Row {
db := r.loadBalancer.Select(context.Background(), r.reads)
row := db.QueryRowx(query, args...)
if isDBConnectionError(row.Err()) {
dbPrimary := r.loadBalancer.Select(context.Background(), r.primaries)
row = dbPrimary.QueryRowx(query, args...)
}
return row
}
// QueryRowxContext chooses a readable database, queries the database and returns an *sqlx.Row.
// This supposed to be aligned with sqlx.DB.QueryRowxContext.
func (r *dbResolver) QueryRowxContext(ctx context.Context, query string, args ...interface{}) *sqlx.Row {
db := r.loadBalancer.Select(ctx, r.reads)
row := db.QueryRowxContext(ctx, query, args...)
if isDBConnectionError(row.Err()) {
dbPrimary := r.loadBalancer.Select(ctx, r.primaries)
row = dbPrimary.QueryRowxContext(ctx, query, args...)
}
return row
}
// Queryx chooses a readable database, queries the database and returns an *sqlx.Rows.
// This supposed to be aligned with sqlx.DB.Queryx.
func (r *dbResolver) Queryx(query string, args ...interface{}) (*sqlx.Rows, error) {
db := r.loadBalancer.Select(context.Background(), r.reads)
rows, err := db.Queryx(query, args...)
if isDBConnectionError(err) {
dbPrimary := r.loadBalancer.Select(context.Background(), r.primaries)
rows, err = dbPrimary.Queryx(query, args...)
}
return rows, err
}
// QueryxContext chooses a readable database, queries the database and returns an *sqlx.Rows.
// This supposed to be aligned with sqlx.DB.QueryxContext.
func (r *dbResolver) QueryxContext(ctx context.Context, query string, args ...interface{}) (*sqlx.Rows, error) {
db := r.loadBalancer.Select(ctx, r.reads)
rows, err := db.QueryxContext(ctx, query, args...)
if isDBConnectionError(err) {
dbPrimary := r.loadBalancer.Select(ctx, r.primaries)
rows, err = dbPrimary.QueryxContext(ctx, query, args...)
}
return rows, err
}
// Rebind chooses a primary database and
// transforms a query from QUESTION to the DB driver's bindvar type.
// This supposed to be aligned with sqlx.DB.Rebind.
func (r *dbResolver) Rebind(query string) string {
db := r.loadBalancer.Select(context.Background(), r.primaries)
return db.Rebind(query)
}
// Select chooses a readable database and execute SELECT using chosen DB.
// This supposed to be aligned with sqlx.DB.Select.
func (r *dbResolver) Select(dest interface{}, query string, args ...interface{}) error {
db := r.loadBalancer.Select(context.Background(), r.reads)
err := db.Select(dest, query, args...)
if isDBConnectionError(err) {
dbPrimary := r.loadBalancer.Select(context.Background(), r.primaries)
err = dbPrimary.Select(dest, query, args...)
}
return err
}
// SelectContext chooses a readable database and execute SELECT using chosen DB.
// This supposed to be aligned with sqlx.DB.SelectContext.
func (r *dbResolver) SelectContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error {
db := r.loadBalancer.Select(ctx, r.reads)
err := db.SelectContext(ctx, dest, query, args...)
if isDBConnectionError(err) {
dbPrimary := r.loadBalancer.Select(ctx, r.primaries)
err = dbPrimary.SelectContext(ctx, dest, query, args...)
}
return err
}
// SetConnMaxIdleTime sets the maximum amount of time a connection may be idle to all databases.
func (r *dbResolver) SetConnMaxIdleTime(d time.Duration) {
for _, db := range r.primaries {
db.SetConnMaxIdleTime(d)
}
for _, db := range r.reads {
db.SetConnMaxIdleTime(d)
}
}
// SetConnMaxLifetime sets the maximum amount of time a connection may be reused to all databases.
func (r *dbResolver) SetConnMaxLifetime(d time.Duration) {
for _, db := range r.primaries {
db.SetConnMaxLifetime(d)
}
for _, db := range r.reads {
db.SetConnMaxLifetime(d)
}
}
// SetMaxIdleConns sets the maximum number of connections in the idle connection pool to all databases.
func (r *dbResolver) SetMaxIdleConns(n int) {
for _, db := range r.primaries {
db.SetMaxIdleConns(n)
}
for _, db := range r.reads {
db.SetMaxIdleConns(n)
}
}
// SetMaxOpenConns sets the maximum number of open connections to all databases.
func (r *dbResolver) SetMaxOpenConns(n int) {
for _, db := range r.primaries {
db.SetMaxOpenConns(n)
}
for _, db := range r.reads {
db.SetMaxOpenConns(n)
}
}
// Stats returns first primary database statistics.
func (r *dbResolver) Stats() sql.DBStats {
return r.primaries[0].Stats()
}
// Unsafe chose a primary database and returns a version of DB
// which will silently succeed to scan
// when columns in the SQL result have no fields in the destination struct.
// This supposed to be aligned with sqlx.DB.Unsafe.
func (r *dbResolver) Unsafe() *sqlx.DB {
db := r.loadBalancer.Select(context.Background(), r.primaries)
return db.Unsafe()
}