mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 05:07:44 +08:00
65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
// Copyright 2019 gf Author(https://github.com/gogf/gf). 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 structs
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
"github.com/gogf/gf/third/github.com/fatih/structs"
|
|
)
|
|
|
|
// MapField retrieves struct field as map[name/tag]*Field from <pointer>, and returns it.
|
|
//
|
|
// The parameter <recursive> specifies whether retrieving the struct field recursively.
|
|
//
|
|
// Note that it only retrieves the exported attributes with first letter up-case from struct.
|
|
func MapField(pointer interface{}, priority []string, recursive bool) map[string]*Field {
|
|
fieldMap := make(map[string]*Field)
|
|
fields := ([]*structs.Field)(nil)
|
|
if v, ok := pointer.(reflect.Value); ok {
|
|
fields = structs.Fields(v.Interface())
|
|
} else {
|
|
fields = structs.Fields(pointer)
|
|
}
|
|
tag := ""
|
|
name := ""
|
|
for _, field := range fields {
|
|
name = field.Name()
|
|
// Only retrieve exported attributes.
|
|
if name[0] < byte('A') || name[0] > byte('Z') {
|
|
continue
|
|
}
|
|
fieldMap[name] = field
|
|
tag = ""
|
|
for _, p := range priority {
|
|
tag = field.Tag(p)
|
|
if tag != "" {
|
|
break
|
|
}
|
|
}
|
|
if tag != "" {
|
|
fieldMap[tag] = field
|
|
}
|
|
if recursive {
|
|
rv := reflect.ValueOf(field.Value())
|
|
kind := rv.Kind()
|
|
if kind == reflect.Ptr {
|
|
rv = rv.Elem()
|
|
kind = rv.Kind()
|
|
}
|
|
if kind == reflect.Struct {
|
|
for k, v := range MapField(rv, priority, true) {
|
|
if _, ok := fieldMap[k]; !ok {
|
|
fieldMap[k] = v
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return fieldMap
|
|
}
|