gpt4 book ai didi

go - 如何通过反射在GO中获取结构字段的地址

转载 作者:IT王子 更新时间:2023-10-29 02:35:42 26 4
gpt4 key购买 nike

<分区>

我正在编写将字节流反序列化为对象的代码,但我一直在获取结构字段的指针。

基本上代码的工作方式如下:它获取指向结构的指针,然后根据它序列化它的类型,例如。如果它是一个整数,它需要接下来的 4 个字节。棘手的情况是,如果它是一个结构,因为我必须对其所有属性递归运行反序列化,而且我不知道如何获取其字段的地址以将它们传递给反序列化。

func Deserialize(objPtr interface{}, b []byte) (bytesRead int) {
// it should be the address of the object

val := reflect.ValueOf(objPtr).Elem()
valPtr := reflect.ValueOf(objPtr)

// check if either the object or *object is Serializable
_, isSerializable := (val.Interface()).(Serializable)
_, bo := (valPtr.Interface()).(Serializable)
isSerializable = isSerializable || bo

// specific type serialization
if isSerializable{
return objPtr.(Serializable).Deserializebyte(b)
}

switch val.Kind() {
case reflect.Uint32, reflect.Int, reflect.Int32:
res := reflect.ValueOf(binary.LittleEndian.Uint32(b[:4]))
valPtr.Set(res)
return 4
case reflect.Uint64, reflect.Int64:
res := reflect.ValueOf(binary.LittleEndian.Uint32(b[:8]))
valPtr.Set(res)
return 8
case reflect.Struct:
n_bytes := 0
for i := 0; i < val.NumField(); i++ {

// stuck in here
valPtr.Elem()

// I don't think the next line works
last_n_bytes := Deserialize(&(valPtr.Elem().Field(i).Interface()), b)
n_bytes += last_n_bytes
b = b[last_n_bytes:]
}
//valPtr.Set(res)
return n_bytes
default:
panic("this panic is for debug, every case should be handled above")
res := val.Bytes()
valPtr.Set(res)
return len(val.Bytes())
}
return 0
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com