daphne/daphne/server.py

45 lines
1.5 KiB
Python
Raw Normal View History

import logging
2015-12-23 20:05:15 +03:00
import time
from twisted.internet import reactor
from .http_protocol import HTTPFactory
logger = logging.getLogger(__name__)
2015-12-23 20:05:15 +03:00
class Server(object):
def __init__(self, channel_layer, host="127.0.0.1", port=8000, signal_handlers=True, action_logger=None):
2015-12-23 20:05:15 +03:00
self.channel_layer = channel_layer
self.host = host
self.port = port
self.signal_handlers = signal_handlers
self.action_logger = action_logger
2015-12-23 20:05:15 +03:00
def run(self):
self.factory = HTTPFactory(self.channel_layer, self.action_logger)
2015-12-23 20:05:15 +03:00
reactor.listenTCP(self.port, self.factory, interface=self.host)
reactor.callLater(0, self.backend_reader)
reactor.run(installSignalHandlers=self.signal_handlers)
2015-12-23 20:05:15 +03:00
def backend_reader(self):
"""
Run in a separate thread; reads messages from the backend.
"""
channels = self.factory.reply_channels()
2016-02-24 00:23:55 +03:00
delay = 0.3
# Quit if reactor is stopping
if not reactor.running:
logging.debug("Backend reader quitting due to reactor stop")
return
# Don't do anything if there's no channels to listen on
if channels:
2016-02-24 00:23:55 +03:00
delay = 0.05
channel, message = self.channel_layer.receive_many(channels, block=False)
if channel:
2016-02-24 00:23:55 +03:00
delay = 0
logging.debug("Server got message on %s", channel)
# Deal with the message
self.factory.dispatch_reply(channel, message)
2016-02-24 00:23:55 +03:00
reactor.callLater(delay, self.backend_reader)