2021-04-07 18:19:34 +02:00
|
|
|
import os
|
2021-07-24 17:24:01 +02:00
|
|
|
from typing import Optional
|
2021-04-07 18:19:34 +02:00
|
|
|
|
2021-08-05 14:21:42 +02:00
|
|
|
from cpl_core.application.startup_abc import StartupABC
|
2022-05-18 22:26:11 +02:00
|
|
|
from cpl_core.configuration.argument_abc import ConsoleArgument
|
2021-08-05 14:21:42 +02:00
|
|
|
from cpl_core.configuration.configuration_abc import ConfigurationABC
|
|
|
|
from cpl_core.dependency_injection.service_collection_abc import ServiceCollectionABC
|
|
|
|
from cpl_core.dependency_injection.service_provider_abc import ServiceProviderABC
|
2021-04-11 15:36:04 +02:00
|
|
|
from cpl_cli.command.add_service import AddService
|
2021-03-12 16:06:30 +01:00
|
|
|
from cpl_cli.command.build_service import BuildService
|
2021-07-24 17:24:01 +02:00
|
|
|
from cpl_cli.command.custom_script_service import CustomScriptService
|
2021-03-12 16:06:30 +01:00
|
|
|
from cpl_cli.command.generate_service import GenerateService
|
2021-03-13 22:53:28 +01:00
|
|
|
from cpl_cli.command.install_service import InstallService
|
2021-03-12 16:06:30 +01:00
|
|
|
from cpl_cli.command.new_service import NewService
|
|
|
|
from cpl_cli.command.publish_service import PublishService
|
2021-04-11 12:33:05 +02:00
|
|
|
from cpl_cli.command.remove_service import RemoveService
|
2021-03-12 22:53:02 +01:00
|
|
|
from cpl_cli.command.start_service import StartService
|
2021-03-14 10:58:59 +01:00
|
|
|
from cpl_cli.command.uninstall_service import UninstallService
|
2021-03-13 21:39:59 +01:00
|
|
|
from cpl_cli.command.update_service import UpdateService
|
2021-03-12 16:06:30 +01:00
|
|
|
from cpl_cli.command_handler_service import CommandHandler
|
|
|
|
from cpl_cli.command.help_service import HelpService
|
|
|
|
from cpl_cli.command.version_service import VersionService
|
2021-07-24 17:24:01 +02:00
|
|
|
from cpl_cli.configuration.workspace_settings import WorkspaceSettings
|
2021-03-04 06:53:38 +01:00
|
|
|
from cpl_cli.error import Error
|
2021-03-13 11:05:17 +01:00
|
|
|
from cpl_cli.live_server.live_server_service import LiveServerService
|
2021-03-12 16:10:43 +01:00
|
|
|
from cpl_cli.publish.publisher_service import PublisherService
|
2021-03-04 19:06:53 +01:00
|
|
|
from cpl_cli.publish.publisher_abc import PublisherABC
|
2021-10-03 11:23:17 +02:00
|
|
|
from cpl_core.environment import ApplicationEnvironment
|
2021-03-03 18:37:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
class Startup(StartupABC):
|
|
|
|
|
2021-10-03 11:23:17 +02:00
|
|
|
def __init__(self):
|
2021-03-19 14:20:57 +01:00
|
|
|
StartupABC.__init__(self)
|
|
|
|
|
2021-10-03 11:23:17 +02:00
|
|
|
def configure_configuration(self, configuration: ConfigurationABC, environment: ApplicationEnvironment) -> ConfigurationABC:
|
|
|
|
environment.set_runtime_directory(os.path.dirname(__file__))
|
|
|
|
configuration.argument_error_function = Error.error
|
2021-03-04 06:53:38 +01:00
|
|
|
|
2021-10-03 11:23:17 +02:00
|
|
|
configuration.add_environment_variables('PYTHON_')
|
|
|
|
configuration.add_environment_variables('CPL_')
|
|
|
|
configuration.add_json_file('appsettings.json', path=environment.runtime_directory, optional=False, output=False)
|
2021-03-04 07:09:08 +01:00
|
|
|
|
2021-10-03 11:23:17 +02:00
|
|
|
configuration.add_console_argument(ConsoleArgument('', 'add', ['a', 'a'], ' '))
|
|
|
|
configuration.add_console_argument(ConsoleArgument('', 'build', ['b', 'B'], ''))
|
|
|
|
configuration.add_console_argument(ConsoleArgument('', 'generate', ['g', 'G'], '', console_arguments=[
|
2021-03-10 22:29:42 +01:00
|
|
|
ConsoleArgument('', 'abc', ['a', 'A'], ' '),
|
|
|
|
ConsoleArgument('', 'class', ['c', 'C'], ' '),
|
|
|
|
ConsoleArgument('', 'enum', ['e', 'E'], ' '),
|
2021-03-12 15:44:55 +01:00
|
|
|
ConsoleArgument('', 'service', ['s', 'S'], ' '),
|
2021-03-12 16:01:44 +01:00
|
|
|
ConsoleArgument('', 'settings', ['st', 'ST'], ' '),
|
|
|
|
ConsoleArgument('', 'thread', ['t', 't'], ' ')
|
2021-03-10 22:29:42 +01:00
|
|
|
]))
|
2021-10-03 11:23:17 +02:00
|
|
|
configuration.add_console_argument(
|
2021-04-11 16:36:59 +02:00
|
|
|
ConsoleArgument('', 'help', ['h', 'H'], ' ', is_value_token_optional=True)
|
|
|
|
)
|
2021-10-03 11:23:17 +02:00
|
|
|
configuration.add_console_argument(
|
2021-11-30 11:51:45 +01:00
|
|
|
ConsoleArgument('', 'install', ['i', 'I'], ' ', is_value_token_optional=True, console_arguments= [
|
|
|
|
ConsoleArgument('', '--virtual', ['--v', '--V'], ''),
|
|
|
|
ConsoleArgument('', '--simulate', ['--s', '--S'], ''),
|
|
|
|
])
|
2021-03-13 22:53:28 +01:00
|
|
|
)
|
2021-10-03 11:23:17 +02:00
|
|
|
configuration.add_console_argument(ConsoleArgument('', 'new', ['n', 'N'], '', console_arguments=[
|
2021-03-30 12:44:31 +02:00
|
|
|
ConsoleArgument('', 'console', ['c', 'C'], ' '),
|
|
|
|
ConsoleArgument('', 'library', ['l', 'L'], ' ')
|
2021-03-09 22:29:14 +01:00
|
|
|
]))
|
2021-10-03 11:23:17 +02:00
|
|
|
configuration.add_console_argument(ConsoleArgument('', 'publish', ['p', 'P'], ''))
|
|
|
|
configuration.add_console_argument(ConsoleArgument('', 'remove', ['r', 'R'], ' '))
|
|
|
|
configuration.add_console_argument(ConsoleArgument('', 'start', ['s', 'S'], ''))
|
|
|
|
configuration.add_console_argument(ConsoleArgument('', 'uninstall', ['ui', 'UI'], ' '))
|
|
|
|
configuration.add_console_argument(ConsoleArgument('', 'update', ['u', 'U'], ''))
|
|
|
|
configuration.add_console_argument(ConsoleArgument('', 'version', ['v', 'V'], ''))
|
|
|
|
|
|
|
|
configuration.add_console_argument(ConsoleArgument('', '--help', ['-h', '-H'], ''))
|
|
|
|
|
|
|
|
if os.path.isfile(os.path.join(environment.working_directory, 'cpl-workspace.json')):
|
|
|
|
configuration.add_json_file('cpl-workspace.json', optional=True, output=False)
|
|
|
|
workspace: Optional[WorkspaceSettings] = configuration.get_configuration(WorkspaceSettings)
|
2021-07-24 17:24:01 +02:00
|
|
|
for script in workspace.scripts:
|
2021-10-03 11:23:17 +02:00
|
|
|
configuration.add_console_argument(
|
2021-07-24 17:24:01 +02:00
|
|
|
ConsoleArgument('', script, [], ' ', is_value_token_optional=True))
|
|
|
|
|
2022-05-18 22:26:11 +02:00
|
|
|
configuration.parse_console_arguments(error=False)
|
2021-03-03 18:37:54 +01:00
|
|
|
|
2021-10-03 11:23:17 +02:00
|
|
|
return configuration
|
2021-03-03 18:37:54 +01:00
|
|
|
|
2021-10-03 11:23:17 +02:00
|
|
|
def configure_services(self, services: ServiceCollectionABC, environment: ApplicationEnvironment) -> ServiceProviderABC:
|
|
|
|
services.add_singleton(CommandHandler)
|
2021-03-03 19:37:35 +01:00
|
|
|
|
2021-10-03 11:23:17 +02:00
|
|
|
services.add_transient(PublisherABC, PublisherService)
|
|
|
|
services.add_transient(LiveServerService)
|
2021-03-04 19:06:53 +01:00
|
|
|
|
2021-10-03 11:23:17 +02:00
|
|
|
services.add_transient(AddService)
|
|
|
|
services.add_transient(BuildService)
|
|
|
|
services.add_transient(CustomScriptService)
|
|
|
|
services.add_transient(GenerateService)
|
|
|
|
services.add_transient(HelpService)
|
|
|
|
services.add_transient(InstallService)
|
|
|
|
services.add_transient(NewService)
|
|
|
|
services.add_transient(PublishService)
|
|
|
|
services.add_transient(RemoveService)
|
|
|
|
services.add_transient(StartService)
|
|
|
|
services.add_transient(UninstallService)
|
|
|
|
services.add_transient(UpdateService)
|
|
|
|
services.add_transient(VersionService)
|
2021-03-03 19:37:35 +01:00
|
|
|
|
2021-10-03 11:23:17 +02:00
|
|
|
return services.build_service_provider()
|