mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 05:07:44 +08:00
47 lines
1.3 KiB
Go
47 lines
1.3 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 gmeta provides embedded meta data feature for struct.
|
|
package gmeta
|
|
|
|
import (
|
|
"github.com/gogf/gf/container/gvar"
|
|
"github.com/gogf/gf/internal/structs"
|
|
)
|
|
|
|
// Meta is used as an embedded attribute for struct to enabled meta data feature.
|
|
type Meta struct{}
|
|
|
|
const (
|
|
// metaAttributeName is the attribute name of meta data in struct.
|
|
metaAttributeName = "Meta"
|
|
)
|
|
|
|
// Data retrieves and returns all metadata from `object`.
|
|
// It automatically parses and caches the tag string from "Mata" attribute as its meta data.
|
|
func Data(object interface{}) map[string]interface{} {
|
|
reflectType, err := structs.StructType(object)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if field, ok := reflectType.FieldByName(metaAttributeName); ok {
|
|
var (
|
|
tags = structs.ParseTag(string(field.Tag))
|
|
data = make(map[string]interface{}, len(tags))
|
|
)
|
|
for k, v := range tags {
|
|
data[k] = v
|
|
}
|
|
return data
|
|
}
|
|
return map[string]interface{}{}
|
|
}
|
|
|
|
// Get retrieves and returns specified metadata by `key` from `object`.
|
|
func Get(object interface{}, key string) *gvar.Var {
|
|
return gvar.New(Data(object)[key])
|
|
}
|