This patch replaces if chain with 2 dimensional array of format strings and arguments. Signed-off-by: Aleksey Mokhovikov <moxobukob@xxxxxxxxx> --- This patch is unrelated with previous one, but related to GSoC. So I don't know if I should create new thread for this patch. Compare with original construction Pros: 1) Remove if chain. 2) Single table contains all messages with arguments in one construction. 3) Less code duplication. Cons: 1) Harder to associate the case with message. 2) Harder for compiler to warn the programmer about not enough arguments for format string. 3) Harder to add non-string argument to messages. If !!(x) is out of the coding guide, then message_id construction can be rewritten in several other ways. The guideline tells that !!(x) is not welcome and should not be unless needed. But looks like this is normal place for it. P.S. Thanks to comments I got, so I've read more GNU gettext manual to get info about translation workflow. When I posted a first patch I've passed the same message format strings to gettext /*_()*/ as in original, to save the context of the message. And they will be translated if every possible string combination will be marked separately for translation. Because of xgettext can extract string from source automatically, it ruins the idea to generate message from parts. Even if the exaclty same message format string is passed to gettext. branch.c | 53 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 30 insertions(+), 23 deletions(-) diff --git a/branch.c b/branch.c index 723a36b..51a5faf 100644 --- a/branch.c +++ b/branch.c @@ -47,12 +47,32 @@ static int should_setup_rebase(const char *origin) return 0; } + void install_branch_config(int flag, const char *local, const char *origin, const char *remote) { const char *shortname = remote + 11; int remote_is_branch = starts_with(remote, "refs/heads/"); struct strbuf key = STRBUF_INIT; int rebasing = should_setup_rebase(origin); + int message_id = (!!remote_is_branch << 2) | (!!origin << 1) | (!!rebasing); + const char *message_table[][4] = + {{N_("Branch %s set up to track local ref %s."), + local, remote}, + {N_("Branch %s set up to track local ref %s by rebasing."), + local, remote}, + {N_("Branch %s set up to track remote ref %s."), + local, remote}, + {N_("Branch %s set up to track remote ref %s by rebasing."), + local, remote}, + {N_("Branch %s set up to track local branch %s."), + local, shortname}, + {N_("Branch %s set up to track local branch %s by rebasing."), + local, shortname}, + {N_("Branch %s set up to track remote branch %s from %s."), + local, shortname, origin}, + {N_("Branch %s set up to track remote branch %s from %s by rebasing."), + local, shortname, origin}}; + const char **message = NULL; if (remote_is_branch && !strcmp(local, shortname) @@ -68,7 +88,7 @@ void install_branch_config(int flag, const char *local, const char *origin, cons strbuf_reset(&key); strbuf_addf(&key, "branch.%s.merge", local); git_config_set(key.buf, remote); - + if (rebasing) { strbuf_reset(&key); strbuf_addf(&key, "branch.%s.rebase", local); @@ -77,29 +97,16 @@ void install_branch_config(int flag, const char *local, const char *origin, cons strbuf_release(&key); if (flag & BRANCH_CONFIG_VERBOSE) { - if (remote_is_branch && origin) - printf_ln(rebasing ? - _("Branch %s set up to track remote branch %s from %s by rebasing.") : - _("Branch %s set up to track remote branch %s from %s."), - local, shortname, origin); - else if (remote_is_branch && !origin) - printf_ln(rebasing ? - _("Branch %s set up to track local branch %s by rebasing.") : - _("Branch %s set up to track local branch %s."), - local, shortname); - else if (!remote_is_branch && origin) - printf_ln(rebasing ? - _("Branch %s set up to track remote ref %s by rebasing.") : - _("Branch %s set up to track remote ref %s."), - local, remote); - else if (!remote_is_branch && !origin) - printf_ln(rebasing ? - _("Branch %s set up to track local ref %s by rebasing.") : - _("Branch %s set up to track local ref %s."), - local, remote); + if ((0 <= message_id) && (message_id < ARRAY_SIZE(message_table))) + message = message_table[message_id]; else - die("BUG: impossible combination of %d and %p", - remote_is_branch, origin); + die("BUG: id is out of range:id=%d (is_branch=%d, origin=%p, rebasing=%d)", + message_id, remote_is_branch, origin, rebasing); + + if (!message || !message[0]) + die("BUG: message is NULL. Fix verbose message table."); + + printf_ln(_(message[0]), message[1], message[2], message[3]); } } -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html