-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathconfig.go
780 lines (648 loc) · 23.7 KB
/
config.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
// Copyright The OpenTelemetry Authors
//
// 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 config implements loading of configuration from Viper configuration.
// The implementation relies on registered factories that allow creating
// default configuration for each type of receiver/exporter/processor.
package config
import (
"errors"
"fmt"
"os"
"reflect"
"strings"
"github.com/spf13/cast"
"github.com/spf13/viper"
"go.uber.org/zap"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/config/configmodels"
)
// These are errors that can be returned by Load(). Note that error codes are not part
// of Load()'s public API, they are for internal unit testing only.
type configErrorCode int
const (
_ configErrorCode = iota // skip 0, start errors codes from 1.
errInvalidSubConfig
errInvalidTypeAndNameKey
errUnknownType
errDuplicateName
errMissingPipelines
errPipelineMustHaveReceiver
errPipelineMustHaveExporter
errExtensionNotExists
errPipelineReceiverNotExists
errPipelineProcessorNotExists
errPipelineExporterNotExists
errMissingReceivers
errMissingExporters
errUnmarshalTopLevelStructureError
)
const (
// ViperDelimiter is used as the default key delimiter in the default viper instance
ViperDelimiter = "::"
)
type configError struct {
msg string // human readable error message.
code configErrorCode // internal error code.
}
func (e *configError) Error() string {
return e.msg
}
// YAML top-level configuration keys
const (
// extensionsKeyName is the configuration key name for extensions section.
extensionsKeyName = "extensions"
// receiversKeyName is the configuration key name for receivers section.
receiversKeyName = "receivers"
// exportersKeyName is the configuration key name for exporters section.
exportersKeyName = "exporters"
// processorsKeyName is the configuration key name for processors section.
processorsKeyName = "processors"
// pipelinesKeyName is the configuration key name for pipelines section.
pipelinesKeyName = "pipelines"
)
type configSettings struct {
Receivers map[string]map[string]interface{} `mapstructure:"receivers"`
Processors map[string]map[string]interface{} `mapstructure:"processors"`
Exporters map[string]map[string]interface{} `mapstructure:"exporters"`
Extensions map[string]map[string]interface{} `mapstructure:"extensions"`
Service serviceSettings `mapstructure:"service"`
}
type serviceSettings struct {
Extensions []string `mapstructure:"extensions"`
Pipelines map[string]pipelineSettings `mapstructure:"pipelines"`
}
type pipelineSettings struct {
Receivers []string `mapstructure:"receivers"`
Processors []string `mapstructure:"processors"`
Exporters []string `mapstructure:"exporters"`
}
// deprecatedUnmarshaler is the old/deprecated way to provide custom unmarshaler.
type deprecatedUnmarshaler interface {
// CustomUnmarshaler returns a custom unmarshaler for the configuration or nil if
// there is no need for custom unmarshaling. This is typically used if viper.UnmarshalExact()
// is not sufficient to unmarshal correctly.
CustomUnmarshaler() component.CustomUnmarshaler
}
// typeAndNameSeparator is the separator that is used between type and name in type/name composite keys.
const typeAndNameSeparator = "/"
// Creates a new Viper instance with a different key-delimitor "::" instead of the
// default ".". This way configs can have keys that contain ".".
func NewViper() *viper.Viper {
return viper.NewWithOptions(viper.KeyDelimiter(ViperDelimiter))
}
// Load loads a Config from Viper.
// After loading the config, need to check if it is valid by calling `ValidateConfig`.
func Load(
v *viper.Viper,
factories component.Factories,
) (*configmodels.Config, error) {
var config configmodels.Config
// Load the config.
// Struct to validate top level sections.
var rawCfg configSettings
if err := v.UnmarshalExact(&rawCfg); err != nil {
return nil, &configError{
code: errUnmarshalTopLevelStructureError,
msg: fmt.Sprintf("error reading top level configuration sections: %s", err.Error()),
}
}
// In the following section use v.GetStringMap(xyzKeyName) instead of rawCfg.Xyz, because
// UnmarshalExact will not unmarshal entries in the map[string]interface{} with nil values.
// GetStringMap does the correct thing.
// Start with the service extensions.
extensions, err := loadExtensions(v.GetStringMap(extensionsKeyName), factories.Extensions)
if err != nil {
return nil, err
}
config.Extensions = extensions
// Load data components (receivers, exporters, and processors).
receivers, err := loadReceivers(v.GetStringMap(receiversKeyName), factories.Receivers)
if err != nil {
return nil, err
}
config.Receivers = receivers
exporters, err := loadExporters(v.GetStringMap(exportersKeyName), factories.Exporters)
if err != nil {
return nil, err
}
config.Exporters = exporters
processors, err := loadProcessors(v.GetStringMap(processorsKeyName), factories.Processors)
if err != nil {
return nil, err
}
config.Processors = processors
// Load the service and its data pipelines.
service, err := loadService(rawCfg.Service)
if err != nil {
return nil, err
}
config.Service = service
return &config, nil
}
// DecodeTypeAndName decodes a key in type[/name] format into type and fullName.
// fullName is the key normalized such that type and name components have spaces trimmed.
// The "type" part must be present, the forward slash and "name" are optional. typeStr
// will be non-empty if err is nil.
func DecodeTypeAndName(key string) (typeStr configmodels.Type, fullName string, err error) {
items := strings.SplitN(key, typeAndNameSeparator, 2)
if len(items) >= 1 {
typeStr = configmodels.Type(strings.TrimSpace(items[0]))
}
if len(items) == 0 || typeStr == "" {
err = errors.New("type/name key must have the type part")
return
}
var nameSuffix string
if len(items) > 1 {
// "name" part is present.
nameSuffix = strings.TrimSpace(items[1])
if nameSuffix == "" {
err = errors.New("name part must be specified after " + typeAndNameSeparator + " in type/name key")
return
}
} else {
nameSuffix = ""
}
// Create normalized fullName.
if nameSuffix == "" {
fullName = string(typeStr)
} else {
fullName = string(typeStr) + typeAndNameSeparator + nameSuffix
}
err = nil
return
}
func errorInvalidTypeAndNameKey(component, key string, err error) error {
return &configError{
code: errInvalidTypeAndNameKey,
msg: fmt.Sprintf("invalid %s type and name key %q: %v", component, key, err),
}
}
func errorUnknownType(component string, typeStr configmodels.Type, fullName string) error {
return &configError{
code: errUnknownType,
msg: fmt.Sprintf("unknown %s type %q for %s", component, typeStr, fullName),
}
}
func errorUnmarshalError(component string, fullName string, err error) error {
return &configError{
code: errUnmarshalTopLevelStructureError,
msg: fmt.Sprintf("error reading %s configuration for %s: %v", component, fullName, err),
}
}
func errorDuplicateName(component string, fullName string) error {
return &configError{
code: errDuplicateName,
msg: fmt.Sprintf("duplicate %s name %s", component, fullName),
}
}
func loadExtensions(exts map[string]interface{}, factories map[configmodels.Type]component.ExtensionFactory) (configmodels.Extensions, error) {
// Prepare resulting map.
extensions := make(configmodels.Extensions)
// Iterate over extensions and create a config for each.
for key, value := range exts {
componentConfig := viperFromStringMap(cast.ToStringMap(value))
expandEnvConfig(componentConfig)
// Decode the key into type and fullName components.
typeStr, fullName, err := DecodeTypeAndName(key)
if err != nil {
return nil, errorInvalidTypeAndNameKey(extensionsKeyName, key, err)
}
// Find extension factory based on "type" that we read from config source.
factory := factories[typeStr]
if factory == nil {
return nil, errorUnknownType(extensionsKeyName, typeStr, fullName)
}
// Create the default config for this extension
extensionCfg := factory.CreateDefaultConfig()
extensionCfg.SetName(fullName)
expandEnvLoadedConfig(extensionCfg)
// Now that the default config struct is created we can Unmarshal into it
// and it will apply user-defined config on top of the default.
unm := unmarshaler(factory)
if err := unm(componentConfig, extensionCfg); err != nil {
return nil, errorUnmarshalError(extensionsKeyName, fullName, err)
}
if extensions[fullName] != nil {
return nil, errorDuplicateName(extensionsKeyName, fullName)
}
extensions[fullName] = extensionCfg
}
return extensions, nil
}
func loadService(rawService serviceSettings) (configmodels.Service, error) {
var ret configmodels.Service
ret.Extensions = rawService.Extensions
// Process the pipelines first so in case of error on them it can be properly
// reported.
pipelines, err := loadPipelines(rawService.Pipelines)
ret.Pipelines = pipelines
return ret, err
}
// LoadReceiver loads a receiver config from componentConfig using the provided factories.
func LoadReceiver(componentConfig *viper.Viper, typeStr configmodels.Type, fullName string, factory component.ReceiverFactory) (configmodels.Receiver, error) {
// Create the default config for this receiver.
receiverCfg := factory.CreateDefaultConfig()
receiverCfg.SetName(fullName)
expandEnvLoadedConfig(receiverCfg)
// Now that the default config struct is created we can Unmarshal into it
// and it will apply user-defined config on top of the default.
unm := unmarshaler(factory)
if err := unm(componentConfig, receiverCfg); err != nil {
return nil, errorUnmarshalError(receiversKeyName, fullName, err)
}
return receiverCfg, nil
}
func loadReceivers(recvs map[string]interface{}, factories map[configmodels.Type]component.ReceiverFactory) (configmodels.Receivers, error) {
// Prepare resulting map
receivers := make(configmodels.Receivers)
// Iterate over input map and create a config for each.
for key, value := range recvs {
componentConfig := viperFromStringMap(cast.ToStringMap(value))
expandEnvConfig(componentConfig)
// Decode the key into type and fullName components.
typeStr, fullName, err := DecodeTypeAndName(key)
if err != nil {
return nil, errorInvalidTypeAndNameKey(receiversKeyName, key, err)
}
// Find receiver factory based on "type" that we read from config source
factory := factories[typeStr]
if factory == nil {
return nil, errorUnknownType(receiversKeyName, typeStr, fullName)
}
receiverCfg, err := LoadReceiver(componentConfig, typeStr, fullName, factory)
if err != nil {
// LoadReceiver already wraps the error.
return nil, err
}
if receivers[receiverCfg.Name()] != nil {
return nil, errorDuplicateName(receiversKeyName, fullName)
}
receivers[receiverCfg.Name()] = receiverCfg
}
return receivers, nil
}
func loadExporters(exps map[string]interface{}, factories map[configmodels.Type]component.ExporterFactory) (configmodels.Exporters, error) {
// Prepare resulting map
exporters := make(configmodels.Exporters)
// Iterate over Exporters and create a config for each.
for key, value := range exps {
componentConfig := viperFromStringMap(cast.ToStringMap(value))
expandEnvConfig(componentConfig)
// Decode the key into type and fullName components.
typeStr, fullName, err := DecodeTypeAndName(key)
if err != nil {
return nil, errorInvalidTypeAndNameKey(exportersKeyName, key, err)
}
// Find exporter factory based on "type" that we read from config source
factory := factories[typeStr]
if factory == nil {
return nil, errorUnknownType(exportersKeyName, typeStr, fullName)
}
// Create the default config for this exporter
exporterCfg := factory.CreateDefaultConfig()
exporterCfg.SetName(fullName)
expandEnvLoadedConfig(exporterCfg)
// Now that the default config struct is created we can Unmarshal into it
// and it will apply user-defined config on top of the default.
unm := unmarshaler(factory)
if err := unm(componentConfig, exporterCfg); err != nil {
return nil, errorUnmarshalError(exportersKeyName, fullName, err)
}
if exporters[fullName] != nil {
return nil, errorDuplicateName(exportersKeyName, fullName)
}
exporters[fullName] = exporterCfg
}
return exporters, nil
}
func loadProcessors(procs map[string]interface{}, factories map[configmodels.Type]component.ProcessorFactory) (configmodels.Processors, error) {
// Prepare resulting map.
processors := make(configmodels.Processors)
// Iterate over processors and create a config for each.
for key, value := range procs {
componentConfig := viperFromStringMap(cast.ToStringMap(value))
expandEnvConfig(componentConfig)
// Decode the key into type and fullName components.
typeStr, fullName, err := DecodeTypeAndName(key)
if err != nil {
return nil, errorInvalidTypeAndNameKey(processorsKeyName, key, err)
}
// Find processor factory based on "type" that we read from config source.
factory := factories[typeStr]
if factory == nil {
return nil, errorUnknownType(processorsKeyName, typeStr, fullName)
}
// Create the default config for this processor.
processorCfg := factory.CreateDefaultConfig()
processorCfg.SetName(fullName)
expandEnvLoadedConfig(processorCfg)
// Now that the default config struct is created we can Unmarshal into it
// and it will apply user-defined config on top of the default.
unm := unmarshaler(factory)
if err := unm(componentConfig, processorCfg); err != nil {
return nil, errorUnmarshalError(processorsKeyName, fullName, err)
}
if processors[fullName] != nil {
return nil, errorDuplicateName(processorsKeyName, fullName)
}
processors[fullName] = processorCfg
}
return processors, nil
}
func loadPipelines(pipelinesConfig map[string]pipelineSettings) (configmodels.Pipelines, error) {
// Prepare resulting map.
pipelines := make(configmodels.Pipelines)
// Iterate over input map and create a config for each.
for key, rawPipeline := range pipelinesConfig {
// Decode the key into type and name components.
typeStr, fullName, err := DecodeTypeAndName(key)
if err != nil {
return nil, errorInvalidTypeAndNameKey(pipelinesKeyName, key, err)
}
// Create the config for this pipeline.
var pipelineCfg configmodels.Pipeline
// Set the type.
pipelineCfg.InputType = configmodels.DataType(typeStr)
switch pipelineCfg.InputType {
case configmodels.TracesDataType:
case configmodels.MetricsDataType:
case configmodels.LogsDataType:
default:
return nil, errorUnknownType(pipelinesKeyName, typeStr, fullName)
}
pipelineCfg.Name = fullName
pipelineCfg.Receivers = rawPipeline.Receivers
pipelineCfg.Processors = rawPipeline.Processors
pipelineCfg.Exporters = rawPipeline.Exporters
if pipelines[fullName] != nil {
return nil, errorDuplicateName(pipelinesKeyName, fullName)
}
pipelines[fullName] = &pipelineCfg
}
return pipelines, nil
}
// ValidateConfig validates config.
func ValidateConfig(cfg *configmodels.Config, _ *zap.Logger) error {
// This function performs basic validation of configuration. There may be more subtle
// invalid cases that we currently don't check for but which we may want to add in
// the future (e.g. disallowing receiving and exporting on the same endpoint).
if err := validateReceivers(cfg); err != nil {
return err
}
if err := validateExporters(cfg); err != nil {
return err
}
if err := validateService(cfg); err != nil {
return err
}
return nil
}
func validateService(cfg *configmodels.Config) error {
if err := validatePipelines(cfg); err != nil {
return err
}
return validateServiceExtensions(cfg)
}
func validateServiceExtensions(cfg *configmodels.Config) error {
if len(cfg.Service.Extensions) == 0 {
return nil
}
// Validate extensions.
for _, ref := range cfg.Service.Extensions {
// Check that the name referenced in the Service extensions exists in the top-level extensions
if cfg.Extensions[ref] == nil {
return &configError{
code: errExtensionNotExists,
msg: fmt.Sprintf("Service references extension %q which does not exist", ref),
}
}
}
return nil
}
func validatePipelines(cfg *configmodels.Config) error {
// Must have at least one pipeline.
if len(cfg.Service.Pipelines) == 0 {
return &configError{code: errMissingPipelines, msg: "must have at least one pipeline"}
}
// Validate pipelines.
for _, pipeline := range cfg.Service.Pipelines {
if err := validatePipeline(cfg, pipeline); err != nil {
return err
}
}
return nil
}
func validatePipeline(cfg *configmodels.Config, pipeline *configmodels.Pipeline) error {
if err := validatePipelineReceivers(cfg, pipeline); err != nil {
return err
}
if err := validatePipelineExporters(cfg, pipeline); err != nil {
return err
}
if err := validatePipelineProcessors(cfg, pipeline); err != nil {
return err
}
return nil
}
func validatePipelineReceivers(cfg *configmodels.Config, pipeline *configmodels.Pipeline) error {
if len(pipeline.Receivers) == 0 {
return &configError{
code: errPipelineMustHaveReceiver,
msg: fmt.Sprintf("pipeline %q must have at least one receiver", pipeline.Name),
}
}
// Validate pipeline receiver name references.
for _, ref := range pipeline.Receivers {
// Check that the name referenced in the pipeline's receivers exists in the top-level receivers
if cfg.Receivers[ref] == nil {
return &configError{
code: errPipelineReceiverNotExists,
msg: fmt.Sprintf("pipeline %q references receiver %q which does not exist", pipeline.Name, ref),
}
}
}
return nil
}
func validatePipelineExporters(cfg *configmodels.Config, pipeline *configmodels.Pipeline) error {
if len(pipeline.Exporters) == 0 {
return &configError{
code: errPipelineMustHaveExporter,
msg: fmt.Sprintf("pipeline %q must have at least one exporter", pipeline.Name),
}
}
// Validate pipeline exporter name references.
for _, ref := range pipeline.Exporters {
// Check that the name referenced in the pipeline's Exporters exists in the top-level Exporters
if cfg.Exporters[ref] == nil {
return &configError{
code: errPipelineExporterNotExists,
msg: fmt.Sprintf("pipeline %q references exporter %q which does not exist", pipeline.Name, ref),
}
}
}
return nil
}
func validatePipelineProcessors(cfg *configmodels.Config, pipeline *configmodels.Pipeline) error {
if len(pipeline.Processors) == 0 {
return nil
}
// Validate pipeline processor name references
for _, ref := range pipeline.Processors {
// Check that the name referenced in the pipeline's processors exists in the top-level processors.
if cfg.Processors[ref] == nil {
return &configError{
code: errPipelineProcessorNotExists,
msg: fmt.Sprintf("pipeline %q references processor %s which does not exist", pipeline.Name, ref),
}
}
}
return nil
}
func validateReceivers(cfg *configmodels.Config) error {
// Currently there is no default receiver enabled. The configuration must specify at least one enabled receiver to
// be valid.
if len(cfg.Receivers) == 0 {
return &configError{
code: errMissingReceivers,
msg: "no enabled receivers specified in config",
}
}
return nil
}
func validateExporters(cfg *configmodels.Config) error {
// There must be at least one enabled exporter to be considered a valid configuration.
if len(cfg.Exporters) == 0 {
return &configError{
code: errMissingExporters,
msg: "no enabled exporters specified in config",
}
}
return nil
}
// expandEnvConfig creates a new viper config with expanded values for all the values (simple, list or map value).
// It does not expand the keys.
func expandEnvConfig(v *viper.Viper) {
for _, k := range v.AllKeys() {
v.Set(k, expandStringValues(v.Get(k)))
}
}
func expandStringValues(value interface{}) interface{} {
switch v := value.(type) {
default:
return v
case string:
return expandEnv(v)
case []interface{}:
nslice := make([]interface{}, 0, len(v))
for _, vint := range v {
nslice = append(nslice, expandStringValues(vint))
}
return nslice
case map[interface{}]interface{}:
nmap := make(map[interface{}]interface{}, len(v))
for k, vint := range v {
nmap[k] = expandStringValues(vint)
}
return nmap
}
}
// expandEnvLoadedConfig is a utility function that goes recursively through a config object
// and tries to expand environment variables in its string fields.
func expandEnvLoadedConfig(s interface{}) {
expandEnvLoadedConfigPointer(s)
}
func expandEnvLoadedConfigPointer(s interface{}) {
// Check that the value given is indeed a pointer, otherwise safely stop the search here
value := reflect.ValueOf(s)
if value.Kind() != reflect.Ptr {
return
}
// Run expandLoadedConfigValue on the value behind the pointer
expandEnvLoadedConfigValue(value.Elem())
}
func expandEnvLoadedConfigValue(value reflect.Value) {
// The value given is a string, we expand it (if allowed)
if value.Kind() == reflect.String && value.CanSet() {
value.SetString(expandEnv(value.String()))
}
// The value given is a struct, we go through its fields
if value.Kind() == reflect.Struct {
for i := 0; i < value.NumField(); i++ {
field := value.Field(i) // Returns the content of the field
if field.CanSet() { // Only try to modify a field if it can be modified (eg. skip unexported private fields)
switch field.Kind() {
case reflect.String: // The current field is a string, we want to expand it
field.SetString(expandEnv(field.String())) // Expand env variables in the string
case reflect.Ptr: // The current field is a pointer
expandEnvLoadedConfigPointer(field.Interface()) // Run the expansion function on the pointer
case reflect.Struct: // The current field is a nested struct
expandEnvLoadedConfigValue(field) // Go through the nested struct
}
}
}
}
}
func expandEnv(s string) string {
return os.Expand(s, func(str string) string {
// This allows escaping environment variable substitution via $$, e.g.
// - $FOO will be substituted with env var FOO
// - $$FOO will be replaced with $FOO
// - $$$FOO will be replaced with $ + substituted env var FOO
if str == "$" {
return "$"
}
return os.Getenv(str)
})
}
func unmarshaler(factory component.Factory) component.CustomUnmarshaler {
if fu, ok := factory.(component.ConfigUnmarshaler); ok {
return fu.Unmarshal
}
if du, ok := factory.(deprecatedUnmarshaler); ok {
cu := du.CustomUnmarshaler()
if cu != nil {
return cu
}
}
return defaultUnmarshaler
}
func defaultUnmarshaler(componentViperSection *viper.Viper, intoCfg interface{}) error {
return componentViperSection.UnmarshalExact(intoCfg)
}
// Copied from the Viper but changed to use the same delimiter
// and return error if the sub is not a map.
// See https://github.com/spf13/viper/issues/871
func ViperSubExact(v *viper.Viper, key string) (*viper.Viper, error) {
data := v.Get(key)
if data == nil {
return NewViper(), nil
}
if reflect.TypeOf(data).Kind() == reflect.Map {
subv := NewViper()
// Cannot return error because the subv is empty.
_ = subv.MergeConfigMap(cast.ToStringMap(data))
return subv, nil
}
return nil, &configError{
code: errInvalidSubConfig,
msg: fmt.Sprintf("unexpected sub-config value kind for key:%s value:%v kind:%v)", key, data, reflect.TypeOf(data).Kind()),
}
}
func viperFromStringMap(data map[string]interface{}) *viper.Viper {
v := NewViper()
// Cannot return error because the subv is empty.
_ = v.MergeConfigMap(cast.ToStringMap(data))
return v
}