2019-04-02 04:55:44 +08:00
|
|
|
import uuid
|
2019-04-03 10:05:32 +08:00
|
|
|
import struct
|
2019-04-02 04:55:44 +08:00
|
|
|
from libp2p.pubsub.pb import rpc_pb2
|
|
|
|
|
2019-04-03 10:05:32 +08:00
|
|
|
|
|
|
|
def message_id_generator(start_val):
|
2019-04-02 04:55:44 +08:00
|
|
|
"""
|
|
|
|
Generate a unique message id
|
2019-04-03 10:05:32 +08:00
|
|
|
:param start_val: value to start generating messages at
|
|
|
|
:return: message id
|
2019-04-02 04:55:44 +08:00
|
|
|
"""
|
2019-04-03 10:05:32 +08:00
|
|
|
val = start_val
|
|
|
|
def generator():
|
|
|
|
# Allow manipulation of val within closure
|
|
|
|
nonlocal val
|
|
|
|
|
|
|
|
# Increment id
|
|
|
|
val += 1
|
|
|
|
|
|
|
|
# Convert val to big endian
|
2019-04-06 05:30:35 +08:00
|
|
|
return struct.pack('>Q', val)
|
2019-04-03 10:05:32 +08:00
|
|
|
|
|
|
|
return generator
|
2019-04-02 04:55:44 +08:00
|
|
|
|
|
|
|
def generate_RPC_packet(origin_id, topics, msg_content, msg_id):
|
|
|
|
"""
|
|
|
|
Generate RPC packet to send over wire
|
|
|
|
:param origin_id: peer id of the message origin
|
|
|
|
:param topics: list of topics
|
|
|
|
:param msg_content: string of content in data
|
|
|
|
:param msg_id: seqno for the message
|
|
|
|
"""
|
|
|
|
packet = rpc_pb2.RPC()
|
|
|
|
message = rpc_pb2.Message(
|
|
|
|
from_id=origin_id.encode('utf-8'),
|
2019-04-03 10:05:32 +08:00
|
|
|
seqno=msg_id,
|
2019-04-02 04:55:44 +08:00
|
|
|
data=msg_content.encode('utf-8'),
|
|
|
|
)
|
|
|
|
|
|
|
|
for topic in topics:
|
|
|
|
message.topicIDs.extend([topic.encode('utf-8')])
|
|
|
|
|
|
|
|
packet.publish.extend([message])
|
|
|
|
return packet
|