几年前,我试图在Go中重新实现它在C中所做的一个程序
程序应该读取"记录"类似的结构化二进制文件并对记录执行某些操作(记录本身的操作与此问题无关)
这样的数据文件由许多记录组成,其中每个记录具有以下定义:
REC_LEN U2 // length of record after header
REC_TYPE U1 //a type
REC_SUB U1 //a subtype
REC_LEN x U1 //"payload"
我现在的问题是如何在Go中的结构中指定变量长度byte []?
我的计划是使用binary.Read来读取记录
以下是我迄今为止在Go中所尝试的内容:
type Record struct {
rec_len uint16
rec_type uint8
rec_sub uint8
data [rec_len]byte
}
不幸的是,似乎我无法在同一结构中引用结构的字段,因为我得到以下错误:
xxxx.go:15: undefined: rec_len
xxxx.go:15: invalid array bound rec_len
我很欣赏任何指向正确方向的想法
由于
KR
答案 0 :(得分:2)
您可以按如下方式阅读记录:
var rec Record
// Slurp up the fixed sized header.
var buf [4]byte
_, err := io.ReadFull(r, buf[:])
if err != nil {
// handle error
}
rec.rec_len = binary.BigEndian.Uint16(buf[0:2])
rec.rec_type = buf[2]
rec.rec_sub = buf[3]
// Create the variable part and read it.
rec.data = make([]byte, rec.rec_len)
_, err = io.ReadFull(r, rec.data)
if err != nil {
// handle error
}