我有一个基于golang的客户端,必须使用二进制协议与C守护进程通话。我无法更改服务器,支持json,xml或其他协议。
在C代码中,我必须填写以下结构并通过网络发送:
typedef struct pkt_struct{
int16_t pkt_version;
int16_t pkt_type;
u_int32_t crc32_v;
int16_t ret_code;
char buffer[1024];
}pkt;
要有一个想法,我如何需要数据,它应该看起来像:
的输出$ irb
2.0.0-p353 :002 > [2, 1, 0, 0, 'version', 3].pack("nnNna1024n")
回答是什么?阅读文档,看起来并非如此。也许ProtoBuf?
我到目前为止所做的是:
import "encoding/binary"
....
type NPacket struct {
packet_version int16
packet_type int16
crc32_value uint32
ret_code int16
buffer string
}
....
var pkt_send NPacket
pkt_send = NPacket{2,1,0,0,"version"}
buf := new(bytes.Buffer)
if err := binary.Write(buf, binary.BigEndian, &pkt_send); err != nil {
fmt.Println(err)
os.Exit(1)
}
我得到的错误:
binary.Write: invalid type string
答案 0 :(得分:4)
binary.Write
仅适用于固定大小的对象。字符串可以是任何大小。相反,您可能希望复制C代码并使用固定大小的字节数组:
type NPacket struct {
packet_version int16
packet_type int16
crc32_value uint32
ret_code int16
buffer [1024]byte
}
您可以使用copy(pkt.buffer[:], "string")
设置缓冲区。
无论是gob还是protobufs都不是答案。它们都是编码格式,无法控制数据的编组方式。