From b839b1cf42be33947adb87d6a2ae2164aad2371e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karl=20Hasselstr=C3=B6m?= Date: Tue, 7 Nov 2006 19:03:48 +0000 Subject: [PATCH] Generate unique patch names MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit "stg assimilate" was already making sure that automatically generated patch names were non-empty and unique, by suffixing them with a dash and a number if necessary. This patch moves that functionality into the autogeneration function itself, so that all its callers can benefit from it (and the user can benefit from uniform behavior from all stgit commands). As an added bonus, this permits the removal of a number of checks that would abort with an error if the automatically generated name was empty. Signed-off-by: Karl Hasselström --- stgit/commands/assimilate.py | 9 +-------- stgit/commands/common.py | 16 +++++++++++++++- stgit/commands/imprt.py | 4 +--- stgit/commands/pick.py | 4 +--- stgit/commands/uncommit.py | 5 ++--- 5 files changed, 20 insertions(+), 18 deletions(-) diff --git a/stgit/commands/assimilate.py b/stgit/commands/assimilate.py index 0821024..a8b3bfe 100644 --- a/stgit/commands/assimilate.py +++ b/stgit/commands/assimilate.py @@ -73,14 +73,7 @@ def func(parser, options, args): return name in name2patch or crt_series.patch_exists(name) for victim in victims: - patchname = make_patch_name(victim.get_log()) - if not patchname: - patchname = 'patch' - if name_taken(patchname): - suffix = 0 - while name_taken('%s-%d' % (patchname, suffix)): - suffix += 1 - patchname = '%s-%d' % (patchname, suffix) + patchname = make_patch_name(victim.get_log(), name_taken) patch2name[victim] = patchname name2patch[patchname] = victim diff --git a/stgit/commands/common.py b/stgit/commands/common.py index 0e1bb44..d986711 100644 --- a/stgit/commands/common.py +++ b/stgit/commands/common.py @@ -284,7 +284,7 @@ def name_email_date(address): return str_list[0] -def make_patch_name(msg): +def patch_name_from_msg(msg): """Return a string to be used as a patch name. This is generated from the first 30 characters of the top line of the string passed as argument.""" @@ -293,3 +293,17 @@ def make_patch_name(msg): subject_line = msg[:30].lstrip().split('\n', 1)[0].lower() return re.sub('[\W]+', '-', subject_line).strip('-') + +def make_patch_name(msg, unacceptable, default_name = 'patch'): + """Return a patch name generated from the given commit message, + guaranteed to make unacceptable(name) be false. If the commit + message is empty, base the name on default_name instead.""" + patchname = patch_name_from_msg(msg) + if not patchname: + patchname = 'patch' + if unacceptable(patchname): + suffix = 0 + while unacceptable('%s-%d' % (patchname, suffix)): + suffix += 1 + patchname = '%s-%d' % (patchname, suffix) + return patchname diff --git a/stgit/commands/imprt.py b/stgit/commands/imprt.py index c8cf42b..34cbf38 100644 --- a/stgit/commands/imprt.py +++ b/stgit/commands/imprt.py @@ -240,9 +240,7 @@ def __import_patch(patch, filename, options): __parse_patch(filename) if not patch: - patch = make_patch_name(message) - if not patch: - raise CmdException, 'Unknown patch name' + patch = make_patch_name(message, crt_series.patch_exists) # refresh_patch() will invoke the editor in this case, with correct # patch content diff --git a/stgit/commands/pick.py b/stgit/commands/pick.py index f8f3577..996e789 100644 --- a/stgit/commands/pick.py +++ b/stgit/commands/pick.py @@ -71,9 +71,7 @@ def func(parser, options, args): elif len(patch_branch) == 2: patch = patch_branch[0] else: - patch = make_patch_name(commit.get_log()) - if not patch: - raise CmdException, 'Unknown patch name' + patch = make_patch_name(commit.get_log(), crt_series.patch_exists) if options.parent: parent = git_id(options.parent) diff --git a/stgit/commands/uncommit.py b/stgit/commands/uncommit.py index 45a2087..9798f19 100644 --- a/stgit/commands/uncommit.py +++ b/stgit/commands/uncommit.py @@ -97,9 +97,8 @@ def func(parser, options, args): if patchnames: patchname = patchnames[n] else: - patchname = make_patch_name(commit.get_log()) - if not patchname: - raise CmdException, 'Unknown patch name for commit %s' % commit_id + patchname = make_patch_name(commit.get_log(), + crt_series.patch_exists) crt_series.new_patch(patchname, can_edit = False, before_existing = True, -- 2.11.0