-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery.go
220 lines (196 loc) · 5.64 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
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
package queries
import (
"context"
"database/sql"
"fmt"
"iter"
"reflect"
"sync"
"time"
)
// Queryer is an interface implemented by [sql.DB] and [sql.Tx].
type Queryer interface {
QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error)
}
// Query executes a query that returns rows, scans each row into a T, and returns an iterator over the Ts.
// If an error occurs, the iterator yields it as the second value, and the caller should then stop the iteration.
// [Queryer] can be either [sql.DB] or [sql.Tx], the rest of the arguments are passed directly to [Queryer.QueryContext].
// Query fully manages the lifecycle of the [sql.Rows] returned by [Queryer.QueryContext], so the caller does not have to.
//
// The following Ts are supported:
// - int (any kind)
// - uint (any kind)
// - float (any kind)
// - bool
// - string
// - time.Time
// - [sql.Scanner] (implemented by [sql.Null] types)
// - any struct
//
// See the [sql.Rows.Scan] documentation for the scanning rules.
// If the query has multiple columns, T must be a struct, other types can only be used for single-column queries.
// The fields of a struct T must have the `sql:"COLUMN"` tag, where COLUMN is the name of the corresponding column in the query.
// Unexported and untagged fields are ignored.
//
// Query panics if:
// - The query has no columns.
// - A non-struct T is specified with a multi-column query.
// - The specified struct T has no field for one of the query columns.
// - An unsupported T is specified.
// - One of the fields in a struct T has an empty `sql` tag.
//
// If the caller prefers the result to be a slice rather than an iterator, Query can be combined with [Collect].
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
}
}
}
// QueryRow is a [Query] variant for queries that are expected to return at most one row,
// so instead of an iterator, it returns a single T.
// Like [sql.DB.QueryRow], QueryRow returns [sql.ErrNoRows] if the query selects no rows,
// otherwise it scans the first row and discards the rest.
// See the [Query] documentation for details on supported Ts.
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
}
// Collect is a [slices.Collect] variant that collects values from an iter.Seq2[T, error].
// If an error occurs during the collection, Collect stops the iteration and returns the error.
func Collect[T any](seq iter.Seq2[T, error]) ([]T, error) {
var ts []T
for t, err := range seq {
if err != nil {
return nil, err
}
ts = append(ts, t)
}
return ts, 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 (
useCache = true
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 useCache {
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
}
if useCache {
cache.Store(t, indexes)
}
return indexes
}