1
0
Fork 0
mirror of synced 2024-06-26 02:41:10 -04:00
dotbot/dotbot/dispatcher.py

63 lines
2.3 KiB
Python
Raw Normal View History

2014-03-19 23:07:30 -04:00
import os
2016-01-16 22:00:15 -05:00
from .plugin import Plugin
2014-03-19 23:07:30 -04:00
from .messenger import Messenger
from .context import Context
import traceback
2014-03-19 23:07:30 -04:00
2021-02-15 06:11:16 -05:00
2014-03-19 23:07:30 -04:00
class Dispatcher(object):
def __init__(self, base_directory, only=None, skip=None):
2014-03-19 23:07:30 -04:00
self._log = Messenger()
self._setup_context(base_directory)
2014-03-19 23:07:30 -04:00
self._load_plugins()
self._only = only
self._skip = skip
2014-03-19 23:07:30 -04:00
def _setup_context(self, base_directory):
2021-02-15 06:11:16 -05:00
path = os.path.abspath(os.path.expanduser(base_directory))
if not os.path.exists(path):
2021-02-15 06:11:16 -05:00
raise DispatchError("Nonexistent base directory")
self._context = Context(path)
2014-03-19 23:07:30 -04:00
def dispatch(self, tasks):
success = True
for task in tasks:
for action in task.keys():
2021-02-15 06:11:16 -05:00
if (
self._only is not None
and action not in self._only
or self._skip is not None
and action in self._skip
) and action != "defaults":
self._log.info("Skipping action %s" % action)
continue
2014-03-19 23:07:30 -04:00
handled = False
# print("\tcurrent action", action)
2021-02-15 06:11:16 -05:00
if action == "defaults":
self._context.set_defaults(task[action]) # replace, not update
handled = True
# keep going, let other plugins handle this if they want
2014-03-19 23:07:30 -04:00
for plugin in self._plugins:
2014-03-19 23:07:30 -04:00
if plugin.can_handle(action):
# print("Action:", action)
2014-03-19 23:07:30 -04:00
try:
success &= plugin.handle(action, task[action])
handled = True
2018-01-27 02:27:44 -05:00
except Exception as err:
print("failure", err)
traceback.print_exception(type(err), err, err.__traceback__)
2021-02-15 06:11:16 -05:00
self._log.error('An error was encountered while executing action "%s"' % action)
2018-01-27 02:27:44 -05:00
self._log.debug(err)
2014-03-19 23:07:30 -04:00
if not handled:
success = False
self._log.error('Action "%s" not handled' % action)
2014-03-19 23:07:30 -04:00
return success
def _load_plugins(self):
2021-02-15 06:11:16 -05:00
self._plugins = [plugin(self._context) for plugin in Plugin.__subclasses__()]
2014-03-19 23:07:30 -04:00
class DispatchError(Exception):
pass