-
Notifications
You must be signed in to change notification settings - Fork 83
/
sql.go
265 lines (222 loc) · 6.44 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
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
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/xerrors"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/xsql"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/xsql/legacy"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/xsql/propose"
"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[*xsql.Connector, *Driver]
}
var (
_ driver.Driver = &sqlDriver{}
_ driver.DriverContext = &sqlDriver{}
)
func (d *sqlDriver) Close() error {
var errs []error
d.connectors.Range(func(c *xsql.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, xsql.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 *xsql.Connector, parent *Driver) {
d.connectors.Set(c, parent)
}
func (d *sqlDriver) detach(c *xsql.Connector) {
d.connectors.Delete(c)
}
type QueryMode int
const (
unknownQueryMode = QueryMode(iota)
DataQueryMode
ExplainQueryMode
ScanQueryMode
SchemeQueryMode
ScriptingQueryMode
QueryExecuteQueryMode
)
// WithQueryMode set query mode for legacy database/sql driver
//
// For actual database/sql driver works over query service client and no needs query mode
func WithQueryMode(ctx context.Context, mode QueryMode) context.Context {
switch mode {
case ExplainQueryMode:
return xsql.WithExplain(ctx)
case DataQueryMode:
return legacy.WithQueryMode(ctx, legacy.DataQueryMode)
case ScanQueryMode:
return legacy.WithQueryMode(ctx, legacy.ScanQueryMode)
case SchemeQueryMode:
return legacy.WithQueryMode(ctx, legacy.SchemeQueryMode)
case ScriptingQueryMode:
return legacy.WithQueryMode(ctx, legacy.ScriptingQueryMode)
default:
return ctx
}
}
func WithTxControl(ctx context.Context, txc *table.TransactionControl) context.Context {
return legacy.WithTxControl(ctx, txc)
}
type ConnectorOption = xsql.Option
type QueryBindConnectorOption interface {
ConnectorOption
bind.Bind
}
func modeToMode(mode QueryMode) legacy.QueryMode {
switch mode {
case ScanQueryMode:
return legacy.ScanQueryMode
case SchemeQueryMode:
return legacy.SchemeQueryMode
case ScriptingQueryMode:
return legacy.ScriptingQueryMode
default:
return legacy.DataQueryMode
}
}
func WithDefaultQueryMode(mode QueryMode) ConnectorOption {
return xsql.WithTableOptions(
legacy.WithDefaultQueryMode(modeToMode(mode)),
)
}
// WithQueryService is an experimental flag for create database/sql driver over query service client
//
// By default database/sql driver works over table service client
// Default will be changed to `WithQueryService` after March 2025
func WithQueryService(b bool) ConnectorOption {
return xsql.WithQueryService(b)
}
func WithFakeTx(modes ...QueryMode) ConnectorOption {
opts := make([]ConnectorOption, 0, len(modes))
for _, mode := range modes {
switch mode {
case DataQueryMode:
opts = append(opts,
xsql.WithTableOptions(legacy.WithFakeTxModes(
legacy.DataQueryMode,
)),
)
case ScanQueryMode:
opts = append(opts,
xsql.WithTableOptions(legacy.WithFakeTxModes(
legacy.ScanQueryMode,
)),
)
case SchemeQueryMode:
opts = append(opts,
xsql.WithTableOptions(legacy.WithFakeTxModes(
legacy.SchemeQueryMode,
)),
)
case ScriptingQueryMode:
opts = append(opts,
xsql.WithTableOptions(legacy.WithFakeTxModes(
legacy.ScriptingQueryMode,
)),
xsql.WithQueryOptions(propose.WithFakeTx()),
)
case QueryExecuteQueryMode:
opts = append(opts,
xsql.WithQueryOptions(propose.WithFakeTx()),
)
default:
}
}
return xsql.Merge(opts...)
}
func WithTablePathPrefix(tablePathPrefix string) QueryBindConnectorOption {
return xsql.WithTablePathPrefix(tablePathPrefix)
}
func WithAutoDeclare() QueryBindConnectorOption {
return xsql.WithQueryBind(bind.AutoDeclare{})
}
func WithPositionalArgs() QueryBindConnectorOption {
return xsql.WithQueryBind(bind.PositionalArgs{})
}
func WithNumericArgs() QueryBindConnectorOption {
return xsql.WithQueryBind(bind.NumericArgs{})
}
func WithDefaultTxControl(txControl *table.TransactionControl) ConnectorOption {
return xsql.WithTableOptions(legacy.WithDefaultTxControl(txControl))
}
func WithDefaultDataQueryOptions(opts ...options.ExecuteDataQueryOption) ConnectorOption {
return xsql.WithTableOptions(legacy.WithDataOpts(opts...))
}
func WithDefaultScanQueryOptions(opts ...options.ExecuteScanQueryOption) ConnectorOption {
return xsql.WithTableOptions(legacy.WithScanOpts(opts...))
}
func WithDatabaseSQLTrace(
t trace.DatabaseSQL, //nolint:gocritic
opts ...trace.DatabaseSQLComposeOption,
) ConnectorOption {
return xsql.WithTrace(&t, opts...)
}
func WithDisableServerBalancer() ConnectorOption {
return xsql.WithDisableServerBalancer()
}
type SQLConnector interface {
driver.Connector
Close() error
}
func Connector(parent *Driver, opts ...ConnectorOption) (SQLConnector, error) {
c, err := xsql.Open(parent, parent.metaBalancer,
append(
append(
parent.databaseSQLOptions,
opts...,
),
xsql.WithOnClose(d.detach),
xsql.WithTraceRetry(parent.config.TraceRetry()),
xsql.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
}