ecr.commands.cmd_status

src/ecr/commands/cmd_status.py
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 .. import shared, ui
from ..ui.command import Command, Namespace, ReturnCode


class StatusCommand(Command):
    @staticmethod
    def default(args: Namespace)->ReturnCode:  # pylint: disable=W0613
        console = ui.getConsole()
        if args.var:
            vs = shared.getVariables()
            nameLen = 10
            for k, v in vs.items():
                console.info(k.ljust(nameLen), end=" ")
                console.write(v)
        return ReturnCode.OK

    def __init__(self):
        super().__init__("status", help="Get status", func=StatusCommand.default)

    def createParser(self, parsers):
        cmd = super().createParser(parsers)
        cmd.add_argument("-v", "--var", action="store_true",
                         default=False, help="Show all variables")
        return cmd