-
Notifications
You must be signed in to change notification settings - Fork 562
/
clickhouse_std.go
536 lines (468 loc) · 13.8 KB
/
clickhouse_std.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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
// Licensed to ClickHouse, Inc. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. ClickHouse, Inc. licenses this file to you 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 clickhouse
import (
"context"
"database/sql"
"database/sql/driver"
"errors"
"fmt"
"io"
"log"
"math/rand"
"net"
"os"
"reflect"
"strings"
"sync/atomic"
"syscall"
"github.com/ClickHouse/clickhouse-go/v2/lib/column"
ldriver "github.com/ClickHouse/clickhouse-go/v2/lib/driver"
)
var globalConnID int64
type stdConnOpener struct {
err error
opt *Options
debugf func(format string, v ...any)
}
func (o *stdConnOpener) Driver() driver.Driver {
var debugf = func(format string, v ...any) {}
if o.opt.Debug {
if o.opt.Debugf != nil {
debugf = o.opt.Debugf
} else {
debugf = log.New(os.Stdout, "[clickhouse-std] ", 0).Printf
}
}
return &stdDriver{debugf: debugf}
}
func (o *stdConnOpener) Connect(ctx context.Context) (_ driver.Conn, err error) {
if o.err != nil {
o.debugf("[connect] opener error: %v\n", o.err)
return nil, o.err
}
var (
conn stdConnect
connID = int(atomic.AddInt64(&globalConnID, 1))
dialFunc func(ctx context.Context, addr string, num int, opt *Options) (stdConnect, error)
)
switch o.opt.Protocol {
case HTTP:
dialFunc = func(ctx context.Context, addr string, num int, opt *Options) (stdConnect, error) {
return dialHttp(ctx, addr, num, opt)
}
default:
dialFunc = func(ctx context.Context, addr string, num int, opt *Options) (stdConnect, error) {
return dial(ctx, addr, num, opt)
}
}
if o.opt.Addr == nil || len(o.opt.Addr) == 0 {
return nil, ErrAcquireConnNoAddress
}
random := rand.Int()
for i := range o.opt.Addr {
var num int
switch o.opt.ConnOpenStrategy {
case ConnOpenInOrder:
num = i
case ConnOpenRoundRobin:
num = (int(connID) + i) % len(o.opt.Addr)
case ConnOpenRandom:
num = (random + i) % len(o.opt.Addr)
}
if conn, err = dialFunc(ctx, o.opt.Addr[num], connID, o.opt); err == nil {
var debugf = func(format string, v ...any) {}
if o.opt.Debug {
if o.opt.Debugf != nil {
debugf = o.opt.Debugf
} else {
debugf = log.New(os.Stdout, fmt.Sprintf("[clickhouse-std][conn=%d][%s] ", num, o.opt.Addr[num]), 0).Printf
}
}
return &stdDriver{
conn: conn,
debugf: debugf,
}, nil
} else {
o.debugf("[connect] error connecting to %s on connection %d: %v\n", o.opt.Addr[num], connID, err)
}
}
return nil, err
}
var _ driver.Connector = (*stdConnOpener)(nil)
func init() {
var debugf = func(format string, v ...any) {}
sql.Register("clickhouse", &stdDriver{debugf: debugf})
}
// isConnBrokenError returns true if the error class indicates that the
// db connection is no longer usable and should be marked bad
func isConnBrokenError(err error) bool {
if errors.Is(err, io.EOF) || errors.Is(err, syscall.EPIPE) || errors.Is(err, syscall.ECONNRESET) {
return true
}
if _, ok := err.(*net.OpError); ok {
return true
}
return false
}
func Connector(opt *Options) driver.Connector {
if opt == nil {
opt = &Options{}
}
o := opt.setDefaults()
var debugf = func(format string, v ...any) {}
if o.Debug {
if o.Debugf != nil {
debugf = o.Debugf
} else {
debugf = log.New(os.Stdout, "[clickhouse-std][opener] ", 0).Printf
}
}
return &stdConnOpener{
opt: o,
debugf: debugf,
}
}
func OpenDB(opt *Options) *sql.DB {
var debugf = func(format string, v ...any) {}
if opt == nil {
opt = &Options{}
}
var settings []string
if opt.MaxIdleConns > 0 {
settings = append(settings, "SetMaxIdleConns")
}
if opt.MaxOpenConns > 0 {
settings = append(settings, "SetMaxOpenConns")
}
if opt.ConnMaxLifetime > 0 {
settings = append(settings, "SetConnMaxLifetime")
}
if opt.Debug {
if opt.Debugf != nil {
debugf = opt.Debugf
} else {
debugf = log.New(os.Stdout, "[clickhouse-std][opener] ", 0).Printf
}
}
if len(settings) != 0 {
return sql.OpenDB(&stdConnOpener{
err: fmt.Errorf("cannot connect. invalid settings. use %s (see https://pkg.go.dev/database/sql)", strings.Join(settings, ",")),
debugf: debugf,
})
}
o := opt.setDefaults()
return sql.OpenDB(&stdConnOpener{
opt: o,
debugf: debugf,
})
}
type stdConnect interface {
isBad() bool
close() error
query(ctx context.Context, release func(*connect, error), query string, args ...any) (*rows, error)
exec(ctx context.Context, query string, args ...any) error
ping(ctx context.Context) (err error)
prepareBatch(ctx context.Context, query string, options ldriver.PrepareBatchOptions, release func(*connect, error), acquire func(context.Context) (*connect, error)) (ldriver.Batch, error)
asyncInsert(ctx context.Context, query string, wait bool, args ...any) error
}
type stdDriver struct {
conn stdConnect
commit func() error
debugf func(format string, v ...any)
}
var _ driver.Conn = (*stdDriver)(nil)
var _ driver.ConnBeginTx = (*stdDriver)(nil)
var _ driver.ExecerContext = (*stdDriver)(nil)
var _ driver.QueryerContext = (*stdDriver)(nil)
var _ driver.ConnPrepareContext = (*stdDriver)(nil)
func (std *stdDriver) Open(dsn string) (_ driver.Conn, err error) {
var opt Options
if err := opt.fromDSN(dsn); err != nil {
std.debugf("Open dsn error: %v\n", err)
return nil, err
}
o := opt.setDefaults()
var debugf = func(format string, v ...any) {}
if o.Debug {
debugf = log.New(os.Stdout, "[clickhouse-std][opener] ", 0).Printf
}
o.ClientInfo.comment = []string{"database/sql"}
return (&stdConnOpener{opt: o, debugf: debugf}).Connect(context.Background())
}
var _ driver.Driver = (*stdDriver)(nil)
func (std *stdDriver) ResetSession(ctx context.Context) error {
if std.conn.isBad() {
std.debugf("Resetting session because connection is bad")
return driver.ErrBadConn
}
return nil
}
var _ driver.SessionResetter = (*stdDriver)(nil)
func (std *stdDriver) Ping(ctx context.Context) error {
if std.conn.isBad() {
std.debugf("Ping: connection is bad")
return driver.ErrBadConn
}
return std.conn.ping(ctx)
}
var _ driver.Pinger = (*stdDriver)(nil)
func (std *stdDriver) Begin() (driver.Tx, error) {
if std.conn.isBad() {
std.debugf("Begin: connection is bad")
return nil, driver.ErrBadConn
}
return std, nil
}
func (std *stdDriver) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
if std.conn.isBad() {
std.debugf("BeginTx: connection is bad")
return nil, driver.ErrBadConn
}
return std, nil
}
func (std *stdDriver) Commit() error {
if std.commit == nil {
return nil
}
defer func() {
std.commit = nil
}()
if err := std.commit(); err != nil {
if isConnBrokenError(err) {
std.debugf("Commit got EOF error: resetting connection")
return driver.ErrBadConn
}
std.debugf("Commit error: %v\n", err)
return err
}
return nil
}
func (std *stdDriver) Rollback() error {
std.commit = nil
std.conn.close()
return nil
}
var _ driver.Tx = (*stdDriver)(nil)
func (std *stdDriver) CheckNamedValue(nv *driver.NamedValue) error { return nil }
var _ driver.NamedValueChecker = (*stdDriver)(nil)
func (std *stdDriver) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {
if std.conn.isBad() {
std.debugf("ExecContext: connection is bad")
return nil, driver.ErrBadConn
}
var err error
if options := queryOptions(ctx); options.async.ok {
err = std.conn.asyncInsert(ctx, query, options.async.wait, rebind(args)...)
} else {
err = std.conn.exec(ctx, query, rebind(args)...)
}
if err != nil {
if isConnBrokenError(err) {
std.debugf("ExecContext got a fatal error, resetting connection: %v\n", err)
return nil, driver.ErrBadConn
}
std.debugf("ExecContext error: %v\n", err)
return nil, err
}
return driver.RowsAffected(0), nil
}
func (std *stdDriver) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {
if std.conn.isBad() {
std.debugf("QueryContext: connection is bad")
return nil, driver.ErrBadConn
}
r, err := std.conn.query(ctx, func(*connect, error) {}, query, rebind(args)...)
if isConnBrokenError(err) {
std.debugf("QueryContext got a fatal error, resetting connection: %v\n", err)
return nil, driver.ErrBadConn
}
if err != nil {
std.debugf("QueryContext error: %v\n", err)
return nil, err
}
return &stdRows{
rows: r,
debugf: std.debugf,
}, nil
}
func (std *stdDriver) Prepare(query string) (driver.Stmt, error) {
return std.PrepareContext(context.Background(), query)
}
func (std *stdDriver) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) {
if std.conn.isBad() {
std.debugf("PrepareContext: connection is bad")
return nil, driver.ErrBadConn
}
batch, err := std.conn.prepareBatch(ctx, query, ldriver.PrepareBatchOptions{}, func(*connect, error) {}, func(context.Context) (*connect, error) { return nil, nil })
if err != nil {
if isConnBrokenError(err) {
std.debugf("PrepareContext got a fatal error, resetting connection: %v\n", err)
return nil, driver.ErrBadConn
}
std.debugf("PrepareContext error: %v\n", err)
return nil, err
}
std.commit = batch.Send
return &stdBatch{
batch: batch,
debugf: std.debugf,
}, nil
}
func (std *stdDriver) Close() error {
err := std.conn.close()
if err != nil {
if isConnBrokenError(err) {
std.debugf("Close got a fatal error, resetting connection: %v\n", err)
return driver.ErrBadConn
}
std.debugf("Close error: %v\n", err)
}
return err
}
type stdBatch struct {
batch ldriver.Batch
debugf func(format string, v ...any)
}
func (s *stdBatch) NumInput() int { return -1 }
func (s *stdBatch) Exec(args []driver.Value) (driver.Result, error) {
values := make([]any, 0, len(args))
for _, v := range args {
values = append(values, v)
}
if err := s.batch.Append(values...); err != nil {
s.debugf("[batch][exec] append error: %v", err)
return nil, err
}
return driver.RowsAffected(0), nil
}
func (s *stdBatch) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) {
values := make([]driver.Value, 0, len(args))
for _, v := range args {
values = append(values, v.Value)
}
return s.Exec(values)
}
var _ driver.StmtExecContext = (*stdBatch)(nil)
func (s *stdBatch) Query(args []driver.Value) (driver.Rows, error) {
// Note: not implementing driver.StmtQueryContext accordingly
return nil, errors.New("only Exec method supported in batch mode")
}
func (s *stdBatch) Close() error { return nil }
type stdRows struct {
rows *rows
debugf func(format string, v ...any)
}
func (r *stdRows) Columns() []string {
return r.rows.Columns()
}
func (r *stdRows) ColumnTypeScanType(idx int) reflect.Type {
return r.rows.block.Columns[idx].ScanType()
}
var _ driver.RowsColumnTypeScanType = (*stdRows)(nil)
func (r *stdRows) ColumnTypeDatabaseTypeName(idx int) string {
return string(r.rows.block.Columns[idx].Type())
}
func (r *stdRows) ColumnTypeNullable(idx int) (nullable, ok bool) {
_, ok = r.rows.block.Columns[idx].(*column.Nullable)
return ok, true
}
func (r *stdRows) ColumnTypePrecisionScale(idx int) (precision, scale int64, ok bool) {
switch col := r.rows.block.Columns[idx].(type) {
case *column.Decimal:
return col.Precision(), col.Scale(), true
case interface{ Base() column.Interface }:
switch col := col.Base().(type) {
case *column.Decimal:
return col.Precision(), col.Scale(), true
}
}
return 0, 0, false
}
var _ driver.Rows = (*stdRows)(nil)
var _ driver.RowsNextResultSet = (*stdRows)(nil)
var _ driver.RowsColumnTypeDatabaseTypeName = (*stdRows)(nil)
var _ driver.RowsColumnTypeNullable = (*stdRows)(nil)
var _ driver.RowsColumnTypePrecisionScale = (*stdRows)(nil)
func (r *stdRows) Next(dest []driver.Value) error {
if len(r.rows.block.Columns) != len(dest) {
err := fmt.Errorf("expected %d destination arguments in Next, not %d", len(r.rows.block.Columns), len(dest))
r.debugf("Next length error: %v\n", err)
return &OpError{
Op: "Next",
Err: err,
}
}
if r.rows.Next() {
for i := range dest {
nullable, ok := r.ColumnTypeNullable(i)
switch value := r.rows.block.Columns[i].Row(r.rows.row-1, nullable && ok).(type) {
case driver.Valuer:
v, err := value.Value()
if err != nil {
r.debugf("Next row error: %v\n", err)
return err
}
dest[i] = v
default:
// We don't know what is the destination type at this stage,
// but destination type might be a sql.Null* type that expects to receive a value
// instead of a pointer to a value. ClickHouse-go returns pointers to values for nullable columns.
//
// This is a compatibility layer to make sure that the driver works with the standard library.
// Due to reflection used it has a performance cost.
if nullable {
if value == nil {
dest[i] = nil
continue
}
rv := reflect.ValueOf(value)
value = rv.Elem().Interface()
}
dest[i] = value
}
}
return nil
}
if err := r.rows.Err(); err != nil {
r.debugf("Next rows error: %v\n", err)
return err
}
return io.EOF
}
func (r *stdRows) HasNextResultSet() bool {
return r.rows.totals != nil
}
func (r *stdRows) NextResultSet() error {
switch {
case r.rows.totals != nil:
r.rows.block = r.rows.totals
r.rows.totals = nil
default:
return io.EOF
}
return nil
}
var _ driver.RowsNextResultSet = (*stdRows)(nil)
func (r *stdRows) Close() error {
err := r.rows.Close()
if err != nil {
r.debugf("Rows Close error: %v\n", err)
}
return err
}
var _ driver.Rows = (*stdRows)(nil)