我在node.js中编写了一个实现二进制协议的TCP服务器。 在node.js中使用缓冲区非常容易。 http://nodejs.org/docs/v0.5.3/api/buffers.html
我正在寻找一种类似的方法来在python 2.7中使用twisted来实现我的协议。 但是,如果有一个更好的工具来结合python 3和某种类型的I / O,请告诉我。由于python 3中的bytes对象,起初看起来它接近我,python 3更擅长处理二进制协议。我需要处理许多TCP(和UDP)连接并编写一些GUI。
以下是如何在node.js中实现我的协议:
var buf = new Buffer(5+data.length), //headers + data (data is also a buffer)
action = 0x01;
buf[0] = action;
buf.writeUInt16(data.length,1,'big'); //write content length in at offset 1
buf.writeUint16(12345,5,'big'); //message identifier at offset 3
data.copy(buf,5); //copy data into message at offset 5
socket.write(buf);
我很感激如何在python中实现类似的指令。
编辑:这是我能够使用python struct模块实现我的协议的方式:
self.transport.write(struct.pack('!bHH',action,data.length, sock_id) + data)