我在解码不带.proto文件的Google protobuf响应时遇到问题,已经使用proto文件实现并且可以正常工作,但是在这种情况下.proto文件不可用。
使用python 3+并从隧道中获得此响应
b'\x08\x00\x12\x88\x01\x08\xda\xc9\x06\x10\xb6\xc9\x03\x18\xa1\x8b\xb8\x01 \x00*\x00:\x00B\x00J\x00R\x00Z\x00b\x00j\x00r\x00z\x00\x80\x01\xe9\x9b\x8c\xb5\x99-\x90\x01d\x98\x01\xea\x9b\x8c\xb5\x99-\xa2\x01\x00\xaa\x01\x00\xb0\x01\x00\xb8\x01\x01\xc0\x0
1\x00\xd1\x01\x00\x00\x00\x00\x00\x00\x00\x00\xd9\x01\x00\x00\x00\x00\x00\x00\x00\x00\xe1\x01\x00\x00\x00\x00\x00\x00\x00\x00\xea\x01\x00\xf0\x01\x01\xf8\x01\x00\x80\x02\x00\x88\x02\x00\x90\x02\x00\x98\x02\x00\xa8\x02\x00\xb0\x02\x00\xb8\x02\x90N\xc0\x02\x00\xc8\x0
2\x00'
有没有一种方法可以在没有.proto文件的情况下将Google ptobuf解码并使其成为字典?
实现此目的的代码如下:
import pika
credentials = pika.PlainCredentials('demo', 'demo')
cp = pika.ConnectionParameters(
host='127.0.0.1',
port=5671,
credentials=credentials,
ssl=False,
)
connection = pika.BlockingConnection(cp)
channel = connection.channel()
def callback(ch, method, properties, body):
print(" [x] Received %r" % body)
channel.basic_consume(callback, queue='demo_queu', no_ack=True)
print(' [*] Waiting for messages. To exit press CTRL+C')
channel.start_consuming()
需要实现:
获取身体并将其解码为人类可读
任何想法都会受到赞赏
答案 0 :(得分:0)
最后我自己找到了一种解决方法,也许是一种原始方法,但只有这种方法对我有用。
解决方案:
1。是否列出了.proto文件中的所有描述符
here is .proto file generated for python 3 is too big cant paste content here
https://ufile.io/2p2d6
descriptors = [proto_file.descriptor_1, proto_file.descriptor_2]
2。循环抛出列表并一一传递
for d in descriptors:
decoded_response = proto_file._reflection.ParseMessage(d, raw_response.body)
3。检查decoded_response是否为空
if decoded_response:
# descriptor was found
# response is decoded
else:
# no descriptor
4。解码响应后,我们将其解析为dict:
from protobuf_to_dict import protobuf_to_dict
decoded_response_to_dict = protobuf_to_dict(decoded_response)
这个花费了数周时间的解决方案终于奏效了。