-
Notifications
You must be signed in to change notification settings - Fork 95
/
driver.go
423 lines (343 loc) · 8.53 KB
/
driver.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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
package driver
import (
"context"
"database/sql"
"database/sql/driver"
"errors"
"io"
"sync"
"github.com/genjidb/genji"
"github.com/genjidb/genji/document"
"github.com/genjidb/genji/sql/parser"
"github.com/genjidb/genji/sql/planner"
"github.com/genjidb/genji/sql/query"
"github.com/genjidb/genji/sql/query/expr"
)
func init() {
sql.Register("genji", sqlDriver{})
}
// sqlDriver is a driver.Driver that can open a new connection to a Genji database.
// It is the driver used to register Genji against the database/sql package.
type sqlDriver struct{}
func (d sqlDriver) Open(name string) (driver.Conn, error) {
db, err := genji.Open(name)
if err != nil {
return nil, err
}
return &conn{db: db}, nil
}
// proxyDriver is used to turn an existing DB into a driver.Driver.
type proxyDriver struct {
db *genji.DB
}
func newDriver(db *genji.DB) driver.Driver {
return proxyDriver{
db: db,
}
}
func (d proxyDriver) Open(name string) (driver.Conn, error) {
return &conn{db: d.db}, nil
}
type proxyConnector struct {
driver driver.Driver
}
func newProxyConnector(db *genji.DB) driver.Connector {
return proxyConnector{
driver: newDriver(db),
}
}
func (c proxyConnector) Connect(ctx context.Context) (driver.Conn, error) {
return c.driver.Open("")
}
func (c proxyConnector) Driver() driver.Driver {
return c.driver
}
// conn represents a connection to the Genji database.
// It implements the database/sql/driver.Conn interface.
type conn struct {
db *genji.DB
tx *genji.Tx
nonPromotable bool
}
// Prepare returns a prepared statement, bound to this connection.
func (c *conn) Prepare(q string) (driver.Stmt, error) {
pq, err := parser.ParseQuery(q)
if err != nil {
return nil, err
}
return stmt{
db: c.db,
tx: c.tx,
q: pq,
}, nil
}
// Close closes any ongoing transaction.
func (c *conn) Close() error {
if c.tx != nil {
return c.tx.Rollback()
}
return nil
}
// Begin starts and returns a new transaction.
func (c *conn) Begin() (driver.Tx, error) {
return c.BeginTx(context.Background(), driver.TxOptions{})
}
// BeginTx starts and returns a new transaction.
// It uses the ReadOnly option to determine whether to start a read-only or read/write transaction.
// If the Isolation option is non zero, an error is returned.
func (c *conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
if opts.Isolation != 0 {
return nil, errors.New("isolation levels are not supported")
}
var err error
// if the ReadOnly flag is explicitly specified, create a read-only transaction,
// otherwise create a read/write transaction.
if opts.ReadOnly {
c.tx, err = c.db.Begin(false)
} else {
c.tx, err = c.db.Begin(true)
}
return c, err
}
func (c *conn) Commit() error {
err := c.tx.Commit()
c.tx = nil
return err
}
func (c *conn) Rollback() error {
err := c.tx.Rollback()
c.tx = nil
return err
}
// Stmt is a prepared statement. It is bound to a Conn and not
// used by multiple goroutines concurrently.
type stmt struct {
db *genji.DB
tx *genji.Tx
q query.Query
}
// NumInput returns the number of placeholder parameters.
func (s stmt) NumInput() int { return -1 }
// Exec executes a query that doesn't return rows, such
// as an INSERT or UPDATE.
func (s stmt) Exec(args []driver.Value) (driver.Result, error) {
return nil, errors.New("not implemented")
}
// CheckNamedValue has the same behaviour as driver.DefaultParameterConverter, except that
// it allows document.Document to be passed as parameters.
// It implements the driver.NamedValueChecker interface.
func (s stmt) CheckNamedValue(nv *driver.NamedValue) error {
if _, ok := nv.Value.(document.Document); ok {
return nil
}
if _, ok := nv.Value.(document.Scanner); ok {
return nil
}
var err error
val, err := driver.DefaultParameterConverter.ConvertValue(nv.Value)
if err == nil {
nv.Value = val
return nil
}
return nil
}
// ExecContext executes a query that doesn't return rows, such
// as an INSERT or UPDATE.
func (s stmt) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) {
select {
case <-ctx.Done():
return nil, ctx.Err()
default:
}
var res *query.Result
var err error
// if calling ExecContext within a transaction, use it,
// otherwise use DB.
if s.tx != nil {
res, err = s.q.Exec(s.tx.Transaction, driverNamedValueToParams(args))
} else {
res, err = s.q.Run(s.db.DB, driverNamedValueToParams(args))
}
if err != nil {
return nil, err
}
// s.q.Run might return a stream if the last Statement is a Select,
// make sure the result is closed before returning so any transaction
// created by s.q.Run is closed.
return result{res}, res.Close()
}
type result struct {
*query.Result
}
// LastInsertId is not supported and returns an error.
// Use LastInsertKey instead.
func (r result) LastInsertId() (int64, error) {
return driver.RowsAffected(r.Result.RowsAffected).LastInsertId()
}
// RowsAffected returns the number of rows affected by the
// query.
func (r result) RowsAffected() (int64, error) {
return driver.RowsAffected(r.Result.RowsAffected).RowsAffected()
}
func (s stmt) Query(args []driver.Value) (driver.Rows, error) {
return nil, errors.New("not implemented")
}
// QueryContext executes a query that may return rows, such as a
// SELECT.
func (s stmt) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) {
select {
case <-ctx.Done():
return nil, ctx.Err()
default:
}
var res *query.Result
var err error
// if calling QueryContext within a transaction, use it,
// otherwise use DB.
if s.tx != nil {
res, err = s.q.Exec(s.tx.Transaction, driverNamedValueToParams(args))
} else {
res, err = s.q.Run(s.db.DB, driverNamedValueToParams(args))
}
if err != nil {
return nil, err
}
rs := newRecordStream(res)
if len(s.q.Statements) == 0 {
return rs, nil
}
lastStmt := s.q.Statements[len(s.q.Statements)-1]
tree, ok := lastStmt.(*planner.Tree)
if !ok {
return rs, nil
}
if pn, ok := tree.Root.(*planner.ProjectionNode); ok && len(pn.Expressions) > 0 {
rs.fields = make([]string, len(pn.Expressions))
for i := range pn.Expressions {
rs.fields[i] = pn.Expressions[i].Name()
}
}
return rs, nil
}
func driverNamedValueToParams(args []driver.NamedValue) []expr.Param {
params := make([]expr.Param, len(args))
for i, arg := range args {
params[i].Name = arg.Name
params[i].Value = arg.Value
}
return params
}
// Close does nothing.
func (s stmt) Close() error {
return nil
}
var errStop = errors.New("stop")
type documentStream struct {
res *query.Result
cancelFn func()
c chan doc
wg sync.WaitGroup
fields []string
}
type doc struct {
d document.Document
err error
}
func newRecordStream(res *query.Result) *documentStream {
ctx, cancel := context.WithCancel(context.Background())
ds := documentStream{
res: res,
cancelFn: cancel,
c: make(chan doc),
}
ds.wg.Add(1)
go ds.iterate(ctx)
return &ds
}
func (rs *documentStream) iterate(ctx context.Context) {
defer rs.wg.Done()
defer close(rs.c)
select {
case <-ctx.Done():
return
case <-rs.c:
}
err := rs.res.Iterate(func(d document.Document) error {
select {
case <-ctx.Done():
return errStop
case rs.c <- doc{
d: d,
}:
select {
case <-ctx.Done():
return errStop
case <-rs.c:
return nil
}
}
})
if err == errStop || err == nil {
return
}
if err != nil {
rs.c <- doc{
err: err,
}
return
}
}
// Columns returns the fields selected by the SELECT statement.
func (rs *documentStream) Columns() []string {
return rs.fields
}
// Close closes the rows iterator.
func (rs *documentStream) Close() error {
rs.cancelFn()
return rs.res.Close()
}
func (rs *documentStream) Next(dest []driver.Value) error {
rs.c <- doc{}
doc, ok := <-rs.c
if !ok {
return io.EOF
}
if doc.err != nil {
return doc.err
}
for i := range rs.fields {
if rs.fields[i] == "*" {
dest[i] = doc.d
continue
}
f, err := doc.d.GetByField(rs.fields[i])
if err != nil {
return err
}
dest[i] = f.V
}
return nil
}
type valueScanner struct {
v interface{}
}
func (v valueScanner) Scan(src interface{}) error {
switch t := src.(type) {
case document.Document:
return document.StructScan(t, v.v)
case document.Array:
return document.SliceScan(t, v.v)
case document.Value:
return document.ScanValue(t, src)
}
vv, err := document.NewValue(src)
if err != nil {
return err
}
return document.ScanValue(vv, &src)
}
// Scanner turns a variable into a sql.Scanner.
// x must be a pointer to a valid variable.
func Scanner(x interface{}) sql.Scanner {
return valueScanner{x}
}