2021-01-17 21:46:25 +08:00
|
|
|
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
2018-09-16 10:51:02 +08:00
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
|
|
// If a copy of the MIT was not distributed with this file,
|
2019-02-02 16:18:25 +08:00
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2018-09-16 10:51:02 +08:00
|
|
|
|
|
|
|
package gconv
|
|
|
|
|
|
|
|
import (
|
2021-08-24 21:18:59 +08:00
|
|
|
"github.com/gogf/gf/errors/gcode"
|
2020-04-28 15:04:07 +08:00
|
|
|
"github.com/gogf/gf/errors/gerror"
|
2020-02-05 22:06:24 +08:00
|
|
|
"github.com/gogf/gf/internal/empty"
|
2020-10-21 14:09:16 +08:00
|
|
|
"github.com/gogf/gf/internal/json"
|
2020-11-08 14:25:17 +08:00
|
|
|
"github.com/gogf/gf/internal/structs"
|
2019-06-19 09:06:52 +08:00
|
|
|
"reflect"
|
|
|
|
"strings"
|
2019-07-03 22:09:35 +08:00
|
|
|
|
2020-03-11 23:17:41 +08:00
|
|
|
"github.com/gogf/gf/internal/utils"
|
2019-07-03 22:09:35 +08:00
|
|
|
)
|
|
|
|
|
2020-05-13 23:21:11 +08:00
|
|
|
// Struct maps the params key-value pairs to the corresponding struct object's attributes.
|
2021-03-23 17:53:20 +08:00
|
|
|
// The third parameter `mapping` is unnecessary, indicating the mapping rules between the
|
2020-04-28 15:04:07 +08:00
|
|
|
// custom key name and the attribute name(case sensitive).
|
2019-05-08 21:03:04 +08:00
|
|
|
//
|
|
|
|
// Note:
|
2021-03-23 17:53:20 +08:00
|
|
|
// 1. The `params` can be any type of map/struct, usually a map.
|
|
|
|
// 2. The `pointer` should be type of *struct/**struct, which is a pointer to struct object
|
2020-07-15 23:30:07 +08:00
|
|
|
// or struct pointer.
|
2019-05-28 21:41:00 +08:00
|
|
|
// 3. Only the public attributes of struct object can be mapped.
|
2021-03-23 17:53:20 +08:00
|
|
|
// 4. If `params` is a map, the key of the map `params` can be lowercase.
|
2019-05-08 21:03:04 +08:00
|
|
|
// It will automatically convert the first letter of the key to uppercase
|
|
|
|
// in mapping procedure to do the matching.
|
2019-05-28 21:41:00 +08:00
|
|
|
// It ignores the map key, if it does not match.
|
2020-04-28 15:04:07 +08:00
|
|
|
func Struct(params interface{}, pointer interface{}, mapping ...map[string]string) (err error) {
|
2021-08-19 11:28:25 +08:00
|
|
|
return Scan(params, pointer, mapping...)
|
2021-02-09 18:00:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// StructTag acts as Struct but also with support for priority tag feature, which retrieves the
|
|
|
|
// specified tags for `params` key-value items to struct attribute names mapping.
|
|
|
|
// The parameter `priorityTag` supports multiple tags that can be joined with char ','.
|
|
|
|
func StructTag(params interface{}, pointer interface{}, priorityTag string) (err error) {
|
|
|
|
return doStruct(params, pointer, nil, priorityTag)
|
2020-07-08 10:52:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// StructDeep do Struct function recursively.
|
2020-11-05 23:02:29 +08:00
|
|
|
// Deprecated, use Struct instead.
|
2020-07-08 10:52:45 +08:00
|
|
|
func StructDeep(params interface{}, pointer interface{}, mapping ...map[string]string) error {
|
2021-02-09 18:00:43 +08:00
|
|
|
var keyToAttributeNameMapping map[string]string
|
|
|
|
if len(mapping) > 0 {
|
|
|
|
keyToAttributeNameMapping = mapping[0]
|
|
|
|
}
|
|
|
|
return doStruct(params, pointer, keyToAttributeNameMapping, "")
|
2020-07-08 10:52:45 +08:00
|
|
|
}
|
|
|
|
|
2021-09-15 21:17:45 +08:00
|
|
|
// doStructWithJsonCheck checks if given `params` is JSON, it then uses json.Unmarshal doing the converting.
|
|
|
|
func doStructWithJsonCheck(params interface{}, pointer interface{}) (err error, ok bool) {
|
2020-10-21 14:09:16 +08:00
|
|
|
switch r := params.(type) {
|
|
|
|
case []byte:
|
|
|
|
if json.Valid(r) {
|
2020-11-05 22:19:34 +08:00
|
|
|
if rv, ok := pointer.(reflect.Value); ok {
|
|
|
|
if rv.Kind() == reflect.Ptr {
|
2021-09-15 21:17:45 +08:00
|
|
|
return json.UnmarshalUseNumber(r, rv.Interface()), true
|
2021-06-10 20:17:53 +08:00
|
|
|
} else if rv.CanAddr() {
|
2021-09-15 21:17:45 +08:00
|
|
|
return json.UnmarshalUseNumber(r, rv.Addr().Interface()), true
|
2020-11-05 22:19:34 +08:00
|
|
|
}
|
|
|
|
} else {
|
2021-09-15 21:17:45 +08:00
|
|
|
return json.UnmarshalUseNumber(r, pointer), true
|
2020-11-05 22:19:34 +08:00
|
|
|
}
|
2020-10-21 14:09:16 +08:00
|
|
|
}
|
|
|
|
case string:
|
|
|
|
if paramsBytes := []byte(r); json.Valid(paramsBytes) {
|
2020-11-05 22:19:34 +08:00
|
|
|
if rv, ok := pointer.(reflect.Value); ok {
|
|
|
|
if rv.Kind() == reflect.Ptr {
|
2021-09-15 21:17:45 +08:00
|
|
|
return json.UnmarshalUseNumber(paramsBytes, rv.Interface()), true
|
2021-06-10 20:17:53 +08:00
|
|
|
} else if rv.CanAddr() {
|
2021-09-15 21:17:45 +08:00
|
|
|
return json.UnmarshalUseNumber(paramsBytes, rv.Addr().Interface()), true
|
2020-11-05 22:19:34 +08:00
|
|
|
}
|
|
|
|
} else {
|
2021-09-15 21:17:45 +08:00
|
|
|
return json.UnmarshalUseNumber(paramsBytes, pointer), true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
// The `params` might be struct that implements interface function Interface, eg: gvar.Var.
|
|
|
|
if v, ok := params.(apiInterface); ok {
|
|
|
|
return doStructWithJsonCheck(v.Interface(), pointer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// doStruct is the core internal converting function for any data to struct.
|
|
|
|
func doStruct(params interface{}, pointer interface{}, mapping map[string]string, priorityTag string) (err error) {
|
|
|
|
if params == nil {
|
|
|
|
// If `params` is nil, no conversion.
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if pointer == nil {
|
|
|
|
return gerror.NewCode(gcode.CodeInvalidParameter, "object pointer cannot be nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
// Catch the panic, especially the reflection operation panics.
|
|
|
|
if exception := recover(); exception != nil {
|
|
|
|
if e, ok := exception.(errorStack); ok {
|
|
|
|
err = e
|
|
|
|
} else {
|
|
|
|
err = gerror.NewCodeSkipf(gcode.CodeInternalError, 1, "%+v", exception)
|
2020-11-05 22:19:34 +08:00
|
|
|
}
|
2020-10-21 14:09:16 +08:00
|
|
|
}
|
2021-09-15 21:17:45 +08:00
|
|
|
}()
|
|
|
|
|
|
|
|
// JSON content converting.
|
|
|
|
err, ok := doStructWithJsonCheck(params, pointer)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if ok {
|
|
|
|
return nil
|
2020-10-21 14:09:16 +08:00
|
|
|
}
|
|
|
|
|
2020-12-04 18:17:11 +08:00
|
|
|
var (
|
|
|
|
paramsReflectValue reflect.Value
|
2021-09-15 21:17:45 +08:00
|
|
|
paramsInterface interface{} // DO NOT use `params` directly as it might be type `reflect.Value`
|
2020-12-04 18:17:11 +08:00
|
|
|
pointerReflectValue reflect.Value
|
|
|
|
pointerReflectKind reflect.Kind
|
|
|
|
pointerElemReflectValue reflect.Value // The pointed element.
|
|
|
|
)
|
|
|
|
if v, ok := params.(reflect.Value); ok {
|
|
|
|
paramsReflectValue = v
|
|
|
|
} else {
|
|
|
|
paramsReflectValue = reflect.ValueOf(params)
|
2020-07-13 23:51:36 +08:00
|
|
|
}
|
2021-06-26 16:23:54 +08:00
|
|
|
paramsInterface = paramsReflectValue.Interface()
|
2020-12-04 18:17:11 +08:00
|
|
|
if v, ok := pointer.(reflect.Value); ok {
|
|
|
|
pointerReflectValue = v
|
|
|
|
pointerElemReflectValue = v
|
|
|
|
} else {
|
|
|
|
pointerReflectValue = reflect.ValueOf(pointer)
|
|
|
|
pointerReflectKind = pointerReflectValue.Kind()
|
|
|
|
if pointerReflectKind != reflect.Ptr {
|
2021-08-24 21:18:59 +08:00
|
|
|
return gerror.NewCodef(gcode.CodeInvalidParameter, "object pointer should be type of '*struct', but got '%v'", pointerReflectKind)
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
|
|
|
// Using IsNil on reflect.Ptr variable is OK.
|
2020-12-04 18:17:11 +08:00
|
|
|
if !pointerReflectValue.IsValid() || pointerReflectValue.IsNil() {
|
2021-08-24 21:18:59 +08:00
|
|
|
return gerror.NewCode(gcode.CodeInvalidParameter, "object pointer cannot be nil")
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
2020-12-04 18:17:11 +08:00
|
|
|
pointerElemReflectValue = pointerReflectValue.Elem()
|
|
|
|
}
|
2021-09-15 21:17:45 +08:00
|
|
|
|
2020-12-04 18:17:11 +08:00
|
|
|
// If `params` and `pointer` are the same type, the do directly assignment.
|
|
|
|
// For performance enhancement purpose.
|
|
|
|
if pointerElemReflectValue.IsValid() && pointerElemReflectValue.Type() == paramsReflectValue.Type() {
|
|
|
|
pointerElemReflectValue.Set(paramsReflectValue)
|
|
|
|
return nil
|
2019-07-29 19:52:05 +08:00
|
|
|
}
|
2020-07-06 21:18:25 +08:00
|
|
|
|
2021-01-17 20:56:38 +08:00
|
|
|
// Normal unmarshalling interfaces checks.
|
2021-06-26 16:23:54 +08:00
|
|
|
if err, ok := bindVarToReflectValueWithInterfaceCheck(pointerReflectValue, paramsInterface); ok {
|
2021-01-17 20:56:38 +08:00
|
|
|
return err
|
2020-07-13 23:13:50 +08:00
|
|
|
}
|
|
|
|
|
2019-11-07 11:32:25 +08:00
|
|
|
// It automatically creates struct object if necessary.
|
2021-03-23 17:53:20 +08:00
|
|
|
// For example, if `pointer` is **User, then `elem` is *User, which is a pointer to User.
|
2020-12-04 18:17:11 +08:00
|
|
|
if pointerElemReflectValue.Kind() == reflect.Ptr {
|
|
|
|
if !pointerElemReflectValue.IsValid() || pointerElemReflectValue.IsNil() {
|
|
|
|
e := reflect.New(pointerElemReflectValue.Type().Elem()).Elem()
|
|
|
|
pointerElemReflectValue.Set(e.Addr())
|
2020-01-20 19:56:42 +08:00
|
|
|
}
|
2021-01-17 20:56:38 +08:00
|
|
|
//if v, ok := pointerElemReflectValue.Interface().(apiUnmarshalValue); ok {
|
|
|
|
// return v.UnmarshalValue(params)
|
|
|
|
//}
|
|
|
|
// Note that it's `pointerElemReflectValue` here not `pointerReflectValue`.
|
2021-06-26 16:23:54 +08:00
|
|
|
if err, ok := bindVarToReflectValueWithInterfaceCheck(pointerElemReflectValue, paramsInterface); ok {
|
2021-01-17 20:56:38 +08:00
|
|
|
return err
|
2020-07-06 21:18:25 +08:00
|
|
|
}
|
2020-12-04 18:17:11 +08:00
|
|
|
// Retrieve its element, may be struct at last.
|
|
|
|
pointerElemReflectValue = pointerElemReflectValue.Elem()
|
|
|
|
}
|
|
|
|
|
|
|
|
// paramsMap is the map[string]interface{} type variable for params.
|
|
|
|
// DO NOT use MapDeep here.
|
2021-06-26 16:23:54 +08:00
|
|
|
paramsMap := Map(paramsInterface)
|
2020-12-04 18:17:11 +08:00
|
|
|
if paramsMap == nil {
|
2021-08-24 21:18:59 +08:00
|
|
|
return gerror.NewCodef(gcode.CodeInvalidParameter, "convert params to map failed: %v", params)
|
2020-07-06 21:18:25 +08:00
|
|
|
}
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
// It only performs one converting to the same attribute.
|
2020-06-06 15:31:04 +08:00
|
|
|
// doneMap is used to check repeated converting, its key is the real attribute name
|
|
|
|
// of the struct.
|
2019-11-07 11:32:25 +08:00
|
|
|
doneMap := make(map[string]struct{})
|
2020-06-16 11:37:00 +08:00
|
|
|
|
|
|
|
// The key of the attrMap is the attribute name of the struct,
|
2019-11-07 11:32:25 +08:00
|
|
|
// and the value is its replaced name for later comparison to improve performance.
|
2020-06-06 15:31:04 +08:00
|
|
|
var (
|
2020-07-14 21:34:29 +08:00
|
|
|
tempName string
|
|
|
|
elemFieldType reflect.StructField
|
|
|
|
elemFieldValue reflect.Value
|
2020-12-04 18:17:11 +08:00
|
|
|
elemType = pointerElemReflectValue.Type()
|
2020-07-14 21:34:29 +08:00
|
|
|
attrMap = make(map[string]string)
|
2020-06-06 15:31:04 +08:00
|
|
|
)
|
2020-12-04 18:17:11 +08:00
|
|
|
for i := 0; i < pointerElemReflectValue.NumField(); i++ {
|
2020-07-14 21:34:29 +08:00
|
|
|
elemFieldType = elemType.Field(i)
|
2019-06-19 09:06:52 +08:00
|
|
|
// Only do converting to public attributes.
|
2020-07-14 21:34:29 +08:00
|
|
|
if !utils.IsLetterUpper(elemFieldType.Name[0]) {
|
2019-06-19 09:06:52 +08:00
|
|
|
continue
|
|
|
|
}
|
2020-11-19 14:52:19 +08:00
|
|
|
// Maybe it's struct/*struct embedded.
|
2020-11-05 23:02:29 +08:00
|
|
|
if elemFieldType.Anonymous {
|
2020-12-04 18:17:11 +08:00
|
|
|
elemFieldValue = pointerElemReflectValue.Field(i)
|
2020-07-14 21:34:29 +08:00
|
|
|
// Ignore the interface attribute if it's nil.
|
|
|
|
if elemFieldValue.Kind() == reflect.Interface {
|
|
|
|
elemFieldValue = elemFieldValue.Elem()
|
|
|
|
if !elemFieldValue.IsValid() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
2021-02-09 18:00:43 +08:00
|
|
|
if err = doStruct(paramsMap, elemFieldValue, mapping, priorityTag); err != nil {
|
2020-07-08 10:52:45 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
2020-07-14 21:34:29 +08:00
|
|
|
tempName = elemFieldType.Name
|
2020-11-08 00:06:05 +08:00
|
|
|
attrMap[tempName] = utils.RemoveSymbols(tempName)
|
2020-07-08 10:52:45 +08:00
|
|
|
}
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
2019-10-26 10:58:07 +08:00
|
|
|
if len(attrMap) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2020-06-16 11:37:00 +08:00
|
|
|
|
|
|
|
// The key of the tagMap is the attribute name of the struct,
|
|
|
|
// and the value is its replaced tag name for later comparison to improve performance.
|
2021-02-09 18:00:43 +08:00
|
|
|
var (
|
|
|
|
tagMap = make(map[string]string)
|
|
|
|
priorityTagArray []string
|
|
|
|
)
|
|
|
|
if priorityTag != "" {
|
|
|
|
priorityTagArray = append(utils.SplitAndTrim(priorityTag, ","), StructTagPriority...)
|
|
|
|
} else {
|
|
|
|
priorityTagArray = StructTagPriority
|
|
|
|
}
|
|
|
|
tagToNameMap, err := structs.TagMapName(pointerElemReflectValue, priorityTagArray)
|
2020-11-08 14:25:17 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-02-09 18:00:43 +08:00
|
|
|
for tagName, attributeName := range tagToNameMap {
|
|
|
|
// If there's something else in the tag string,
|
|
|
|
// it uses the first part which is split using char ','.
|
|
|
|
// Eg:
|
|
|
|
// orm:"id, priority"
|
|
|
|
// orm:"name, with:uid=id"
|
|
|
|
tagMap[attributeName] = utils.RemoveSymbols(strings.Split(tagName, ",")[0])
|
2020-06-16 11:37:00 +08:00
|
|
|
}
|
|
|
|
|
2020-06-06 15:31:04 +08:00
|
|
|
var (
|
|
|
|
attrName string
|
|
|
|
checkName string
|
|
|
|
)
|
2019-06-19 09:06:52 +08:00
|
|
|
for mapK, mapV := range paramsMap {
|
2019-11-07 11:32:25 +08:00
|
|
|
attrName = ""
|
2020-11-19 14:52:19 +08:00
|
|
|
// It firstly checks the passed mapping rules.
|
2021-02-09 18:00:43 +08:00
|
|
|
if len(mapping) > 0 {
|
|
|
|
if passedAttrKey, ok := mapping[mapK]; ok {
|
2020-11-19 14:52:19 +08:00
|
|
|
attrName = passedAttrKey
|
2020-06-06 15:31:04 +08:00
|
|
|
}
|
|
|
|
}
|
2020-11-19 14:52:19 +08:00
|
|
|
// It secondly checks the predefined tags and matching rules.
|
2020-07-08 10:52:45 +08:00
|
|
|
if attrName == "" {
|
2020-11-19 14:52:19 +08:00
|
|
|
checkName = utils.RemoveSymbols(mapK)
|
|
|
|
// Loop to find the matched attribute name with or without
|
|
|
|
// string cases and chars like '-'/'_'/'.'/' '.
|
|
|
|
|
|
|
|
// Matching the parameters to struct tag names.
|
2021-03-23 17:53:20 +08:00
|
|
|
// The `tagV` is the attribute name of the struct.
|
2020-11-19 14:52:19 +08:00
|
|
|
for attrKey, cmpKey := range tagMap {
|
2020-07-08 10:52:45 +08:00
|
|
|
if strings.EqualFold(checkName, cmpKey) {
|
|
|
|
attrName = attrKey
|
|
|
|
break
|
|
|
|
}
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
2020-11-19 14:52:19 +08:00
|
|
|
// Matching the parameters to struct attributes.
|
|
|
|
if attrName == "" {
|
|
|
|
for attrKey, cmpKey := range attrMap {
|
|
|
|
// Eg:
|
|
|
|
// UserName eq user_name
|
|
|
|
// User-Name eq username
|
|
|
|
// username eq userName
|
|
|
|
// etc.
|
|
|
|
if strings.EqualFold(checkName, cmpKey) {
|
|
|
|
attrName = attrKey
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-07 11:32:25 +08:00
|
|
|
}
|
2020-06-06 15:31:04 +08:00
|
|
|
|
2020-11-19 14:52:19 +08:00
|
|
|
// No matching, it gives up this attribute converting.
|
2019-11-07 11:32:25 +08:00
|
|
|
if attrName == "" {
|
2019-06-19 09:06:52 +08:00
|
|
|
continue
|
|
|
|
}
|
2020-06-06 15:31:04 +08:00
|
|
|
// If the attribute name is already checked converting, then skip it.
|
|
|
|
if _, ok := doneMap[attrName]; ok {
|
|
|
|
continue
|
|
|
|
}
|
2019-11-07 11:32:25 +08:00
|
|
|
// Mark it done.
|
|
|
|
doneMap[attrName] = struct{}{}
|
2021-09-15 21:17:45 +08:00
|
|
|
if err := bindVarToStructAttr(pointerElemReflectValue, attrName, mapV, mapping); err != nil {
|
2019-06-19 09:06:52 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
2018-09-16 10:51:02 +08:00
|
|
|
}
|
|
|
|
|
2020-01-20 19:56:42 +08:00
|
|
|
// bindVarToStructAttr sets value to struct object attribute by name.
|
2021-09-15 21:17:45 +08:00
|
|
|
func bindVarToStructAttr(elem reflect.Value, name string, value interface{}, mapping map[string]string) (err error) {
|
2019-06-19 09:06:52 +08:00
|
|
|
structFieldValue := elem.FieldByName(name)
|
|
|
|
if !structFieldValue.IsValid() {
|
|
|
|
return nil
|
|
|
|
}
|
2020-01-20 19:56:42 +08:00
|
|
|
// CanSet checks whether attribute is public accessible.
|
2019-06-19 09:06:52 +08:00
|
|
|
if !structFieldValue.CanSet() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
defer func() {
|
2021-06-26 16:23:54 +08:00
|
|
|
if exception := recover(); exception != nil {
|
2021-09-15 21:17:45 +08:00
|
|
|
if err = bindVarToReflectValue(structFieldValue, value, mapping); err != nil {
|
2021-08-24 21:18:59 +08:00
|
|
|
err = gerror.WrapCodef(gcode.CodeInternalError, err, `error binding value to attribute "%s"`, name)
|
2020-10-20 13:36:43 +08:00
|
|
|
}
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
|
|
|
}()
|
2020-12-01 15:57:06 +08:00
|
|
|
// Directly converting.
|
2020-02-05 22:06:24 +08:00
|
|
|
if empty.IsNil(value) {
|
2020-02-05 22:02:49 +08:00
|
|
|
structFieldValue.Set(reflect.Zero(structFieldValue.Type()))
|
|
|
|
} else {
|
2021-06-26 16:23:54 +08:00
|
|
|
structFieldValue.Set(reflect.ValueOf(doConvert(
|
|
|
|
doConvertInput{
|
|
|
|
FromValue: value,
|
|
|
|
ToTypeName: structFieldValue.Type().String(),
|
|
|
|
ReferValue: structFieldValue,
|
|
|
|
},
|
|
|
|
)))
|
2020-02-05 22:02:49 +08:00
|
|
|
}
|
2019-06-19 09:06:52 +08:00
|
|
|
return nil
|
2018-09-16 10:51:02 +08:00
|
|
|
}
|
2018-09-28 09:58:01 +08:00
|
|
|
|
2021-09-15 21:17:45 +08:00
|
|
|
// bindVarToReflectValueWithInterfaceCheck does bind using common interfaces checks.
|
2021-01-17 20:56:38 +08:00
|
|
|
func bindVarToReflectValueWithInterfaceCheck(reflectValue reflect.Value, value interface{}) (err error, ok bool) {
|
|
|
|
var pointer interface{}
|
|
|
|
if reflectValue.Kind() != reflect.Ptr && reflectValue.CanAddr() {
|
2021-01-17 22:06:07 +08:00
|
|
|
reflectValueAddr := reflectValue.Addr()
|
|
|
|
if reflectValueAddr.IsNil() || !reflectValueAddr.IsValid() {
|
|
|
|
return nil, false
|
|
|
|
}
|
2021-01-17 20:56:38 +08:00
|
|
|
// Not a pointer, but can token address, that makes it can be unmarshalled.
|
|
|
|
pointer = reflectValue.Addr().Interface()
|
|
|
|
} else {
|
2021-01-17 22:06:07 +08:00
|
|
|
if reflectValue.IsNil() || !reflectValue.IsValid() {
|
|
|
|
return nil, false
|
|
|
|
}
|
2021-01-17 20:56:38 +08:00
|
|
|
pointer = reflectValue.Interface()
|
|
|
|
}
|
2021-06-26 16:23:54 +08:00
|
|
|
// UnmarshalValue.
|
2021-01-17 20:56:38 +08:00
|
|
|
if v, ok := pointer.(apiUnmarshalValue); ok {
|
|
|
|
return v.UnmarshalValue(value), ok
|
|
|
|
}
|
2021-06-26 16:23:54 +08:00
|
|
|
// UnmarshalText.
|
2021-01-17 20:56:38 +08:00
|
|
|
if v, ok := pointer.(apiUnmarshalText); ok {
|
2021-08-17 16:51:29 +08:00
|
|
|
var valueBytes []byte
|
2021-01-17 20:56:38 +08:00
|
|
|
if b, ok := value.([]byte); ok {
|
2021-08-17 16:51:29 +08:00
|
|
|
valueBytes = b
|
|
|
|
} else if s, ok := value.(string); ok {
|
|
|
|
valueBytes = []byte(s)
|
|
|
|
}
|
|
|
|
if len(valueBytes) > 0 {
|
|
|
|
return v.UnmarshalText(valueBytes), ok
|
2020-12-01 15:57:06 +08:00
|
|
|
}
|
|
|
|
}
|
2021-08-17 16:30:47 +08:00
|
|
|
// UnmarshalJSON.
|
|
|
|
if v, ok := pointer.(apiUnmarshalJSON); ok {
|
2021-08-17 16:51:29 +08:00
|
|
|
var valueBytes []byte
|
2021-08-17 16:30:47 +08:00
|
|
|
if b, ok := value.([]byte); ok {
|
2021-08-17 16:51:29 +08:00
|
|
|
valueBytes = b
|
|
|
|
} else if s, ok := value.(string); ok {
|
|
|
|
valueBytes = []byte(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(valueBytes) > 0 {
|
|
|
|
// If it is not a valid JSON string, it then adds char `"` on its both sides to make it is.
|
|
|
|
if !json.Valid(valueBytes) {
|
|
|
|
newValueBytes := make([]byte, len(valueBytes)+2)
|
|
|
|
newValueBytes[0] = '"'
|
|
|
|
newValueBytes[len(newValueBytes)-1] = '"'
|
|
|
|
copy(newValueBytes[1:], valueBytes)
|
|
|
|
valueBytes = newValueBytes
|
|
|
|
}
|
|
|
|
return v.UnmarshalJSON(valueBytes), ok
|
2021-08-17 16:30:47 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-17 20:56:38 +08:00
|
|
|
if v, ok := pointer.(apiSet); ok {
|
|
|
|
v.Set(value)
|
|
|
|
return nil, ok
|
|
|
|
}
|
2020-12-01 15:57:06 +08:00
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
2021-03-23 17:53:20 +08:00
|
|
|
// bindVarToReflectValue sets `value` to reflect value object `structFieldValue`.
|
2021-09-15 21:17:45 +08:00
|
|
|
func bindVarToReflectValue(structFieldValue reflect.Value, value interface{}, mapping map[string]string) (err error) {
|
|
|
|
// JSON content converting.
|
|
|
|
err, ok := doStructWithJsonCheck(value, structFieldValue)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Common interface check.
|
2020-12-01 15:57:06 +08:00
|
|
|
if err, ok := bindVarToReflectValueWithInterfaceCheck(structFieldValue, value); ok {
|
|
|
|
return err
|
|
|
|
}
|
2021-09-15 21:17:45 +08:00
|
|
|
|
2020-06-16 20:18:40 +08:00
|
|
|
kind := structFieldValue.Kind()
|
|
|
|
// Converting using interface, for some kinds.
|
|
|
|
switch kind {
|
|
|
|
case reflect.Slice, reflect.Array, reflect.Ptr, reflect.Interface:
|
|
|
|
if !structFieldValue.IsNil() {
|
|
|
|
if v, ok := structFieldValue.Interface().(apiSet); ok {
|
|
|
|
v.Set(value)
|
|
|
|
return nil
|
2020-06-16 19:30:35 +08:00
|
|
|
}
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
2020-02-05 22:02:49 +08:00
|
|
|
}
|
2020-06-16 19:30:35 +08:00
|
|
|
|
2020-06-16 17:38:05 +08:00
|
|
|
// Converting by kind.
|
2020-06-16 20:18:40 +08:00
|
|
|
switch kind {
|
2021-08-19 11:28:25 +08:00
|
|
|
case reflect.Map:
|
|
|
|
return doMapToMap(value, structFieldValue, mapping)
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
case reflect.Struct:
|
2020-07-08 10:52:45 +08:00
|
|
|
// Recursively converting for struct attribute.
|
2021-09-15 21:17:45 +08:00
|
|
|
if err = doStruct(value, structFieldValue, nil, ""); err != nil {
|
2020-03-06 23:22:08 +08:00
|
|
|
// Note there's reflect conversion mechanism here.
|
|
|
|
structFieldValue.Set(reflect.ValueOf(value).Convert(structFieldValue.Type()))
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
2020-07-08 10:52:45 +08:00
|
|
|
|
2020-01-20 21:25:55 +08:00
|
|
|
// Note that the slice element might be type of struct,
|
|
|
|
// so it uses Struct function doing the converting internally.
|
2019-11-27 23:38:33 +08:00
|
|
|
case reflect.Slice, reflect.Array:
|
2019-06-19 09:06:52 +08:00
|
|
|
a := reflect.Value{}
|
|
|
|
v := reflect.ValueOf(value)
|
|
|
|
if v.Kind() == reflect.Slice || v.Kind() == reflect.Array {
|
2019-11-28 08:46:38 +08:00
|
|
|
a = reflect.MakeSlice(structFieldValue.Type(), v.Len(), v.Len())
|
2019-06-19 09:06:52 +08:00
|
|
|
if v.Len() > 0 {
|
|
|
|
t := a.Index(0).Type()
|
|
|
|
for i := 0; i < v.Len(); i++ {
|
|
|
|
if t.Kind() == reflect.Ptr {
|
|
|
|
e := reflect.New(t.Elem()).Elem()
|
2021-09-15 21:17:45 +08:00
|
|
|
if err = doStruct(v.Index(i).Interface(), e, nil, ""); err != nil {
|
2020-03-06 23:22:08 +08:00
|
|
|
// Note there's reflect conversion mechanism here.
|
|
|
|
e.Set(reflect.ValueOf(v.Index(i).Interface()).Convert(t))
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
|
|
|
a.Index(i).Set(e.Addr())
|
|
|
|
} else {
|
|
|
|
e := reflect.New(t).Elem()
|
2021-09-15 21:17:45 +08:00
|
|
|
if err = doStruct(v.Index(i).Interface(), e, nil, ""); err != nil {
|
2020-03-06 23:22:08 +08:00
|
|
|
// Note there's reflect conversion mechanism here.
|
|
|
|
e.Set(reflect.ValueOf(v.Index(i).Interface()).Convert(t))
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
|
|
|
a.Index(i).Set(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
a = reflect.MakeSlice(structFieldValue.Type(), 1, 1)
|
|
|
|
t := a.Index(0).Type()
|
|
|
|
if t.Kind() == reflect.Ptr {
|
2021-09-15 21:17:45 +08:00
|
|
|
// Pointer element.
|
2019-06-19 09:06:52 +08:00
|
|
|
e := reflect.New(t.Elem()).Elem()
|
2021-09-15 21:17:45 +08:00
|
|
|
if err = doStruct(value, e, nil, ""); err != nil {
|
2020-03-06 23:22:08 +08:00
|
|
|
// Note there's reflect conversion mechanism here.
|
|
|
|
e.Set(reflect.ValueOf(value).Convert(t))
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
|
|
|
a.Index(0).Set(e.Addr())
|
|
|
|
} else {
|
2021-09-15 21:17:45 +08:00
|
|
|
// Just consider it as struct element. (Although it might be other types but not basic types, eg: map)
|
2019-06-19 09:06:52 +08:00
|
|
|
e := reflect.New(t).Elem()
|
2021-09-15 21:17:45 +08:00
|
|
|
if err = doStruct(value, e, nil, ""); err != nil {
|
|
|
|
return err
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
|
|
|
a.Index(0).Set(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
structFieldValue.Set(a)
|
2019-01-14 13:55:07 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
case reflect.Ptr:
|
2020-01-20 19:56:42 +08:00
|
|
|
item := reflect.New(structFieldValue.Type().Elem())
|
2020-12-01 15:57:06 +08:00
|
|
|
if err, ok := bindVarToReflectValueWithInterfaceCheck(item, value); ok {
|
2020-01-20 19:56:42 +08:00
|
|
|
structFieldValue.Set(item)
|
2020-03-06 23:22:08 +08:00
|
|
|
return err
|
2020-01-20 19:56:42 +08:00
|
|
|
}
|
|
|
|
elem := item.Elem()
|
2021-09-15 21:17:45 +08:00
|
|
|
if err = bindVarToReflectValue(elem, value, mapping); err == nil {
|
2020-01-20 19:56:42 +08:00
|
|
|
structFieldValue.Set(elem.Addr())
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
2019-01-14 13:55:07 +08:00
|
|
|
|
2020-03-06 23:22:08 +08:00
|
|
|
// It mainly and specially handles the interface of nil value.
|
2019-08-01 19:53:28 +08:00
|
|
|
case reflect.Interface:
|
|
|
|
if value == nil {
|
2020-03-06 23:22:08 +08:00
|
|
|
// Specially.
|
2019-08-01 19:53:28 +08:00
|
|
|
structFieldValue.Set(reflect.ValueOf((*interface{})(nil)))
|
|
|
|
} else {
|
2020-03-06 23:22:08 +08:00
|
|
|
// Note there's reflect conversion mechanism here.
|
|
|
|
structFieldValue.Set(reflect.ValueOf(value).Convert(structFieldValue.Type()))
|
2019-08-01 19:53:28 +08:00
|
|
|
}
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
default:
|
2020-01-20 19:56:42 +08:00
|
|
|
defer func() {
|
2021-06-26 16:23:54 +08:00
|
|
|
if exception := recover(); exception != nil {
|
2021-07-20 23:02:02 +08:00
|
|
|
err = gerror.NewCodef(
|
2021-08-24 21:18:59 +08:00
|
|
|
gcode.CodeInternalError,
|
2021-07-20 23:02:02 +08:00
|
|
|
`cannot convert value "%+v" to type "%s":%+v`,
|
|
|
|
value,
|
|
|
|
structFieldValue.Type().String(),
|
|
|
|
exception,
|
2020-01-20 19:56:42 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}()
|
2021-03-23 17:53:20 +08:00
|
|
|
// It here uses reflect converting `value` to type of the attribute and assigns
|
2020-03-06 23:22:08 +08:00
|
|
|
// the result value to the attribute. It might fail and panic if the usual Go
|
|
|
|
// conversion rules do not allow conversion.
|
|
|
|
structFieldValue.Set(reflect.ValueOf(value).Convert(structFieldValue.Type()))
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
|
|
|
return nil
|
2018-10-09 10:05:55 +08:00
|
|
|
}
|