2020-08-12 15:46:50 +00:00
|
|
|
# parent
|
2020-08-12 14:43:13 +00:00
|
|
|
from ..parser import Parser
|
|
|
|
|
|
|
|
|
|
|
|
class SubCommand:
|
2020-08-13 08:48:01 +00:00
|
|
|
"""represents kiwi [anything] command"""
|
|
|
|
|
|
|
|
# actual command string
|
2020-08-12 14:43:13 +00:00
|
|
|
__name = None
|
2020-08-13 08:48:01 +00:00
|
|
|
# command parser
|
2020-08-12 14:43:13 +00:00
|
|
|
_sub_parser = None
|
|
|
|
|
|
|
|
def __init__(self, name, **kwargs):
|
|
|
|
self.__name = name
|
2020-08-13 08:48:01 +00:00
|
|
|
self._sub_parser = Parser().get_subparsers().add_parser(
|
|
|
|
name,
|
|
|
|
**kwargs
|
|
|
|
)
|
2020-08-12 14:43:13 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.__name
|
|
|
|
|
|
|
|
def run(self, config, args):
|
2020-08-13 08:48:01 +00:00
|
|
|
"""actually run command with this dir's config and parsed CLI args"""
|
2020-08-12 14:43:13 +00:00
|
|
|
pass
|
2020-08-13 09:32:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ProjectCommand(SubCommand):
|
|
|
|
"""this command concerns a project in current instance"""
|
|
|
|
|
|
|
|
def __init__(self, name, **kwargs):
|
|
|
|
super().__init__(
|
|
|
|
name,
|
|
|
|
**kwargs
|
|
|
|
)
|
|
|
|
|
|
|
|
self._sub_parser.add_argument(
|
|
|
|
'project', type=str,
|
|
|
|
help="select a project in this instance"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class ServiceCommand(ProjectCommand):
|
2020-08-13 12:26:49 +00:00
|
|
|
"""this command concerns service(s) in a project"""
|
2020-08-13 09:32:54 +00:00
|
|
|
|
2020-08-13 12:26:49 +00:00
|
|
|
def __init__(self, name, nargs=1, **kwargs):
|
2020-08-13 09:32:54 +00:00
|
|
|
super().__init__(
|
|
|
|
name,
|
|
|
|
**kwargs
|
|
|
|
)
|
|
|
|
|
2020-08-13 12:26:49 +00:00
|
|
|
services = "service"
|
|
|
|
|
|
|
|
if not nargs == 1:
|
|
|
|
services = "services"
|
|
|
|
|
2020-08-13 09:32:54 +00:00
|
|
|
self._sub_parser.add_argument(
|
2020-08-13 11:00:32 +00:00
|
|
|
'services', metavar='service', nargs=nargs, type=str,
|
2020-08-13 12:26:49 +00:00
|
|
|
help=f"select {services} in a project"
|
2020-08-13 09:32:54 +00:00
|
|
|
)
|