-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathZmqBinarySynch.py
66 lines (50 loc) · 1.96 KB
/
ZmqBinarySynch.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""
Objects for passing data between two real-time loops.
"""
import zmq
import numpy as np
class ZmqBinarySynchB:
def __init__(self, bindport="tcp://*:5558", connectport="tcp://localhost:5557"):
self.context = zmq.Context()
self.socketB = self.context.socket(zmq.PUB)
self.socketB.bind(bindport)
self.socketA = self.context.socket(zmq.SUB)
self.socketA.setsockopt(zmq.SUBSCRIBE, b'A')
self.socketA.connect(connectport)
self.my_count = 0
self.data_out = None
def update(self, data_in):
""" read all messages, then send data."""
while True:
try:
message = self.socketA.recv(zmq.NOBLOCK)
if int(message[1:4])==self.my_count:
self.my_count+=1
if self.my_count>=1000:
self.my_count=0
self.data_out = np.frombuffer(message[4:])
except zmq.error.Again:
break
self.socketB.send(b"B%03d%s"%(self.my_count, data_in.tobytes()))
return self.data_out
class ZmqBinarySynchA:
def __init__(self, bindport="tcp://*:5557", connectport="tcp://localhost:5558"):
self.context = zmq.Context()
self.socketA = self.context.socket(zmq.PUB)
self.socketA.bind(bindport)
self.socketB = self.context.socket(zmq.SUB)
self.socketB.setsockopt(zmq.SUBSCRIBE, b'B')
self.socketB.connect(connectport)
self.my_count = -42
self.data_out = None
def update(self, data_in):
""" read all messages, then send data. """
while True:
try:
message = self.socketB.recv(zmq.NOBLOCK)
self.my_count=int(message[1:4])
self.data_out = np.frombuffer(message[4:])
except zmq.error.Again:
break
self.socketA.send(b"A%03d%s"%(self.my_count, data_in.tobytes()))
return self.data_out