summaryrefslogtreecommitdiff
path: root/dotbot/executor/executor.py
blob: e6862c0815d9474547ef9995b74eaa1f8a0f5b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from ..messenger import Messenger

class Executor(object):
    '''
    Abstract base class for commands that process directives.
    '''

    def __init__(self, base_directory):
        self._base_directory = base_directory
        self._log = Messenger()

    def can_handle(self, directive):
        '''
        Returns true if the Executor can handle the directive.
        '''
        raise NotImplementedError

    def handle(self, directive, data):
        '''
        Executes the directive.

        Returns true if the Executor successfully handled the directive.
        '''
        raise NotImplementedError