2022-05-26 16:25:15 +02:00
|
|
|
import os
|
2022-05-25 16:43:28 +02:00
|
|
|
import traceback
|
|
|
|
|
2022-05-26 21:41:42 +02:00
|
|
|
from cpl_core.utils import String
|
|
|
|
|
2022-05-25 18:40:01 +02:00
|
|
|
from cpl_cli.configuration.version_settings_name_enum import VersionSettingsNameEnum
|
|
|
|
from cpl_cli.configuration.workspace_settings import WorkspaceSettings
|
|
|
|
from cpl_core.application.application_abc import ApplicationABC
|
|
|
|
from cpl_core.configuration.configuration_abc import ConfigurationABC
|
|
|
|
from cpl_core.console.console import Console
|
|
|
|
from cpl_core.dependency_injection.service_provider_abc import ServiceProviderABC
|
|
|
|
from cpl_core.pipes.version_pipe import VersionPipe
|
2022-05-25 16:43:28 +02:00
|
|
|
from set_version.git_service import GitService
|
|
|
|
from set_version.version_setter_service import VersionSetterService
|
2022-05-25 13:43:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Application(ApplicationABC):
|
|
|
|
|
|
|
|
def __init__(self, config: ConfigurationABC, services: ServiceProviderABC):
|
|
|
|
ApplicationABC.__init__(self, config, services)
|
|
|
|
|
2022-05-25 16:43:28 +02:00
|
|
|
self._workspace: WorkspaceSettings = config.get_configuration(WorkspaceSettings)
|
|
|
|
|
|
|
|
self._git_service: GitService = self._services.get_service(GitService)
|
|
|
|
self._version_setter: VersionSetterService = self._services.get_service(VersionSetterService)
|
2022-05-25 18:40:01 +02:00
|
|
|
self._version_pipe: VersionPipe = self._services.get_service(VersionPipe)
|
2022-05-25 16:43:28 +02:00
|
|
|
|
2022-05-25 13:43:16 +02:00
|
|
|
def configure(self):
|
2022-05-25 16:43:28 +02:00
|
|
|
self._configuration.parse_console_arguments(self._services)
|
2022-05-25 13:43:16 +02:00
|
|
|
|
|
|
|
def main(self):
|
2022-05-25 16:43:28 +02:00
|
|
|
Console.write_line('Set versions:')
|
2022-05-26 16:25:15 +02:00
|
|
|
|
2022-05-25 16:43:28 +02:00
|
|
|
args = self._configuration.additional_arguments
|
|
|
|
version = {}
|
|
|
|
branch = ""
|
|
|
|
suffix = ""
|
2022-05-26 23:01:23 +02:00
|
|
|
force = False
|
|
|
|
if '--force' in args:
|
|
|
|
args.remove('--force')
|
|
|
|
force = True
|
|
|
|
|
2022-05-25 16:43:28 +02:00
|
|
|
if len(args) > 1:
|
|
|
|
Console.error(f'Unexpected argument(s): {", ".join(args[1:])}')
|
|
|
|
return
|
|
|
|
|
|
|
|
if len(args) == 1:
|
|
|
|
suffix = f'.{args[0]}'
|
|
|
|
|
|
|
|
try:
|
|
|
|
branch = self._git_service.get_active_branch_name()
|
|
|
|
Console.write_line(f'Found branch: {branch}')
|
|
|
|
except Exception as e:
|
|
|
|
Console.error('Branch could not be found', traceback.format_exc())
|
|
|
|
return
|
|
|
|
|
|
|
|
try:
|
2022-05-25 18:40:01 +02:00
|
|
|
version[VersionSettingsNameEnum.major.value] = branch.split('.')[0]
|
|
|
|
version[VersionSettingsNameEnum.minor.value] = branch.split('.')[1]
|
|
|
|
version[VersionSettingsNameEnum.micro.value] = f'{branch.split(".")[2]}{suffix}'
|
2022-05-25 16:43:28 +02:00
|
|
|
except Exception as e:
|
|
|
|
Console.error(f'Branch {branch} does not contain valid version')
|
|
|
|
return
|
|
|
|
|
2022-05-26 16:25:15 +02:00
|
|
|
diff_paths = []
|
|
|
|
for file in self._git_service.get_diff_files():
|
2022-05-26 23:27:20 +02:00
|
|
|
if '/' in file:
|
|
|
|
diff_paths.append(file.split('/')[1])
|
|
|
|
else:
|
|
|
|
diff_paths.append(os.path.basename(os.path.dirname(file)))
|
2022-05-26 16:25:15 +02:00
|
|
|
|
2022-05-25 16:43:28 +02:00
|
|
|
try:
|
2022-05-27 18:17:07 +02:00
|
|
|
skipped = []
|
2022-05-25 16:43:28 +02:00
|
|
|
for project in self._workspace.projects:
|
2022-05-26 23:01:23 +02:00
|
|
|
if project not in diff_paths and String.convert_to_snake_case(project) not in diff_paths and not force:
|
2022-05-26 16:26:55 +02:00
|
|
|
Console.write_line(f'Skipping {project} due to missing changes')
|
2022-05-27 18:17:07 +02:00
|
|
|
skipped.append(project)
|
2022-05-26 16:25:15 +02:00
|
|
|
continue
|
|
|
|
|
2022-05-25 18:54:21 +02:00
|
|
|
Console.write_line(f'Set dependencies {self._version_pipe.transform(version)} for {project}')
|
2022-05-27 18:17:07 +02:00
|
|
|
self._version_setter.set_dependencies(self._workspace.projects[project], version, skipped=skipped)
|
2022-05-26 16:03:14 +02:00
|
|
|
if not project.startswith('cpl') and not project.startswith('unittest'):
|
2022-05-26 16:26:55 +02:00
|
|
|
Console.write_line(f'Skipping {project}')
|
2022-05-25 16:43:28 +02:00
|
|
|
continue
|
|
|
|
|
2022-05-25 18:40:01 +02:00
|
|
|
Console.write_line(f'Set version {self._version_pipe.transform(version)} for {project}')
|
2022-05-25 16:43:28 +02:00
|
|
|
self._version_setter.set_version(self._workspace.projects[project], version)
|
|
|
|
except Exception as e:
|
|
|
|
Console.error('Version could not be set', traceback.format_exc())
|
|
|
|
return
|