baseimage-tutorial-framework/lib/tfw/networking/server/tfw_server.py

29 lines
935 B
Python
Raw Normal View History

# Copyright (C) 2018 Avatao.com Innovative Learning Kft.
# All Rights Reserved. See LICENSE file for details.
from tornado.web import Application
from tfw.networking.server.zmq_websocket_proxy import ZMQWebSocketProxy
from tfw.networking.server.event_handler_connector import EventHandlerConnector
2018-02-23 11:07:30 +00:00
from tfw.config.logs import logging
2018-07-25 13:46:39 +00:00
LOG = logging.getLogger(__name__)
2019-05-26 16:26:33 +00:00
class TFWServer:
2018-04-18 17:44:26 +00:00
"""
This class handles the proxying of messages between the frontend and event handers.
It proxies messages from the "/ws" route to all event handlers subscribed to a ZMQ
SUB socket.
2018-04-18 17:44:26 +00:00
"""
def __init__(self):
self._event_handler_connector = EventHandlerConnector()
self.application = Application([(
r'/ws', ZMQWebSocketProxy, {
'event_handler_connector': self._event_handler_connector,
}
)])
2018-04-10 11:00:56 +00:00
def listen(self, port):
self.application.listen(port)