sh_cpl/src/cpl_cli/command_handler_service.py

98 lines
3.5 KiB
Python
Raw Normal View History

2021-03-08 22:29:28 +01:00
import os
2021-04-07 18:19:34 +02:00
import sys
2021-03-29 13:29:26 +02:00
from abc import ABC
2021-03-08 22:29:28 +01:00
2021-03-16 22:06:37 +01:00
from cpl.configuration.configuration_abc import ConfigurationABC
2021-03-23 17:31:24 +01:00
from cpl.console.console import Console
2021-03-08 22:02:16 +01:00
from cpl.dependency_injection.service_provider_abc import ServiceProviderABC
2021-04-07 18:19:34 +02:00
from cpl_cli.configuration.workspace_settings import WorkspaceSettings
2021-03-08 22:29:28 +01:00
from cpl_cli.error import Error
2021-03-04 19:06:53 +01:00
from cpl_cli.command_model import CommandModel
2021-03-03 19:37:35 +01:00
2021-03-29 13:29:26 +02:00
class CommandHandler(ABC):
2021-03-03 19:37:35 +01:00
def __init__(self, config: ConfigurationABC, services: ServiceProviderABC):
2021-03-14 16:01:15 +01:00
"""
Service to handle incoming commands and args
:param config:
2021-03-14 16:01:15 +01:00
:param services:
"""
2021-03-29 13:29:26 +02:00
ABC.__init__(self)
2021-03-03 19:37:35 +01:00
2021-03-16 22:06:37 +01:00
self._config = config
self._env = self._config.environment
2021-03-04 19:06:53 +01:00
self._services = services
2021-03-04 07:18:36 +01:00
2021-03-04 19:06:53 +01:00
self._commands: list[CommandModel] = []
2021-03-03 19:37:35 +01:00
2021-03-13 22:53:28 +01:00
@property
def commands(self) -> list[CommandModel]:
return self._commands
2021-04-07 18:19:34 +02:00
def _load_json(self):
pass
2021-03-04 19:06:53 +01:00
def add_command(self, cmd: CommandModel):
2021-03-03 19:37:35 +01:00
self._commands.append(cmd)
2021-03-04 19:06:53 +01:00
def remove_command(self, cmd: CommandModel):
2021-03-03 19:37:35 +01:00
self._commands.remove(cmd)
def handle(self, cmd: str, args: list[str]):
2021-03-14 16:01:15 +01:00
"""
Handles incoming commands and args
:param cmd:
:param args:
:return:
"""
2021-03-03 19:37:35 +01:00
for command in self._commands:
if cmd == command.name or cmd in command.aliases:
2021-04-07 18:19:34 +02:00
if command.is_project_needed and \
not os.path.isfile(os.path.join(self._env.working_directory, 'cpl-workspace.json')):
Error.error(
'The command requires to be run in an CPL workspace, but a workspace could not be found.'
)
2021-03-08 22:29:28 +01:00
return
2021-03-16 22:06:37 +01:00
if command.is_project_needed:
2021-04-07 18:19:34 +02:00
self._config.add_json_file('cpl-workspace.json', optional=True, output=False)
workspace: WorkspaceSettings = self._config.get_configuration(WorkspaceSettings)
if workspace is None:
Error.error(
'The command requires to be run in an CPL workspace, but a workspace could not be found.'
)
return
project_name = workspace.default_project
if len(args) > 0:
project_name = args[0]
index = sys.argv.index(args[0]) + 1
if index < len(sys.argv):
args = sys.argv[index:]
self._config.add_configuration('ProjectName', project_name)
2021-04-07 18:19:34 +02:00
if project_name not in workspace.projects:
Error.error(
f'Project {project_name} not found.'
)
return
project_json = workspace.projects[project_name]
if not os.path.isfile(os.path.join(self._env.working_directory, project_json)):
Error.error(
'The command requires to be run in an CPL project, but a project could not be found.'
)
return
self._config.add_json_file(project_json, optional=True, output=False)
self._config.environment.set_working_directory(
os.path.join(self._env.working_directory, os.path.dirname(project_json))
)
2021-03-16 22:06:37 +01:00
2021-03-04 19:06:53 +01:00
self._services.get_service(command.command).run(args)
2021-03-23 17:31:24 +01:00
Console.write('\n')