2018-04-03 12:49:14 +00:00
|
|
|
# Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
|
|
# All Rights Reserved. See LICENSE file for details.
|
|
|
|
|
2018-03-27 15:49:32 +00:00
|
|
|
from abc import ABC, abstractmethod
|
2018-06-29 20:02:26 +00:00
|
|
|
from json import dumps
|
|
|
|
from hashlib import md5
|
2018-03-27 15:49:32 +00:00
|
|
|
|
2018-04-06 13:21:45 +00:00
|
|
|
from tfw.networking.event_handlers import ServerConnector
|
2018-06-29 20:02:26 +00:00
|
|
|
from tfw.config.logs import logging
|
|
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
2018-01-25 14:24:42 +00:00
|
|
|
|
2017-11-27 17:20:09 +00:00
|
|
|
|
2018-03-27 15:49:32 +00:00
|
|
|
class EventHandlerBase(ABC):
|
2018-04-18 17:44:26 +00:00
|
|
|
"""
|
|
|
|
Abstract base class for all Python based EventHandlers. Useful implementation template
|
|
|
|
for other languages.
|
|
|
|
|
|
|
|
Derived classes must implement the handle_event() method
|
|
|
|
"""
|
2018-02-21 14:28:16 +00:00
|
|
|
def __init__(self, key):
|
2018-01-26 14:16:34 +00:00
|
|
|
self.server_connector = ServerConnector()
|
2018-02-21 14:28:16 +00:00
|
|
|
self.key = key
|
2018-04-18 18:07:41 +00:00
|
|
|
self.subscribe(self.key, 'reset')
|
2018-01-26 14:16:34 +00:00
|
|
|
self.server_connector.register_callback(self.event_handler_callback)
|
2018-01-17 13:26:16 +00:00
|
|
|
|
2018-06-29 09:50:36 +00:00
|
|
|
def event_handler_callback(self, message):
|
2018-04-18 18:07:41 +00:00
|
|
|
"""
|
|
|
|
Callback that is invoked when receiving a message.
|
2018-04-18 18:16:56 +00:00
|
|
|
Dispatches messages to handler methods and sends
|
|
|
|
a response back in case the handler returned something.
|
2018-04-18 18:07:41 +00:00
|
|
|
This is subscribed in __init__().
|
|
|
|
"""
|
2018-04-13 18:45:34 +00:00
|
|
|
response = self.dispatch_handling(message)
|
2018-04-18 18:16:56 +00:00
|
|
|
if response:
|
|
|
|
self.server_connector.send(response)
|
2018-01-17 13:26:16 +00:00
|
|
|
|
2018-04-13 18:45:34 +00:00
|
|
|
def dispatch_handling(self, message):
|
2018-04-18 18:16:56 +00:00
|
|
|
"""
|
|
|
|
Used to dispatch messages to their specific handlers.
|
2018-06-29 20:02:26 +00:00
|
|
|
|
|
|
|
:param message: the message received
|
|
|
|
:returns: the message to send back
|
2018-04-18 18:16:56 +00:00
|
|
|
"""
|
2018-04-13 18:45:34 +00:00
|
|
|
if message['key'] != 'reset':
|
|
|
|
return self.handle_event(message)
|
2018-04-18 16:47:51 +00:00
|
|
|
return self.handle_reset(message)
|
2018-02-23 13:07:41 +00:00
|
|
|
|
2018-03-27 15:49:32 +00:00
|
|
|
@abstractmethod
|
2018-04-13 18:45:34 +00:00
|
|
|
def handle_event(self, message):
|
2018-04-18 18:07:41 +00:00
|
|
|
"""
|
|
|
|
Abstract method that implements the handling of messages.
|
|
|
|
|
|
|
|
:param message: the message received
|
2018-06-29 20:02:26 +00:00
|
|
|
:returns: the message to send back
|
2018-04-18 18:07:41 +00:00
|
|
|
"""
|
2018-01-17 13:26:16 +00:00
|
|
|
raise NotImplementedError
|
2017-11-27 17:20:09 +00:00
|
|
|
|
2018-03-08 15:11:43 +00:00
|
|
|
def handle_reset(self, message):
|
2018-03-30 16:11:38 +00:00
|
|
|
# pylint: disable=unused-argument,no-self-use
|
2018-04-18 18:07:41 +00:00
|
|
|
"""
|
2018-04-18 18:16:56 +00:00
|
|
|
Usually 'reset' events receive some sort of special treatment.
|
2018-01-17 15:33:34 +00:00
|
|
|
|
2018-04-18 18:07:41 +00:00
|
|
|
:param message: the message received
|
2018-06-29 20:02:26 +00:00
|
|
|
:returns: the message to send back
|
2018-04-18 18:07:41 +00:00
|
|
|
"""
|
|
|
|
return None
|
2018-02-13 14:38:46 +00:00
|
|
|
|
2018-04-18 18:07:41 +00:00
|
|
|
def subscribe(self, *keys):
|
|
|
|
"""
|
|
|
|
Subscribe this EventHandler to receive events for given keys.
|
|
|
|
Note that you can subscribe to the same key several times in which
|
|
|
|
case you will need to unsubscribe multiple times in order to stop
|
|
|
|
receiving events.
|
|
|
|
|
|
|
|
:param keys: list of keys to subscribe to
|
|
|
|
"""
|
|
|
|
for key in keys:
|
2018-02-21 14:28:16 +00:00
|
|
|
self.server_connector.subscribe(key)
|
2017-11-27 17:34:26 +00:00
|
|
|
|
2018-04-18 18:07:41 +00:00
|
|
|
def unsubscribe(self, *keys):
|
|
|
|
"""
|
|
|
|
Unsubscribe this eventhandler from the given keys.
|
|
|
|
|
|
|
|
:param keys: list of keys to unsubscribe from
|
|
|
|
"""
|
|
|
|
for key in keys:
|
2018-02-21 14:28:16 +00:00
|
|
|
self.server_connector.unsubscribe(key)
|
2017-11-27 17:34:26 +00:00
|
|
|
|
2018-04-18 18:07:41 +00:00
|
|
|
def cleanup(self):
|
|
|
|
"""
|
|
|
|
Perform cleanup actions such as releasing database
|
|
|
|
connections and stuff like that.
|
|
|
|
"""
|
|
|
|
pass
|
2018-02-23 13:07:41 +00:00
|
|
|
|
|
|
|
|
2018-03-27 15:49:32 +00:00
|
|
|
class TriggeredEventHandler(EventHandlerBase, ABC):
|
2018-03-30 16:11:38 +00:00
|
|
|
# pylint: disable=abstract-method
|
2018-04-18 17:44:26 +00:00
|
|
|
"""
|
|
|
|
Abstract base class for EventHandlers which are only triggered in case
|
|
|
|
TFWServer has successfully triggered an FSM step defined in __init__.
|
|
|
|
"""
|
2018-02-23 13:07:41 +00:00
|
|
|
def __init__(self, key, trigger):
|
|
|
|
super().__init__(key)
|
|
|
|
self.trigger = trigger
|
|
|
|
|
2018-04-13 18:45:34 +00:00
|
|
|
def dispatch_handling(self, message):
|
2018-02-23 13:07:41 +00:00
|
|
|
if message.get('trigger') == self.trigger:
|
2018-04-18 16:47:51 +00:00
|
|
|
return super().dispatch_handling(message)
|
2018-03-30 16:11:38 +00:00
|
|
|
return None
|
2018-06-29 20:02:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
class BroadcastingEventHandler(EventHandlerBase, ABC):
|
|
|
|
# pylint: disable=abstract-method
|
|
|
|
"""
|
|
|
|
Abstract base class for EventHandlers which broadcast responses
|
|
|
|
and intelligently ignore their own broadcasted messages they receive.
|
|
|
|
"""
|
|
|
|
def __init__(self, key):
|
|
|
|
super().__init__(key)
|
|
|
|
self.own_message_hashes = []
|
|
|
|
|
|
|
|
def event_handler_callback(self, message):
|
|
|
|
message_hash = self.hash_message(message)
|
|
|
|
|
|
|
|
if message_hash in self.own_message_hashes:
|
|
|
|
self.own_message_hashes.remove(message_hash)
|
|
|
|
return
|
|
|
|
|
|
|
|
response = self.dispatch_handling(message)
|
|
|
|
if response:
|
|
|
|
self.own_message_hashes.append(self.hash_message(response))
|
2018-07-12 12:58:31 +00:00
|
|
|
self.server_connector.broadcast(response)
|
2018-06-29 20:02:26 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def hash_message(message):
|
|
|
|
message_bytes = dumps(message, sort_keys=True).encode()
|
|
|
|
return md5(message_bytes).hexdigest()
|