git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] branch.c: simplify chain of if statements
@ 2014-03-16 21:22 Dragos Foianu
  2014-03-17  7:23 ` Matthieu Moy
  2014-03-17  8:46 ` Eric Sunshine
  0 siblings, 2 replies; 7+ messages in thread
From: Dragos Foianu @ 2014-03-16 21:22 UTC (permalink / raw)
  To: git; +Cc: Dragos Foianu

This patch uses a table-driven approach in order to make the code
cleaner. Although not necessary, it helps code reability by not
forcing the user to read the print message when trying to
understand what the code does. The rebase check has been moved to
the verbose if statement to avoid making the same check in each of
the four if statements.

Signed-off-by: Dragos Foianu <dragos.foianu@gmail.com>
---
 branch.c | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/branch.c b/branch.c
index 723a36b..e2fe455 100644
--- a/branch.c
+++ b/branch.c
@@ -54,6 +54,14 @@ void install_branch_config(int flag, const char *local, const char *origin, cons
 	struct strbuf key = STRBUF_INIT;
 	int rebasing = should_setup_rebase(origin);
 
+	const char *verbose_prints[4] = {
+		"Branch %s set up to track remote branch %s from %s%s",
+		"Branch %s set up to track local branch %s%s",
+		"Branch %s set up to track remote ref %s%s",
+		"Branch %s set up to track local ref %s%s"
+	};
+	char *verbose_rebasing = rebasing ? " by rebasing." : ".";
+
 	if (remote_is_branch
 	    && !strcmp(local, shortname)
 	    && !origin) {
@@ -78,25 +86,17 @@ void install_branch_config(int flag, const char *local, const char *origin, cons
 
 	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);
+			printf_ln(_(verbose_prints[0]),
+				local, shortname, origin, verbose_rebasing);
 		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);
+			printf_ln(_(verbose_prints[1]),
+				local, shortname, verbose_rebasing);
 		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);
+			printf_ln(_(verbose_prints[2]),
+				local, remote, verbose_rebasing);
 		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);
+			printf_ln(_(verbose_prints[3]),
+				local, remote, verbose_rebasing);
 		else
 			die("BUG: impossible combination of %d and %p",
 			    remote_is_branch, origin);
-- 
1.8.3.2

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-03-18 21:36 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-16 21:22 [PATCH] branch.c: simplify chain of if statements Dragos Foianu
2014-03-17  7:23 ` Matthieu Moy
2014-03-17  8:08   ` Eric Sunshine
2014-03-17  8:46 ` Eric Sunshine
2014-03-17 11:46   ` Dragos Foianu
2014-03-17 12:53     ` Ævar Arnfjörð Bjarmason
2014-03-18 21:36     ` Eric Sunshine

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).