Created
August 29, 2013 13:29
-
-
Save abhinavsingh/6378134 to your computer and use it in GitHub Desktop.
Tornado websockets and ZMQ pubsub
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import zmq | |
def main(): | |
try: | |
context = zmq.Context(1) | |
frontend = context.socket(zmq.SUB) | |
frontend.bind('tcp://*:5559') | |
frontend.setsockopt(zmq.SUBSCRIBE, '') | |
backend = context.socket(zmq.PUB) | |
backend.bind('tcp://*:5560') | |
print 'starting zmq forwarder' | |
zmq.device(zmq.FORWARDER, frontend, backend) | |
except KeyboardInterrupt: | |
pass | |
except Exception as e: | |
logger.exception(e) | |
finally: | |
frontend.close() | |
backend.close() | |
context.term() | |
if __name__ == '__main__': | |
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import zmq | |
if __name__ == '__main__': | |
context = zmq.Context() | |
socket = context.socket(zmq.PUB) | |
socket.connect('tcp://127.0.0.1:5559') | |
socket.send('session_id helloworld') | |
print 'sent data for channel session_id' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import zmq | |
from zmq.eventloop import ioloop | |
from zmq.eventloop.zmqstream import ZMQStream | |
ioloop.install() | |
from tornado.websocket import WebSocketHandler | |
from tornado.web import Application | |
from tornado.ioloop import IOLoop | |
ioloop = IOLoop.instance() | |
class ZMQPubSub(object): | |
def __init__(self, callback): | |
self.callback = callback | |
def connect(self): | |
self.context = zmq.Context() | |
self.socket = self.context.socket(zmq.SUB) | |
self.socket.connect('tcp://127.0.0.1:5560') | |
self.stream = ZMQStream(self.socket) | |
self.stream.on_recv(self.callback) | |
def subscribe(self, channel_id): | |
self.socket.setsockopt(zmq.SUBSCRIBE, channel_id) | |
class MyWebSocket(WebSocketHandler): | |
def open(self): | |
self.pubsub = ZMQPubSub(self.on_data) | |
self.pubsub.connect() | |
self.pubsub.subscribe("session_id") | |
print 'ws opened' | |
def on_message(self, message): | |
print message | |
def on_close(self): | |
print 'ws closed' | |
def on_data(self, data): | |
print data | |
def main(): | |
application = Application([(r'/channel', MyWebSocket)]) | |
application.listen(10001) | |
print 'starting ws on port 10001' | |
ioloop.start() | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment