|
|
@ -31,15 +31,21 @@ class Server(object): |
|
|
|
packets. Custom json modules must have ``dumps`` and ``loads`` |
|
|
|
functions that are compatible with the standard library |
|
|
|
versions. |
|
|
|
:param async_handlers: If set to ``True``, event handlers are executed in |
|
|
|
separate threads. To run handlers synchronously, |
|
|
|
set to ``False``. The default is ``False``. |
|
|
|
:param kwargs: Connection parameters for the underlying Engine.IO server. |
|
|
|
|
|
|
|
The Engine.IO configuration supports the following settings: |
|
|
|
|
|
|
|
:param async_mode: The library used for asynchronous operations. Valid |
|
|
|
options are "threading", "eventlet" and "gevent". If |
|
|
|
this argument is not given, "eventlet" is tried first, |
|
|
|
then "gevent", and finally "threading". The websocket |
|
|
|
transport is only supported in "eventlet" mode. |
|
|
|
:param async_mode: The asynchronous model to use. See the Deployment |
|
|
|
section in the documentation for a description of the |
|
|
|
available options. Valid async modes are "threading", |
|
|
|
"eventlet", "gevent" and "gevent_uwsgi". If this |
|
|
|
argument is not given, "eventlet" is tried first, then |
|
|
|
"gevent_uwsgi", then "gevent", and finally "threading". |
|
|
|
The first async mode that has all its dependencies |
|
|
|
installed is then one that is chosen. |
|
|
|
:param ping_timeout: The time in seconds that the client waits for the |
|
|
|
server to respond before disconnecting. |
|
|
|
:param ping_interval: The interval in seconds at which the client pings |
|
|
@ -63,7 +69,7 @@ class Server(object): |
|
|
|
``False``. |
|
|
|
""" |
|
|
|
def __init__(self, client_manager=None, logger=False, binary=False, |
|
|
|
json=None, **kwargs): |
|
|
|
json=None, async_handlers=False, **kwargs): |
|
|
|
engineio_options = kwargs |
|
|
|
engineio_logger = engineio_options.pop('engineio_logger', None) |
|
|
|
if engineio_logger is not None: |
|
|
@ -71,6 +77,7 @@ class Server(object): |
|
|
|
if json is not None: |
|
|
|
packet.Packet.json = json |
|
|
|
engineio_options['json'] = json |
|
|
|
engineio_options['async_handlers'] = False |
|
|
|
self.eio = engineio.Server(**engineio_options) |
|
|
|
self.eio.on('connect', self._handle_eio_connect) |
|
|
|
self.eio.on('message', self._handle_eio_message) |
|
|
@ -101,6 +108,8 @@ class Server(object): |
|
|
|
self.manager = client_manager |
|
|
|
self.manager_initialized = False |
|
|
|
|
|
|
|
self.async_handlers = async_handlers |
|
|
|
|
|
|
|
self.async_mode = self.eio.async_mode |
|
|
|
|
|
|
|
def on(self, event, handler=None, namespace=None): |
|
|
@ -293,11 +302,13 @@ class Server(object): |
|
|
|
argument is omitted the default namespace is used. |
|
|
|
""" |
|
|
|
namespace = namespace or '/' |
|
|
|
self.logger.info('Disconnecting %s [%s]', sid, namespace) |
|
|
|
self._send_packet(sid, packet.Packet(packet.DISCONNECT, |
|
|
|
namespace=namespace)) |
|
|
|
self._trigger_event('disconnect', namespace, sid) |
|
|
|
self.manager.disconnect(sid, namespace=namespace) |
|
|
|
if self.manager.is_connected(sid, namespace=namespace): |
|
|
|
self.logger.info('Disconnecting %s [%s]', sid, namespace) |
|
|
|
self.manager.pre_disconnect(sid, namespace=namespace) |
|
|
|
self._send_packet(sid, packet.Packet(packet.DISCONNECT, |
|
|
|
namespace=namespace)) |
|
|
|
self._trigger_event('disconnect', namespace, sid) |
|
|
|
self.manager.disconnect(sid, namespace=namespace) |
|
|
|
|
|
|
|
def transport(self, sid): |
|
|
|
"""Return the name of the transport used by the client. |
|
|
@ -418,7 +429,14 @@ class Server(object): |
|
|
|
namespace = namespace or '/' |
|
|
|
self.logger.info('received event "%s" from %s [%s]', data[0], sid, |
|
|
|
namespace) |
|
|
|
r = self._trigger_event(data[0], namespace, sid, *data[1:]) |
|
|
|
if self.async_handlers: |
|
|
|
self.start_background_task(self._handle_event_internal, self, sid, |
|
|
|
data, namespace, id) |
|
|
|
else: |
|
|
|
self._handle_event_internal(self, sid, data, namespace, id) |
|
|
|
|
|
|
|
def _handle_event_internal(self, server, sid, data, namespace, id): |
|
|
|
r = server._trigger_event(data[0], namespace, sid, *data[1:]) |
|
|
|
if id is not None: |
|
|
|
# send ACK packet with the response returned by the handler |
|
|
|
# tuples are expanded as multiple arguments |
|
|
@ -432,10 +450,10 @@ class Server(object): |
|
|
|
binary = False # pragma: nocover |
|
|
|
else: |
|
|
|
binary = None |
|
|
|
self._send_packet(sid, packet.Packet(packet.ACK, |
|
|
|
namespace=namespace, |
|
|
|
id=id, data=data, |
|
|
|
binary=binary)) |
|
|
|
server._send_packet(sid, packet.Packet(packet.ACK, |
|
|
|
namespace=namespace, |
|
|
|
id=id, data=data, |
|
|
|
binary=binary)) |
|
|
|
|
|
|
|
def _handle_ack(self, sid, namespace, id, data): |
|
|
|
"""Handle ACK packets from the client.""" |
|
|
|