2019-06-17 09:48:05 +00:00
|
|
|
// Package flag implements encoding and decoding between flag arguments and a typed Configuration.
|
|
|
|
package flag
|
|
|
|
|
|
|
|
import (
|
2019-08-03 01:58:23 +00:00
|
|
|
"github.com/containous/traefik/v2/pkg/config/parser"
|
2019-06-17 09:48:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Decode decodes the given flag arguments into the given element.
|
|
|
|
// The operation goes through four stages roughly summarized as:
|
|
|
|
// flag arguments -> parsed map of flags
|
|
|
|
// map -> tree of untyped nodes
|
|
|
|
// untyped nodes -> nodes augmented with metadata such as kind (inferred from element)
|
|
|
|
// "typed" nodes -> typed element
|
|
|
|
func Decode(args []string, element interface{}) error {
|
|
|
|
ref, err := Parse(args, element)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-06-21 08:08:04 +00:00
|
|
|
return parser.Decode(ref, element, parser.DefaultRootName)
|
2019-06-17 09:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Encode encodes the configuration in element into the flags represented in the returned Flats.
|
|
|
|
// The operation goes through three stages roughly summarized as:
|
|
|
|
// typed configuration in element -> tree of untyped nodes
|
|
|
|
// untyped nodes -> nodes augmented with metadata such as kind (inferred from element)
|
|
|
|
// "typed" nodes -> flags with default values (determined by type/kind)
|
|
|
|
func Encode(element interface{}) ([]parser.Flat, error) {
|
|
|
|
if element == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2019-11-28 20:56:04 +00:00
|
|
|
etnOpts := parser.EncoderToNodeOpts{OmitEmpty: false, TagName: parser.TagLabel, AllowSliceAsStruct: true}
|
|
|
|
node, err := parser.EncodeToNode(element, parser.DefaultRootName, etnOpts)
|
2019-06-17 09:48:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-11-28 20:56:04 +00:00
|
|
|
metaOpts := parser.MetadataOpts{TagName: parser.TagLabel, AllowSliceAsStruct: true}
|
|
|
|
err = parser.AddMetadata(element, node, metaOpts)
|
2019-06-17 09:48:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-11-28 20:56:04 +00:00
|
|
|
flatOpts := parser.FlatOpts{Separator: ".", SkipRoot: true, TagName: parser.TagLabel}
|
|
|
|
return parser.EncodeToFlat(element, node, flatOpts)
|
2019-06-17 09:48:05 +00:00
|
|
|
}
|