-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathencode_field.go
577 lines (530 loc) · 11.9 KB
/
encode_field.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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
package qs
import (
"reflect"
"strconv"
"strings"
"time"
)
type timeFormat uint8
const (
_ timeFormat = iota
timeFormatSecond
timeFormatMillis
)
type listFormat uint8
const (
arrayFormatRepeat listFormat = iota
arrayFormatBracket
arrayFormatComma
arrayFormatIndex
)
// other fields implement baseField
type baseField struct {
name string
omitEmpty bool
}
// embedField represents for nested struct
type embedField struct {
*baseField
cachedFields cachedFields
}
func newEmbedField(preAlloc int, tagName []byte, tagOptions [][]byte) *embedField {
embedField := &embedField{
baseField: &baseField{
name: string(tagName),
},
cachedFields: make(cachedFields, 0, preAlloc),
}
for _, tagOption := range tagOptions {
if string(tagOption) == tagOmitEmpty {
embedField.omitEmpty = true
}
}
return embedField
}
func (embedField *embedField) formatFnc(v reflect.Value, result resultFunc) {
for v.Kind() == reflect.Ptr {
if v.IsNil() {
if !embedField.omitEmpty {
result(embedField.name, "")
}
return
}
v = v.Elem()
}
for i, cachedField := range embedField.cachedFields {
if cachedField == nil {
continue
}
cachedField.formatFnc(v.Field(i), result)
}
}
// Present for field with slice/array data type
type listField struct {
*baseField
cachedField cachedField
arrayFormat listFormat
}
func (listField *listField) formatFnc(field reflect.Value, result resultFunc) {
switch listField.arrayFormat {
case arrayFormatComma:
var str strings.Builder
for i := 0; i < field.Len(); i++ {
if listField.cachedField == nil {
return
}
elemVal := field.Index(i)
for elemVal.Kind() == reflect.Ptr {
elemVal = elemVal.Elem()
}
if !elemVal.IsValid() {
continue
}
if i != 0 {
str.WriteByte(',')
}
listField.cachedField.formatFnc(elemVal, func(name string, val string) {
str.WriteString(val)
})
}
result(listField.name, str.String())
case arrayFormatRepeat, arrayFormatBracket:
for i := 0; i < field.Len(); i++ {
if listField.cachedField == nil {
return
}
elemVal := field.Index(i)
for elemVal.Kind() == reflect.Ptr {
elemVal = elemVal.Elem()
}
if !elemVal.IsValid() {
continue
}
listField.cachedField.formatFnc(elemVal, func(name string, val string) {
result(listField.name, val)
})
}
case arrayFormatIndex:
count := 0
for i := 0; i < field.Len(); i++ {
if listField.cachedField == nil {
return
}
elemVal := field.Index(i)
for elemVal.Kind() == reflect.Ptr {
elemVal = elemVal.Elem()
}
if !elemVal.IsValid() {
continue
}
if v, ok := listField.cachedField.(*embedField); ok {
v.formatFnc(elemVal, func(name string, val string) {
var str strings.Builder
str.WriteString(listField.name)
str.WriteString(strconv.FormatInt(int64(count), 10))
str.WriteByte(']')
str.WriteByte('[')
str.WriteString(name)
str.WriteByte(']')
result(str.String(), val)
count++
})
continue
}
listField.cachedField.formatFnc(elemVal, func(name string, val string) {
var key strings.Builder
key.WriteString(listField.name)
key.WriteString(strconv.FormatInt(int64(count), 10))
key.WriteString("]")
result(key.String(), val)
count++
})
}
}
}
func (e *encoder) newListField(elemTyp reflect.Type, tagName []byte, tagOptions [][]byte) *listField {
removeIdx := -1
for i, tagOption := range tagOptions {
if string(tagOption) == tagOmitEmpty {
removeIdx = i
}
}
if removeIdx > -1 {
tagOptions = append(tagOptions[:removeIdx], tagOptions[removeIdx+1:]...)
}
listField := &listField{
cachedField: e.newCacheFieldByType(elemTyp, nil, tagOptions),
}
for _, tagOption := range tagOptions {
switch string(tagOption) {
case "comma":
listField.arrayFormat = arrayFormatComma
case "bracket":
listField.arrayFormat = arrayFormatBracket
case "index":
listField.arrayFormat = arrayFormatIndex
}
}
if field, ok := listField.cachedField.(*embedField); ok {
e.structCaching(&field.cachedFields, reflect.Zero(elemTyp), nil)
}
switch listField.arrayFormat {
case arrayFormatRepeat, arrayFormatBracket:
if listField.arrayFormat >= arrayFormatBracket {
tagName = append(tagName, '[')
tagName = append(tagName, ']')
}
case arrayFormatIndex:
tagName = append(tagName, '[')
}
listField.baseField = &baseField{
name: string(tagName),
}
return listField
}
//
type boolField struct {
*baseField
useInt bool
}
func (boolField *boolField) formatFnc(v reflect.Value, result resultFunc) {
for v.Kind() == reflect.Ptr {
if v.IsNil() {
if !boolField.omitEmpty {
result(boolField.name, "")
}
return
}
v = v.Elem()
}
b := v.Bool()
if !b && boolField.omitEmpty {
return
}
if boolField.useInt {
if v.Bool() {
result(boolField.name, "1")
} else {
result(boolField.name, "0")
}
} else {
result(boolField.name, strconv.FormatBool(b))
}
}
func newBoolField(tagName []byte, tagOptions [][]byte) *boolField {
field := &boolField{
baseField: &baseField{
name: string(tagName),
},
}
for _, tagOption := range tagOptions {
switch string(tagOption) {
case tagOmitEmpty:
field.omitEmpty = true
case "int":
field.useInt = true
}
}
return field
}
// Int field
type intField struct {
*baseField
}
func (intField *intField) formatFnc(value reflect.Value, result resultFunc) {
for value.Kind() == reflect.Ptr {
if value.IsNil() {
if !intField.omitEmpty {
result(intField.name, "")
}
return
}
value = value.Elem()
}
i := value.Int()
if i == 0 && intField.omitEmpty {
return
}
result(intField.name, strconv.FormatInt(i, 10))
}
func newIntField(tagName []byte, tagOptions [][]byte) *intField {
field := &intField{
baseField: &baseField{
name: string(tagName),
},
}
for _, tagOption := range tagOptions {
if string(tagOption) == tagOmitEmpty {
field.omitEmpty = true
}
}
return field
}
// Uint field
type uintField struct {
*baseField
}
func (uintField *uintField) formatFnc(value reflect.Value, result resultFunc) {
for value.Kind() == reflect.Ptr {
if value.IsNil() {
if !uintField.omitEmpty {
result(uintField.name, "")
}
return
}
value = value.Elem()
}
i := value.Uint()
if i == 0 && uintField.omitEmpty {
return
}
result(uintField.name, strconv.FormatUint(i, 10))
}
func newUintField(tagName []byte, tagOptions [][]byte) *uintField {
field := &uintField{
baseField: &baseField{
name: string(tagName),
},
}
for _, tagOption := range tagOptions {
if string(tagOption) == tagOmitEmpty {
field.omitEmpty = true
}
}
return field
}
// String field
type stringField struct {
*baseField
}
func (stringField *stringField) formatFnc(value reflect.Value, result resultFunc) {
for value.Kind() == reflect.Ptr {
if value.IsNil() {
if !stringField.omitEmpty {
result(stringField.name, "")
}
return
}
value = value.Elem()
}
str := value.String()
if str == "" && stringField.omitEmpty {
return
}
result(stringField.name, str)
}
func newStringField(tagName []byte, tagOptions [][]byte) *stringField {
field := &stringField{
baseField: &baseField{
name: string(tagName),
},
}
for _, tagOption := range tagOptions {
if string(tagOption) == tagOmitEmpty {
field.omitEmpty = true
}
}
return field
}
// Float32 field
type float32Field struct {
*baseField
}
func (float32Field *float32Field) formatFnc(value reflect.Value, result resultFunc) {
for value.Kind() == reflect.Ptr {
if value.IsNil() {
if !float32Field.omitEmpty {
result(float32Field.name, "")
}
return
}
value = value.Elem()
}
f := value.Float()
if f == 0 && float32Field.omitEmpty {
return
}
result(float32Field.name, strconv.FormatFloat(f, 'f', -1, 32))
}
func newFloat32Field(tagName []byte, tagOptions [][]byte) *float32Field {
field := &float32Field{
baseField: &baseField{
name: string(tagName),
},
}
for _, tagOption := range tagOptions {
if string(tagOption) == tagOmitEmpty {
field.omitEmpty = true
}
}
return field
}
// Float64 field
type float64Field struct {
*baseField
}
func (float64Field *float64Field) formatFnc(v reflect.Value, result resultFunc) {
for v.Kind() == reflect.Ptr {
if v.IsNil() {
if !float64Field.omitEmpty {
result(float64Field.name, "")
}
return
}
v = v.Elem()
}
f := v.Float()
if f == 0 && float64Field.omitEmpty {
return
}
result(float64Field.name, strconv.FormatFloat(f, 'f', -1, 64))
}
func newFloat64Field(tagName []byte, tagOptions [][]byte) *float64Field {
field := &float64Field{
baseField: &baseField{
name: string(tagName),
},
}
for _, tagOption := range tagOptions {
if string(tagOption) == tagOmitEmpty {
field.omitEmpty = true
}
}
return field
}
// Complex64 field
type complex64Field struct {
*baseField
}
func (complex64Field *complex64Field) formatFnc(v reflect.Value, result resultFunc) {
for v.Kind() == reflect.Ptr {
if v.IsNil() {
if !complex64Field.omitEmpty {
result(complex64Field.name, "")
}
return
}
v = v.Elem()
}
c := v.Complex()
if c == 0 && complex64Field.omitEmpty {
return
}
result(complex64Field.name, strconv.FormatComplex(c, 'f', -1, 64))
}
func newComplex64Field(tagName []byte, tagOptions [][]byte) *complex64Field {
field := &complex64Field{
baseField: &baseField{
name: string(tagName),
},
}
for _, tagOption := range tagOptions {
if string(tagOption) == tagOmitEmpty {
field.omitEmpty = true
}
}
return field
}
// Complex64 field
type complex128Field struct {
*baseField
}
func (complex128Field *complex128Field) formatFnc(v reflect.Value, result resultFunc) {
for v.Kind() == reflect.Ptr {
if v.IsNil() {
if !complex128Field.omitEmpty {
result(complex128Field.name, "")
}
return
}
v = v.Elem()
}
c := v.Complex()
if c == 0 && complex128Field.omitEmpty {
return
}
result(complex128Field.name, strconv.FormatComplex(c, 'f', -1, 128))
}
func newComplex128Field(tagName []byte, tagOptions [][]byte) *complex128Field {
field := &complex128Field{
baseField: &baseField{
name: string(tagName),
},
}
for _, tagOption := range tagOptions {
if string(tagOption) == tagOmitEmpty {
field.omitEmpty = true
}
}
return field
}
// Time field
type timeField struct {
*baseField
timeFormat timeFormat
}
func (timeField *timeField) formatFnc(v reflect.Value, result resultFunc) {
for v.Kind() == reflect.Ptr {
if v.IsNil() {
if !timeField.omitEmpty {
result(timeField.name, "")
}
return
}
v = v.Elem()
}
t := v.Interface().(time.Time)
if t.IsZero() && timeField.omitEmpty {
return
}
switch timeField.timeFormat {
case timeFormatSecond:
result(timeField.name, strconv.FormatInt(t.Unix(), 10))
case timeFormatMillis:
result(timeField.name, strconv.FormatInt(t.UnixNano()/1000000, 10))
default:
result(timeField.name, t.Format(time.RFC3339))
}
}
func newTimeField(tagName []byte, tagOptions [][]byte) *timeField {
field := &timeField{
baseField: &baseField{
name: string(tagName),
},
}
for _, tagOption := range tagOptions {
switch string(tagOption) {
case tagOmitEmpty:
field.omitEmpty = true
case "second":
field.timeFormat = timeFormatSecond
case "millis":
field.timeFormat = timeFormatMillis
}
}
return field
}
type customField struct {
*baseField
tagOptions []string
formatter func(val interface{}, opts []string, result func(v string))
}
func (customField *customField) formatFnc(v reflect.Value, result resultFunc) {
customField.formatter(v.Interface(), customField.tagOptions, func(v string) {
result(customField.name, v)
})
}
func newCustomField(tagName []byte, tagOptions [][]byte, formatter func(val interface{}, opts []string, result func(v string))) *customField {
opts := make([]string, 0, len(tagOptions))
for _, tagOption := range tagOptions {
opts = append(opts, string(tagOption))
}
return &customField{
baseField: &baseField{
name: string(tagName),
omitEmpty: false,
},
tagOptions: opts,
formatter: formatter,
}
}