-
Notifications
You must be signed in to change notification settings - Fork 123
/
struct.go
462 lines (378 loc) · 12.6 KB
/
struct.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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
// Copyright 2018 Huan Du. All rights reserved.
// Licensed under the MIT license that can be found in the LICENSE file.
package sqlbuilder
import (
"reflect"
"strings"
)
var (
// DBTag is the struct tag to describe the name for a field in struct.
DBTag = "db"
// FieldTag is the struct tag to describe the tag name for a field in struct.
// Use "," to separate different tags.
FieldTag = "fieldtag"
// FieldOpt is the options for a struct field.
// As db column can contain "," in theory, field options should be provided in a separated tag.
FieldOpt = "fieldopt"
)
const (
fieldOptWithQuote = "withquote"
fieldOptOmitEmpty = "omitempty"
)
// Struct represents a struct type.
//
// All methods in Struct are thread-safe.
// We can define a global variable to hold a Struct and use it in any goroutine.
type Struct struct {
Flavor Flavor
structType reflect.Type
fieldAlias map[string]string
taggedFields map[string][]string
quotedFields map[string]struct{}
omitEmptyFields map[string]struct{}
}
// NewStruct analyzes type information in structValue
// and creates a new Struct with all structValue fields.
// If structValue is not a struct, NewStruct returns a dummy Sturct.
func NewStruct(structValue interface{}) *Struct {
t := reflect.TypeOf(structValue)
t = dereferencedType(t)
s := &Struct{
Flavor: DefaultFlavor,
}
if t.Kind() != reflect.Struct {
return s
}
s.structType = t
s.fieldAlias = map[string]string{}
s.taggedFields = map[string][]string{}
s.quotedFields = map[string]struct{}{}
s.omitEmptyFields = map[string]struct{}{}
s.parse(t)
return s
}
// For sets the default flavor of s.
func (s *Struct) For(flavor Flavor) *Struct {
s.Flavor = flavor
return s
}
func (s *Struct) parse(t reflect.Type) {
l := t.NumField()
for i := 0; i < l; i++ {
field := t.Field(i)
if field.Anonymous {
ft := dereferencedType(field.Type)
s.parse(ft)
continue
}
// Parse DBTag.
dbtag := field.Tag.Get(DBTag)
alias := dbtag
if dbtag == "-" {
continue
}
if dbtag == "" {
alias = field.Name
s.fieldAlias[field.Name] = field.Name
} else {
s.fieldAlias[dbtag] = field.Name
}
// Parse FieldTag.
fieldtag := field.Tag.Get(FieldTag)
tags := strings.Split(fieldtag, ",")
for _, t := range tags {
if t != "" {
s.taggedFields[t] = append(s.taggedFields[t], alias)
}
}
s.taggedFields[""] = append(s.taggedFields[""], alias)
// Parse FieldOpt.
fieldopt := field.Tag.Get(FieldOpt)
opts := strings.Split(fieldopt, ",")
for _, opt := range opts {
switch opt {
case fieldOptWithQuote:
s.quotedFields[alias] = struct{}{}
case fieldOptOmitEmpty:
s.omitEmptyFields[alias] = struct{}{}
}
}
}
}
// SelectFrom creates a new `SelectBuilder` with table name.
// By default, all exported fields of the s are listed as columns in SELECT.
//
// Caller is responsible to set WHERE condition to find right record.
func (s *Struct) SelectFrom(table string) *SelectBuilder {
return s.SelectFromForTag(table, "")
}
// SelectFromForTag creates a new `SelectBuilder` with table name for a specified tag.
// By default, all fields of the s tagged with tag are listed as columns in SELECT.
//
// Caller is responsible to set WHERE condition to find right record.
func (s *Struct) SelectFromForTag(table string, tag string) *SelectBuilder {
sb := s.Flavor.NewSelectBuilder()
sb.From(table)
if s.taggedFields == nil {
return sb
}
fields, ok := s.taggedFields[tag]
if ok {
fields = s.quoteFields(fields)
sb.Select(EscapeAll(fields...)...)
} else {
sb.Select("*")
}
return sb
}
// Update creates a new `UpdateBuilder` with table name.
// By default, all exported fields of the s is assigned in UPDATE with the field values from value.
// If value's type is not the same as that of s, Update returns a dummy `UpdateBuilder` with table name.
//
// Caller is responsible to set WHERE condition to match right record.
func (s *Struct) Update(table string, value interface{}) *UpdateBuilder {
return s.UpdateForTag(table, "", value)
}
// UpdateForTag creates a new `UpdateBuilder` with table name.
// By default, all fields of the s tagged with tag is assigned in UPDATE with the field values from value.
// If value's type is not the same as that of s, UpdateForTag returns a dummy `UpdateBuilder` with table name.
//
// Caller is responsible to set WHERE condition to match right record.
func (s *Struct) UpdateForTag(table string, tag string, value interface{}) *UpdateBuilder {
ub := s.Flavor.NewUpdateBuilder()
ub.Update(table)
if s.taggedFields == nil {
return ub
}
fields, ok := s.taggedFields[tag]
if !ok {
return ub
}
v := reflect.ValueOf(value)
v = dereferencedValue(v)
if v.Type() != s.structType {
return ub
}
quoted := s.quoteFields(fields)
assignments := make([]string, 0, len(fields))
for i, f := range fields {
name := s.fieldAlias[f]
val := v.FieldByName(name)
if isEmptyValue(val) {
if _, ok := s.omitEmptyFields[f]; ok {
continue
}
} else {
val = dereferencedValue(val)
}
data := val.Interface()
assignments = append(assignments, ub.Assign(quoted[i], data))
}
ub.Set(assignments...)
return ub
}
// InsertInto creates a new `InsertBuilder` with table name using verb INSERT INTO.
// By default, all exported fields of s are set as columns by calling `InsertBuilder#Cols`,
// and value is added as a list of values by calling `InsertBuilder#Values`.
//
// InsertInto never returns any error.
// If the type of any item in value is not expected, it will be ignored.
// If value is an empty slice, `InsertBuilder#Values` will not be called.
func (s *Struct) InsertInto(table string, value ...interface{}) *InsertBuilder {
return s.InsertIntoForTag(table, "", value...)
}
// InsertIgnoreInto creates a new `InsertBuilder` with table name using verb INSERT IGNORE INTO.
// By default, all exported fields of s are set as columns by calling `InsertBuilder#Cols`,
// and value is added as a list of values by calling `InsertBuilder#Values`.
//
// InsertIgnoreInto never returns any error.
// If the type of any item in value is not expected, it will be ignored.
// If value is an empty slice, `InsertBuilder#Values` will not be called.
func (s *Struct) InsertIgnoreInto(table string, value ...interface{}) *InsertBuilder {
return s.InsertIgnoreIntoForTag(table, "", value...)
}
// ReplaceInto creates a new `InsertBuilder` with table name using verb REPLACE INTO.
// By default, all exported fields of s are set as columns by calling `InsertBuilder#Cols`,
// and value is added as a list of values by calling `InsertBuilder#Values`.
//
// ReplaceInto never returns any error.
// If the type of any item in value is not expected, it will be ignored.
// If value is an empty slice, `InsertBuilder#Values` will not be called.
func (s *Struct) ReplaceInto(table string, value ...interface{}) *InsertBuilder {
return s.ReplaceIntoForTag(table, "", value...)
}
// buildColsAndValuesForTag uses ib to set exported fields tagged with tag as columns
// and add value as a list of values.
func (s *Struct) buildColsAndValuesForTag(ib *InsertBuilder, tag string, value ...interface{}) {
if s.taggedFields == nil {
return
}
fields, ok := s.taggedFields[tag]
if !ok {
return
}
vs := make([]reflect.Value, 0, len(value))
for _, item := range value {
v := reflect.ValueOf(item)
v = dereferencedValue(v)
if v.Type() == s.structType {
vs = append(vs, v)
}
}
if len(vs) == 0 {
return
}
cols := make([]string, 0, len(fields))
values := make([][]interface{}, len(vs))
for _, f := range fields {
cols = append(cols, f)
name := s.fieldAlias[f]
for i, v := range vs {
data := v.FieldByName(name).Interface()
values[i] = append(values[i], data)
}
}
cols = s.quoteFields(cols)
ib.Cols(cols...)
for _, value := range values {
ib.Values(value...)
}
}
// InsertIntoForTag creates a new `InsertBuilder` with table name using verb INSERT INTO.
// By default, exported fields tagged with tag are set as columns by calling `InsertBuilder#Cols`,
// and value is added as a list of values by calling `InsertBuilder#Values`.
//
// InsertIntoForTag never returns any error.
// If the type of any item in value is not expected, it will be ignored.
// If value is an empty slice, `InsertBuilder#Values` will not be called.
func (s *Struct) InsertIntoForTag(table string, tag string, value ...interface{}) *InsertBuilder {
ib := s.Flavor.NewInsertBuilder()
ib.InsertInto(table)
s.buildColsAndValuesForTag(ib, tag, value...)
return ib
}
// InsertIgnoreIntoForTag creates a new `InsertBuilder` with table name using verb INSERT IGNORE INTO.
// By default, exported fields tagged with tag are set as columns by calling `InsertBuilder#Cols`,
// and value is added as a list of values by calling `InsertBuilder#Values`.
//
// InsertIgnoreIntoForTag never returns any error.
// If the type of any item in value is not expected, it will be ignored.
// If value is an empty slice, `InsertBuilder#Values` will not be called.
func (s *Struct) InsertIgnoreIntoForTag(table string, tag string, value ...interface{}) *InsertBuilder {
ib := s.Flavor.NewInsertBuilder()
ib.InsertIgnoreInto(table)
s.buildColsAndValuesForTag(ib, tag, value...)
return ib
}
// ReplaceIntoForTag creates a new `InsertBuilder` with table name using verb REPLACE INTO.
// By default, exported fields tagged with tag are set as columns by calling `InsertBuilder#Cols`,
// and value is added as a list of values by calling `InsertBuilder#Values`.
//
// ReplaceIntoForTag never returns any error.
// If the type of any item in value is not expected, it will be ignored.
// If value is an empty slice, `InsertBuilder#Values` will not be called.
func (s *Struct) ReplaceIntoForTag(table string, tag string, value ...interface{}) *InsertBuilder {
ib := s.Flavor.NewInsertBuilder()
ib.ReplaceInto(table)
s.buildColsAndValuesForTag(ib, tag, value...)
return ib
}
// DeleteFrom creates a new `DeleteBuilder` with table name.
//
// Caller is responsible to set WHERE condition to match right record.
func (s *Struct) DeleteFrom(table string) *DeleteBuilder {
db := s.Flavor.NewDeleteBuilder()
db.DeleteFrom(table)
return db
}
// Addr takes address of all exported fields of the s from the value.
// The returned result can be used in `Row#Scan` directly.
func (s *Struct) Addr(value interface{}) []interface{} {
return s.AddrForTag("", value)
}
// AddrForTag takes address of all fields of the s tagged with tag from the value.
// The returned result can be used in `Row#Scan` directly.
//
// If tag is not defined in s in advance,
func (s *Struct) AddrForTag(tag string, value interface{}) []interface{} {
fields, ok := s.taggedFields[tag]
if !ok {
return nil
}
return s.AddrWithCols(fields, value)
}
// AddrWithCols takes address of all columns defined in cols from the value.
// The returned result can be used in `Row#Scan` directly.
func (s *Struct) AddrWithCols(cols []string, value interface{}) []interface{} {
v := reflect.ValueOf(value)
v = dereferencedValue(v)
if v.Type() != s.structType {
return nil
}
for _, c := range cols {
if _, ok := s.fieldAlias[c]; !ok {
return nil
}
}
addrs := make([]interface{}, 0, len(cols))
for _, c := range cols {
name := s.fieldAlias[c]
data := v.FieldByName(name).Addr().Interface()
addrs = append(addrs, data)
}
return addrs
}
func (s *Struct) quoteFields(fields []string) []string {
// Try best not to allocate new slice.
if len(s.quotedFields) == 0 {
return fields
}
needQuote := false
for _, field := range fields {
if _, ok := s.quotedFields[field]; ok {
needQuote = true
break
}
}
if !needQuote {
return fields
}
quoted := make([]string, 0, len(fields))
for _, field := range fields {
if _, ok := s.quotedFields[field]; ok {
quoted = append(quoted, s.Flavor.Quote(field))
} else {
quoted = append(quoted, field)
}
}
return quoted
}
func dereferencedType(t reflect.Type) reflect.Type {
for k := t.Kind(); k == reflect.Ptr || k == reflect.Interface; k = t.Kind() {
t = t.Elem()
}
return t
}
func dereferencedValue(v reflect.Value) reflect.Value {
for k := v.Kind(); k == reflect.Ptr || k == reflect.Interface; k = v.Kind() {
v = v.Elem()
}
return v
}
func isEmptyValue(value reflect.Value) bool {
switch value.Kind() {
case reflect.Interface, reflect.Ptr, reflect.Chan, reflect.Func, reflect.Map, reflect.Slice:
return value.IsNil()
case reflect.Bool:
return !value.Bool()
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return value.Int() == 0
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
return value.Uint() == 0
case reflect.String:
return value.String() == ""
case reflect.Float32, reflect.Float64:
return value.Float() == 0
}
return false
}