Compare commits
No commits in common. "0a9175daa8ecdb3112280732a73ab302973eda9c" and "c641e6003bae5a296feee7ee377e60e26917e755" have entirely different histories.
0a9175daa8
...
c641e6003b
90
any.go
90
any.go
@ -7,10 +7,7 @@
|
|||||||
// Date : 2023-06-01 18:18
|
// Date : 2023-06-01 18:18
|
||||||
package wrapper
|
package wrapper
|
||||||
|
|
||||||
import (
|
import "reflect"
|
||||||
"git.zhangdeman.cn/zhangdeman/serialize"
|
|
||||||
"reflect"
|
|
||||||
)
|
|
||||||
|
|
||||||
// AnyDataType ...
|
// AnyDataType ...
|
||||||
//
|
//
|
||||||
@ -18,11 +15,9 @@ import (
|
|||||||
//
|
//
|
||||||
// Date : 18:19 2023/6/1
|
// Date : 18:19 2023/6/1
|
||||||
func AnyDataType(data interface{}) *AnyType {
|
func AnyDataType(data interface{}) *AnyType {
|
||||||
at := &AnyType{
|
return &AnyType{
|
||||||
data: data,
|
data: data,
|
||||||
}
|
}
|
||||||
at.dataType = at.Type()
|
|
||||||
return at
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// AnyType ...
|
// AnyType ...
|
||||||
@ -31,8 +26,7 @@ func AnyDataType(data interface{}) *AnyType {
|
|||||||
//
|
//
|
||||||
// Date : 18:19 2023/6/1
|
// Date : 18:19 2023/6/1
|
||||||
type AnyType struct {
|
type AnyType struct {
|
||||||
data interface{}
|
data interface{}
|
||||||
dataType string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsNil 是否为 nil
|
// IsNil 是否为 nil
|
||||||
@ -50,33 +44,23 @@ func (at *AnyType) IsNil() bool {
|
|||||||
//
|
//
|
||||||
// Date : 18:22 2023/6/1
|
// Date : 18:22 2023/6/1
|
||||||
func (at *AnyType) Type() string {
|
func (at *AnyType) Type() string {
|
||||||
if len(at.dataType) > 0 {
|
|
||||||
// 已经处理过的,无需在处理
|
|
||||||
return at.dataType
|
|
||||||
}
|
|
||||||
if at.IsNil() {
|
if at.IsNil() {
|
||||||
return DataTypeNil
|
return DataTypeNil
|
||||||
}
|
}
|
||||||
reflectType := reflect.TypeOf(at.data)
|
reflectType := reflect.TypeOf(at.data)
|
||||||
switch reflectType.Kind() {
|
switch reflectType.Kind() {
|
||||||
case reflect.String:
|
case reflect.Slice:
|
||||||
return DataTypeString
|
return DataTypeAnySlice
|
||||||
case reflect.Slice, reflect.Array:
|
case reflect.Array:
|
||||||
return DataTypeSlice
|
return DataTypeAnySlice
|
||||||
case reflect.Map, reflect.Struct:
|
case reflect.Map:
|
||||||
return DataTypeObject
|
return DataTypeAnyObject
|
||||||
|
case reflect.Struct:
|
||||||
|
return DataTypeAnyObject
|
||||||
case reflect.Pointer:
|
case reflect.Pointer:
|
||||||
return DataTypePtr
|
return DataTypePtr
|
||||||
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
||||||
return DataTypeInt
|
|
||||||
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
|
|
||||||
return DataTypeUint
|
|
||||||
case reflect.Bool:
|
|
||||||
return DataTypeBool
|
|
||||||
case reflect.Float32, reflect.Float64:
|
|
||||||
return DataTypeFloat
|
|
||||||
default:
|
default:
|
||||||
return DataTypeUnknown
|
return reflectType.Kind().String()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -85,52 +69,6 @@ func (at *AnyType) Type() string {
|
|||||||
// Author : go_developer@163.com<白茶清欢>
|
// Author : go_developer@163.com<白茶清欢>
|
||||||
//
|
//
|
||||||
// Date : 18:32 2023/6/1
|
// Date : 18:32 2023/6/1
|
||||||
func (at *AnyType) ToString() String {
|
func (at *AnyType) ToString() string {
|
||||||
switch at.dataType {
|
return ""
|
||||||
case DataTypeNil:
|
|
||||||
return String("")
|
|
||||||
case DataTypeObject:
|
|
||||||
fallthrough
|
|
||||||
case DataTypeSlice:
|
|
||||||
fallthrough
|
|
||||||
case DataTypePtr:
|
|
||||||
return String(serialize.JSON.MarshalForString(at.data))
|
|
||||||
}
|
|
||||||
return String("")
|
|
||||||
}
|
|
||||||
|
|
||||||
// ToObject 任意类型转为对象
|
|
||||||
//
|
|
||||||
// Author : go_developer@163.com<白茶清欢>
|
|
||||||
//
|
|
||||||
// Date : 17:19 2023/10/11
|
|
||||||
func (at *AnyType) ToObject() MapResult {
|
|
||||||
return MapResult{
|
|
||||||
Value: EasyMapFromString(at.ToString().Value()),
|
|
||||||
Err: nil,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (at *AnyType) ToIntSlice() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (at *AnyType) ToUintSlice() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (at *AnyType) ToStringSlice() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (at *AnyType) ToFloatSlice() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (at *AnyType) ToBoolSlice() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (at *AnyType) ToAnySlice() {
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
39
define.go
39
define.go
@ -12,14 +12,41 @@ import "time"
|
|||||||
const (
|
const (
|
||||||
DataTypeUnknown = "unknown"
|
DataTypeUnknown = "unknown"
|
||||||
DataTypeNil = "nil"
|
DataTypeNil = "nil"
|
||||||
|
DataTypeAny = "interface"
|
||||||
DataTypePtr = "ptr"
|
DataTypePtr = "ptr"
|
||||||
DataTypeString = "string"
|
|
||||||
DataTypeInt = "int"
|
DataTypeString = "string"
|
||||||
DataTypeUint = "uint"
|
|
||||||
DataTypeBool = "bool"
|
DataTypeInt8 = "int8"
|
||||||
|
DataTypeInt16 = "int16"
|
||||||
|
DataTypeInt32 = "int32"
|
||||||
|
DataTypeInt64 = "int64"
|
||||||
|
DataTypeInt = "int"
|
||||||
|
|
||||||
|
DataTypeUint8 = "uint8"
|
||||||
|
DataTypeUint16 = "uint16"
|
||||||
|
DataTypeUint32 = "uint32"
|
||||||
|
DataTypeUint64 = "uint64"
|
||||||
|
DataTypeUint = "uint"
|
||||||
|
|
||||||
|
DataTypeBool = "bool"
|
||||||
|
|
||||||
|
DataTypeNumber = "number"
|
||||||
|
|
||||||
|
DataTypeFloat32 = "float32"
|
||||||
|
DataTypeFloat64 = "float64"
|
||||||
|
DataTypeDouble = "double"
|
||||||
DataTypeFloat = "float"
|
DataTypeFloat = "float"
|
||||||
DataTypeSlice = "slice"
|
|
||||||
DataTypeObject = "object"
|
DataTypeIntSlice = "[]int"
|
||||||
|
DataTypeUntSlice = "[]uint"
|
||||||
|
DataTypeNumberSlice = "[]number"
|
||||||
|
DataTypeFloatSlice = "[]float"
|
||||||
|
DataTypeBoolSlice = "[]bool"
|
||||||
|
DataTypeAnySlice = "[]interface"
|
||||||
|
|
||||||
|
DataTypeObject = "map[string]interface"
|
||||||
|
DataTypeAnyObject = "map[interface]interface"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Int8Result ...
|
// Int8Result ...
|
||||||
|
Loading…
Reference in New Issue
Block a user