-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcvts.go
3121 lines (2698 loc) · 82.6 KB
/
cvts.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
package evendeep
import (
"bytes"
"encoding"
"encoding/json"
"fmt"
"math"
"reflect"
"strconv"
"strings"
"sync"
"time"
"unicode"
"gopkg.in/hedzr/errors.v3"
"github.com/hedzr/evendeep/dbglog"
"github.com/hedzr/evendeep/flags"
"github.com/hedzr/evendeep/flags/cms"
"github.com/hedzr/evendeep/internal/syscalls"
"github.com/hedzr/evendeep/internal/times"
"github.com/hedzr/evendeep/ref"
"github.com/hedzr/evendeep/typ"
logz "github.com/hedzr/logg/slog"
)
const timeConstString = "time"
// RegisterDefaultConverters registers the ValueConverter list into
// default converters registry.
//
// It takes effects on DefaultCopyController, MakeClone, DeepCopy,
// and New, ....
func RegisterDefaultConverters(ss ...ValueConverter) {
defValueConverters = append(defValueConverters, ss...)
lenValueConverters, lenValueCopiers = len(defValueConverters), len(defValueCopiers)
initGlobalOperators()
}
// RegisterDefaultCopiers registers the ValueCopier list into
// default copiers registry.
//
// It takes effects on DefaultCopyController, MakeClone, DeepCopy,
// and New, ....
func RegisterDefaultCopiers(ss ...ValueCopier) {
defValueCopiers = append(defValueCopiers, ss...)
lenValueConverters, lenValueCopiers = len(defValueConverters), len(defValueCopiers)
initGlobalOperators()
}
func initConverters() {
dbglog.Log("initializing default converters and copiers ...")
defValueConverters = ValueConverters{ // Transform()
&fromStringConverter{}, // the final choice here
&toStringConverter{},
// &toFuncConverter{},
&fromFuncConverter{},
&toDurationConverter{},
&fromDurationConverter{},
&toTimeConverter{},
&fromTimeConverter{},
&fromBytesBufferConverter{},
&fromSyncPkgConverter{},
&fromMapConverter{},
}
defValueCopiers = ValueCopiers{ // CopyTo()
&fromStringConverter{}, // the final choice here
&toStringConverter{},
&toFuncConverter{},
&fromFuncConverter{},
&toDurationConverter{},
&fromDurationConverter{},
&toTimeConverter{},
&fromTimeConverter{},
&fromBytesBufferConverter{},
&fromSyncPkgConverter{},
&fromMapConverter{},
}
lenValueConverters, lenValueCopiers = len(defValueConverters), len(defValueCopiers)
}
var (
defValueConverters ValueConverters //nolint:gochecknoglobals //i know that
defValueCopiers ValueCopiers //nolint:gochecknoglobals //i know that
lenValueConverters, lenValueCopiers int //nolint:gochecknoglobals //i know that
)
func defaultValueConverters() ValueConverters { return defValueConverters }
func defaultValueCopiers() ValueCopiers { return defValueCopiers }
// ValueConverter for internal used.
type ValueConverter interface {
Transform(ctx *ValueConverterContext, source reflect.Value, targetType reflect.Type) (target reflect.Value, err error)
Match(params *Params, source, target reflect.Type) (ctx *ValueConverterContext, yes bool)
}
// ValueCopier for internal used.
type ValueCopier interface {
CopyTo(ctx *ValueConverterContext, source, target reflect.Value) (err error)
Match(params *Params, source, target reflect.Type) (ctx *ValueConverterContext, yes bool)
}
// NameConverter for internal used.
type NameConverter interface {
ToGoName(ctx *NameConverterContext, fieldName string) (goName string)
ToFieldName(ctx *NameConverterContext, goName string) (fieldName string)
}
// ValueConverters for internal used.
type ValueConverters []ValueConverter
// ValueCopiers for internal used.
type ValueCopiers []ValueCopier
// NameConverters for internal used.
type NameConverters []NameConverter
// NameConverterContext for internal used.
type NameConverterContext struct {
*Params
}
// ValueConverterContext for internal used.
type ValueConverterContext struct {
*Params
}
//
type CvtV struct {
Data any
}
func (s *CvtV) String() string {
return anyToString(s.Data)
}
//
type Cvt struct{}
func (s *Cvt) String(data any) string { return anyToString(data) }
func (s *Cvt) StringSlice(data any) []string { return anyToStringSlice(data) }
func (s *Cvt) StringMap(data any) map[string]string { return anyToStringMap(data) }
func anyToStringSlice(data any) (ret []string) { //nolint:revive
if data == nil {
return
}
switch z := data.(type) {
case []string:
return z
case []float64:
return zfToStringS(z)
case []float32:
return zfToStringS(z)
case []int:
return zfToStringS(z)
case []int64:
return zfToStringS(z)
case []int32:
return zfToStringS(z)
case []int16:
return zfToStringS(z)
case []int8:
return zfToStringS(z)
case []uint:
return zfToStringS(z)
case []uint64:
return zfToStringS(z)
case []uint32:
return zfToStringS(z)
case []uint16:
return zfToStringS(z)
case []uint8:
return zfToStringS(z)
case []bool:
return zfToStringS(z)
case []fmt.Stringer:
return zfToStringS(z)
case []any:
return zfToStringS(z)
case string:
return parseToSlice[string](z)
case fmt.Stringer:
return parseToSlice[string](z.String())
case any:
return parseToSlice[string](anyToString(z))
default:
}
return
}
func zfToStringS[T any](in []T) (out []string) {
out = make([]string, 0, len(in))
for _, it := range in {
out = append(out, anyToString(it))
}
return
}
func zfToStringM(in map[string]any) (out map[string]string) {
out = make(map[string]string, len(in))
for k, it := range in {
out[k] = anyToString(it)
}
return
}
func zfToStringMA(in map[any]any) (out map[string]string) {
out = make(map[string]string, len(in))
for k, it := range in {
out[anyToString(k)] = anyToString(it)
}
return
}
func anyToStringMap(data any) (ret map[string]string) {
if data == nil {
return
}
switch z := data.(type) {
case map[string]string:
return z
case map[string]any:
return zfToStringM(z)
case map[any]any:
return zfToStringMA(z)
case string:
return parseToMap[string](z)
case fmt.Stringer:
return parseToMap[string](z.String())
case any:
return parseToMap[string](anyToString(z))
default:
}
return
}
//
func (s *Cvt) Bool(data any) bool { return anyToBool(data) }
func anyToBool(data any) bool {
if data == nil {
return false
}
switch z := data.(type) {
case bool:
return z
case string:
return toBool(z)
case fmt.Stringer:
return toBool(z.String())
case any:
return toBool(anyToString(z))
default:
rv := reflect.ValueOf(data)
rv = ref.Rindirect(rv)
if k := rv.Kind(); k == reflect.Bool {
// eg: flag.stringValue (string)
return rv.Bool()
}
return toBool(anyToString(data))
}
}
func toBool(s string) bool {
_, ok := stringToBoolMap[strings.ToLower(s)]
if ok {
return ok
}
u, err := strconv.ParseUint(s, 10, 64)
if err != nil {
i, err1 := strconv.ParseInt(s, 10, 64)
if err1 != nil {
f, err2 := strconv.ParseFloat(s, 64)
if err2 != nil {
return false
}
return f != 0
}
return i != 0
}
return u > 0
}
var stringToBoolMap = map[string]struct{}{
"1": {},
"t": {},
"male": {},
"y": {},
"yes": {},
"true": {},
"ok": {},
"allow": {},
"on": {},
"open": {},
}
func (s *Cvt) BoolSlice(data any) []bool { return anyToBoolSlice(data) }
func anyToBoolSlice(data any) (ret []bool) { //nolint:revive
if data == nil {
return
}
switch z := data.(type) {
case []bool:
return z
case []float64:
return zfToBoolS(z)
case []float32:
return zfToBoolS(z)
case []int:
return zfToBoolS(z)
case []int64:
return zfToBoolS(z)
case []int32:
return zfToBoolS(z)
case []int16:
return zfToBoolS(z)
case []int8:
return zfToBoolS(z)
case []uint:
return zfToBoolS(z)
case []uint64:
return zfToBoolS(z)
case []uint32:
return zfToBoolS(z)
case []uint16:
return zfToBoolS(z)
case []uint8:
return zfToBoolS(z)
case []string:
return zfToBoolS(z)
case []fmt.Stringer:
return zfToBoolS(z)
case []any:
return zfToBoolS(z)
case string:
return zfToBoolSS(z)
case fmt.Stringer:
return zfToBoolSS(z.String())
case any:
return zfToBoolSS(anyToString(z))
default:
}
return
}
func zfToBoolSS(in string) (out []bool) {
ins := strings.TrimSpace(in)
if ins[0] == '[' {
out = parseToSlice[bool](ins)
} else {
out = append(out, anyToBool(ins))
}
return
}
func zfToBoolS[T any](in []T) (out []bool) {
out = make([]bool, 0, len(in))
for _, it := range in {
out = append(out, anyToBool(it))
}
return
}
func (s *Cvt) BoolMap(data any) map[string]bool { return anyToBoolMap(data) }
func zfToBoolM(in map[string]any) (out map[string]bool) {
out = make(map[string]bool, len(in))
for k, it := range in {
out[k] = anyToBool(it)
}
return
}
func anyToBoolMap(data any) (ret map[string]bool) {
if data == nil {
return
}
switch z := data.(type) {
case map[string]bool:
return z
case map[string]any:
return zfToBoolM(z)
case string:
return parseToMap[bool](z)
case fmt.Stringer:
return parseToMap[bool](z.String())
case any:
return parseToMap[bool](anyToString(z))
default:
}
return
}
// func zfToBoolMM(in string) (out map[string]bool) {
// ins := strings.TrimSpace(in)
// if ins[0] == '{' {
// out = parseToMap[bool](ins)
// }
// return
// }
//
func (s *Cvt) Int(data any) int64 { return anyToInt(data) }
func (s *Cvt) Int64Slice(data any) []int64 { return anyToIntSliceT[int64](data) }
func (s *Cvt) Int32Slice(data any) []int32 { return anyToIntSliceT[int32](data) }
func (s *Cvt) Int16Slice(data any) []int16 { return anyToIntSliceT[int16](data) }
func (s *Cvt) Int8Slice(data any) []int8 { return anyToIntSliceT[int8](data) }
func (s *Cvt) IntSlice(data any) []int { return anyToIntSliceT[int](data) }
func (s *Cvt) Int64Map(data any) map[string]int64 { return anyToInt64MapT[int64](data) }
func (s *Cvt) Int32Map(data any) map[string]int32 { return anyToInt64MapT[int32](data) }
func (s *Cvt) Int16Map(data any) map[string]int16 { return anyToInt64MapT[int16](data) }
func (s *Cvt) Int8Map(data any) map[string]int8 { return anyToInt64MapT[int8](data) }
func (s *Cvt) IntMap(data any) map[string]int { return anyToInt64MapT[int](data) }
//
func (s *Cvt) Uint(data any) uint64 { return anyToUintT[any, uint64](data) }
func (s *Cvt) Uint64Slice(data any) []uint64 { return anyToUintSliceT[uint64](data) }
func (s *Cvt) Uint32Slice(data any) []uint32 { return anyToUintSliceT[uint32](data) }
func (s *Cvt) Uint16Slice(data any) []uint16 { return anyToUintSliceT[uint16](data) }
func (s *Cvt) Uint8Slice(data any) []uint8 { return anyToUintSliceT[uint8](data) }
func (s *Cvt) UintSlice(data any) []uint { return anyToUintSliceT[uint](data) }
func (s *Cvt) Uint64Map(data any) map[string]uint64 { return anyToUint64MapT[uint64](data) }
func (s *Cvt) Uint32Map(data any) map[string]uint32 { return anyToUint64MapT[uint32](data) }
func (s *Cvt) Uint16Map(data any) map[string]uint16 { return anyToUint64MapT[uint16](data) }
func (s *Cvt) Uint8Map(data any) map[string]uint8 { return anyToUint64MapT[uint8](data) }
func (s *Cvt) UintMap(data any) map[string]uint { return anyToUint64MapT[uint](data) }
//
//
func anyToString(data any) string { //nolint:revive
if data == nil {
return "<nil>"
}
// rv := reflect.ValueOf(data)
// if ref.IsZero(rv) {
// return "<zero>"
// }
switch z := data.(type) {
case string:
return z
case time.Duration:
return durationToString(z)
case time.Time:
return timeToString(z)
case []time.Time:
return timeSliceToString(z)
case []time.Duration:
return durationSliceToString(z)
case error:
return z.Error()
case fmt.Stringer:
return z.String()
case bool:
return boolToString(z)
case []byte:
return bytesToString(z)
case []string:
return stringSliceToString(z)
case []bool:
return boolSliceToString(z)
case []int:
return intSliceToString(z)
case []int8:
return intSliceToString(z)
case []int16:
return intSliceToString(z)
case []int32:
return intSliceToString(z)
case []int64:
return intSliceToString(z)
case int:
return intToString(z)
case int8:
return intToString(z)
case int16:
return intToString(z)
case int32:
return intToString(z)
case int64:
return intToString(z)
case []uint:
return uintSliceToString(z)
// case []uint8: // = []byte
case []uint16:
return uintSliceToString(z)
case []uint32:
return uintSliceToString(z)
case []uint64:
return uintSliceToString(z)
case uint:
return uintToString(z)
case uint8:
return uintToString(z)
case uint16:
return uintToString(z)
case uint32:
return uintToString(z)
case uint64:
return uintToString(z)
case []float32:
return floatSliceToString(z)
case []float64:
return floatSliceToString(z)
case float32:
return floatToString(z)
case float64:
return floatToString(z)
case []complex64:
return complexSliceToString(z)
case []complex128:
return complexSliceToString(z)
case complex64:
return complexToString(z)
case complex128:
return complexToString(z)
case []any:
return fmt.Sprint(data)
case any:
return fmt.Sprint(data)
default:
rv := reflect.ValueOf(data)
rv = ref.Rindirect(rv) // *string -> string
if k := rv.Kind(); k == reflect.String {
// eg: flag.stringValue (string)
return rv.String()
}
// reflect approach
logz.Warn("[anyToString]: unrecognized data type",
"typ", ref.Typfmtv(&rv),
"val", ref.Valfmt(&rv),
)
return ref.Valfmt(&rv)
}
}
//
func (s *Cvt) Float64(data any) float64 { return anyToFloat[float64](data) }
func (s *Cvt) Float32(data any) float32 { return anyToFloat[float32](data) }
func (s *Cvt) Float64Slice(data any) []float64 { return anyToFloatSlice[float64](data) }
func (s *Cvt) Float32Slice(data any) []float32 { return anyToFloatSlice[float32](data) }
func (s *Cvt) Float64Map(data any) map[string]float64 { return anyToFloat64Map[float64](data) }
func (s *Cvt) Float32Map(data any) map[string]float32 { return anyToFloat64Map[float32](data) }
//
func (s *Cvt) Complex128(data any) complex128 { return anyToComplex[complex128](data) }
func (s *Cvt) Complex64(data any) complex64 { return anyToComplex[complex64](data) }
func anyToComplex[R Complexes](data any) R { //nolint:revive
if data == nil {
return 0
}
switch z := data.(type) {
case complex128:
return R(z)
case complex64:
return R(z)
case int:
return R(complex(float64(z), 0))
case int64:
return R(complex(float64(z), 0))
case int32:
return R(complex(float64(z), 0))
case int16:
return R(complex(float64(z), 0))
case int8:
return R(complex(float64(z), 0))
case uint:
return R(complex(float64(z), 0))
case uint64:
return R(complex(float64(z), 0))
case uint32:
return R(complex(float64(z), 0))
case uint16:
return R(complex(float64(z), 0))
case uint8:
return R(complex(float64(z), 0))
case float64:
return R(complex(z, 0))
case float32:
return R(complex(z, 0))
case string:
return R(mustParseComplex(z))
case fmt.Stringer:
return R(mustParseComplex(z.String()))
case any:
return R(mustParseComplex(anyToString(z)))
default:
rv := reflect.ValueOf(data)
rv = ref.Rindirect(rv) // *string -> string
if k := rv.Kind(); k == reflect.Complex128 || k == reflect.Complex64 {
// eg: flag.complexValue (complex)
return R(rv.Complex())
}
str := fmt.Sprintf("%v", data)
return R(mustParseComplex(str))
}
}
func mustParseComplex(s string) (ret complex128) {
ret, _ = strconv.ParseComplex(s, 64)
return
}
func (s *Cvt) Complex128Slice(data any) []complex128 { return anyToComplexSlice[complex128](data) }
func (s *Cvt) Complex64Slice(data any) []complex64 { return anyToComplexSlice[complex64](data) }
func zfToComplexS[T, R Complexes](in []T) (out []R) {
out = make([]R, 0, len(in))
for _, it := range in {
out = append(out, R(it))
}
return
}
func anyToComplexSlice[R Complexes](data any) (ret []R) { //nolint:revive
if data == nil {
return
}
switch z := data.(type) {
case []complex128:
return zfToComplexS[complex128, R](z)
case []complex64:
return zfToComplexS[complex64, R](z)
case []float64:
return zsToComplexS[float64, R](z)
case []float32:
return zsToComplexS[float32, R](z)
case []int:
return zsToComplexS[int, R](z)
case []int64:
return zsToComplexS[int64, R](z)
case []int32:
return zsToComplexS[int32, R](z)
case []int16:
return zsToComplexS[int16, R](z)
case []int8:
return zsToComplexS[int8, R](z)
case []uint:
return zsToComplexS[uint, R](z)
case []uint64:
return zsToComplexS[uint64, R](z)
case []uint32:
return zsToComplexS[uint32, R](z)
case []uint16:
return zsToComplexS[uint16, R](z)
case []uint8:
return zsToComplexS[uint8, R](z)
case []string:
ret = make([]R, 0, len(z))
for _, it := range z {
ret = append(ret, R(mustParseComplex(it)))
}
return
case []fmt.Stringer:
ret = make([]R, 0, len(z))
for _, it := range z {
ret = append(ret, R(mustParseComplex(it.String())))
}
return
case string:
return parseToSlice[R](z)
case fmt.Stringer:
return parseToSlice[R](z.String())
case any:
return parseToSlice[R](anyToString(z))
default:
}
return
}
func zsToComplexS[T Integers | Uintegers | Floats, R Complexes](z []T) (ret []R) {
ret = make([]R, 0, len(z))
for _, it := range z {
ret = append(ret, R(complex(float64(it), 0)))
}
return
}
func (s *Cvt) Complex128Map(data any) map[string]complex128 { return anyToComplexMap[complex128](data) }
func (s *Cvt) Complex64Map(data any) map[string]complex64 { return anyToComplexMap[complex64](data) }
func anyToComplexMap[R Complexes](data any) (ret map[string]R) { //nolint:revive
if data == nil {
return
}
switch z := data.(type) {
case map[string]any:
return zfToComplex128M[R](z)
case map[string]bool:
return zfToComplex128MN[bool, R](z)
case map[string]string:
return zfToComplex128MN[string, R](z)
case map[string]complex128:
return zfToComplex128MN[complex128, R](z)
case map[string]complex64:
return zfToComplex128MN[complex64, R](z)
case map[string]float64:
return zfToComplex128MN[float64, R](z)
case map[string]float32:
return zfToComplex128MN[float32, R](z)
case map[string]int64:
return zfToComplex128MN[int64, R](z)
case map[string]int32:
return zfToComplex128MN[int32, R](z)
case map[string]int16:
return zfToComplex128MN[int16, R](z)
case map[string]int8:
return zfToComplex128MN[int8, R](z)
case map[string]int:
return zfToComplex128MN[int, R](z)
case map[string]uint64:
return zfToComplex128MN[uint64, R](z)
case map[string]uint32:
return zfToComplex128MN[uint32, R](z)
case map[string]uint16:
return zfToComplex128MN[uint16, R](z)
case map[string]uint8:
return zfToComplex128MN[uint8, R](z)
case map[string]uint:
return zfToComplex128MN[uint, R](z)
case string:
return parseToMap[R](z)
case fmt.Stringer:
return parseToMap[R](z.String())
case any:
return parseToMap[R](anyToString(z))
default:
}
return
}
func zfToComplex128M[R Complexes](in map[string]any) (out map[string]R) {
out = make(map[string]R, len(in))
for k, it := range in {
out[k] = anyToComplex[R](it)
}
return
}
func zfToComplex128MN[T Numerics | string | bool, Out Complexes](in map[string]T) (out map[string]Out) {
out = make(map[string]Out, len(in))
for k, it := range in {
out[k] = anyToComplex[Out](it)
}
return
}
//
func (s *Cvt) Duration(data any) time.Duration { return anyToDuration(data) }
func anyToDuration(data any) time.Duration { //nolint:revive
if data == nil {
return 0
}
switch z := data.(type) {
case time.Duration:
return z
case int:
return time.Duration(int64(z))
case int64:
return time.Duration(int64(z)) //nolint:unconvert
case int32:
return time.Duration(int64(z))
case int16:
return time.Duration(int64(z))
case int8:
return time.Duration(int64(z))
case uint:
return time.Duration(int64(z))
case uint64:
return time.Duration(int64(z))
case uint32:
return time.Duration(int64(z))
case uint16:
return time.Duration(int64(z))
case uint8:
return time.Duration(int64(z))
case string:
return mustParseDuration(z)
case fmt.Stringer:
return mustParseDuration(z.String())
case any:
return mustParseDuration(anyToString(z))
default:
str := fmt.Sprintf("%v", data)
return mustParseDuration(str)
}
}
func (s *Cvt) DurationSlice(data any) []time.Duration { return anyToDurationSlice(data) }
func anyToDurationSlice(data any) (ret []time.Duration) { //nolint:revive
if data == nil {
return
}
switch z := data.(type) {
case []time.Duration:
return z
case []int:
return zsToDurationS(z)
case []int64:
return zsToDurationS(z)
case []int32:
return zsToDurationS(z)
case []int16:
return zsToDurationS(z)
case []int8:
return zsToDurationS(z)
case []uint:
return zsToDurationS(z)
case []uint64:
return zsToDurationS(z)
case []uint32:
return zsToDurationS(z)
case []uint16:
return zsToDurationS(z)
case []uint8:
return zsToDurationS(z)
case []bool:
return zsToDurationSB(z)
case []float32:
return zsToDurationSB(z)
case []float64:
return zsToDurationSB(z)
case []complex64:
return zsToDurationSB(z)
case []complex128:
return zsToDurationSB(z)
case []string:
ret = make([]time.Duration, 0, len(z))
for _, it := range z {
ret = append(ret, mustParseDuration(it))
}
return
case []fmt.Stringer:
ret = make([]time.Duration, 0, len(z))
for _, it := range z {
ret = append(ret, mustParseDuration(it.String()))
}
return
case []any:
ret = make([]time.Duration, 0, len(z))
for _, it := range z {
ret = append(ret, mustParseDuration(anyToString(it)))
}
return
case string:
ret = parseToSlice[time.Duration](z)
case fmt.Stringer:
ret = parseToSlice[time.Duration](z.String())
case any:
return parseToSlice[time.Duration](anyToString(z))
default:
}
return
}
func mustParseDuration(s string) (dur time.Duration) {
if v, err := strconv.ParseInt(s, 10, 64); err == nil {
return time.Duration(v)
}
dur, _ = times.ParseDuration(s)
return
}
func zsToDurationS[T Integers | Uintegers](z []T) (ret []time.Duration) {
ret = make([]time.Duration, 0, len(z))
for _, it := range z {
ret = append(ret, time.Duration(int64(it)))
}
return
}
func zsToDurationSB[T bool | Floats | Complexes](z []T) (ret []time.Duration) {
ret = make([]time.Duration, 0, len(z))
for _, it := range z {
ret = append(ret, time.Duration(anyToInt(it)))
}
return
}
func (s *Cvt) DurationMap(data any) map[string]time.Duration { return anyToDurationMap(data) }
func anyToDurationMap(data any) (ret map[string]time.Duration) { //nolint:revive
if data == nil {
return
}
switch z := data.(type) {
case map[string]time.Duration:
return z
case map[string]string:
ret = make(map[string]time.Duration, len(z))
for k, v := range z {
ret[k] = mustParseDuration(v)
}
return
case map[string]fmt.Stringer:
ret = make(map[string]time.Duration, len(z))
for k, v := range z {
ret[k] = mustParseDuration(v.String())
}