forked from dolthub/go-mysql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdriver.go
215 lines (182 loc) · 4.81 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
// Copyright 2020-2021 Dolthub, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package driver
import (
"context"
"database/sql/driver"
"fmt"
"net/url"
"sync"
sqle "github.com/dolthub/go-mysql-server"
"github.com/dolthub/go-mysql-server/sql"
"github.com/dolthub/go-mysql-server/sql/analyzer"
)
// ScanKind indicates how values should be scanned.
type ScanKind int
const (
// ScanAsString indicates values should be scanned as strings.
//
// Applies to JSON columns.
ScanAsString ScanKind = iota
// ScanAsBytes indicates values should be scanned as byte arrays.
//
// Applies to JSON columns.
ScanAsBytes
// ScanAsObject indicates values should be scanned as objects.
//
// Applies to JSON columns.
ScanAsObject
// ScanAsStored indicates values should not be modified during scanning.
//
// Applies to JSON columns.
ScanAsStored
)
// Options for the driver.
type Options struct {
// JSON indicates how JSON row values should be scanned
JSON ScanKind
}
// A Provider resolves SQL catalogs.
type Provider interface {
Resolve(name string, options *Options) (string, *sql.Catalog, error)
}
// A Driver exposes an engine as a stdlib SQL driver.
type Driver struct {
provider Provider
options Options
sessions SessionBuilder
contexts ContextBuilder
mu sync.Mutex
catalogs map[*sql.Catalog]*catalog
}
// New returns a driver using the specified provider.
func New(provider Provider, options Options) *Driver {
sessions, ok := provider.(SessionBuilder)
if !ok {
sessions = DefaultSessionBuilder{}
}
contexts, ok := provider.(ContextBuilder)
if !ok {
contexts = DefaultContextBuilder{}
}
return &Driver{
provider: provider,
options: options,
sessions: sessions,
contexts: contexts,
catalogs: map[*sql.Catalog]*catalog{},
}
}
// Open returns a new connection to the database.
func (d *Driver) Open(name string) (driver.Conn, error) {
conn, err := d.OpenConnector(name)
if err != nil {
return nil, err
}
return conn.Connect(context.Background())
}
// OpenConnector calls the driver factory and returns a new connector.
func (d *Driver) OpenConnector(dsn string) (driver.Connector, error) {
options := d.options // copy
dsnURI, err := url.Parse(dsn)
if err == nil {
query := dsnURI.Query()
qJSON := query.Get("jsonAs")
switch qJSON {
case "":
// default
case "object":
options.JSON = ScanAsObject
case "string":
options.JSON = ScanAsString
case "bytes":
options.JSON = ScanAsBytes
default:
return nil, fmt.Errorf("%q is not a valid option for 'jsonAs'", qJSON)
}
query.Del("jsonAs")
dsnURI.RawQuery = query.Encode()
dsn = dsnURI.String()
}
server, sqlCat, err := d.provider.Resolve(dsn, &options)
if err != nil {
return nil, err
}
d.mu.Lock()
cat, ok := d.catalogs[sqlCat]
if !ok {
anlz := analyzer.NewDefault(sqlCat)
engine := sqle.New(sqlCat, anlz, nil)
cat = &catalog{engine: engine}
d.catalogs[sqlCat] = cat
}
d.mu.Unlock()
return &Connector{
driver: d,
options: options,
server: server,
catalog: cat,
}, nil
}
type catalog struct {
engine *sqle.Engine
mu sync.Mutex
connID uint32
procID uint64
}
func (c *catalog) nextConnectionID() uint32 {
c.mu.Lock()
defer c.mu.Unlock()
c.connID++
return c.connID
}
func (c *catalog) nextProcessID() uint64 {
c.mu.Lock()
defer c.mu.Unlock()
c.procID++
return c.procID
}
// A Connector represents a driver in a fixed configuration
// and can create any number of equivalent Conns for use
// by multiple goroutines.
type Connector struct {
driver *Driver
options Options
server string
catalog *catalog
}
// Driver returns the driver.
func (c *Connector) Driver() driver.Driver { return c.driver }
// Server returns the server name.
func (c *Connector) Server() string { return c.server }
// Catalog returns the SQL catalog.
func (c *Connector) Catalog() *sql.Catalog { return c.catalog.engine.Catalog }
// Connect returns a connection to the database.
func (c *Connector) Connect(ctx context.Context) (driver.Conn, error) {
id := c.catalog.nextConnectionID()
session, err := c.driver.sessions.NewSession(ctx, id, c)
if err != nil {
return nil, err
}
indexes := sql.NewIndexRegistry()
views := sql.NewViewRegistry()
return &Conn{
options: c.options,
catalog: c.catalog,
session: session,
contexts: c.driver.contexts,
indexes: indexes,
views: views,
}, nil
}