菜鸟笔记
提升您的技术认知

python 使用thrift序列化与反序列化对象

print('=============== thrift 对象序列化成二进制 ===============')
a = MessageHead(appId=1, functionId=1, tag=1, TokenId='adasge', direction=1, serverTokenId='asef')
from thrift_pojo.ttypes import *
from thrift.protocol.TBinaryProtocol import TBinaryProtocol
from thrift.transport.TTransport import TMemoryBuffer

tMemory_b = TMemoryBuffer()
tBinaryProtocol_b = TBinaryProtocol(tMemory_b)

a.write(tBinaryProtocol_b)
memory_buffer = tMemory_b.getvalue()
print('序列化成二进制:{}'.format(memory_buffer))
 print('=============== thrift 二进制反序列化成对象 ===============')
b = MessageHead()
tMemory_o = TMemoryBuffer(memory_buffer)
tBinaryProtocol_o = TBinaryProtocol(tMemory_o)

b.read(tBinaryProtocol_o)