-
Notifications
You must be signed in to change notification settings - Fork 77
/
sql.go
186 lines (147 loc) · 4.7 KB
/
sql.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
package ydb
import (
"context"
"database/sql"
"database/sql/driver"
"fmt"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/bind"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/connector"
tableSql "github.com/ydb-platform/ydb-go-sdk/v3/internal/table/conn"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/xerrors"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/xsync"
"github.com/ydb-platform/ydb-go-sdk/v3/table"
"github.com/ydb-platform/ydb-go-sdk/v3/table/options"
"github.com/ydb-platform/ydb-go-sdk/v3/trace"
)
var d = &sqlDriver{} //nolint:gochecknoglobals
func init() { //nolint:gochecknoinits
sql.Register("ydb", d)
sql.Register("ydb/v3", d)
}
func withConnectorOptions(opts ...ConnectorOption) Option {
return func(ctx context.Context, d *Driver) error {
d.databaseSQLOptions = append(d.databaseSQLOptions, opts...)
return nil
}
}
type sqlDriver struct {
connectors xsync.Map[*connector.Connector, *Driver]
}
var (
_ driver.Driver = &sqlDriver{}
_ driver.DriverContext = &sqlDriver{}
)
func (d *sqlDriver) Close() error {
var errs []error
d.connectors.Range(func(c *connector.Connector, _ *Driver) bool {
if err := c.Close(); err != nil {
errs = append(errs, err)
}
return true
})
if len(errs) > 0 {
return xerrors.NewWithIssues("ydb legacy driver close failed", errs...)
}
return nil
}
// Open returns a new Driver to the ydb.
func (d *sqlDriver) Open(string) (driver.Conn, error) {
return nil, connector.ErrUnsupported
}
func (d *sqlDriver) OpenConnector(dataSourceName string) (driver.Connector, error) {
db, err := Open(context.Background(), dataSourceName)
if err != nil {
return nil, xerrors.WithStackTrace(fmt.Errorf("failed to connect by data source name '%s': %w", dataSourceName, err))
}
return Connector(db, db.databaseSQLOptions...)
}
func (d *sqlDriver) attach(c *connector.Connector, parent *Driver) {
d.connectors.Set(c, parent)
}
func (d *sqlDriver) detach(c *connector.Connector) {
d.connectors.Delete(c)
}
type QueryMode = tableSql.QueryMode
const (
DataQueryMode = tableSql.DataQueryMode
ExplainQueryMode = tableSql.ExplainQueryMode
ScanQueryMode = tableSql.ScanQueryMode
SchemeQueryMode = tableSql.SchemeQueryMode
ScriptingQueryMode = tableSql.ScriptingQueryMode
)
func WithQueryMode(ctx context.Context, mode QueryMode) context.Context {
return tableSql.WithQueryMode(ctx, mode)
}
func WithTxControl(ctx context.Context, txc *table.TransactionControl) context.Context {
return tableSql.WithTxControl(ctx, txc)
}
type ConnectorOption = connector.Option
type QueryBindConnectorOption interface {
ConnectorOption
bind.Bind
}
func WithDefaultQueryMode(mode QueryMode) ConnectorOption {
return connector.WithTableOptions(tableSql.WithDefaultQueryMode(mode))
}
func WithFakeTx(mode QueryMode) ConnectorOption {
return connector.WithTableOptions(tableSql.WithFakeTxModes(mode))
}
func WithTablePathPrefix(tablePathPrefix string) QueryBindConnectorOption {
return connector.WithTablePathPrefix(tablePathPrefix)
}
func WithAutoDeclare() QueryBindConnectorOption {
return connector.WithQueryBind(bind.AutoDeclare{})
}
func WithPositionalArgs() QueryBindConnectorOption {
return connector.WithQueryBind(bind.PositionalArgs{})
}
func WithNumericArgs() QueryBindConnectorOption {
return connector.WithQueryBind(bind.NumericArgs{})
}
func WithDefaultTxControl(txControl *table.TransactionControl) ConnectorOption {
return connector.WithTableOptions(tableSql.WithDefaultTxControl(txControl))
}
func WithDefaultDataQueryOptions(opts ...options.ExecuteDataQueryOption) ConnectorOption {
return connector.WithTableOptions(tableSql.WithDataOpts(opts...))
}
func WithDefaultScanQueryOptions(opts ...options.ExecuteScanQueryOption) ConnectorOption {
return connector.WithTableOptions(tableSql.WithScanOpts(opts...))
}
func WithDatabaseSQLTrace(
t trace.DatabaseSQL, //nolint:gocritic
opts ...trace.DatabaseSQLComposeOption,
) ConnectorOption {
return connector.WithTrace(&t, opts...)
}
func WithDisableServerBalancer() ConnectorOption {
return connector.WithDisableServerBalancer()
}
type SQLConnector interface {
driver.Connector
Close() error
}
func Connector(parent *Driver, opts ...ConnectorOption) (SQLConnector, error) {
c, err := connector.Open(parent, parent.metaBalancer,
append(
append(
parent.databaseSQLOptions,
opts...,
),
connector.WithOnClose(d.detach),
connector.WithTraceRetry(parent.config.TraceRetry()),
connector.WithRetryBudget(parent.config.RetryBudget()),
)...,
)
if err != nil {
return nil, xerrors.WithStackTrace(err)
}
d.attach(c, parent)
return c, nil
}
func MustConnector(parent *Driver, opts ...ConnectorOption) SQLConnector {
c, err := Connector(parent, opts...)
if err != nil {
panic(err)
}
return c
}