-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpsql.go
364 lines (282 loc) · 7.33 KB
/
psql.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
package psql
import (
"database/sql"
"errors"
"reflect"
"strconv"
"strings"
"time"
"github.com/lib/pq"
)
var (
ErrNoRows = sql.ErrNoRows
scanInterfaceType = reflect.TypeOf((*sql.Scanner)(nil)).Elem()
modelInterfaceType = reflect.TypeOf((*Model)(nil)).Elem()
timeType = reflect.TypeOf(time.Time{})
)
type Attrs = map[string]interface{}
// Range
type Range struct {
Start interface{}
End interface{}
}
// Queries
func selectQuery(table string, columns []string, where string, orderBys []string, limit int) string {
var b StringsBuilder
var cols string
if len(columns) == 0 {
cols = "*"
} else {
cols = strings.Join(quoteStrings(columns...), ", ")
}
b.WriteStrings("SELECT ", cols, " FROM ", Quote(table))
if where != "" {
b.WriteStrings(" WHERE ", where)
}
if len(orderBys) > 0 {
b.WriteStrings(" ORDER BY ", strings.Join(orderBys, ", "))
}
if limit > 0 {
b.WriteStrings(" LIMIT ", strconv.Itoa(limit))
}
return b.String()
}
func insertQuery(table string, cols []string, returning []string) string {
var b StringsBuilder
placeHolders := placeHolders(1, len(cols))
colsStr := strings.Join(quoteStrings(cols...), ", ")
valsStr := strings.Join(placeHolders, ", ")
if len(returning) == 0 {
returning = []string{"id"}
}
returnCols := strings.Join(quoteStrings(returning...), ", ")
b.WriteStrings("INSERT INTO ", Quote(table), " (", colsStr, ") VALUES (", valsStr, ") RETURNING ", returnCols)
return b.String()
}
func updateQuery(table string, cols []string, where string, returning []string) string {
var b StringsBuilder
placeHolders := placeHolders(1, len(cols))
colsStr := strings.Join(quoteStrings(cols...), ", ")
valsStr := strings.Join(placeHolders, ", ")
b.WriteStrings("UPDATE ", Quote(table), " SET (", colsStr, ") = ", "ROW(", valsStr, ")")
if where != "" {
b.WriteStrings(" WHERE ", where)
}
if len(returning) > 0 {
b.WriteStrings(" RETURNING ", strings.Join(quoteStrings(returning...), ", "))
}
return b.String()
}
func deleteQuery(table string, where string, returning []string) string {
var b StringsBuilder
b.WriteStrings("DELETE FROM ", Quote(table))
if where != "" {
b.WriteStrings(" WHERE ", where)
}
if len(returning) > 0 {
b.WriteStrings(" RETURNING ", strings.Join(quoteStrings(returning...), ", "))
}
return b.String()
}
// Helpers
// start should be at 1 so that the first placeholder is $1
func placeHolders(start, size int) []string {
placeHolders := make([]string, size)
var b StringsBuilder
for i := 0; i < size; i++ {
b.WriteStrings("$", strconv.Itoa(start+i))
placeHolders[i] = b.String()
b.Reset()
}
return placeHolders
}
func keysValues(m map[string]interface{}) ([]string, []interface{}) {
keys := make([]string, len(m))
vals := make([]interface{}, len(m))
var i int
for col, v := range m {
keys[i] = col
vals[i] = v
i++
}
return keys, vals
}
func idIndex(t reflect.Type) (int, error) {
if err := verifyStruct(t); err != nil {
return 0, err
}
n := t.NumField()
for i := 0; i < n; i++ {
f := t.Field(i)
t := f.Tag.Get("sql")
if t == "id" {
return i, nil
}
}
return 0, errors.New("no id tag found")
}
func scanStructs(rows *sql.Rows, baseType reflect.Type, sliceElemType reflect.Type, outSliceVal reflect.Value) error {
fieldIdxs := indexes(baseType)
cols, err := rows.Columns()
if err != nil {
return err
}
isModel := sliceElemType.Implements(modelInterfaceType)
isPtr := sliceElemType.Kind() == reflect.Ptr
for rows.Next() {
v := reflect.New(baseType).Elem()
var vals []interface{}
if isModel {
vals = modelVals(v, fieldIdxs, cols)
} else {
vals = structVals(v, cols)
}
if err := rows.Scan(vals...); err != nil {
return err
}
if isPtr {
outSliceVal.Set(reflect.Append(outSliceVal, v.Addr()))
} else {
outSliceVal.Set(reflect.Append(outSliceVal, v))
}
}
return rows.Err()
}
// modelVals are for structs with a sql tag (Models) that support attributes getting scanned
// in whatever order they appear in the query since they get mapped to the column name
func modelVals(v reflect.Value, fieldIdxs map[string][]int, cols []string) []interface{} {
var vals []interface{}
for _, col := range cols {
idxs, ok := fieldIdxs[col]
if !ok {
// add blank val so that scan doesn't fail if the struct does not define a column returned
var val interface{}
vals = append(vals, &val)
continue
}
val := fieldAt(v, idxs)
if val.Kind() != reflect.Ptr {
val = val.Addr()
}
vals = append(vals, val.Interface())
}
return vals
}
// structVals are for regular structs that get their fields scanned in order
func structVals(v reflect.Value, cols []string) []interface{} {
var vals []interface{}
for idx := range cols {
if idx >= v.NumField() {
break
}
val := v.Field(idx)
if val.Kind() != reflect.Ptr {
val = val.Addr()
}
vals = append(vals, val.Interface())
}
return vals
}
func scanNatives(rows *sql.Rows, baseType reflect.Type, sliceElemType reflect.Type, outSliceVal reflect.Value) error {
isPtr := sliceElemType.Kind() == reflect.Ptr
for rows.Next() {
v := reflect.New(baseType)
if err := rows.Scan(v.Interface()); err != nil {
return err
}
if isPtr {
outSliceVal.Set(reflect.Append(outSliceVal, v))
} else {
outSliceVal.Set(reflect.Append(outSliceVal, v.Elem()))
}
}
return rows.Err()
}
func verifyPtr(t reflect.Type) error {
if t.Kind() != reflect.Ptr {
return errors.New("requires pointer parameter")
}
return nil
}
func verifySlice(t reflect.Type) error {
if t.Kind() != reflect.Slice {
return errors.New("requires slice parameter")
}
return nil
}
func verifyArray(t reflect.Type) error {
if t.Kind() != reflect.Slice && t.Kind() != reflect.Array {
return errors.New("requires slice or array parameter")
}
return nil
}
func verifyStruct(t reflect.Type) error {
if t.Kind() != reflect.Struct {
return errors.New("requires struct parameter")
}
return nil
}
func scanAsStruct(t reflect.Type) bool {
baseType := t
if err := verifyPtr(t); err == nil {
baseType = t.Elem()
}
if baseType.Kind() != reflect.Struct || baseType == timeType {
return false
}
return t.Implements(modelInterfaceType) || !t.Implements(scanInterfaceType)
}
// fieldAt retrieves a field at a given index path
func fieldAt(v reflect.Value, idxs []int) reflect.Value {
f := v
for _, idx := range idxs {
f = f.Field(idx)
}
return f
}
// indexes takes in a type and returns a map of sql tag column names
// to and array of ints that represent a path of indexes to the field
func indexes(t reflect.Type) map[string][]int {
fields := make(map[string][]int)
if err := verifyStruct(t); err != nil {
return fields
}
for i := 0; i < t.NumField(); i++ {
f := t.Field(i)
tag := f.Tag
col := tag.Get("sql")
if col == "" {
if f.Anonymous && f.Type.Kind() == reflect.Struct {
for jCol, js := range indexes(f.Type) {
fields[jCol] = append([]int{i}, js...)
}
}
continue
}
fields[col] = []int{i}
}
return fields
}
// Strings helper
type StringsBuilder struct {
strings.Builder
}
func (b *StringsBuilder) WriteStrings(strs ...string) {
for _, str := range strs {
b.WriteString(str)
}
}
func Quote(str string) string {
return pq.QuoteIdentifier(str)
}
// will not quote *
func quoteStrings(strs ...string) []string {
for i, str := range strs {
if str == "*" {
strs[i] = str
continue
}
strs[i] = Quote(str)
}
return strs
}