-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql.go
137 lines (116 loc) · 2.7 KB
/
sql.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
package sqlquery
import (
"context"
"database/sql"
"errors"
"fmt"
"strings"
)
type DBTX interface {
ExecContext(context.Context, string, ...interface{}) (sql.Result, error)
PrepareContext(context.Context, string) (*sql.Stmt, error)
QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)
QueryRowContext(context.Context, string, ...interface{}) *sql.Row
}
type Scaneable interface {
Fields() []any
}
type Querier[T any] struct {
db DBTX
}
func New[T any](db DBTX) *Querier[T] {
return &Querier[T]{
db: db,
}
}
func (*Querier[T]) WithTx(db DBTX) *Querier[T] {
return &Querier[T]{
db: db,
}
}
func (q *Querier[T]) PaginateQuery(ctx context.Context, skip, limit int, query string, args ...any) ([]T, error) {
baseQuery := &strings.Builder{}
baseQuery.WriteString(query)
var err error
if limit > 0 {
if _, err = fmt.Fprintf(baseQuery, " LIMIT %d ", limit); err != nil {
return nil, err
}
}
if skip > 0 {
if _, err = fmt.Fprintf(baseQuery, " OFFSET %d ", skip); err != nil {
return nil, err
}
}
return q.Query(ctx, baseQuery.String(), args...)
}
func (q *Querier[T]) QueryOne(ctx context.Context, query string) (T, error) {
raw := q.db.QueryRowContext(ctx, query)
var (
val T
scanables = newScanableItems(&val)
)
if err := raw.Scan(scanables.values()...); err != nil {
return val, err
}
return val, raw.Err()
}
func (q *Querier[T]) Query(ctx context.Context, query string, args ...any) ([]T, error) {
raws, err := q.db.QueryContext(ctx, query, args...)
if err != nil {
return nil, err
}
var items = make([]T, 0)
for raws.Next() {
var (
val T
scanables = newScanableItems(&val)
)
if err = raws.Scan(scanables.values()...); err != nil {
return nil, err
}
items = append(items, val)
}
return items, errors.Join(
raws.Close(),
raws.Err(),
)
}
type scanableItems []any
func newScanableItems(items ...any) *scanableItems {
var s scanableItems
for _, item := range items {
s.add(item)
}
return &s
}
func (s *scanableItems) values() []any {
return *s
}
func (s *scanableItems) add(item any) (found bool) {
switch i := item.(type) {
case Scaneable:
*s = append(*s, i.Fields()...)
found = true
case []Scaneable:
found = len(i) > 0
for _, ii := range i {
if !s.add(ii) {
found = false
}
}
case *int, *int8, *int32, *int64, *uint, *uint8, *uint64, *uint16, *string, *[]byte:
*s = append(*s, i)
found = true
}
return false
}
func (q *Querier[T]) QueryRaw(ctx context.Context, query string, args ...any) (T, error) {
raw := q.db.QueryRowContext(ctx, query, args...)
var val T
var scanables = newScanableItems(&val)
if err := raw.Scan(scanables.values()...); err != nil {
return val, err
}
return val, nil
}