-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.go
146 lines (110 loc) · 2.61 KB
/
table.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
package crud
import (
"reflect"
"sync"
"github.com/azer/crud/v2/meta"
"github.com/azer/crud/v2/sql"
)
var (
tableCache = map[reflect.Type]*Table{}
tableCacheMu sync.RWMutex
)
// Create an internal representation of a database table, including its fields from given
// struct record
func NewTable(any interface{}) (*Table, error) {
anyT := reflect.TypeOf(any)
tableCacheMu.RLock()
if t, ok := tableCache[anyT]; ok {
tableCacheMu.RUnlock()
return t, nil
}
tableCacheMu.RUnlock()
if meta.IsSlice(any) {
any = meta.CreateElement(any).Interface()
}
fields, err := GetFieldsOf(any)
if err != nil {
return nil, err
}
SetDefaultPK(fields)
name, sqlName := ReadTableName(any)
t := &Table{
Name: name,
SQLName: sqlName,
Fields: fields,
}
tableCacheMu.Lock()
tableCache[anyT] = t
tableCacheMu.Unlock()
return t, nil
}
type Table struct {
Name string
SQLName string
Fields []*Field
}
func (table *Table) SQLOptions() []*sql.Options {
result := []*sql.Options{}
for _, f := range table.Fields {
result = append(result, f.SQL)
}
return result
}
func (table *Table) SQLColumnDict() map[string]string {
result := map[string]string{}
for _, field := range table.Fields {
result[field.SQL.Name] = field.Name
}
return result
}
func (table *Table) PrimaryKeyField() *Field {
for _, f := range table.Fields {
if f.SQL.IsPrimaryKey {
return f
}
}
return nil
}
func (table *Table) SQLUpdateColumnSet() []string {
columns := []string{}
for _, f := range table.Fields {
if f.SQL.Ignore || f.SQL.IsAutoIncrementing || f.SQL.Generated {
continue
}
columns = append(columns, f.SQL.Name)
}
return columns
}
func (table *Table) SQLUpdateValueSet(record interface{}) []interface{} {
values := []interface{}{}
for _, f := range table.Fields {
if f.SQL.Ignore || f.SQL.IsAutoIncrementing || f.SQL.Generated {
continue
}
values = append(values, meta.StructFieldValue(record, f.Name))
}
pk := table.PrimaryKeyField()
if pk != nil {
values = append(values, meta.StructFieldValue(record, pk.Name))
}
return values
}
// Return struct name and SQL table name
func ReadTableName(any interface{}) (string, string) {
return meta.TypeNameOf(any), SQLTableNameOf(any)
}
// Return table columns for given struct, pointer to struct or slice of structs.
func ReadTableColumns(any interface{}) ([]string, error) {
if meta.IsSlice(any) {
any = meta.CreateElement(any).Interface()
}
fields, err := GetFieldsOf(any)
if err != nil {
return nil, err
}
columns := []string{}
for _, col := range fields {
columns = append(columns, col.SQL.Name)
}
return columns, nil
}