-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery.go
170 lines (145 loc) · 3.43 KB
/
query.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
package queries
import (
"context"
"database/sql"
"fmt"
"iter"
"reflect"
"sync"
"time"
)
type queryer interface {
QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error)
}
// TODO: document me.
func Query[T any](ctx context.Context, q queryer, query string, args ...any) iter.Seq2[T, error] {
return func(yield func(T, error) bool) {
rows, err := q.QueryContext(ctx, query, args...)
if err != nil {
yield(zero[T](), err)
return
}
defer rows.Close()
columns, err := rows.Columns()
if err != nil {
yield(zero[T](), err)
return
}
for rows.Next() {
t, err := scan[T](rows, columns)
if err != nil {
yield(zero[T](), err)
return
}
if !yield(t, nil) {
return
}
}
if err := rows.Err(); err != nil {
yield(zero[T](), err)
return
}
}
}
// TODO: document me.
func QueryRow[T any](ctx context.Context, q queryer, query string, args ...any) (T, error) {
rows, err := q.QueryContext(ctx, query, args...)
if err != nil {
return zero[T](), err
}
defer rows.Close()
columns, err := rows.Columns()
if err != nil {
return zero[T](), err
}
if !rows.Next() {
if err := rows.Err(); err != nil {
return zero[T](), err
}
return zero[T](), sql.ErrNoRows
}
t, err := scan[T](rows, columns)
if err != nil {
return zero[T](), err
}
if err := rows.Err(); err != nil {
return zero[T](), err
}
return t, nil
}
func zero[T any]() (t T) { return t }
type scanner interface {
Scan(...any) error
}
func scan[T any](s scanner, columns []string) (T, error) {
if len(columns) == 0 {
panic("queries: no columns specified") // valid in PostgreSQL (for some reason).
}
var t T
v := reflect.ValueOf(&t).Elem()
args := make([]any, len(columns))
switch {
case scannable(v):
if len(columns) > 1 {
panic("queries: T must be a struct if len(columns) > 1")
}
args[0] = v.Addr().Interface()
case v.Kind() == reflect.Struct:
indexes := parseStruct(v.Type())
for i, column := range columns {
idx, ok := indexes[column]
if !ok {
panic(fmt.Sprintf("queries: no field for column %q", column))
}
args[i] = v.Field(idx).Addr().Interface()
}
default:
panic(fmt.Sprintf("queries: unsupported T %T", t))
}
if err := s.Scan(args...); err != nil {
return zero[T](), err
}
return t, nil
}
func scannable(v reflect.Value) bool {
switch v.Kind() {
case reflect.Bool,
reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64,
reflect.Float32, reflect.Float64,
reflect.String:
return true
}
if v.Type() == reflect.TypeFor[time.Time]() {
return true
}
if v.Addr().Type().Implements(reflect.TypeFor[sql.Scanner]()) {
return true
}
return false
}
var cache sync.Map // map[reflect.Type]map[string]int
// parseStruct parses the given struct type and returns a map of column names to field indexes.
// The result is cached, so each struct type is parsed only once.
func parseStruct(t reflect.Type) map[string]int {
if m, ok := cache.Load(t); ok {
return m.(map[string]int)
}
indexes := make(map[string]int, t.NumField())
for i := range t.NumField() {
field := t.Field(i)
if !field.IsExported() {
continue
}
column, ok := field.Tag.Lookup("sql")
if !ok {
continue
}
if column == "" {
panic(fmt.Sprintf("queries: field %s has an empty `sql` tag", field.Name))
}
indexes[column] = i
}
cache.Store(t, indexes)
return indexes
}