-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdsn.go
266 lines (241 loc) · 6.43 KB
/
dsn.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
package godatabend
import (
"context"
"database/sql/driver"
"fmt"
"net"
"net/url"
"strconv"
"strings"
"time"
)
const (
defaultDomain = "app.databend.com"
defaultScheme = "databend"
SSL_MODE_DISABLE = "disable"
)
// Config is a set of configuration parameters
type Config struct {
Tenant string // Tenant
Warehouse string // Warehouse
User string // Username
Password string // Password (requires User)
Database string // Database name
Role string // Role is the databend role you want to use for the current connection
AccessToken string
AccessTokenFile string // path to file containing access token, it can be used to rotate access token
AccessTokenLoader AccessTokenLoader
Host string
Timeout time.Duration
/* Pagination params: WaitTimeSecs, MaxRowsInBuffer, MaxRowsPerPage
Pagination: critical conditions for each HTTP request to return (before all remaining result is ready to return)
Related docs:https://databend.rs/doc/integrations/api/rest#query-request
*/
WaitTimeSecs int64
MaxRowsInBuffer int64
MaxRowsPerPage int64
Location *time.Location
Debug bool
GzipCompression bool
Params map[string]string
TLSConfig string
SSLMode string
// track the progress of query execution
StatsTracker QueryStatsTracker
// used on the storage which does not support presigned url like HDFS, local fs
PresignedURLDisabled bool
// Specifies the value that should be used when encountering empty fields, including both ,, and ,"",, in the CSV data being loaded into the table.
// https://docs.databend.com/sql/sql-reference/file-format-options#empty_field_as
// default is `string`
// databend version should >= v1.2.345-nightly
EmptyFieldAs string
EnableOpenTelemetry bool
}
// NewConfig creates a new config with default values
func NewConfig() *Config {
return &Config{
Host: fmt.Sprintf("%s:443", defaultDomain),
Location: time.UTC,
Params: make(map[string]string),
}
}
// FormatDSN formats the given Config into a DSN string which can be passed to
// the driver.
func (cfg *Config) FormatDSN() string {
u := &url.URL{
Host: cfg.Host,
Scheme: defaultScheme,
Path: "/",
}
if len(cfg.User) > 0 {
if len(cfg.Password) > 0 {
u.User = url.UserPassword(cfg.User, cfg.Password)
} else {
u.User = url.User(cfg.User)
}
}
if len(cfg.Database) > 0 {
u.Path = cfg.Database
}
query := u.Query()
if cfg.Tenant != "" {
query.Set("tenant", cfg.Tenant)
}
if cfg.Warehouse != "" {
query.Set("warehouse", cfg.Warehouse)
}
if len(cfg.Role) > 0 {
query.Set("role", cfg.Role)
}
if cfg.AccessToken != "" {
query.Set("access_token", cfg.AccessToken)
}
if cfg.AccessTokenFile != "" {
query.Set("access_token_file", cfg.AccessTokenFile)
}
if cfg.Timeout != 0 {
query.Set("timeout", cfg.Timeout.String())
}
if cfg.WaitTimeSecs != 0 {
query.Set("wait_time_secs", strconv.FormatInt(cfg.WaitTimeSecs, 10))
}
if cfg.MaxRowsInBuffer != 0 {
query.Set("max_rows_in_buffer", strconv.FormatInt(cfg.MaxRowsInBuffer, 10))
}
if cfg.MaxRowsPerPage != 0 {
query.Set("max_rows_per_page", strconv.FormatInt(cfg.MaxRowsPerPage, 10))
}
if cfg.Location != time.UTC && cfg.Location != nil {
query.Set("location", cfg.Location.String())
}
if cfg.GzipCompression {
query.Set("enable_http_compression", "1")
}
if cfg.Debug {
query.Set("debug", "1")
}
if cfg.TLSConfig != "" {
query.Set("tls_config", cfg.TLSConfig)
}
if cfg.SSLMode != "" {
query.Set("sslmode", cfg.SSLMode)
}
if cfg.EnableOpenTelemetry {
query.Set("enable_otel", "true")
}
if cfg.PresignedURLDisabled {
query.Set("presigned_url_disabled", "1")
}
if cfg.EmptyFieldAs != "" {
query.Set("empty_field_as", cfg.EmptyFieldAs)
} else {
query.Set("empty_field_as", "string")
}
// Add Params to the query
for k, v := range cfg.Params {
query.Set(k, v)
}
u.RawQuery = query.Encode()
return u.String()
}
func (cfg *Config) AddParams(params map[string]string) (err error) {
cfg.makeDefaultConfigValue()
for k, v := range params {
switch k {
case "timeout":
cfg.Timeout, err = time.ParseDuration(v)
case "wait_time_secs":
cfg.WaitTimeSecs, err = strconv.ParseInt(v, 10, 64)
case "max_rows_in_buffer":
cfg.MaxRowsInBuffer, err = strconv.ParseInt(v, 10, 64)
case "max_rows_per_page":
cfg.MaxRowsPerPage, err = strconv.ParseInt(v, 10, 64)
case "location":
cfg.Location, err = time.LoadLocation(v)
case "debug":
cfg.Debug, err = strconv.ParseBool(v)
case "enable_http_compression":
cfg.GzipCompression, err = strconv.ParseBool(v)
cfg.Params[k] = v
case "presigned_url_disabled":
cfg.PresignedURLDisabled, err = strconv.ParseBool(v)
case "empty_field_as":
cfg.EmptyFieldAs = v
case "tls_config":
cfg.TLSConfig = v
case "tenant":
cfg.Tenant = v
case "warehouse":
cfg.Warehouse = v
case "role":
cfg.Role = v
case "access_token":
cfg.AccessToken = v
case "access_token_file":
cfg.AccessTokenFile = v
case "sslmode":
cfg.SSLMode = v
case "enable_otel":
cfg.EnableOpenTelemetry, err = strconv.ParseBool(v)
case "default_format", "query", "database":
return fmt.Errorf("unknown option '%s'", k)
default:
cfg.Params[k] = v
}
}
return
}
func (cfg *Config) makeDefaultConfigValue() {
if cfg.EmptyFieldAs == "" {
cfg.EmptyFieldAs = "string"
}
}
// ParseDSN parses the DSN string to a Config
func ParseDSN(dsn string) (*Config, error) {
u, err := url.Parse(dsn)
if err != nil {
return nil, err
}
cfg := NewConfig()
if strings.HasSuffix(u.Scheme, "http") {
cfg.SSLMode = SSL_MODE_DISABLE
}
if len(u.Path) > 1 {
// skip '/'
cfg.Database = u.Path[1:]
}
if u.User != nil {
// it is expected that empty password will be dropped out on Parse and Format
cfg.User = u.User.Username()
if passwd, ok := u.User.Password(); ok {
cfg.Password = passwd
}
}
params := make(map[string]string)
for k, v := range u.Query() {
if len(v) == 0 {
continue
}
params[k] = v[0]
}
if err = cfg.AddParams(params); err != nil {
return nil, err
}
if _, _, err := net.SplitHostPort(u.Host); err == nil {
cfg.Host = u.Host
} else {
switch cfg.SSLMode {
case SSL_MODE_DISABLE:
cfg.Host = net.JoinHostPort(u.Host, "80")
default:
cfg.Host = net.JoinHostPort(u.Host, "443")
}
}
return cfg, nil
}
func (cfg *Config) Connect(ctx context.Context) (driver.Conn, error) {
return DatabendDriver{}.OpenWithConfig(ctx, cfg)
}
func (cfg *Config) Driver() driver.Driver {
return DatabendDriver{}
}