mirror of
1
0
Fork 0
dotbot/dotbot/dispatcher.py

44 lines
1.5 KiB
Python

import os
from .executor import Executor
from .messenger import Messenger
class Dispatcher(object):
def __init__(self, base_directory):
self._log = Messenger()
self._set_base_directory(base_directory)
self._load_plugins()
def _set_base_directory(self, base_directory):
path = os.path.abspath(os.path.realpath(
os.path.expanduser(base_directory)))
if os.path.exists(path):
self._base_directory = path
else:
raise DispatchError('Nonexistent base directory')
def dispatch(self, tasks):
success = True
for task in tasks:
for action in task:
handled = False
for plugin in self._plugins:
if plugin.can_handle(action):
try:
success &= plugin.handle(action, task[action])
handled = True
except Exception:
self._log.error(
'An error was encountered while executing action %s' %
action)
if not handled:
success = False
self._log.error('Action %s not handled' % action)
return success
def _load_plugins(self):
self._plugins = [plugin(self._base_directory)
for plugin in Executor.__subclasses__()]
class DispatchError(Exception):
pass