-
Notifications
You must be signed in to change notification settings - Fork 234
/
Copy pathff.go
2318 lines (1839 loc) · 34.3 KB
/
ff.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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Copyright 2014 Paul Querna
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package tff
import (
"errors"
"math"
"time"
)
// FFFoo struc... just blah
type FFFoo struct {
Blah int
}
// FFRecord struct
type FFRecord struct {
Timestamp int64 `json:"id,omitempty"`
OriginID uint32
Bar FFFoo
Method string `json:"meth"`
ReqID string
ServerIP string
RemoteIP string
BytesSent uint64
}
// TI18nName struct
// ffjson: skip
type TI18nName struct {
Ændret int64
Aוההקלדה uint32
Позната string
}
// XI18nName struct
type XI18nName struct {
Ændret int64
Aוההקלדה uint32
Позната string
}
type mystring string
// TsortName struct
// ffjson: skip
type TsortName struct {
C string
B int `json:"A"`
}
// XsortName struct
type XsortName struct {
C string
B int `json:"A"`
}
// Tobj struct
// ffjson: skip
type Tobj struct {
X Tint
}
// Xobj struct
type Xobj struct {
X Xint
}
// Tduration struct
// ffjson: skip
type Tduration struct {
X time.Duration
}
// Xduration struct
type Xduration struct {
X time.Duration
}
// TtimePtr struct
// ffjson: skip
type TtimePtr struct {
X *time.Time
}
// XtimePtr struct
type XtimePtr struct {
X *time.Time
}
// Tarray struct
// ffjson: skip
type Tarray struct {
X [3]int
}
// Xarray struct
type Xarray struct {
X [3]int
}
// TarrayPtr struct
// ffjson: skip
type TarrayPtr struct {
X [3]*int
}
// XarrayPtr struct
type XarrayPtr struct {
X [3]*int
}
// Tslice struct
// ffjson: skip
type Tslice struct {
X []int
}
//Xslice struct
type Xslice struct {
X []int
}
// TslicePtr struct
// ffjson: skip
type TslicePtr struct {
X []*int
}
// XslicePtr struct
type XslicePtr struct {
X []*int
}
// TMapStringPtr struct
// ffjson: skip
type TMapStringPtr struct {
X map[string]*int
}
// XMapStringPtr struct
type XMapStringPtr struct {
X map[string]*int
}
// TslicePtrStruct struct
// ffjson: skip
type TslicePtrStruct struct {
X []*Xstring
}
// XslicePtrStruct struct
type XslicePtrStruct struct {
X []*Xstring
}
// TMapPtrStruct struct
// ffjson: skip
type TMapPtrStruct struct {
X map[string]*Xstring
}
// XMapPtrStruct struct
type XMapPtrStruct struct {
X map[string]*Xstring
}
// Tstring struct
// ffjson: skip
type Tstring struct {
X string
}
// Xstring struct
type Xstring struct {
X string
}
// Tmystring struct
// ffjson: skip
type Tmystring struct {
X mystring
}
// Xmystring struct
type Xmystring struct {
X mystring
}
// TmystringPtr struct
// ffjson: skip
type TmystringPtr struct {
X *mystring
}
// XmystringPtr struct
type XmystringPtr struct {
X *mystring
}
// TstringTagged struct
// ffjson: skip
type TstringTagged struct {
X string `json:",string"`
}
// XstringTagged struct
type XstringTagged struct {
X string `json:",string"`
}
// TstringTaggedPtr struct
// ffjson: skip
type TstringTaggedPtr struct {
X *string `json:",string"`
}
// XstringTaggedPtr struct
type XstringTaggedPtr struct {
X *string `json:",string"`
}
// TintTagged struct
// ffjson: skip
type TintTagged struct {
X int `json:",string"`
}
//XintTagged struct
type XintTagged struct {
X int `json:",string"`
}
// TboolTagged struct
// ffjson: skip
type TboolTagged struct {
X int `json:",string"`
}
// XboolTagged struct
type XboolTagged struct {
X int `json:",string"`
}
// TMapStringString struct
// ffjson: skip
type TMapStringString struct {
X map[string]string
}
// XMapStringString struct
type XMapStringString struct {
X map[string]string
}
// Tbool struct
// ffjson: skip
type Tbool struct {
X bool
}
// Xbool struct
type Xbool struct {
X bool
}
// Tint struct
// ffjson: skip
type Tint struct {
X int
}
// Xint struct
type Xint struct {
X int
}
// Tbyte struct
// ffjson: skip
type Tbyte struct {
X byte
}
// Xbyte struct
type Xbyte struct {
X byte
}
// Tint8 struct
// ffjson: skip
type Tint8 struct {
X int8
}
// Xint8 struct
type Xint8 struct {
X int8
}
// Tint16 struct
// ffjson: skip
type Tint16 struct {
X int16
}
// Xint16 stuct
type Xint16 struct {
X int16
}
// Tint32 struct
// ffjson: skip
type Tint32 struct {
X int32
}
// Xint32 struct
type Xint32 struct {
X int32
}
// Tint64 struct
// ffjson: skip
type Tint64 struct {
X int64
}
// Xint64 struct
type Xint64 struct {
X int64
}
// Tuint struct
// ffjson: skip
type Tuint struct {
X uint
}
// Xuint struct
type Xuint struct {
X uint
}
// Tuint8 struct
// ffjson: skip
type Tuint8 struct {
X uint8
}
// Xuint8 struct
type Xuint8 struct {
X uint8
}
// Tuint16 struct
// ffjson: skip
type Tuint16 struct {
X uint16
}
// Xuint16 struct
type Xuint16 struct {
X uint16
}
// Tuint32 struct
// ffjson: skip
type Tuint32 struct {
X uint32
}
// Xuint32 struct
type Xuint32 struct {
X uint32
}
// Tuint64 struct
// ffjson: skip
type Tuint64 struct {
X uint64
}
// Xuint64 struct
type Xuint64 struct {
X uint64
}
// Tuintptr struct
// ffjson: skip
type Tuintptr struct {
X uintptr
}
// Xuintptr struct
type Xuintptr struct {
X uintptr
}
// Tfloat32 struct
// ffjson: skip
type Tfloat32 struct {
X float32
}
// Xfloat32 struct
type Xfloat32 struct {
X float32
}
// Tfloat64 struct
// ffjson: skip
type Tfloat64 struct {
X float64
}
// Xfloat64 struct
type Xfloat64 struct {
X float64
}
// ATduration struct
// Arrays
// ffjson: skip
type ATduration struct {
X [3]time.Duration
}
// AXduration struct
type AXduration struct {
X [3]time.Duration
}
// ATbool struct
// ffjson: skip
type ATbool struct {
X [3]bool
}
// AXbool struct
type AXbool struct {
X [3]bool
}
// ATint struct
// ffjson: skip
type ATint struct {
X [3]int
}
// AXint struct
type AXint struct {
X [3]int
}
// ATbyte struct
// ffjson: skip
type ATbyte struct {
X [3]byte
}
// AXbyte struct
type AXbyte struct {
X [3]byte
}
// ATint8 struct
// ffjson: skip
type ATint8 struct {
X [3]int8
}
// AXint8 struct
type AXint8 struct {
X [3]int8
}
// ATint16 struct
// ffjson: skip
type ATint16 struct {
X [3]int16
}
// AXint16 struct
type AXint16 struct {
X [3]int16
}
// ATint32 struct
// ffjson: skip
type ATint32 struct {
X [3]int32
}
// AXint32 struct
type AXint32 struct {
X [3]int32
}
// ATint64 struct
// ffjson: skip
type ATint64 struct {
X [3]int64
}
// AXint64 struct
type AXint64 struct {
X [3]int64
}
// ATuint struct
// ffjson: skip
type ATuint struct {
X [3]uint
}
// AXuint struct
type AXuint struct {
X [3]uint
}
// ATuint8 struct
// ffjson: skip
type ATuint8 struct {
X [3]uint8
}
// AXuint8 struct
type AXuint8 struct {
X [3]uint8
}
// ATuint16 struct
// ffjson: skip
type ATuint16 struct {
X [3]uint16
}
// AXuint16 struct
type AXuint16 struct {
X [3]uint16
}
// ATuint32 struct
// ffjson: skip
type ATuint32 struct {
X [3]uint32
}
// AXuint32 struct
type AXuint32 struct {
X [3]uint32
}
// ATuint64 struct
// ffjson: skip
type ATuint64 struct {
X [3]uint64
}
// AXuint64 struct
type AXuint64 struct {
X [3]uint64
}
// ATuintptr struct
// ffjson: skip
type ATuintptr struct {
X [3]uintptr
}
// AXuintptr struct
type AXuintptr struct {
X [3]uintptr
}
// ATfloat32 struct
// ffjson: skip
type ATfloat32 struct {
X [3]float32
}
// AXfloat32 struct
type AXfloat32 struct {
X [3]float32
}
// ATfloat64 struct
// ffjson: skip
type ATfloat64 struct {
X [3]float64
}
// AXfloat64 struct
type AXfloat64 struct {
X [3]float64
}
// ATtime struct
// ffjson: skip
type ATtime struct {
X [3]time.Time
}
// AXtime struct
type AXtime struct {
X [3]time.Time
}
// STduration struct
// Slices
// ffjson: skip
type STduration struct {
X []time.Duration
}
// SXduration struct
type SXduration struct {
X []time.Duration
}
// STbool struct
// ffjson: skip
type STbool struct {
X []bool
}
// SXbool struct
type SXbool struct {
X []bool
}
// STint struct
// ffjson: skip
type STint struct {
X []int
}
// SXint struct
type SXint struct {
X []int
}
// STbyte struct
// ffjson: skip
type STbyte struct {
X []byte
}
// SXbyte struct
type SXbyte struct {
X []byte
}
// STint8 struct
// ffjson: skip
type STint8 struct {
X []int8
}
// SXint8 struct
type SXint8 struct {
X []int8
}
// STint16 struct
// ffjson: skip
type STint16 struct {
X []int16
}
// SXint16 struct
type SXint16 struct {
X []int16
}
// STint32 struct
// ffjson: skip
type STint32 struct {
X []int32
}
// SXint32 struct
type SXint32 struct {
X []int32
}
// STint64 struct
// ffjson: skip
type STint64 struct {
X []int64
}
// SXint64 struct
type SXint64 struct {
X []int64
}
// STuint struct
// ffjson: skip
type STuint struct {
X []uint
}
// SXuint struct
type SXuint struct {
X []uint
}
// STuint8 struct
// ffjson: skip
type STuint8 struct {
X []uint8
}
// SXuint8 struct
type SXuint8 struct {
X []uint8
}
// STuint16 struct
// ffjson: skip
type STuint16 struct {
X []uint16
}
// SXuint16 struct
type SXuint16 struct {
X []uint16
}
// STuint32 struct
// ffjson: skip
type STuint32 struct {
X []uint32
}
// SXuint32 struct
type SXuint32 struct {
X []uint32
}
// STuint64 struct
// ffjson: skip
type STuint64 struct {
X []uint64
}
// SXuint64 struct
type SXuint64 struct {
X []uint64
}
// STuintptr struct
// ffjson: skip
type STuintptr struct {
X []uintptr
}
// SXuintptr struct
type SXuintptr struct {
X []uintptr
}
// STfloat32 struct
// ffjson: skip
type STfloat32 struct {
X []float32
}
// SXfloat32 struct
type SXfloat32 struct {
X []float32
}
// STfloat64 struct
// ffjson: skip
type STfloat64 struct {
X []float64
}
// SXfloat64 struct
type SXfloat64 struct {
X []float64
}
// STtime struct
// ffjson: skip
type STtime struct {
X []time.Time
}
// SXtime struct
type SXtime struct {
X []time.Time
}
// TMapStringMapString struct
// Nested
// ffjson: skip
type TMapStringMapString struct {
X map[string]map[string]string
}
// XMapStringMapString struct
type XMapStringMapString struct {
X map[string]map[string]string
}
// TMapStringAString struct
// ffjson: skip
type TMapStringAString struct {
X map[string][3]string
}
// XMapStringAString struct
type XMapStringAString struct {
X map[string][3]string
}
// TSAAtring struct
// ffjson: skip
type TSAAtring struct {
X [2][3]string
}
// XSAAtring struct
type XSAAtring struct {
X [2][3]string
}
// TSAString struct
// ffjson: skip
type TSAString struct {
X [][3]string
}
// XSAString struct
type XSAString struct {
X [][3]string
}
// Optionals tests from golang test suite
type Optionals struct {
Sr string `json:"sr"`
So string `json:"so,omitempty"`
Sw string `json:"-"`
Ir int `json:"omitempty"` // actually named omitempty, not an option
Io int `json:"io,omitempty"`
Slr []string `json:"slr,random"`
Slo []string `json:"slo,omitempty"`
Mr map[string]interface{} `json:"mr"`
Mo map[string]interface{} `json:",omitempty"`
Fr float64 `json:"fr"`
Fo float64 `json:"fo,omitempty"`
Br bool `json:"br"`
Bo bool `json:"bo,omitempty"`
Ur uint `json:"ur"`
Uo uint `json:"uo,omitempty"`
Str struct{} `json:"str"`
Sto struct{} `json:"sto,omitempty"`
}
var unsupportedValues = []interface{}{
math.NaN(),
math.Inf(-1),
math.Inf(1),
}
var optionalsExpected = `{
"sr": "",
"omitempty": 0,
"slr": null,
"mr": {},
"fr": 0,
"br": false,
"ur": 0,
"str": {},
"sto": {}
}`
// StringTag struct
type StringTag struct {
BoolStr bool `json:",string"`
IntStr int64 `json:",string"`
FltStr float64 `json:",string"`
StrStr string `json:",string"`
}
var stringTagExpected = `{
"BoolStr": "true",
"IntStr": "42",
"FltStr": "0",
"StrStr": "\"xzbit\""
}`
// OmitAll struct
type OmitAll struct {
Ostr string `json:",omitempty"`
Oint int `json:",omitempty"`
Obool bool `json:",omitempty"`
Odouble float64 `json:",omitempty"`
Ointer interface{} `json:",omitempty"`
Omap map[string]interface{} `json:",omitempty"`
OstrP *string `json:",omitempty"`
OintP *int `json:",omitempty"`
// TODO: Re-enable when issue #55 is fixed.
OboolP *bool `json:",omitempty"`
OmapP *map[string]interface{} `json:",omitempty"`
Astr []string `json:",omitempty"`
Aint []int `json:",omitempty"`
Abool []bool `json:",omitempty"`
Adouble []float64 `json:",omitempty"`
}
var omitAllExpected = `{}`
// NoExported struct
type NoExported struct {
field1 string
field2 string
field3 string
}
var noExportedExpected = `{}`
// OmitFirst struct
type OmitFirst struct {
Ostr string `json:",omitempty"`
Str string
}
var omitFirstExpected = `{
"Str": ""
}`
// OmitLast struct
type OmitLast struct {
Xstr string `json:",omitempty"`
Str string
}
var omitLastExpected = `{
"Str": ""
}`
// byte slices are special even if they're renamed types.
type renamedByte byte
type renamedByteSlice []byte
type renamedRenamedByteSlice []renamedByte
// ByteSliceNormal struct
type ByteSliceNormal struct {
X []byte
}
// ByteSliceRenamed stuct
type ByteSliceRenamed struct {
X renamedByteSlice
}
// ByteSliceDoubleRenamed struct
type ByteSliceDoubleRenamed struct {
X renamedRenamedByteSlice
}
// Ref has Marshaler and Unmarshaler methods with pointer receiver.
type Ref int
// MarshalJSON func
func (*Ref) MarshalJSON() ([]byte, error) {
return []byte(`"ref"`), nil
}
// UnmarshalJSON func
func (r *Ref) UnmarshalJSON([]byte) error {
*r = 12
return nil
}