-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathsql.go
258 lines (217 loc) · 6.56 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
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/tx"
"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/xquery"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/xsql/xtable"
"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{}
var (
_ driver.Driver = &sqlDriver{}
_ driver.DriverContext = &sqlDriver{}
)
// 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))
}
c, err := Connector(db, append(db.databaseSQLOptions,
xsql.WithOnClose(func(connector *xsql.Connector) {
_ = db.Close(context.Background())
}),
)...)
if err != nil {
return nil, xerrors.WithStackTrace(fmt.Errorf("failed to create connector: %w", err))
}
return c, nil
}
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 xtable.WithQueryMode(ctx, xtable.DataQueryMode)
case ScanQueryMode:
return xtable.WithQueryMode(ctx, xtable.ScanQueryMode)
case SchemeQueryMode:
return xtable.WithQueryMode(ctx, xtable.SchemeQueryMode)
case ScriptingQueryMode:
return xtable.WithQueryMode(ctx, xtable.ScriptingQueryMode)
default:
return ctx
}
}
// WithTxControl modifies context for explicit define transaction control for a single query execute
//
// Allowed the table.TransactionControl and the query.TransactionControl
// table.TransactionControl and query.TransactionControl are the type aliases to internal tx.Control
func WithTxControl(ctx context.Context, txControl *tx.Control) context.Context {
return tx.WithTxControl(ctx, txControl)
}
type ConnectorOption = xsql.Option
type QueryBindConnectorOption interface {
ConnectorOption
bind.Bind
}
func modeToMode(mode QueryMode) xtable.QueryMode {
switch mode {
case ScanQueryMode:
return xtable.ScanQueryMode
case SchemeQueryMode:
return xtable.SchemeQueryMode
case ScriptingQueryMode:
return xtable.ScriptingQueryMode
default:
return xtable.DataQueryMode
}
}
func WithDefaultQueryMode(mode QueryMode) ConnectorOption {
if mode == QueryExecuteQueryMode {
return xsql.WithQueryService(true)
}
return xsql.WithTableOptions(
xtable.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(xtable.WithFakeTxModes(
xtable.DataQueryMode,
)),
)
case ScanQueryMode:
opts = append(opts,
xsql.WithTableOptions(xtable.WithFakeTxModes(
xtable.ScanQueryMode,
)),
)
case SchemeQueryMode:
opts = append(opts,
xsql.WithTableOptions(xtable.WithFakeTxModes(
xtable.SchemeQueryMode,
)),
)
case ScriptingQueryMode:
opts = append(opts,
xsql.WithTableOptions(xtable.WithFakeTxModes(
xtable.ScriptingQueryMode,
)),
xsql.WithQueryOptions(xquery.WithFakeTx()),
)
case QueryExecuteQueryMode:
opts = append(opts,
xsql.WithQueryOptions(xquery.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 WithWideTimeTypes(b bool) QueryBindConnectorOption {
return xsql.WithQueryBind(bind.WideTimeTypes(b))
}
func WithNumericArgs() QueryBindConnectorOption {
return xsql.WithQueryBind(bind.NumericArgs{})
}
func WithDefaultTxControl(txControl *table.TransactionControl) ConnectorOption {
return xsql.WithTableOptions(xtable.WithDefaultTxControl(txControl))
}
func WithDefaultDataQueryOptions(opts ...options.ExecuteDataQueryOption) ConnectorOption {
return xsql.WithTableOptions(xtable.WithDataOpts(opts...))
}
func WithDefaultScanQueryOptions(opts ...options.ExecuteScanQueryOption) ConnectorOption {
return xsql.WithTableOptions(xtable.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, parent.query.Must().Config(),
append(
append(
parent.databaseSQLOptions,
opts...,
),
xsql.WithTraceRetry(parent.config.TraceRetry()),
xsql.WithRetryBudget(parent.config.RetryBudget()),
)...,
)
if err != nil {
return nil, xerrors.WithStackTrace(err)
}
return c, nil
}
func MustConnector(parent *Driver, opts ...ConnectorOption) SQLConnector {
c, err := Connector(parent, opts...)
if err != nil {
panic(err)
}
return c
}