forked from nhatthm/otelsql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conn.go
127 lines (101 loc) · 3.11 KB
/
conn.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
package otelsql
import (
"context"
"database/sql/driver"
"errors"
)
type connConfig struct {
pingFuncMiddlewares []pingFuncMiddleware
execContextFuncMiddlewares []execContextFuncMiddleware
queryContextFuncMiddlewares []queryContextFuncMiddleware
beginFuncMiddlewares []beginFuncMiddleware
prepareFuncMiddlewares []prepareContextFuncMiddleware
}
type conn struct {
ping pingFunc
exec execContextFunc
query queryContextFunc
begin beginFunc
prepare prepareContextFunc
close func() error
}
func (c conn) Ping(ctx context.Context) error {
return c.ping(ctx)
}
// Deprecated: Drivers should implement ExecerContext instead.
func (c conn) Exec(string, []driver.Value) (driver.Result, error) {
return nil, errors.New("otelsql: Exec is deprecated")
}
func (c conn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {
return c.exec(ctx, query, args)
}
// Deprecated: Drivers should implement QueryerContext instead.
func (c conn) Query(string, []driver.Value) (driver.Rows, error) {
return nil, errors.New("otelsql: Query is deprecated")
}
func (c conn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {
return c.query(ctx, query, args)
}
func (c conn) Prepare(query string) (driver.Stmt, error) {
return c.prepare(context.Background(), query)
}
func (c conn) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) {
return c.prepare(ctx, query)
}
func (c conn) Begin() (driver.Tx, error) {
return c.begin(context.Background(), driver.TxOptions{})
}
func (c conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
return c.begin(ctx, opts)
}
func (c conn) Close() error {
return c.close()
}
func wrapConn(parent driver.Conn, opt connConfig) driver.Conn {
c := makeConn(parent, opt)
var (
n, hasNameValueChecker = parent.(driver.NamedValueChecker)
s, hasSessionResetter = parent.(driver.SessionResetter)
)
switch {
default:
// case !hasNameValueChecker && !hasSessionResetter:
return c
case hasNameValueChecker && !hasSessionResetter:
return struct {
conn
driver.NamedValueChecker
}{c, n}
case !hasNameValueChecker && hasSessionResetter:
return struct {
conn
driver.SessionResetter
}{c, s}
case hasNameValueChecker && hasSessionResetter:
return struct {
conn
driver.NamedValueChecker
driver.SessionResetter
}{c, n, s}
}
}
func makeConn(parent driver.Conn, cfg connConfig) conn {
c := conn{
ping: nopPing,
exec: skippedExecContext,
query: skippedQueryContext,
close: parent.Close,
}
if p, ok := parent.(driver.Pinger); ok {
c.ping = chainMiddlewares(cfg.pingFuncMiddlewares, p.Ping)
}
if p, ok := parent.(driver.ExecerContext); ok {
c.exec = chainMiddlewares(cfg.execContextFuncMiddlewares, p.ExecContext)
}
if p, ok := parent.(driver.QueryerContext); ok {
c.query = chainMiddlewares(cfg.queryContextFuncMiddlewares, p.QueryContext)
}
c.begin = chainMiddlewares(cfg.beginFuncMiddlewares, ensureBegin(parent))
c.prepare = chainMiddlewares(cfg.prepareFuncMiddlewares, ensurePrepareContext(parent))
return c
}