mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 03:07:45 +08:00
580 lines
17 KiB
Go
580 lines
17 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// 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,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package gconv
|
|
|
|
import (
|
|
"reflect"
|
|
"strings"
|
|
|
|
"github.com/gogf/gf/v2/internal/empty"
|
|
"github.com/gogf/gf/v2/internal/json"
|
|
"github.com/gogf/gf/v2/internal/utils"
|
|
"github.com/gogf/gf/v2/util/gtag"
|
|
)
|
|
|
|
type recursiveType string
|
|
|
|
const (
|
|
recursiveTypeAuto recursiveType = "auto"
|
|
recursiveTypeTrue recursiveType = "true"
|
|
)
|
|
|
|
// MapOption specifies the option for map converting.
|
|
type MapOption struct {
|
|
// Deep marks doing Map function recursively, which means if the attribute of given converting value
|
|
// is also a struct/*struct, it automatically calls Map function on this attribute converting it to
|
|
// a map[string]interface{} type variable.
|
|
Deep bool
|
|
|
|
// OmitEmpty ignores the attributes that has json `omitempty` tag.
|
|
OmitEmpty bool
|
|
|
|
// Tags specifies the converted map key name by struct tag name.
|
|
Tags []string
|
|
}
|
|
|
|
// Map converts any variable `value` to map[string]interface{}. If the parameter `value` is not a
|
|
// map/struct/*struct type, then the conversion will fail and returns nil.
|
|
//
|
|
// If `value` is a struct/*struct object, the second parameter `tags` specifies the most priority
|
|
// tags that will be detected, otherwise it detects the tags in order of:
|
|
// gconv, json, field name.
|
|
func Map(value interface{}, option ...MapOption) map[string]interface{} {
|
|
return doMapConvert(value, recursiveTypeAuto, false, option...)
|
|
}
|
|
|
|
// MapDeep does Map function recursively, which means if the attribute of `value`
|
|
// is also a struct/*struct, calls Map function on this attribute converting it to
|
|
// a map[string]interface{} type variable.
|
|
// Deprecated: used Map instead.
|
|
func MapDeep(value interface{}, tags ...string) map[string]interface{} {
|
|
return doMapConvert(value, recursiveTypeTrue, false, MapOption{
|
|
Deep: true,
|
|
Tags: tags,
|
|
})
|
|
}
|
|
|
|
// doMapConvert implements the map converting.
|
|
// It automatically checks and converts json string to map if `value` is string/[]byte.
|
|
//
|
|
// TODO completely implement the recursive converting for all types, especially the map.
|
|
func doMapConvert(value interface{}, recursive recursiveType, mustMapReturn bool, option ...MapOption) map[string]interface{} {
|
|
if value == nil {
|
|
return nil
|
|
}
|
|
// It redirects to its underlying value if it has implemented interface iVal.
|
|
if v, ok := value.(iVal); ok {
|
|
value = v.Val()
|
|
}
|
|
|
|
var (
|
|
usedOption = getUsedMapOption(option...)
|
|
newTags = gtag.StructTagPriority
|
|
)
|
|
if usedOption.Deep {
|
|
recursive = recursiveTypeTrue
|
|
}
|
|
switch len(usedOption.Tags) {
|
|
case 0:
|
|
// No need handling.
|
|
case 1:
|
|
newTags = append(strings.Split(usedOption.Tags[0], ","), gtag.StructTagPriority...)
|
|
default:
|
|
newTags = append(usedOption.Tags, gtag.StructTagPriority...)
|
|
}
|
|
// Assert the common combination of types, and finally it uses reflection.
|
|
dataMap := make(map[string]interface{})
|
|
switch r := value.(type) {
|
|
case string:
|
|
// If it is a JSON string, automatically unmarshal it!
|
|
if len(r) > 0 && r[0] == '{' && r[len(r)-1] == '}' {
|
|
if err := json.UnmarshalUseNumber([]byte(r), &dataMap); err != nil {
|
|
return nil
|
|
}
|
|
} else {
|
|
return nil
|
|
}
|
|
case []byte:
|
|
// If it is a JSON string, automatically unmarshal it!
|
|
if len(r) > 0 && r[0] == '{' && r[len(r)-1] == '}' {
|
|
if err := json.UnmarshalUseNumber(r, &dataMap); err != nil {
|
|
return nil
|
|
}
|
|
} else {
|
|
return nil
|
|
}
|
|
case map[interface{}]interface{}:
|
|
recursiveOption := usedOption
|
|
recursiveOption.Tags = newTags
|
|
for k, v := range r {
|
|
dataMap[String(k)] = doMapConvertForMapOrStructValue(
|
|
doMapConvertForMapOrStructValueInput{
|
|
IsRoot: false,
|
|
Value: v,
|
|
RecursiveType: recursive,
|
|
RecursiveOption: recursive == recursiveTypeTrue,
|
|
Option: recursiveOption,
|
|
},
|
|
)
|
|
}
|
|
case map[interface{}]string:
|
|
for k, v := range r {
|
|
dataMap[String(k)] = v
|
|
}
|
|
case map[interface{}]int:
|
|
for k, v := range r {
|
|
dataMap[String(k)] = v
|
|
}
|
|
case map[interface{}]uint:
|
|
for k, v := range r {
|
|
dataMap[String(k)] = v
|
|
}
|
|
case map[interface{}]float32:
|
|
for k, v := range r {
|
|
dataMap[String(k)] = v
|
|
}
|
|
case map[interface{}]float64:
|
|
for k, v := range r {
|
|
dataMap[String(k)] = v
|
|
}
|
|
case map[string]bool:
|
|
for k, v := range r {
|
|
dataMap[k] = v
|
|
}
|
|
case map[string]int:
|
|
for k, v := range r {
|
|
dataMap[k] = v
|
|
}
|
|
case map[string]uint:
|
|
for k, v := range r {
|
|
dataMap[k] = v
|
|
}
|
|
case map[string]float32:
|
|
for k, v := range r {
|
|
dataMap[k] = v
|
|
}
|
|
case map[string]float64:
|
|
for k, v := range r {
|
|
dataMap[k] = v
|
|
}
|
|
case map[string]string:
|
|
for k, v := range r {
|
|
dataMap[k] = v
|
|
}
|
|
case map[string]interface{}:
|
|
if recursive == recursiveTypeTrue {
|
|
recursiveOption := usedOption
|
|
recursiveOption.Tags = newTags
|
|
// A copy of current map.
|
|
for k, v := range r {
|
|
dataMap[k] = doMapConvertForMapOrStructValue(
|
|
doMapConvertForMapOrStructValueInput{
|
|
IsRoot: false,
|
|
Value: v,
|
|
RecursiveType: recursive,
|
|
RecursiveOption: recursive == recursiveTypeTrue,
|
|
Option: recursiveOption,
|
|
},
|
|
)
|
|
}
|
|
} else {
|
|
// It returns the map directly without any changing.
|
|
return r
|
|
}
|
|
case map[int]interface{}:
|
|
recursiveOption := usedOption
|
|
recursiveOption.Tags = newTags
|
|
for k, v := range r {
|
|
dataMap[String(k)] = doMapConvertForMapOrStructValue(
|
|
doMapConvertForMapOrStructValueInput{
|
|
IsRoot: false,
|
|
Value: v,
|
|
RecursiveType: recursive,
|
|
RecursiveOption: recursive == recursiveTypeTrue,
|
|
Option: recursiveOption,
|
|
},
|
|
)
|
|
}
|
|
case map[int]string:
|
|
for k, v := range r {
|
|
dataMap[String(k)] = v
|
|
}
|
|
case map[uint]string:
|
|
for k, v := range r {
|
|
dataMap[String(k)] = v
|
|
}
|
|
|
|
default:
|
|
// Not a common type, it then uses reflection for conversion.
|
|
var reflectValue reflect.Value
|
|
if v, ok := value.(reflect.Value); ok {
|
|
reflectValue = v
|
|
} else {
|
|
reflectValue = reflect.ValueOf(value)
|
|
}
|
|
reflectKind := reflectValue.Kind()
|
|
// If it is a pointer, we should find its real data type.
|
|
for reflectKind == reflect.Ptr {
|
|
reflectValue = reflectValue.Elem()
|
|
reflectKind = reflectValue.Kind()
|
|
}
|
|
switch reflectKind {
|
|
// If `value` is type of array, it converts the value of even number index as its key and
|
|
// the value of odd number index as its corresponding value, for example:
|
|
// []string{"k1","v1","k2","v2"} => map[string]interface{}{"k1":"v1", "k2":"v2"}
|
|
// []string{"k1","v1","k2"} => map[string]interface{}{"k1":"v1", "k2":nil}
|
|
case reflect.Slice, reflect.Array:
|
|
length := reflectValue.Len()
|
|
for i := 0; i < length; i += 2 {
|
|
if i+1 < length {
|
|
dataMap[String(reflectValue.Index(i).Interface())] = reflectValue.Index(i + 1).Interface()
|
|
} else {
|
|
dataMap[String(reflectValue.Index(i).Interface())] = nil
|
|
}
|
|
}
|
|
case reflect.Map, reflect.Struct, reflect.Interface:
|
|
recursiveOption := usedOption
|
|
recursiveOption.Tags = newTags
|
|
convertedValue := doMapConvertForMapOrStructValue(
|
|
doMapConvertForMapOrStructValueInput{
|
|
IsRoot: true,
|
|
Value: value,
|
|
RecursiveType: recursive,
|
|
RecursiveOption: recursive == recursiveTypeTrue,
|
|
Option: recursiveOption,
|
|
MustMapReturn: mustMapReturn,
|
|
},
|
|
)
|
|
if m, ok := convertedValue.(map[string]interface{}); ok {
|
|
return m
|
|
}
|
|
return nil
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
return dataMap
|
|
}
|
|
|
|
func getUsedMapOption(option ...MapOption) MapOption {
|
|
var usedOption MapOption
|
|
if len(option) > 0 {
|
|
usedOption = option[0]
|
|
}
|
|
return usedOption
|
|
}
|
|
|
|
type doMapConvertForMapOrStructValueInput struct {
|
|
IsRoot bool // It returns directly if it is not root and with no recursive converting.
|
|
Value interface{} // Current operation value.
|
|
RecursiveType recursiveType // The type from top function entry.
|
|
RecursiveOption bool // Whether convert recursively for `current` operation.
|
|
Option MapOption // Map converting option.
|
|
MustMapReturn bool // Must return map instead of Value when empty.
|
|
}
|
|
|
|
func doMapConvertForMapOrStructValue(in doMapConvertForMapOrStructValueInput) interface{} {
|
|
if !in.IsRoot && !in.RecursiveOption {
|
|
return in.Value
|
|
}
|
|
|
|
var reflectValue reflect.Value
|
|
if v, ok := in.Value.(reflect.Value); ok {
|
|
reflectValue = v
|
|
in.Value = v.Interface()
|
|
} else {
|
|
reflectValue = reflect.ValueOf(in.Value)
|
|
}
|
|
reflectKind := reflectValue.Kind()
|
|
// If it is a pointer, we should find its real data type.
|
|
for reflectKind == reflect.Ptr {
|
|
reflectValue = reflectValue.Elem()
|
|
reflectKind = reflectValue.Kind()
|
|
}
|
|
switch reflectKind {
|
|
case reflect.Map:
|
|
var (
|
|
mapIter = reflectValue.MapRange()
|
|
dataMap = make(map[string]interface{})
|
|
)
|
|
for mapIter.Next() {
|
|
var (
|
|
mapKeyValue = mapIter.Value()
|
|
mapValue interface{}
|
|
)
|
|
switch {
|
|
case mapKeyValue.IsZero():
|
|
if utils.CanCallIsNil(mapKeyValue) && mapKeyValue.IsNil() {
|
|
// quick check for nil value.
|
|
mapValue = nil
|
|
} else {
|
|
// in case of:
|
|
// exception recovered: reflect: call of reflect.Value.Interface on zero Value
|
|
mapValue = reflect.New(mapKeyValue.Type()).Elem().Interface()
|
|
}
|
|
default:
|
|
mapValue = mapKeyValue.Interface()
|
|
}
|
|
dataMap[String(mapIter.Key().Interface())] = doMapConvertForMapOrStructValue(
|
|
doMapConvertForMapOrStructValueInput{
|
|
IsRoot: false,
|
|
Value: mapValue,
|
|
RecursiveType: in.RecursiveType,
|
|
RecursiveOption: in.RecursiveType == recursiveTypeTrue,
|
|
Option: in.Option,
|
|
},
|
|
)
|
|
}
|
|
return dataMap
|
|
|
|
case reflect.Struct:
|
|
var dataMap = make(map[string]interface{})
|
|
// Map converting interface check.
|
|
if v, ok := in.Value.(iMapStrAny); ok {
|
|
// Value copy, in case of concurrent safety.
|
|
for mapK, mapV := range v.MapStrAny() {
|
|
if in.RecursiveOption {
|
|
dataMap[mapK] = doMapConvertForMapOrStructValue(
|
|
doMapConvertForMapOrStructValueInput{
|
|
IsRoot: false,
|
|
Value: mapV,
|
|
RecursiveType: in.RecursiveType,
|
|
RecursiveOption: in.RecursiveType == recursiveTypeTrue,
|
|
Option: in.Option,
|
|
},
|
|
)
|
|
} else {
|
|
dataMap[mapK] = mapV
|
|
}
|
|
}
|
|
if len(dataMap) > 0 {
|
|
return dataMap
|
|
}
|
|
}
|
|
// Using reflect for converting.
|
|
var (
|
|
rtField reflect.StructField
|
|
rvField reflect.Value
|
|
reflectType = reflectValue.Type() // attribute value type.
|
|
mapKey = "" // mapKey may be the tag name or the struct attribute name.
|
|
)
|
|
for i := 0; i < reflectValue.NumField(); i++ {
|
|
rtField = reflectType.Field(i)
|
|
rvField = reflectValue.Field(i)
|
|
// Only convert the public attributes.
|
|
fieldName := rtField.Name
|
|
if !utils.IsLetterUpper(fieldName[0]) {
|
|
continue
|
|
}
|
|
mapKey = ""
|
|
fieldTag := rtField.Tag
|
|
for _, tag := range in.Option.Tags {
|
|
if mapKey = fieldTag.Get(tag); mapKey != "" {
|
|
break
|
|
}
|
|
}
|
|
if mapKey == "" {
|
|
mapKey = fieldName
|
|
} else {
|
|
// Support json tag feature: -, omitempty
|
|
mapKey = strings.TrimSpace(mapKey)
|
|
if mapKey == "-" {
|
|
continue
|
|
}
|
|
array := strings.Split(mapKey, ",")
|
|
if len(array) > 1 {
|
|
switch strings.TrimSpace(array[1]) {
|
|
case "omitempty":
|
|
if in.Option.OmitEmpty && empty.IsEmpty(rvField.Interface()) {
|
|
continue
|
|
} else {
|
|
mapKey = strings.TrimSpace(array[0])
|
|
}
|
|
default:
|
|
mapKey = strings.TrimSpace(array[0])
|
|
}
|
|
}
|
|
if mapKey == "" {
|
|
mapKey = fieldName
|
|
}
|
|
}
|
|
if in.RecursiveOption || rtField.Anonymous {
|
|
// Do map converting recursively.
|
|
var (
|
|
rvAttrField = rvField
|
|
rvAttrKind = rvField.Kind()
|
|
)
|
|
if rvAttrKind == reflect.Ptr {
|
|
rvAttrField = rvField.Elem()
|
|
rvAttrKind = rvAttrField.Kind()
|
|
}
|
|
switch rvAttrKind {
|
|
case reflect.Struct:
|
|
// Embedded struct and has no fields, just ignores it.
|
|
// Eg: gmeta.Meta
|
|
if rvAttrField.Type().NumField() == 0 {
|
|
continue
|
|
}
|
|
var (
|
|
hasNoTag = mapKey == fieldName
|
|
// DO NOT use rvAttrField.Interface() here,
|
|
// as it might be changed from pointer to struct.
|
|
rvInterface = rvField.Interface()
|
|
)
|
|
switch {
|
|
case hasNoTag && rtField.Anonymous:
|
|
// It means this attribute field has no tag.
|
|
// Overwrite the attribute with sub-struct attribute fields.
|
|
anonymousValue := doMapConvertForMapOrStructValue(doMapConvertForMapOrStructValueInput{
|
|
IsRoot: false,
|
|
Value: rvInterface,
|
|
RecursiveType: in.RecursiveType,
|
|
RecursiveOption: true,
|
|
Option: in.Option,
|
|
})
|
|
if m, ok := anonymousValue.(map[string]interface{}); ok {
|
|
for k, v := range m {
|
|
dataMap[k] = v
|
|
}
|
|
} else {
|
|
dataMap[mapKey] = rvInterface
|
|
}
|
|
|
|
// It means this attribute field has desired tag.
|
|
case !hasNoTag && rtField.Anonymous:
|
|
dataMap[mapKey] = doMapConvertForMapOrStructValue(doMapConvertForMapOrStructValueInput{
|
|
IsRoot: false,
|
|
Value: rvInterface,
|
|
RecursiveType: in.RecursiveType,
|
|
RecursiveOption: true,
|
|
Option: in.Option,
|
|
})
|
|
|
|
default:
|
|
dataMap[mapKey] = doMapConvertForMapOrStructValue(doMapConvertForMapOrStructValueInput{
|
|
IsRoot: false,
|
|
Value: rvInterface,
|
|
RecursiveType: in.RecursiveType,
|
|
RecursiveOption: in.RecursiveType == recursiveTypeTrue,
|
|
Option: in.Option,
|
|
})
|
|
}
|
|
|
|
// The struct attribute is type of slice.
|
|
case reflect.Array, reflect.Slice:
|
|
length := rvAttrField.Len()
|
|
if length == 0 {
|
|
dataMap[mapKey] = rvAttrField.Interface()
|
|
break
|
|
}
|
|
array := make([]interface{}, length)
|
|
for arrayIndex := 0; arrayIndex < length; arrayIndex++ {
|
|
array[arrayIndex] = doMapConvertForMapOrStructValue(
|
|
doMapConvertForMapOrStructValueInput{
|
|
IsRoot: false,
|
|
Value: rvAttrField.Index(arrayIndex).Interface(),
|
|
RecursiveType: in.RecursiveType,
|
|
RecursiveOption: in.RecursiveType == recursiveTypeTrue,
|
|
Option: in.Option,
|
|
},
|
|
)
|
|
}
|
|
dataMap[mapKey] = array
|
|
case reflect.Map:
|
|
var (
|
|
mapIter = rvAttrField.MapRange()
|
|
nestedMap = make(map[string]interface{})
|
|
)
|
|
for mapIter.Next() {
|
|
nestedMap[String(mapIter.Key().Interface())] = doMapConvertForMapOrStructValue(
|
|
doMapConvertForMapOrStructValueInput{
|
|
IsRoot: false,
|
|
Value: mapIter.Value().Interface(),
|
|
RecursiveType: in.RecursiveType,
|
|
RecursiveOption: in.RecursiveType == recursiveTypeTrue,
|
|
Option: in.Option,
|
|
},
|
|
)
|
|
}
|
|
dataMap[mapKey] = nestedMap
|
|
default:
|
|
if rvField.IsValid() {
|
|
dataMap[mapKey] = reflectValue.Field(i).Interface()
|
|
} else {
|
|
dataMap[mapKey] = nil
|
|
}
|
|
}
|
|
} else {
|
|
// No recursive map value converting
|
|
if rvField.IsValid() {
|
|
dataMap[mapKey] = reflectValue.Field(i).Interface()
|
|
} else {
|
|
dataMap[mapKey] = nil
|
|
}
|
|
}
|
|
}
|
|
if !in.MustMapReturn && len(dataMap) == 0 {
|
|
return in.Value
|
|
}
|
|
return dataMap
|
|
|
|
// The given value is type of slice.
|
|
case reflect.Array, reflect.Slice:
|
|
length := reflectValue.Len()
|
|
if length == 0 {
|
|
break
|
|
}
|
|
array := make([]interface{}, reflectValue.Len())
|
|
for i := 0; i < length; i++ {
|
|
array[i] = doMapConvertForMapOrStructValue(doMapConvertForMapOrStructValueInput{
|
|
IsRoot: false,
|
|
Value: reflectValue.Index(i).Interface(),
|
|
RecursiveType: in.RecursiveType,
|
|
RecursiveOption: in.RecursiveType == recursiveTypeTrue,
|
|
Option: in.Option,
|
|
})
|
|
}
|
|
return array
|
|
}
|
|
return in.Value
|
|
}
|
|
|
|
// MapStrStr converts `value` to map[string]string.
|
|
// Note that there might be data copy for this map type converting.
|
|
func MapStrStr(value interface{}, option ...MapOption) map[string]string {
|
|
if r, ok := value.(map[string]string); ok {
|
|
return r
|
|
}
|
|
m := Map(value, option...)
|
|
if len(m) > 0 {
|
|
vMap := make(map[string]string, len(m))
|
|
for k, v := range m {
|
|
vMap[k] = String(v)
|
|
}
|
|
return vMap
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// MapStrStrDeep converts `value` to map[string]string recursively.
|
|
// Note that there might be data copy for this map type converting.
|
|
// Deprecated: used MapStrStr instead.
|
|
func MapStrStrDeep(value interface{}, tags ...string) map[string]string {
|
|
if r, ok := value.(map[string]string); ok {
|
|
return r
|
|
}
|
|
m := MapDeep(value, tags...)
|
|
if len(m) > 0 {
|
|
vMap := make(map[string]string, len(m))
|
|
for k, v := range m {
|
|
vMap[k] = String(v)
|
|
}
|
|
return vMap
|
|
}
|
|
return nil
|
|
}
|