mirror of
https://github.com/ent/ent.git
synced 2026-05-22 09:31:45 +03:00
Summary: Pull Request resolved: https://github.com/facebookexternal/fbc/pull/1192 Pull Request resolved: https://github.com/facebookincubator/ent/pull/11 Reviewed By: alexsn Differential Revision: D16377224 fbshipit-source-id: 07ca7436eb9b64fbe2299568560b91466b2417ba
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
package graph
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
"github.com/mitchellh/mapstructure"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// ValueMap models a .valueMap() gremlin response.
|
|
type ValueMap []map[string]interface{}
|
|
|
|
// Decode decodes a value map into v.
|
|
func (m ValueMap) Decode(v interface{}) error {
|
|
rv := reflect.ValueOf(v)
|
|
if rv.Kind() != reflect.Ptr {
|
|
return errors.New("cannot unmarshal into a non pointer")
|
|
}
|
|
if rv.IsNil() {
|
|
return errors.New("cannot unmarshal into a nil pointer")
|
|
}
|
|
|
|
if rv.Elem().Kind() != reflect.Slice {
|
|
v = &[]interface{}{v}
|
|
}
|
|
return m.decode(v)
|
|
}
|
|
|
|
func (m ValueMap) decode(v interface{}) error {
|
|
cfg := mapstructure.DecoderConfig{
|
|
DecodeHook: func(f, t reflect.Kind, data interface{}) (interface{}, error) {
|
|
if f == reflect.Slice && t != reflect.Slice {
|
|
rv := reflect.ValueOf(data)
|
|
if rv.Len() == 1 {
|
|
data = rv.Index(0).Interface()
|
|
}
|
|
}
|
|
return data, nil
|
|
},
|
|
Result: v,
|
|
TagName: "json",
|
|
}
|
|
|
|
dec, err := mapstructure.NewDecoder(&cfg)
|
|
if err != nil {
|
|
return errors.Wrap(err, "creating structure decoder")
|
|
}
|
|
if err := dec.Decode(m); err != nil {
|
|
return errors.Wrap(err, "decoding value map")
|
|
}
|
|
return nil
|
|
}
|