summaryrefslogtreecommitdiff
path: root/cliff/command.py
blob: e369988fdf6b3623afe8acf67159ee75e78501e9 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

import abc
import argparse
import inspect


class Command(object):
    """Base class for command plugins.

    :param app: Application instance invoking the command.
    :paramtype app: cliff.app.App
    """
    __metaclass__ = abc.ABCMeta

    def __init__(self, app, app_args):
        self.app = app
        self.app_args = app_args
        return

    def get_description(self):
        """Return the command description.
        """
        return inspect.getdoc(self.__class__) or ''

    def get_parser(self, prog_name):
        """Return an argparse.ArgumentParser.
        """
        parser = argparse.ArgumentParser(
            description=self.get_description(),
            prog=prog_name,
            )
        return parser

    @abc.abstractmethod
    def take_action(self, parsed_args):
        """Return a two-part tuple with a tuple of column names
        and a tuple of values.
        """

    def run(self, parsed_args):
        """Do something useful.
        """
        self.take_action(parsed_args)
        return 0