-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbinder.go
More file actions
54 lines (41 loc) · 805 Bytes
/
binder.go
File metadata and controls
54 lines (41 loc) · 805 Bytes
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
package sqle
import (
"database/sql"
"reflect"
"strings"
"sync"
)
var (
binders = make(map[reflect.Type]Binder)
bindersMu sync.RWMutex
columns = make(map[string][]string)
columnsMu sync.RWMutex
)
type Binder interface {
Bind(v reflect.Value, columns []string) []any
}
func getColumns(query string, rows *sql.Rows) ([]string, error) {
columnsMu.RLock()
var cols []string
var cached bool
defer func() {
columnsMu.RUnlock()
if !cached {
columnsMu.Lock()
columns[query] = cols
columnsMu.Unlock()
}
}()
cols, cached = columns[query]
if cached {
return cols, nil
}
columns, err := rows.Columns()
if err != nil {
return nil, err
}
for _, it := range columns {
cols = append(cols, strings.ToLower(strings.ReplaceAll(it, "_", "")))
}
return cols, nil
}