Adding the ability to get into a struct

This commit is contained in:
spf13 2014-06-26 17:58:55 -04:00
parent 7f5b583ff1
commit af373af72c
2 changed files with 49 additions and 0 deletions

View file

@ -20,6 +20,7 @@ import (
"github.com/BurntSushi/toml"
"github.com/kr/pretty"
"github.com/mitchellh/mapstructure"
"github.com/spf13/cast"
jww "github.com/spf13/jwalterweatherman"
"gopkg.in/yaml.v1"
@ -93,6 +94,28 @@ func GetStringMapString(key string) map[string]string {
return cast.ToStringMapString(Get(key))
}
// takes a map and uses reflection to convert it into the given Go native structure.
// rawVal must be a pointer to a struct.
func GetIntoStruct(key string, rawVal interface{}) error {
return mapstructure.Decode(Get(key), rawVal)
}
func GetAllIntoStruct(rawVal interface{}) (err error) {
err = mapstructure.Decode(defaults, rawVal)
if err != nil {
return
}
err = mapstructure.Decode(config, rawVal)
if err != nil {
return
}
err = mapstructure.Decode(override, rawVal)
if err != nil {
return
}
return
}
func find(key string) interface{} {
var val interface{}
var exists bool

View file

@ -128,3 +128,29 @@ func TestRecursiveAliases(t *testing.T) {
RegisterAlias("Baz", "Roo")
RegisterAlias("Roo", "baz")
}
func TestIntoStruct(t *testing.T) {
SetDefault("port", 1313)
Set("name", "Steve")
type config struct {
Port int
Name string
}
var C config
err := GetAllIntoStruct(&C)
if err != nil {
t.Fatalf("unable to decode into struct, %v", err)
}
assert.Equal(t, &C, &config{Name: "Steve", Port: 1313})
Set("port", 1234)
err = GetAllIntoStruct(&C)
if err != nil {
t.Fatalf("unable to decode into struct, %v", err)
}
assert.Equal(t, &C, &config{Name: "Steve", Port: 1234})
}