forked from ClickHouse/clickhouse-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscan.go
More file actions
81 lines (74 loc) · 1.96 KB
/
scan.go
File metadata and controls
81 lines (74 loc) · 1.96 KB
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
package clickhouse
import (
"context"
"errors"
"fmt"
"github.com/ClickHouse/clickhouse-go/v2/lib/driver"
"reflect"
"github.com/ClickHouse/clickhouse-go/v2/lib/proto"
)
type scanSelectQueryFunc func(ctx context.Context, query string, args ...any) (driver.Rows, error)
func scanSelect(queryFunc scanSelectQueryFunc, ctx context.Context, dest any, query string, args ...any) error {
value := reflect.ValueOf(dest)
if value.Kind() != reflect.Ptr {
return &OpError{
Op: "Select",
Err: errors.New("must pass a pointer, not a value, to Select destination"),
}
}
if value.IsNil() {
return &OpError{
Op: "Select",
Err: errors.New("nil pointer passed to Select destination"),
}
}
direct := reflect.Indirect(value)
if direct.Kind() != reflect.Slice {
return fmt.Errorf("must pass a slice to Select destination")
}
if direct.Len() != 0 {
// dest should point to empty slice
// to make select result correct
direct.Set(reflect.MakeSlice(direct.Type(), 0, direct.Cap()))
}
var (
base = direct.Type().Elem()
rows, err = queryFunc(ctx, query, args...)
)
if err != nil {
return err
}
defer rows.Close()
for rows.Next() {
elem := reflect.New(base)
if err := rows.ScanStruct(elem.Interface()); err != nil {
return err
}
direct.Set(reflect.Append(direct, elem.Elem()))
}
if err := rows.Close(); err != nil {
return err
}
return rows.Err()
}
func (ch *clickhouse) Select(ctx context.Context, dest any, query string, args ...any) error {
return scanSelect(ch.Query, ctx, dest, query, args...)
}
func scan(block *proto.Block, row int, dest ...any) error {
columns := block.Columns
if len(columns) != len(dest) {
return &OpError{
Op: "Scan",
Err: fmt.Errorf("expected %d destination arguments in Scan, not %d", len(columns), len(dest)),
}
}
for i, d := range dest {
if err := columns[i].ScanRow(d, row-1); err != nil {
return &OpError{
Err: err,
ColumnName: block.ColumnsNames()[i],
}
}
}
return nil
}