forked from aerospike/aerospike-management-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.go
1139 lines (922 loc) · 26.1 KB
/
utils.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 (C) 2018 Aerospike, Inc.
//
// All rights reserved.
//
// THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE. THE COPYRIGHT NOTICE ABOVE DOES
// NOT EVIDENCE ANY ACTUAL OR INTENDED PUBLICATION.
package asconfig
import (
"fmt"
"reflect"
"regexp"
"strconv"
"strings"
"github.com/go-logr/logr"
lib "github.com/tanmayja/aerospike-management-lib"
)
type sysproptype string
// types of system properties
const (
FSPATH sysproptype = "FSPATH"
NETADDR sysproptype = "NETADDR"
DEVICE sysproptype = "DEVICE"
NONE sysproptype = "NONE"
)
var portRegex = regexp.MustCompile("port")
type humanize func(string) (uint64, error)
func deHumanizeTime(val string) (uint64, error) {
if val == "" {
return 0, nil
}
endswith := val[len(val)-1]
var multiplier uint64
switch endswith {
case 's', 'S':
multiplier = 1
case 'm', 'M':
multiplier = 60
case 'h', 'H':
multiplier = 60 * 60
case 'd', 'D':
multiplier = 24 * 60 * 60
default:
return strconv.ParseUint(val, 10, 64)
}
n, err := strconv.ParseUint(val[:len(val)-1], 10, 64)
if err != nil {
return n, err
}
n *= multiplier
return n, nil
}
func deHumanizeSize(val string) (uint64, error) {
if val == "" {
return 0, nil
}
endswith := val[len(val)-1]
var multiplier uint64
switch endswith {
case 'K', 'k':
multiplier = 1024
case 'M', 'm':
multiplier = 1024 * 1024
case 'G', 'g':
multiplier = 1024 * 1024 * 1024
case 'T', 't':
multiplier = 1024 * 1024 * 1024 * 1024
case 'P', 'p':
multiplier = 1024 * 1024 * 1024 * 1024 * 1024
default:
return strconv.ParseUint(val, 10, 64)
}
n, err := strconv.ParseUint(val[:len(val)-1], 10, 64)
if err != nil {
return n, err
}
n *= multiplier
return n, nil
}
// expandConf expands map with flat keys (with sep) to Conf
func expandConf(log logr.Logger, input *Conf, sep string) Conf { //nolint:unparam // We should think about removing the arg 'sep'
m := expandConfMap(log, input, sep)
return expandConfList(log, m)
}
// expandConfMap expands flat map to Conf by using sep
// it does not check for list sections
func expandConfMap(log logr.Logger, input *Conf, sep string) Conf {
m := make(Conf)
// generate.go adds "security": Conf{} to flatMap to ensure that an empty
// security context is present in the config. This is required to enable
// security in server >= 5.7. Sorting the keys ensures "security" is process
// before "security.*" keys.
keys := sortKeys(*input)
for _, k := range keys {
v := (*input)[k]
switch v := v.(type) {
case Conf:
m[k] = expandConfMap(log, &v, sep)
default:
expandKey(log, m, SplitKey(log, k, sep), v)
}
}
return m
}
// expandConfList expands expected list sections to list of Conf
func expandConfList(log logr.Logger, input Conf) Conf {
for k, val := range input {
v, ok := val.(Conf)
if ok {
if isListSection(k) || isSpecialListSection(k) {
// expected list section
confList := make([]Conf, len(v))
found := false
for k2, v2 := range v {
v2Conf, ok := v2.(Conf)
if !ok {
log.V(-1).Info(
"Wrong value type for list section",
"section", k, "key", k2, "key", reflect.TypeOf(v2),
)
continue
}
// fetch index stored by flattenConf
index, ok := v2Conf[keyIndex].(int)
if !ok {
log.V(-1).Info("Index not available", "section", k, "key", k2)
continue
}
confList[index] = expandConfList(log, v2Conf)
// index is flattenConf generated field, delete it
delete(confList[index], keyIndex)
found = true
}
if found {
input[k] = confList
}
} else {
input[k] = expandConfList(log, v)
}
}
}
return input
}
func replaceUnderscore(conf Conf) Conf {
if len(conf) == 0 {
return conf
}
updatedConf := make(Conf, len(conf))
for k, v := range conf {
newK := strings.ReplaceAll(k, "_", "-")
val, ok := v.(Conf)
if ok {
updatedConf[newK] = replaceUnderscore(val)
} else {
updatedConf[newK] = v
}
}
return updatedConf
}
var namedContextRe = regexp.MustCompile("(namespace|set|dc|tls|datacenter)(=)([^{^}/]*)")
var loggingContextRe = regexp.MustCompile("(logging)(=)([^{^}]*)")
func toAsConfigContext(context string) string {
// Internal asConfig representation has {} parenthesis
// around names in named contexts. And has . in it.
if loggingContextRe.MatchString(context) {
// logging filename can have / - avoid further replacements
asConfigCtx := loggingContextRe.ReplaceAllString(
context,
fmt.Sprintf("$1.%c$3%c", SectionNameStartChar, SectionNameEndChar),
)
return asConfigCtx
}
asConfigCtx := namedContextRe.ReplaceAllString(
context,
fmt.Sprintf("$1.%c$3%c", SectionNameStartChar, SectionNameEndChar),
)
asConfigCtx = strings.ReplaceAll(asConfigCtx, "/", sep)
return asConfigCtx
}
// toAsConfigKey Returns key which can be used by Config key.
func toAsConfigKey(context, name string) string {
// Internal asConfig keys have dots
return fmt.Sprintf("%s%s%s", toAsConfigContext(context), sep, name)
}
// getRawName trims parenthesis and return raw value of
// named context
func getRawName(name string) string {
return strings.Trim(
name, fmt.Sprintf("%c%c", SectionNameStartChar, SectionNameEndChar),
)
}
// getContainedName returns config name and true if key is part of the passed in
// context, otherwise empty string and false
func getContainedName(log logr.Logger, fullKey, context string) (
string, bool,
) {
ctx := toAsConfigContext(context)
if strings.Contains(fullKey, ctx) {
fKs := SplitKey(log, fullKey, sep)
cKs := SplitKey(log, ctx, sep)
// Number of keys in fullKey should
// be 1 more that ctx
if len(cKs)+1 != len(fKs) {
return "", false
}
return fKs[len(fKs)-1], true
}
return "", false
}
// SplitKey splits key by using sep
// it ignores sep inside sectionNameStartChar and sectionNameEndChar
func SplitKey(log logr.Logger, key, sep string) []string {
sepRunes := []rune(sep)
if len(sepRunes) > 1 {
log.Info("Split expects single char as separator")
return nil
}
openBracket := 0
f := func(c rune) bool {
if c == sepRunes[0] && openBracket == 0 {
return true
}
if c == SectionNameStartChar {
openBracket++
} else if c == SectionNameEndChar {
openBracket--
}
return false
}
return strings.FieldsFunc(key, f)
}
func expandKey(
log logr.Logger, input Conf, keys []string, val interface{},
) bool {
if len(keys) == 1 {
return false
}
m := input
i := 0
for _, k := range keys {
m = processKey(log, k, keys, m)
i++
if i == len(keys)-1 {
break
}
}
m[keys[len(keys)-1]] = val
return true
}
func processKey(log logr.Logger, k string, keys []string, m Conf) Conf {
defer func() {
if r := recover(); r != nil {
log.Info("Recovered", "key", k, "keys", keys, "err", r)
}
}()
if v, ok := m[k]; ok {
m = v.(Conf)
} else {
m[k] = make(Conf)
m = m[k].(Conf)
}
return m
}
// flattenConfList flatten list and save index for expandConf
func flattenConfList(log logr.Logger, input []Conf, sep string) Conf {
res := make(Conf, len(input))
for i, v := range input {
if len(v) == 0 {
continue
}
name, ok := v[KeyName].(string)
if !ok {
// Some lists like for storage-engine, index-type, and sindex-type use "type" instead
// of "name" in order to be compatible with the schema files.
name, ok = v[keyType].(string)
if !ok {
log.V(-1).Info(
"FlattenConfList not possible for ListSection" +
" without name or type",
)
continue
}
}
// create key for this item as {name}
// while expanding we are ignoring sep inside {...}
// still its not complete solution, it fails if user has section names with imbalance parenthesis
// for ex. namespace name -> test}.abcd
// but this solution will work for most of the cases and reduce most of the failure scenarios
name = string(SectionNameStartChar) + name + string(SectionNameEndChar)
for k2, v2 := range flattenConf(log, v, sep) {
res[name+sep+k2] = v2
}
// store index for expanding in correct order
res[name+sep+keyIndex] = i
}
return res
}
// flattenConf flatten Conf by creating new key by using sep
func flattenConf(log logr.Logger, input Conf, sep string) Conf {
res := make(Conf, len(input))
for k, v := range input {
switch v := v.(type) {
case Conf:
if len(v) == 0 {
res[k] = v
}
for k2, v2 := range flattenConf(log, v, sep) {
res[k+sep+k2] = v2
}
case []Conf:
for k2, v2 := range flattenConfList(log, v, sep) {
res[k+sep+k2] = v2
}
default:
res[k] = v
}
}
return res
}
func BaseKey(k string) (baseKey string) {
s := strings.Split(k, sep)
return s[len(s)-1]
}
func ContextKey(k string) string {
contextKey := k
s := strings.Split(k, sep)
if len(s) > 1 {
// Extract the prefix (before the first dot)
contextKey = s[0]
}
return contextKey
}
var nsRe = regexp.MustCompile(`namespace\.({[^.]+})\.(.+)`)
var setRe = regexp.MustCompile(`namespace\.({[^.]+})\.set\.({[^.]+})\.([^.]+)`)
var dcRe = regexp.MustCompile(`xdr\.datacenter\.({[^.]+})\.(.+)`)
var tlsRe = regexp.MustCompile(`network\.tls\.([^.]+)\.(.+)`)
var logRe = regexp.MustCompile(`logging\.({.+})\.(.+)`)
func changeKey(key string) string {
if setRe.MatchString(key) {
key = setRe.ReplaceAllString(key, "namespace._.set._.${3}")
} else {
key = nsRe.ReplaceAllString(key, "namespace._.${2}")
}
key = dcRe.ReplaceAllString(key, "xdr.datacenter._.${2}")
key = tlsRe.ReplaceAllString(key, "network.tls._.${2}")
key = logRe.ReplaceAllString(key, "logging._.${2}")
return key
}
// getSystemProperty return property type and their stringified
// values
func getSystemProperty(log logr.Logger, c Conf, key string) (
stype sysproptype, value []string,
) {
baseKey := BaseKey(key)
baseKey = SingularOf(baseKey)
value = make([]string, 0)
// Catch all exception for type cast.
defer func() {
if r := recover(); r != nil {
log.V(1).Info(
"Unexpected type", "type", reflect.TypeOf(c[key]),
"key", baseKey,
)
stype = NONE
}
}()
switch baseKey {
// device <deviceName>:<shadowDeviceName>
case keyDevice:
for _, d := range c[key].([]interface{}) {
value = append(value, strings.Split(d.(string), colon)...)
}
return DEVICE, value
// file <filename>
// feature-key-file <filename>
// work-directory <direname>
// FIXME FIXME add logging file ...
case keyFile, keyFeatureKeyFile, "work-directory", "system-path", "user-path":
v := c[key]
switch v := v.(type) {
case string:
value = append(value, v)
return FSPATH, value
case []interface{}:
for _, f := range v {
value = append(value, f.(string))
}
return FSPATH, value
case []string:
value = append(value, v...)
return FSPATH, value
}
return NONE, value
case "xdr-digestlog-path":
value = append(value, strings.Split(c[key].(string), " ")[0])
return FSPATH, value
case keyAddress, keyTLSAddress, keyAccessAddress,
keyTLSAccessAddress, keyAlternateAccessAddress,
keyTLSAlternateAccessAddress:
v := c[key]
switch v := v.(type) {
case []interface{}:
for _, f := range v {
value = append(value, f.(string))
}
return NETADDR, value
case []string:
value = append(value, v...)
return NETADDR, value
}
return NONE, value
default:
return NONE, value
}
}
// isListField return true if passed in key representing
// aerospike config is of type List that is can have multiple
// entries for same config key. The separator is the secondary delimiter
// used in the .yml config and in the response returned from the server.
// As opposed to the aerospike.conf file which uses space delimiters.
// Example of different formats:
//
// server response:
// node-address-port=1.1.1.1:3000;2.2.2.2:3000
// yaml config:
// node-address-ports:
// - 1.1.1.1:3000
// - 2.2.2.2:3000
// aerospike.conf:
// node-address-port 1.1.1.1 3000
// node-address-port 2.2.2.2 3000
func isListField(key string) (exists bool, separator string) {
bKey := BaseKey(key)
bKey = SingularOf(bKey)
switch bKey {
case "dc-node-address-port", "tls-node", "dc-int-ext-ipmap":
return true, "+"
// TODO: Device with shadow device is not reported by server
// yet in runtime making it colon separated for now.
case "mesh-seed-address-port", "tls-mesh-seed-address-port",
keyDevice, keyReportDataOp, "node-address-port", keyFeatureKeyFile:
return true, colon
case keyFile, keyAddress, keyTLSAddress, keyAccessAddress, "mount",
keyTLSAccessAddress, keyAlternateAccessAddress,
keyTLSAlternateAccessAddress, "role-query-pattern",
"xdr-remote-datacenter", "multicast-group",
keyTLSAuthenticateClient, "http-url", "report-data-op-user",
"report-data-op-role":
return true, ""
default:
// TODO: This should use the configuration schema instead.
// If this field is in singularToPlural or pluralToSingular it is a list field.
if _, ok := singularToPlural[bKey]; ok && !strings.HasPrefix(key, "logging.") {
return true, ""
}
return false, ""
}
}
// isIncompleteSetSectionFields returns true if passed in key
// representing aerospike set config which is incomplete and needs
// 'set-' prefix
func isIncompleteSetSectionFields(key string) bool {
key = BaseKey(key)
switch key {
case "disable-eviction", "enable-xdr", "stop-writes-count":
return true
default:
return false
}
}
func isInternalField(key string) bool {
key = BaseKey(key)
switch key {
case keyIndex, KeyName:
return true
default:
return false
}
}
func isListSection(section string) bool {
section = BaseKey(section)
section = SingularOf(section)
switch section {
case keyNamespace, "datacenter", "dc", keySet, "tls", keyFile:
return true
default:
return false
}
}
// section without name but should consider as list
// for ex. logging
func isSpecialListSection(section string) bool {
section = BaseKey(section)
section = SingularOf(section)
switch section {
case "logging":
return true
default:
return false
}
}
// isFormField return true if the field in aerospike Conf is
// not aerospike config value but is present in Conf file by
// virtue of it generated from the config form. Forms are the
// JSON schema for nice form layout in UI.
func isFormField(key string) bool {
key = BaseKey(key)
// "name" is id for named sections
// "storage-engine-type" is type of storage engine.
switch key {
case KeyName, "storage-engine-type":
return true
default:
return false
}
}
// isEmptyField return true if value is either NULL or "". Also,
// for the cases where port number is 0
func isEmptyField(key, value string) bool {
// "name" is id for named sections
// "storage-engine-type" is type of storage engine.
switch {
case strings.EqualFold(value, "NULL"), strings.EqualFold(value, ""):
return true
case portRegex.MatchString(key):
if value == "0" {
return true
}
default:
return false
}
return false
}
// isSpecialOrNormalBoolField returns true if the passed key
// in aerospike config is boolean type field which can have
// a true/false value in the config or, its mere presence
// indicates a true/false value
// e.g. run-as-daemon fields
func isSpecialOrNormalBoolField(key string) bool {
return key == "run-as-daemon"
}
// isSpecialBoolField returns true if the passed key
// in aerospike config is boolean type field but does not
// need true or false in config file. Their mere presence
// config file is true/false.
// e.g. namespace and storage level benchmark fields
func isSpecialBoolField(key string) bool {
switch key {
case "enable-benchmarks-batch-sub", "enable-benchmarks-read",
"enable-benchmarks-udf", "enable-benchmarks-write",
"enable-benchmarks-udf-sub", "enable-benchmarks-storage":
return true
default:
return false
}
}
// isSpecialStringField returns true if the passed key
// in aerospike config is string type field but can have
// bool value also
// e.g. tls-authenticate-client
func isSpecialStringField(key string) bool {
key = BaseKey(key)
switch key {
case keyTLSAuthenticateClient:
return true
default:
return false
}
}
// isNodeSpecificField returns true if the passed key
// in aerospike config is Node specific field.
func isNodeSpecificField(key string) bool {
key = SingularOf(key)
switch key {
case keyFile, keyDevice, "pidfile",
"node-id", keyAddress, "port", keyAccessAddress, "access-port",
"external-address", "interface-address", keyAlternateAccessAddress,
keyTLSAddress, "tls-port", keyTLSAccessAddress, "tls-access-port",
keyTLSAlternateAccessAddress, "tls-alternate-access-port", "alternate-access-port",
"xdr-info-port", "service-threads", "batch-index-threads",
"mesh-seed-address-port", "tls-mesh-seed-address-port", "mtu":
return true
}
return false
}
// isNodeSpecificContext returns true if the passed key
// in aerospike config is from Node specific context like logging.
func isNodeSpecificContext(key string) bool {
if key == "" || strings.Contains(key, "logging.") {
return true
}
return false
}
func isSizeOrTime(key string) (bool, humanize) {
switch key {
case "default-ttl", "max-ttl", "tomb-raider-eligible-age",
"tomb-raider-period", "nsup-period", "migrate-fill-delay",
"tls-refresh-period", "ship-versions-interval":
return true, deHumanizeTime
case "memory-size", "filesize", "write-block-size",
"partition-tree-sprigs", "max-write-cache",
"mounts-size-limit", "index-stage-size",
"stop-writes-count", "stop-writes-size",
"mounts-budget", "data-size",
"quarantine-allocations", "flush-size",
"post-write-cache", "indexes-memory-budget",
"sindex-stage-size":
return true, deHumanizeSize
default:
return false, nil
}
}
func isStorageEngineKey(key string) bool {
if key == keyStorageEngine || strings.Contains(key, keyStorageEngine+".") {
return true
}
return false
}
func isTypedSection(key string) bool {
baseKey := BaseKey(key)
baseKey = SingularOf(baseKey)
// TODO: This should be derived from the configuration schema
switch baseKey {
case keyStorageEngine, "index-type", "sindex-type":
return true
default:
return false
}
}
func addStorageEngineConfig(
log logr.Logger, key string, v interface{}, conf Conf,
) {
if !isStorageEngineKey(key) {
return
}
storageKey := keyStorageEngine
switch v := v.(type) {
case map[string]interface{}:
conf[storageKey] = toConf(log, v)
case lib.Stats:
conf[storageKey] = toConf(log, v)
default:
vStr, ok := v.(string)
if key == storageKey {
if !ok {
log.V(1).Info(
"Wrong value type",
"key", key, "valueType", reflect.TypeOf(v),
)
return
}
if vStr == "memory" {
// in-memory storage-engine
conf[storageKey] = v
}
return
}
seConf, ok := conf[storageKey].(Conf)
if !ok {
conf[storageKey] = make(Conf)
seConf = conf[storageKey].(Conf)
}
key = strings.TrimPrefix(key, keyStorageEngine+".")
seConf[key] = v
}
}
// TODO derive these from the schema file
func isStringField(key string) bool {
switch key {
// NOTE: before 7.0 "debug-allocations" was a string field. Since it does not except
// numeric values it is safe to remove from this table so that it functions as a bool
// when parsing server 7.0+ config files
case "tls-name", "encryption", "query-user-password-file", "encryption-key-file",
keyTLSAuthenticateClient, "mode", "auto-pin", "compression", "user-path",
"auth-user", "user", "cipher-suite", "ca-path", "write-policy", "vault-url",
"protocols", "bin-policy", "ca-file", "key-file", "pidfile", "cluster-name",
"auth-mode", "encryption-old-key-file", "group", "work-directory", "write-commit-level-override",
"vault-ca", "cert-blacklist", "vault-token-file", "query-user-dn", "node-id",
"conflict-resolution-policy", "server", "query-base-dn", "node-id-interface",
"auth-password-file", keyFeatureKeyFile, "read-consistency-level-override",
"cert-file", "user-query-pattern", "key-file-password", "protocol", "vault-path",
"user-dn-pattern", "scheduler-mode", "token-hash-method",
"remote-namespace", "tls-ca-file", "role-query-base-dn", "set-enable-xdr",
"secrets-tls-context", "secrets-uds-path", "secrets-address-port",
"default-password-file", "ship-versions-policy":
return true
}
return false
}
// isDelimitedStringField returns true for configuration fields that
// are delimited strings, but not members of a list section. The separator
// represents the delimiter used in the .yml config as opposed to the
// aerospike.conf file which normally uses spaces.
// EX: secrets-address-port: 127.0.0.1:3000
func isDelimitedStringField(key string) (exists bool, separator string) {
if key == "secrets-address-port" {
return true, colon
}
return false, ""
}
// toConf does deep conversion of map[string]interface{}
// into Conf objects. Also converts the list form in conf
// into map form, if required. This is needed when converting a unmarshalled
// yaml file into Conf object.
func toConf(log logr.Logger, input map[string]interface{}) Conf {
result := make(Conf)
if len(input) == 0 {
return result
}
for k, v := range input {
if isStorageEngineKey(k) {
addStorageEngineConfig(log, k, v, result)
continue
}
handleValueType(log, k, v, result)
}
return result
}
func handleValueType(log logr.Logger, key string, value interface{}, result Conf) {
switch v := value.(type) {
case lib.Stats:
result[key] = toConf(log, v)
case map[string]interface{}:
result[key] = toConf(log, v)
case []map[string]interface{}:
result[key] = convertMapSlice(log, v)
case []interface{}:
result[key] = convertInterfaceSlice(log, key, v)
case string:
result[key] = convertString(key, v)
case bool:
result[key] = convertBool(key, v)
case int64:
if v < 0 {
result[key] = v
} else {
result[key] = uint64(v)
}
case uint64:
result[key] = v
case float64:
// security.syslog.local can be -1
if v < 0 {
result[key] = int64(v)
} else {
result[key] = uint64(v)
}
default:
result[key] = value
}
}
// Add other helper functions here...
func convertMapSlice(log logr.Logger, v []map[string]interface{}) (result []Conf) {
if len(v) == 0 {
result = make([]Conf, 0)
} else {
temp := make([]Conf, len(v))
for i, m := range v {
temp[i] = toConf(log, m)
}
result = temp
}
return result
}
func convertInterfaceSlice(log logr.Logger, k string, v []interface{}) (result interface{}) {
if len(v) == 0 {
if isListSection(k) || isSpecialListSection(k) {
result = make([]Conf, 0)
} else if ok, _ := isListField(k); ok {
result = make([]string, 0)
} else {
log.V(1).Info(
"[]interface neither list field or list section",
"key", k,
)
}
} else {
v1 := v[0]
switch v1.(type) {
case string:
temp := make([]string, len(v))
for i, s := range v {
if boolVal, isBool := s.(bool); isBool && isSpecialStringField(k) {
temp[i] = strconv.FormatBool(boolVal)
} else {
temp[i] = s.(string)
}
}
result = temp
case map[string]interface{}, lib.Stats:
temp := make([]Conf, len(v))
for i, m := range v {
m1, ok := m.(map[string]interface{})
if !ok {
m1, ok = m.(lib.Stats)
}
if ok {
temp[i] = toConf(log, m1)
} else {
log.V(1).Info("[]Conf does not have map[string]interface{}")
break
}
}
result = temp
default:
log.V(1).Info(