-
Notifications
You must be signed in to change notification settings - Fork 125
/
driver.go
93 lines (80 loc) · 2.45 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
// Copyright (c) 2017-2022 Snowflake Computing Inc. All rights reserved.
package gosnowflake
import (
"context"
"database/sql"
"database/sql/driver"
"os"
"strings"
"sync"
)
var paramsMutex *sync.Mutex
// SnowflakeDriver is a context of Go Driver
type SnowflakeDriver struct{}
// Open creates a new connection.
func (d SnowflakeDriver) Open(dsn string) (driver.Conn, error) {
var cfg *Config
var err error
logger.Info("Open")
ctx := context.Background()
if dsn == "autoConfig" {
cfg, err = loadConnectionConfig()
} else {
cfg, err = ParseDSN(dsn)
}
if err != nil {
return nil, err
}
return d.OpenWithConfig(ctx, *cfg)
}
// OpenWithConfig creates a new connection with the given Config.
func (d SnowflakeDriver) OpenWithConfig(ctx context.Context, config Config) (driver.Conn, error) {
if err := config.Validate(); err != nil {
return nil, err
}
if config.Tracing != "" {
if err := logger.SetLogLevel(config.Tracing); err != nil {
return nil, err
}
}
logger.WithContext(ctx).Info("OpenWithConfig")
sc, err := buildSnowflakeConn(ctx, config)
if err != nil {
return nil, err
}
if strings.HasSuffix(strings.ToLower(config.Host), cnDomain) {
logger.WithContext(ctx).Info("Connecting to CHINA Snowflake domain")
} else {
logger.WithContext(ctx).Info("Connecting to GLOBAL Snowflake domain")
}
if err = authenticateWithConfig(sc); err != nil {
return nil, err
}
sc.connectionTelemetry(&config)
sc.startHeartBeat()
sc.internal = &httpClient{sr: sc.rest}
return sc, nil
}
func runningOnGithubAction() bool {
return os.Getenv("GITHUB_ACTIONS") != ""
}
// GOSNOWFLAKE_SKIP_REGISTERATION is an environment variable which can be set client side to
// bypass dbSql driver registration. This should not be used if sql.Open() is used as the method
// to connect to the server, as sql.Open will require registration so it can map the driver name
// to the driver type, which in this case is "snowflake" and SnowflakeDriver{}. If you wish to call
// into multiple versions of the driver from one client, this is needed because calling register
// twice with the same name on init will cause the driver to panic.
func skipRegistration() bool {
return os.Getenv("GOSNOWFLAKE_SKIP_REGISTERATION") != ""
}
var logger = CreateDefaultLogger()
func init() {
if !skipRegistration() {
sql.Register("snowflake", &SnowflakeDriver{})
}
_ = logger.SetLogLevel("error")
if runningOnGithubAction() {
_ = logger.SetLogLevel("fatal")
}
paramsMutex = &sync.Mutex{}
}