class AbstractContext(object): result: Result = None def __init__(self): self.result = Result() def warn(self, message, reason): self.result.warn(message, reason) def error(self, exit_code, message, reason, throw: bool = False): self.result.error(exit_code, message, reason, throw) def fail(self, exit_code, message, reason): self.result.fail(exit_code, message, reason) def add_subresult(self, subresult): self.result.add_subresult(subresult) def has_errors(self): return self.result.has_errors() def abort_on_error(self): return self.result.abort_on_error() def abort(self): return self.result.abort()
def create_version_branch(command_context: CommandContext, operation: Callable[[VersionConfig, Optional[str], Optional[int]], Result]) -> Result: result = Result() context: Context = command_context.context if command_context.selected_ref.name not in [ repotools.create_ref_name(const.LOCAL_BRANCH_PREFIX, context.config.release_branch_base), repotools.create_ref_name(const.REMOTES_PREFIX, context.config.remote_name, context.config.release_branch_base)]: result.fail(os.EX_USAGE, _("Failed to create release branch based on {branch}.") .format(branch=repr(command_context.selected_ref.name)), _("Release branches (major.minor) can only be created off {branch}") .format(branch=repr(context.config.release_branch_base)) ) existing_release_branches = list(repotools.git_list_refs(context.repo, repotools.ref_name([ const.REMOTES_PREFIX, context.config.remote_name, 'release']))) release_branch_merge_bases = dict() for release_branch in context.get_release_branches(): merge_base = repotools.git_merge_base(context.repo, context.config.release_branch_base, release_branch) if merge_base is None: result.fail(os.EX_DATAERR, "Failed to resolve merge base.", None) branch_refs = release_branch_merge_bases.get(merge_base) if branch_refs is None: release_branch_merge_bases[merge_base] = branch_refs = list() branch_refs.append(release_branch) latest_branch = None branch_points_on_same_commit = list() subsequent_branches = list() for history_commit in repotools.git_list_commits( context=context.repo, start=None, end=command_context.selected_commit, options=const.BRANCH_COMMIT_SCAN_OPTIONS): branch_refs = release_branch_merge_bases.get(history_commit.obj_name) if branch_refs is not None and len(branch_refs): branch_refs = list( filter(lambda tag_ref: context.release_branch_matcher.format(tag_ref.name) is not None, branch_refs)) if not len(branch_refs): continue branch_refs.sort( reverse=True, key=utils.cmp_to_key( lambda tag_ref_a, tag_ref_b: semver.compare( context.release_branch_matcher.format(tag_ref_a.name), context.release_branch_matcher.format(tag_ref_b.name) ) ) ) if latest_branch is None: latest_branch = branch_refs[0] if history_commit.obj_name == command_context.selected_commit: branch_points_on_same_commit.extend(branch_refs) # for tag_ref in tag_refs: # print('<<' + tag_ref.name) break for history_commit in repotools.git_list_commits(context.repo, command_context.selected_commit, command_context.selected_ref): branch_refs = release_branch_merge_bases.get(history_commit.obj_name) if branch_refs is not None and len(branch_refs): branch_refs = list( filter(lambda tag_ref: context.release_branch_matcher.format(tag_ref.name) is not None, branch_refs)) if not len(branch_refs): continue branch_refs.sort( reverse=True, key=utils.cmp_to_key( lambda tag_ref_a, tag_ref_b: semver.compare( context.release_branch_matcher.format(tag_ref_a.name), context.release_branch_matcher.format(tag_ref_b.name) ) ) ) # for tag_ref in tag_refs: # print('>>' + tag_ref.name) subsequent_branches.extend(branch_refs) if context.verbose: cli.print("Branches on same commit:\n" + '\n'.join(' - ' + repr(tag_ref.name) for tag_ref in branch_points_on_same_commit)) cli.print("Subsequent branches:\n" + '\n'.join(' - ' + repr(tag_ref.name) for tag_ref in subsequent_branches)) if latest_branch is not None: latest_branch_version = context.release_branch_matcher.format(latest_branch.name) latest_branch_version_info = semver.parse_version_info(latest_branch_version) else: latest_branch_version = None latest_branch_version_info = None if latest_branch_version is not None: version_result = operation(context.config.version_config, latest_branch_version, get_global_sequence_number(context)) result.add_subresult(version_result) new_version = version_result.value new_version_info = semver.parse_version_info(new_version) else: new_version_info = semver.parse_version_info(context.config.version_config.initial_version) new_version = version.format_version_info(new_version_info) scheme_procedures.get_sequence_number(context.config.version_config, new_version_info) if context.config.sequential_versioning: new_sequential_version = create_sequence_number_for_version(context, new_version) else: new_sequential_version = None try: config_in_selected_commit = read_config_in_commit(context.repo, command_context.selected_commit) except FileNotFoundError: config_in_selected_commit = dict() try: properties_in_selected_commit = read_properties_in_commit(context, context.repo, config_in_selected_commit, command_context.selected_commit) except FileNotFoundError: properties_in_selected_commit = dict() if not context.config.allow_shared_release_branch_base and len(branch_points_on_same_commit): result.fail(os.EX_USAGE, _("Branch creation failed."), _("Release branches cannot share a common ancestor commit.\n" "Existing branches on commit {commit}:\n" "{listing}") .format(commit=command_context.selected_commit, listing='\n'.join(' - ' + repr(tag_ref.name) for tag_ref in branch_points_on_same_commit))) if len(subsequent_branches): result.fail(os.EX_USAGE, _("Branch creation failed."), _("Subsequent release branches in history: %s\n") % '\n'.join(' - ' + repr(tag_ref.name) for tag_ref in subsequent_branches)) if context.config.tie_sequential_version_to_semantic_version \ and len(existing_release_branches): prompt_result = prompt_for_confirmation( context=context, fail_title=_("Failed to create release branch based on {branch}.") .format(branch=repr(command_context.selected_ref.name)), message=_("This operation disables version increments " "on all existing release branches.\n" "Affected branches are:\n" "{listing}") .format(listing=os.linesep.join(repr(branch.name) for branch in existing_release_branches)) if not context.config.commit_version_property else _("This operation disables version increments on all existing branches.\n" "Affected branches are:\n" "{listing}") .format(listing=os.linesep.join(repr(branch.name) for branch in existing_release_branches)), prompt=_("Continue?"), ) result.add_subresult(prompt_result) if result.has_errors() or not prompt_result.value: return result if not result.has_errors(): if new_version is None: result.error(os.EX_SOFTWARE, _("Internal error."), _("Missing result version.") ) if latest_branch_version is not None and semver.compare(latest_branch_version, new_version) >= 0: result.error(os.EX_DATAERR, _("Failed to increment version from {current_version} to {new_version}.") .format(current_version=repr(latest_branch_version), new_version=repr(new_version)), _("The new version is lower than or equal to the current version.") ) result.abort_on_error() branch_name = get_branch_name_for_version(context, new_version_info) tag_name = get_tag_name_for_version(context, new_version_info) clone_result = clone_repository(context, context.config.release_branch_base) cloned_repo: RepoContext = clone_result.value # run version change hooks on new release branch git_or_fail(cloned_repo, result, ['checkout', '--force', '-b', branch_name, command_context.selected_commit], _("Failed to check out release branch.")) clone_context: Context = create_temp_context(context, result, cloned_repo.dir) clone_context.config.remote_name = 'origin' commit_info = CommitInfo() commit_info.add_message("#version: " + cli.if_none(new_version)) if (context.config.commit_version_property and new_version is not None) \ or (context.config.commit_sequential_version_property and new_sequential_version is not None): update_result = update_project_property_file(clone_context, properties_in_selected_commit, new_version, new_sequential_version, commit_info) result.add_subresult(update_result) if result.has_errors(): result.fail(os.EX_DATAERR, _("Property update failed."), _("An unexpected error occurred.") ) if new_version is not None: execute_version_change_actions(clone_context, latest_branch_version, new_version) if commit_info is not None: if command_context.selected_commit != command_context.selected_ref.target.obj_name: result.fail(os.EX_USAGE, _("Failed to commit version update."), _("The selected parent commit {commit} does not represent the tip of {branch}.") .format(commit=command_context.selected_commit, branch=repr(command_context.selected_ref.name)) ) # commit changes commit_info.add_parent(command_context.selected_commit) object_to_tag = create_commit(clone_context, result, commit_info) else: object_to_tag = command_context.selected_commit # show info and prompt for confirmation cli.print("ref : " + cli.if_none(command_context.selected_ref.name)) cli.print("ref_" + const.DEFAULT_VERSION_VAR_NAME + " : " + cli.if_none(latest_branch_version)) cli.print("new_branch : " + cli.if_none(branch_name)) cli.print("new_" + const.DEFAULT_VERSION_VAR_NAME + " : " + cli.if_none(new_version)) cli.print("selected object : " + cli.if_none(command_context.selected_commit)) cli.print("tagged object : " + cli.if_none(object_to_tag)) prompt_result = prompt_for_confirmation( context=context, fail_title=_("Failed to create release branch based on {branch}.") .format(branch=repr(command_context.selected_ref.name)), message=_("The branch and tags are about to be pushed."), prompt=_("Continue?"), ) result.add_subresult(prompt_result) if result.has_errors() or not prompt_result.value: return result # push atomically push_command = ['push', '--atomic'] if context.dry_run: push_command.append('--dry-run') if context.verbose: push_command.append('--verbose') push_command.append(context.config.remote_name) # push the base branch commit # push_command.append(commit + ':' + const.LOCAL_BRANCH_PREFIX + selected_ref.local_branch_name) # push the new branch or fail if it exists push_command.extend( ['--force-with-lease=' + repotools.create_ref_name(const.LOCAL_BRANCH_PREFIX, branch_name) + ':', repotools.ref_target(object_to_tag) + ':' + repotools.create_ref_name(const.LOCAL_BRANCH_PREFIX, branch_name)]) # push the new version tag or fail if it exists push_command.extend(['--force-with-lease=' + repotools.create_ref_name(const.LOCAL_TAG_PREFIX, tag_name) + ':', repotools.ref_target(object_to_tag) + ':' + repotools.create_ref_name( const.LOCAL_TAG_PREFIX, tag_name)]) git_or_fail(cloned_repo, result, push_command, _("Failed to push.")) return result