-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
sqlx.go
58 lines (50 loc) · 1.8 KB
/
sqlx.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
package pg
import (
"context"
"database/sql"
"github.com/pkg/errors"
mapper "github.com/scylladb/go-reflectx"
"github.com/smartcontractkit/chainlink/core/logger"
"github.com/smartcontractkit/sqlx"
)
//go:generate mockery --name Queryer --output ./mocks/ --case=underscore
type Queryer interface {
sqlx.Ext
sqlx.ExtContext
sqlx.Preparer
sqlx.PreparerContext
sqlx.Queryer
Select(dest interface{}, query string, args ...interface{}) error
SelectContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error
PrepareNamed(query string) (*sqlx.NamedStmt, error)
QueryRow(query string, args ...interface{}) *sql.Row
QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row
Get(dest interface{}, query string, args ...interface{}) error
GetContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error
NamedExec(query string, arg interface{}) (sql.Result, error)
NamedQuery(query string, arg interface{}) (*sqlx.Rows, error)
}
func WrapDbWithSqlx(rdb *sql.DB) *sqlx.DB {
db := sqlx.NewDb(rdb, "postgres")
db.MapperFunc(mapper.CamelToSnakeASCII)
return db
}
func SqlxTransactionWithDefaultCtx(q Queryer, lggr logger.Logger, fc func(q Queryer) error, txOpts ...TxOptions) (err error) {
ctx, cancel := DefaultQueryCtx()
defer cancel()
return SqlxTransaction(ctx, q, lggr, fc, txOpts...)
}
func SqlxTransaction(ctx context.Context, q Queryer, lggr logger.Logger, fc func(q Queryer) error, txOpts ...TxOptions) (err error) {
switch db := q.(type) {
case *sqlx.Tx:
// nested transaction: just use the outer transaction
err = fc(db)
case *sqlx.DB:
err = sqlxTransactionQ(ctx, db, lggr, fc, txOpts...)
case Q:
err = sqlxTransactionQ(ctx, db.db, lggr, fc, txOpts...)
default:
err = errors.Errorf("invalid db type: %T", q)
}
return
}