2023-02-01 14:41:09 +08:00
|
|
|
|
// Package event ...
|
|
|
|
|
//
|
|
|
|
|
// Description : event ...
|
|
|
|
|
//
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 2023-02-01 14:30
|
|
|
|
|
package event
|
|
|
|
|
|
2023-02-01 18:46:18 +08:00
|
|
|
|
import (
|
|
|
|
|
"reflect"
|
|
|
|
|
"strings"
|
|
|
|
|
"sync"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
// ReflectTypeInstance 反射实例
|
|
|
|
|
ReflectTypeInstance *ReflectType
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
ReflectTypeInstance = &ReflectType{
|
|
|
|
|
lock: &sync.RWMutex{},
|
|
|
|
|
cacheTable: make(map[string]*StructInfo),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-01 14:41:09 +08:00
|
|
|
|
// ReflectType 反射数据类型
|
|
|
|
|
//
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 14:31 2023/2/1
|
|
|
|
|
type ReflectType struct {
|
2023-02-01 18:46:18 +08:00
|
|
|
|
// 数据锁
|
|
|
|
|
lock *sync.RWMutex
|
|
|
|
|
// 反射结果缓存
|
|
|
|
|
cacheTable map[string]*StructInfo
|
2023-02-01 14:41:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Do 反射获取数据类型
|
|
|
|
|
//
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 14:34 2023/2/1
|
2023-02-01 18:46:18 +08:00
|
|
|
|
//
|
|
|
|
|
// 为特定结构体生成全局唯一的标识, 并进行缓存, 加速反射结果获取
|
|
|
|
|
func (rt *ReflectType) Do(dataFlag string, data interface{}) *StructInfo {
|
|
|
|
|
rt.lock.Lock()
|
|
|
|
|
defer rt.lock.Unlock()
|
|
|
|
|
if cacheResult, exist := rt.cacheTable[dataFlag]; exist {
|
|
|
|
|
// 缓存存在, 直接是有缓存结果
|
|
|
|
|
return cacheResult
|
|
|
|
|
}
|
|
|
|
|
// 缓存不存在, 解析
|
|
|
|
|
res := &StructInfo{
|
|
|
|
|
Flag: dataFlag,
|
|
|
|
|
IsStruct: false,
|
|
|
|
|
StructFieldList: make([]*StructField, 0),
|
|
|
|
|
}
|
|
|
|
|
reflectType := reflect.TypeOf(data)
|
|
|
|
|
if reflectType.Kind() == reflect.Ptr {
|
|
|
|
|
reflectType = reflectType.Elem()
|
|
|
|
|
}
|
|
|
|
|
if reflectType.Kind() != reflect.Struct {
|
|
|
|
|
// 非结构体,无需反射
|
2023-02-01 20:37:02 +08:00
|
|
|
|
rt.cacheTable[dataFlag] = res
|
2023-02-01 18:46:18 +08:00
|
|
|
|
return res
|
|
|
|
|
}
|
|
|
|
|
res.IsStruct = true
|
|
|
|
|
for idx := 0; idx < reflectType.NumField(); idx++ {
|
|
|
|
|
field := &StructField{
|
2023-02-01 20:30:32 +08:00
|
|
|
|
Idx: idx,
|
|
|
|
|
Name: reflectType.Field(idx).Name,
|
|
|
|
|
JsonTag: reflectType.Field(idx).Tag.Get(JsonTag),
|
|
|
|
|
EventTag: reflectType.Field(idx).Tag.Get(OutEventTag),
|
|
|
|
|
MappingRuleList: make([]MappingRuleItem, 0),
|
2023-02-01 18:46:18 +08:00
|
|
|
|
}
|
2023-02-02 10:52:40 +08:00
|
|
|
|
rt.fillFieldType(field, reflectType.Field(idx).Type.Kind())
|
2023-02-01 20:30:32 +08:00
|
|
|
|
rt.fillMappingRule(field, reflectType.Field(idx).Tag.Get(MappingTag))
|
2023-02-01 18:46:18 +08:00
|
|
|
|
res.StructFieldList = append(res.StructFieldList, field)
|
|
|
|
|
}
|
2023-02-01 20:35:33 +08:00
|
|
|
|
rt.cacheTable[dataFlag] = res
|
2023-02-01 18:46:18 +08:00
|
|
|
|
return res
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-02 10:52:40 +08:00
|
|
|
|
// fillFieldType 填充字段类型
|
|
|
|
|
//
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 20:46 2023/2/1
|
|
|
|
|
func (rt *ReflectType) fillFieldType(field *StructField, dataType reflect.Kind) {
|
|
|
|
|
switch dataType {
|
|
|
|
|
case reflect.Float32:
|
|
|
|
|
fallthrough
|
|
|
|
|
case reflect.Float64:
|
|
|
|
|
field.Type = reflect.Float64
|
|
|
|
|
case reflect.String:
|
|
|
|
|
field.Type = reflect.String
|
|
|
|
|
default:
|
|
|
|
|
if strings.Contains(dataType.String(), "int") {
|
|
|
|
|
field.Type = reflect.Int64
|
|
|
|
|
} else {
|
|
|
|
|
field.Type = reflect.Interface
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-01 18:46:18 +08:00
|
|
|
|
// fillTagInfo 填充标签信息
|
|
|
|
|
//
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 17:11 2023/2/1
|
|
|
|
|
func (rt *ReflectType) fillTagInfo(field *StructField) {
|
|
|
|
|
if len(field.JsonTag) == 0 {
|
|
|
|
|
field.JsonTag = field.Name
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// jsonTag 去掉 omitempty
|
|
|
|
|
jsonTagValArr := strings.Split(field.JsonTag, ",")
|
|
|
|
|
for _, item := range jsonTagValArr {
|
|
|
|
|
if len(item) > 0 && item != OmitemptyTag {
|
|
|
|
|
field.JsonTag = item
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-01 20:30:32 +08:00
|
|
|
|
// 没有设置event tag,则和 json tag保持一致
|
2023-02-01 18:46:18 +08:00
|
|
|
|
if len(field.EventTag) == 0 {
|
|
|
|
|
field.EventTag = field.JsonTag
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// fillMappingRule 解析参数映射规则
|
|
|
|
|
//
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 17:14 2023/2/1
|
|
|
|
|
//
|
|
|
|
|
// mapping:"user_id:param#user_id|header#id"
|
2023-02-01 20:30:32 +08:00
|
|
|
|
func (rt *ReflectType) fillMappingRule(field *StructField, inputMappingVal string) {
|
|
|
|
|
|
2023-02-01 18:46:18 +08:00
|
|
|
|
if len(inputMappingVal) == 0 {
|
|
|
|
|
// 没有指定规则, 有默认规则
|
|
|
|
|
for _, location := range mappingLocationList {
|
2023-02-01 20:30:32 +08:00
|
|
|
|
field.MappingRuleList = append(field.MappingRuleList, MappingRuleItem{
|
2023-02-01 18:46:18 +08:00
|
|
|
|
Location: location,
|
|
|
|
|
Field: field.JsonTag,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
mappingArr := strings.Split(inputMappingVal, ",")
|
|
|
|
|
for _, item := range mappingArr {
|
|
|
|
|
item = strings.TrimSpace(item)
|
|
|
|
|
// 要赋值的字段名
|
|
|
|
|
itemArr := strings.Split(item, ":")
|
2023-02-01 20:15:15 +08:00
|
|
|
|
if len(itemArr) != 2 {
|
|
|
|
|
// 配置格式错误, 跳过
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
mapRuleArr := strings.Split(strings.TrimSpace(itemArr[1]), "|")
|
|
|
|
|
for _, itemMapRule := range mapRuleArr {
|
|
|
|
|
itemMapRule = strings.TrimLeft(itemMapRule, "#")
|
|
|
|
|
itemMapRuleArr := strings.Split(itemMapRule, "#")
|
|
|
|
|
// 注意 : # 为特殊分隔符, 如配置成 mapping:"project_id:#source_project_id#xxx_project_id" 实际等价于 mapping:"project_id:#source_project_id" 多余配置自动跳过
|
|
|
|
|
if len(itemMapRuleArr[0]) < 2 {
|
|
|
|
|
// 没有指定位置,默认all, 即配置格式: mapping:"project_id:#source_project_id"
|
|
|
|
|
itemMapRuleArr[0] = MappingLocationAll
|
|
|
|
|
itemMapRuleArr = []string{MappingLocationAll, itemMapRuleArr[0]}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch itemMapRuleArr[0] {
|
|
|
|
|
// 从header读取
|
|
|
|
|
case MappingLocationHeader:
|
2023-02-01 20:30:32 +08:00
|
|
|
|
field.MappingRuleList = append(field.MappingRuleList, MappingRuleItem{
|
2023-02-01 20:15:15 +08:00
|
|
|
|
Location: MappingLocationHeader,
|
|
|
|
|
Field: itemMapRuleArr[1],
|
|
|
|
|
})
|
|
|
|
|
// 从请求参数读取
|
|
|
|
|
case MappingLocationParam:
|
2023-02-01 20:30:32 +08:00
|
|
|
|
field.MappingRuleList = append(field.MappingRuleList, MappingRuleItem{
|
2023-02-01 20:15:15 +08:00
|
|
|
|
Location: MappingLocationParam,
|
|
|
|
|
Field: itemMapRuleArr[1],
|
|
|
|
|
})
|
|
|
|
|
// 从响应数据读取
|
|
|
|
|
case MappingLocationResponse:
|
2023-02-01 20:30:32 +08:00
|
|
|
|
field.MappingRuleList = append(field.MappingRuleList, MappingRuleItem{
|
2023-02-01 20:15:15 +08:00
|
|
|
|
Location: MappingLocationResponse,
|
|
|
|
|
Field: itemMapRuleArr[1],
|
|
|
|
|
})
|
|
|
|
|
// 从扩展数据读取
|
|
|
|
|
case MappingLocationExtension:
|
2023-02-01 20:30:32 +08:00
|
|
|
|
field.MappingRuleList = append(field.MappingRuleList, MappingRuleItem{
|
2023-02-01 20:15:15 +08:00
|
|
|
|
Location: MappingLocationExtension,
|
|
|
|
|
Field: itemMapRuleArr[1],
|
|
|
|
|
})
|
|
|
|
|
// 全部读取一遍
|
|
|
|
|
case MappingLocationAll:
|
|
|
|
|
fallthrough
|
|
|
|
|
default:
|
|
|
|
|
for _, itemLocation := range mappingLocationList {
|
2023-02-01 20:30:32 +08:00
|
|
|
|
field.MappingRuleList = append(field.MappingRuleList, MappingRuleItem{
|
2023-02-01 20:15:15 +08:00
|
|
|
|
Location: itemLocation,
|
|
|
|
|
Field: itemMapRuleArr[1],
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-01 18:46:18 +08:00
|
|
|
|
}
|
2023-02-01 14:41:09 +08:00
|
|
|
|
}
|