-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrouter.py
58 lines (41 loc) · 1.68 KB
/
router.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
"""
Messages are passed from the API layer to the socket server layer through
pub/sub, but zmq pub/sub is limited to one publisher. We want pub/sub so that
each socket server can pass on messages for the users it's connected to.
Thus, we run routers in the middle that act listen to the API servers using
push/pull and send messages to the socket servers using pub/sub. The socket
servers can listen to a small list of publishing routers instead of every API
server.
"""
from argparse import ArgumentParser
import zmq
from zmq.eventloop import ioloop, zmqstream
from mozsvc.config import load_into_settings
class Proxy(object):
def __init__(self, pull_stream, publish_stream):
self.pull = pull_stream
self.pub = publish_stream
self.pull.on_recv(self.recv)
def recv(self, msg):
self.pub.send_multipart(msg)
def main():
parser = ArgumentParser('Router to publish messages to edge nodes.')
parser.add_argument('config', help='path to the config file')
args, settings = parser.parse_args(), {}
load_into_settings(args.config, settings)
config = settings['config']
ioloop.install()
loop = ioloop.IOLoop.instance()
context = zmq.Context()
pull_socket = context.socket(zmq.PULL)
pull_socket.bind(config.get('zeromq', 'pull'))
pull_stream = zmqstream.ZMQStream(pull_socket, loop)
print 'PULL socket on', config.get('zeromq', 'pull')
pub_socket = context.socket(zmq.PUB)
pub_socket.bind(config.get('zeromq', 'pub'))
pub_stream = zmqstream.ZMQStream(pub_socket, loop)
print 'PUB socket on', config.get('zeromq', 'pub')
Proxy(pull_stream, pub_stream)
loop.start()
if __name__ == '__main__':
main()