moby--moby/libnetwork/pkg/options/options.go

48 lines
1.1 KiB
Go
Raw Normal View History

// The options package provides a way to pass unstructured sets of options to a
// component expecting a strongly-typed configuration structure.
package options
import (
"fmt"
"reflect"
)
type NoSuchFieldError struct {
Field string
Type string
}
func (e NoSuchFieldError) Error() string {
return fmt.Sprintf("no field %q in type %q", e.Field, e.Type)
}
type CannotSetFieldError struct {
Field string
Type string
}
func (e CannotSetFieldError) Error() string {
return fmt.Sprintf("cannot set field %q of type %q", e.Field, e.Type)
}
type Generic map[string]interface{}
func NewGeneric() Generic {
return make(Generic)
}
func GenerateFromModel(options Generic, model interface{}) (interface{}, error) {
res := reflect.New(reflect.TypeOf(model))
for name, value := range options {
field := res.Elem().FieldByName(name)
if !field.IsValid() {
return nil, NoSuchFieldError{name, reflect.TypeOf(model).Name()}
}
if !field.CanSet() {
return nil, CannotSetFieldError{name, reflect.TypeOf(model).Name()}
}
field.Set(reflect.ValueOf(value))
}
return res.Interface(), nil
}