2017-12-11 03:53:26 +01:00
|
|
|
import logging
|
2021-07-22 01:02:15 +02:00
|
|
|
import threading
|
|
|
|
import time
|
2017-12-13 03:37:28 +01:00
|
|
|
|
2018-11-01 19:42:40 +01:00
|
|
|
from functools import wraps
|
2021-07-22 01:02:15 +02:00
|
|
|
from typing import Optional
|
2018-11-01 19:42:40 +01:00
|
|
|
|
2021-07-22 01:02:15 +02:00
|
|
|
from platypush.bus import Bus
|
2021-09-16 17:53:40 +02:00
|
|
|
from platypush.common import ExtensionWithManifest
|
2019-02-28 01:21:25 +01:00
|
|
|
from platypush.event import EventGenerator
|
2017-12-13 04:21:26 +01:00
|
|
|
from platypush.message.response import Response
|
2021-07-22 01:02:15 +02:00
|
|
|
from platypush.utils import get_decorators, get_plugin_name_by_class, set_thread_name
|
2017-11-03 04:08:47 +01:00
|
|
|
|
2019-12-17 00:56:28 +01:00
|
|
|
|
2018-07-05 09:15:53 +02:00
|
|
|
def action(f):
|
2018-11-01 19:42:40 +01:00
|
|
|
@wraps(f)
|
2018-07-05 09:15:53 +02:00
|
|
|
def _execute_action(*args, **kwargs):
|
2019-03-06 02:01:17 +01:00
|
|
|
response = Response()
|
|
|
|
result = f(*args, **kwargs)
|
|
|
|
|
|
|
|
if result and isinstance(result, Response):
|
|
|
|
result.errors = result.errors \
|
|
|
|
if isinstance(result.errors, list) else [result.errors]
|
|
|
|
response = result
|
|
|
|
elif isinstance(result, tuple) and len(result) == 2:
|
|
|
|
response.errors = result[1] \
|
|
|
|
if isinstance(result[1], list) else [result[1]]
|
|
|
|
|
|
|
|
if len(response.errors) == 1 and response.errors[0] is None:
|
|
|
|
response.errors = []
|
|
|
|
response.output = result[0]
|
|
|
|
else:
|
|
|
|
response = Response(output=result, errors=[])
|
|
|
|
|
|
|
|
return response
|
2018-07-06 02:08:38 +02:00
|
|
|
|
2018-07-16 22:56:07 +02:00
|
|
|
# Propagate the docstring
|
|
|
|
_execute_action.__doc__ = f.__doc__
|
2018-07-05 09:15:53 +02:00
|
|
|
return _execute_action
|
|
|
|
|
|
|
|
|
2021-09-16 17:53:40 +02:00
|
|
|
class Plugin(EventGenerator, ExtensionWithManifest):
|
2017-12-18 01:10:51 +01:00
|
|
|
""" Base plugin class """
|
2017-11-03 15:06:29 +01:00
|
|
|
|
2017-12-18 01:10:51 +01:00
|
|
|
def __init__(self, **kwargs):
|
2019-02-28 01:21:25 +01:00
|
|
|
super().__init__()
|
2020-09-27 01:33:38 +02:00
|
|
|
self.logger = logging.getLogger('platypush:plugin:' + get_plugin_name_by_class(self.__class__))
|
2018-06-06 20:09:18 +02:00
|
|
|
if 'logging' in kwargs:
|
|
|
|
self.logger.setLevel(getattr(logging, kwargs['logging'].upper()))
|
2017-11-03 04:08:47 +01:00
|
|
|
|
2018-07-17 01:23:12 +02:00
|
|
|
self.registered_actions = set(
|
2020-01-10 00:07:40 +01:00
|
|
|
get_decorators(self.__class__, climb_class_hierarchy=True).get('action', [])
|
2018-07-17 01:23:12 +02:00
|
|
|
)
|
2018-07-06 02:08:38 +02:00
|
|
|
|
2017-11-04 12:28:15 +01:00
|
|
|
def run(self, method, *args, **kwargs):
|
2020-01-10 00:07:40 +01:00
|
|
|
assert method in self.registered_actions, '{} is not a registered action on {}'.\
|
|
|
|
format(method, self.__class__.__name__)
|
2017-12-13 04:14:46 +01:00
|
|
|
return getattr(self, method)(*args, **kwargs)
|
2017-12-13 03:37:28 +01:00
|
|
|
|
2017-10-31 09:20:35 +01:00
|
|
|
|
2021-09-16 17:53:40 +02:00
|
|
|
class RunnablePlugin(Plugin):
|
2021-07-22 01:02:15 +02:00
|
|
|
"""
|
|
|
|
Class for runnable plugins - i.e. plugins that have a start/stop method and can be started.
|
|
|
|
"""
|
|
|
|
def __init__(self, poll_interval: Optional[float] = None, **kwargs):
|
|
|
|
"""
|
|
|
|
:param poll_interval: How often the :meth:`.loop` function should be execute (default: None, no pause/interval).
|
|
|
|
"""
|
|
|
|
super().__init__(**kwargs)
|
|
|
|
self.poll_interval = poll_interval
|
|
|
|
self.bus: Optional[Bus] = None
|
|
|
|
self._should_stop = threading.Event()
|
|
|
|
self._thread: Optional[threading.Thread] = None
|
|
|
|
|
|
|
|
def main(self):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def should_stop(self):
|
|
|
|
return self._should_stop.is_set()
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
set_thread_name(self.__class__.__name__)
|
|
|
|
self._thread = threading.Thread(target=self._runner)
|
|
|
|
self._thread.start()
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
self._should_stop.set()
|
|
|
|
if self._thread and self._thread.is_alive():
|
|
|
|
self.logger.info(f'Waiting for {self.__class__.__name__} to stop')
|
|
|
|
# noinspection PyBroadException
|
|
|
|
try:
|
|
|
|
self._thread.join()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
self.logger.info(f'{self.__class__.__name__} stopped')
|
|
|
|
|
|
|
|
def _runner(self):
|
|
|
|
self.logger.info(f'Starting {self.__class__.__name__}')
|
|
|
|
|
|
|
|
while not self.should_stop():
|
|
|
|
try:
|
|
|
|
self.main()
|
|
|
|
except Exception as e:
|
|
|
|
self.logger.exception(e)
|
|
|
|
|
|
|
|
if self.poll_interval:
|
|
|
|
time.sleep(self.poll_interval)
|
|
|
|
|
|
|
|
self._thread = None
|
|
|
|
|
|
|
|
|
2017-10-31 09:20:35 +01:00
|
|
|
# vim:sw=4:ts=4:et:
|