forked from snowflakedb/gosnowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
connection_util.go
306 lines (282 loc) · 7.71 KB
/
connection_util.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
// Copyright (c) 2021-2022 Snowflake Computing Inc. All rights reserved.
package gosnowflake
import (
"bytes"
"context"
"fmt"
"io"
"os"
"strconv"
"strings"
"time"
)
func (sc *snowflakeConn) isClientSessionKeepAliveEnabled() bool {
paramsMutex.Lock()
v, ok := sc.cfg.Params[sessionClientSessionKeepAlive]
paramsMutex.Unlock()
if !ok {
return false
}
return strings.Compare(*v, "true") == 0
}
func (sc *snowflakeConn) startHeartBeat() {
if sc.cfg != nil && !sc.isClientSessionKeepAliveEnabled() {
return
}
if sc.rest != nil {
sc.rest.HeartBeat = &heartbeat{
restful: sc.rest,
}
sc.rest.HeartBeat.start()
}
}
func (sc *snowflakeConn) stopHeartBeat() {
if sc.cfg != nil && !sc.isClientSessionKeepAliveEnabled() {
return
}
if sc.rest != nil && sc.rest.HeartBeat != nil {
sc.rest.HeartBeat.stop()
}
}
func (sc *snowflakeConn) getArrayBindStageThreshold() int {
paramsMutex.Lock()
v, ok := sc.cfg.Params[sessionArrayBindStageThreshold]
paramsMutex.Unlock()
if !ok {
return 0
}
num, err := strconv.Atoi(*v)
if err != nil {
return 0
}
return num
}
func (sc *snowflakeConn) connectionTelemetry(cfg *Config) {
data := &telemetryData{
Message: map[string]string{
typeKey: connectionParameters,
sourceKey: telemetrySource,
driverTypeKey: "Go",
driverVersionKey: SnowflakeGoDriverVersion,
},
Timestamp: time.Now().UnixNano() / int64(time.Millisecond),
}
paramsMutex.Lock()
for k, v := range cfg.Params {
data.Message[k] = *v
}
paramsMutex.Unlock()
sc.telemetry.addLog(data)
sc.telemetry.sendBatch()
}
// processFileTransfer creates a snowflakeFileTransferAgent object to process
// any PUT/GET commands with their specified options
func (sc *snowflakeConn) processFileTransfer(
ctx context.Context,
data *execResponse,
query string,
isInternal bool) (
*execResponse, error) {
sfa := snowflakeFileTransferAgent{
sc: sc,
data: &data.Data,
command: query,
options: new(SnowflakeFileTransferOptions),
}
if fs := getFileStream(ctx); fs != nil {
sfa.sourceStream = fs
if isInternal {
sfa.data.AutoCompress = false
}
}
if op := getFileTransferOptions(ctx); op != nil {
sfa.options = op
}
if sfa.options.MultiPartThreshold == 0 {
sfa.options.MultiPartThreshold = dataSizeThreshold
}
if err := sfa.execute(); err != nil {
return nil, err
}
data, err := sfa.result()
if err != nil {
return nil, err
}
return data, nil
}
func getFileStream(ctx context.Context) *bytes.Buffer {
s := ctx.Value(fileStreamFile)
r, ok := s.(io.Reader)
if !ok {
return nil
}
buf := new(bytes.Buffer)
buf.ReadFrom(r)
return buf
}
func getFileTransferOptions(ctx context.Context) *SnowflakeFileTransferOptions {
v := ctx.Value(fileTransferOptions)
if v == nil {
return nil
}
o, ok := v.(*SnowflakeFileTransferOptions)
if !ok {
return nil
}
return o
}
func (sc *snowflakeConn) populateSessionParameters(parameters []nameValueParameter) {
// other session parameters (not all)
logger.WithContext(sc.ctx).Infof("params: %#v", parameters)
for _, param := range parameters {
v := ""
switch param.Value.(type) {
case int64:
if vv, ok := param.Value.(int64); ok {
v = strconv.FormatInt(vv, 10)
}
case float64:
if vv, ok := param.Value.(float64); ok {
v = strconv.FormatFloat(vv, 'g', -1, 64)
}
case bool:
if vv, ok := param.Value.(bool); ok {
v = strconv.FormatBool(vv)
}
default:
if vv, ok := param.Value.(string); ok {
v = vv
}
}
logger.Debugf("parameter. name: %v, value: %v", param.Name, v)
paramsMutex.Lock()
sc.cfg.Params[strings.ToLower(param.Name)] = &v
paramsMutex.Unlock()
}
}
func isAsyncMode(ctx context.Context) bool {
val := ctx.Value(asyncMode)
if val == nil {
return false
}
a, ok := val.(bool)
return ok && a
}
func isDescribeOnly(ctx context.Context) bool {
v := ctx.Value(describeOnly)
if v == nil {
return false
}
d, ok := v.(bool)
return ok && d
}
func setResultType(ctx context.Context, resType resultType) context.Context {
return context.WithValue(ctx, snowflakeResultType, resType)
}
func getResultType(ctx context.Context) resultType {
return ctx.Value(snowflakeResultType).(resultType)
}
// isDml returns true if the statement type code is in the range of DML.
func isDml(v int64) bool {
return statementTypeIDDml <= v && v <= statementTypeIDMultiTableInsert
}
func isDql(data *execResponseData) bool {
return data.StatementTypeID == statementTypeIDSelect && !isMultiStmt(data)
}
func updateRows(data execResponseData) (int64, error) {
if data.RowSet == nil {
return 0, nil
}
var count int64
for i, n := 0, len(data.RowType); i < n; i++ {
v, err := strconv.ParseInt(*data.RowSet[0][i], 10, 64)
if err != nil {
return -1, err
}
count += v
}
return count, nil
}
// isMultiStmt returns true if the statement code is of type multistatement
// Note that the statement type code is also equivalent to type INSERT, so an
// additional check of the name is required
func isMultiStmt(data *execResponseData) bool {
var isMultistatementByReturningSelect = data.StatementTypeID == statementTypeIDSelect && data.RowType[0].Name == "multiple statement execution"
return isMultistatementByReturningSelect || data.StatementTypeID == statementTypeIDMultistatement
}
func getResumeQueryID(ctx context.Context) (string, error) {
val := ctx.Value(fetchResultByID)
if val == nil {
return "", nil
}
strVal, ok := val.(string)
if !ok {
return "", fmt.Errorf("failed to cast val %+v to string", val)
}
// so there is a queryID in context for which we want to fetch the result
if !queryIDRegexp.MatchString(strVal) {
return strVal, &SnowflakeError{
Number: ErrQueryIDFormat,
Message: "Invalid QID",
QueryID: strVal,
}
}
return strVal, nil
}
// returns snowflake chunk downloader by default or stream based chunk
// downloader if option provided through context
func populateChunkDownloader(
ctx context.Context,
sc *snowflakeConn,
data execResponseData) chunkDownloader {
if useStreamDownloader(ctx) && resultFormat(data.QueryResultFormat) == jsonFormat {
// stream chunk downloading only works for row based data formats, i.e. json
fetcher := &httpStreamChunkFetcher{
ctx: ctx,
client: sc.rest.Client,
clientIP: sc.cfg.ClientIP,
headers: data.ChunkHeaders,
qrmk: data.Qrmk,
}
return newStreamChunkDownloader(ctx, fetcher, data.Total, data.RowType,
data.RowSet, data.Chunks)
}
return &snowflakeChunkDownloader{
sc: sc,
ctx: ctx,
pool: getAllocator(ctx),
CurrentChunk: make([]chunkRowType, len(data.RowSet)),
ChunkMetas: data.Chunks,
Total: data.Total,
TotalRowIndex: int64(-1),
CellCount: len(data.RowType),
Qrmk: data.Qrmk,
QueryResultFormat: data.QueryResultFormat,
ChunkHeader: data.ChunkHeaders,
FuncDownload: downloadChunk,
FuncDownloadHelper: downloadChunkHelper,
FuncGet: getChunk,
RowSet: rowSetType{
RowType: data.RowType,
JSON: data.RowSet,
RowSetBase64: data.RowSetBase64,
},
}
}
func (sc *snowflakeConn) setupOCSPPrivatelink(app string, host string) error {
ocspCacheServer := fmt.Sprintf("http://ocsp.%v/ocsp_response_cache.json", host)
logger.Debugf("OCSP Cache Server for Privatelink: %v\n", ocspCacheServer)
if err := os.Setenv(cacheServerURLEnv, ocspCacheServer); err != nil {
return err
}
ocspRetryHostTemplate := fmt.Sprintf("http://ocsp.%v/retry/", host) + "%v/%v"
logger.Debugf("OCSP Retry URL for Privatelink: %v\n", ocspRetryHostTemplate)
if err := os.Setenv(ocspRetryURLEnv, ocspRetryHostTemplate); err != nil {
return err
}
return nil
}
func isStatementContext(ctx context.Context) bool {
v := ctx.Value(executionType)
return v == executionTypeStatement
}