git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Karthik Nayak <karthik.188@gmail.com>
To: git@vger.kernel.org
Cc: christian.couder@gmail.com, Matthieu.Moy@grenoble-inp.fr,
	gitster@pobox.com, Karthik Nayak <Karthik.188@gmail.com>,
	Karthik Nayak <karthik.188@gmail.com>
Subject: [PATCH v8 03/11] ref-filter: implement an `align` atom
Date: Mon,  3 Aug 2015 22:24:13 +0530	[thread overview]
Message-ID: <1438620861-25219-3-git-send-email-Karthik.188@gmail.com> (raw)
In-Reply-To: <CAOLa=ZTYWTjc-OC7N7FGWETP1svpCkqhQ2wwPmbf5nVRyPRAqg@mail.gmail.com>

Implement an `align` atom which will act as a modifier atom and align
succeeding atoms to the right, left or middle. It is followed by
`:<type>,<paddinglength>`, where the `<type>` is either left, right or
middle and `<paddinglength>` is the total length of the padding to be
performed. If the atom length is more than the padding length then no
padding is performed. e.g. to pad a succeeding atom to the middle with
a total padding size of 40 we can do a --format="%(align:middle,40).."

Add documentation and tests for the same.

Mentored-by: Christian Couder <christian.couder@gmail.com>
Mentored-by: Matthieu Moy <matthieu.moy@grenoble-inp.fr>
Signed-off-by: Karthik Nayak <karthik.188@gmail.com>
---
 Documentation/git-for-each-ref.txt |  7 ++++
 ref-filter.c                       | 69 +++++++++++++++++++++++++++++---
 ref-filter.h                       | 12 ++++++
 t/t6302-for-each-ref-filter.sh     | 80 ++++++++++++++++++++++++++++++++++++++
 4 files changed, 162 insertions(+), 6 deletions(-)

diff --git a/Documentation/git-for-each-ref.txt b/Documentation/git-for-each-ref.txt
index e49d578..bba6d83 100644
--- a/Documentation/git-for-each-ref.txt
+++ b/Documentation/git-for-each-ref.txt
@@ -127,6 +127,13 @@ color::
 	Change output color.  Followed by `:<colorname>`, where names
 	are described in `color.branch.*`.
 
+align::
+	Align succeeding atoms to the right, left or middle. Followed
+	by `:<type>,<paddinglength>`, where the `<type>` is either
+	left, right or middle and `<paddinglength>` is the total
+	length of the padding to be performed. If the atom length is
+	more than the padding length then no padding is performed.
+
 In addition to the above, for commit and tag objects, the header
 field names (`tree`, `parent`, `object`, `type`, and `tag`) can
 be used to specify the value in the header field.
diff --git a/ref-filter.c b/ref-filter.c
index c4c7064..46d8834 100644
--- a/ref-filter.c
+++ b/ref-filter.c
@@ -10,6 +10,7 @@
 #include "quote.h"
 #include "ref-filter.h"
 #include "revision.h"
+#include "utf8.h"
 
 typedef enum { FIELD_STR, FIELD_ULONG, FIELD_TIME } cmp_type;
 
@@ -53,6 +54,7 @@ static struct {
 	{ "flag" },
 	{ "HEAD" },
 	{ "color" },
+	{ "align" },
 };
 
 /*
@@ -620,7 +622,7 @@ static void populate_value(struct ref_array_item *ref)
 		const char *name = used_atom[i];
 		struct atom_value *v = &ref->value[i];
 		int deref = 0;
-		const char *refname;
+		const char *refname = NULL;
 		const char *formatp;
 		struct branch *branch = NULL;
 
@@ -687,6 +689,24 @@ static void populate_value(struct ref_array_item *ref)
 			else
 				v->s = " ";
 			continue;
+		} else if (starts_with(name, "align:")) {
+			const char *valp = NULL;
+			struct align *align = xmalloc(sizeof(struct align));
+
+			skip_prefix(name, "align:", &valp);
+
+			if (skip_prefix(valp, "left,", &valp))
+				align->align_type = ALIGN_LEFT;
+			else if (skip_prefix(valp, "right,", &valp))
+				align->align_type = ALIGN_RIGHT;
+			else if (skip_prefix(valp, "middle,", &valp))
+				align->align_type = ALIGN_MIDDLE;
+			else
+				die(_("align: improper format"));
+			if (strtoul_ui(valp, 10, &align->align_value))
+				die(_("align: positive value expected"));
+			v->align = align;
+			continue;
 		} else
 			continue;
 
@@ -1252,15 +1272,48 @@ static void emit(const char *cp, const char *ep, struct strbuf *output)
 
 static void process_formatting_state(struct atom_value *atomv, struct ref_formatting_state *state)
 {
-	/* Based on the atomv values, the formatting state is set */
+	if (atomv->align) {
+		state->align = atomv->align;
+		atomv->align = NULL;
+	}
 }
 
 static void apply_formatting_state(struct ref_formatting_state *state, struct strbuf *value,
 				   struct strbuf *format)
 {
-	/* More formatting options to be evetually added */
+	if (state->align) {
+		int len = 0, buf_len = value->len;
+		struct align *align = state->align;
+
+		if (!value->buf)
+			return;
+		if (!is_utf8(value->buf)) {
+			len = value->len - utf8_strwidth(value->buf);
+			buf_len -= len;
+		}
+
+		if (align->align_value < buf_len) {
+			state->align = NULL;
+			strbuf_addbuf(format, value);
+			strbuf_release(value);
+			return;
+		}
+
+		if (align->align_type == ALIGN_LEFT)
+			strbuf_addf(format, "%-*s", len + align->align_value, value->buf);
+		else if (align->align_type == ALIGN_MIDDLE) {
+			int right = (align->align_value - buf_len)/2;
+			strbuf_addf(format, "%*s%-*s", align->align_value - right + len,
+				    value->buf, right, "");
+		} else if (align->align_type == ALIGN_RIGHT)
+			strbuf_addf(format, "%*s", align->align_value, value->buf);
+		strbuf_release(value);
+		state->align = NULL;
+		return;
+	}
 	strbuf_addbuf(format, value);
 	strbuf_release(value);
+
 }
 
 void show_ref_array_item(struct ref_array_item *info, const char *format, int quote_style)
@@ -1283,9 +1336,12 @@ void show_ref_array_item(struct ref_array_item *info, const char *format, int qu
 			apply_formatting_state(&state, &value, &final_buf);
 		}
 		get_ref_atom_value(info, parse_ref_filter_atom(sp + 2, ep), &atomv);
-		process_formatting_state(atomv, &state);
-		print_value(atomv, &state, &value);
-		apply_formatting_state(&state, &value, &final_buf);
+		if (atomv->align)
+			process_formatting_state(atomv, &state);
+		else {
+			print_value(atomv, &state, &value);
+			apply_formatting_state(&state, &value, &final_buf);
+		}
 	}
 	if (*cp) {
 		sp = cp + strlen(cp);
@@ -1302,6 +1358,7 @@ void show_ref_array_item(struct ref_array_item *info, const char *format, int qu
 		print_value(&resetv, &state, &value);
 		apply_formatting_state(&state, &value, &final_buf);
 	}
+
 	for (i = 0; i < final_buf.len; i++)
 		printf("%c", final_buf.buf[i]);
 	putchar('\n');
diff --git a/ref-filter.h b/ref-filter.h
index b64677f..01f8cb3 100644
--- a/ref-filter.h
+++ b/ref-filter.h
@@ -16,12 +16,24 @@
 #define FILTER_REFS_INCLUDE_BROKEN 0x1
 #define FILTER_REFS_ALL 0x2
 
+#define ALIGN_LEFT 0x01
+#define ALIGN_RIGHT 0x02
+#define ALIGN_MIDDLE 0x04
+
 struct ref_formatting_state {
 	int quote_style;
+	struct align *align;
+	struct strbuf *sb;
+};
+
+struct align {
+	unsigned int align_type,
+		align_value;
 };
 
 struct atom_value {
 	const char *s;
+	struct align *align;
 	unsigned long ul; /* used for sorting when not FIELD_STR */
 };
 
diff --git a/t/t6302-for-each-ref-filter.sh b/t/t6302-for-each-ref-filter.sh
index 505a360..87225dd 100755
--- a/t/t6302-for-each-ref-filter.sh
+++ b/t/t6302-for-each-ref-filter.sh
@@ -81,4 +81,84 @@ test_expect_success 'filtering with --contains' '
 	test_cmp expect actual
 '
 
+test_expect_success 'left alignment' '
+	cat >expect <<-\EOF &&
+	refs/heads/master   |refs/heads/master
+	refs/heads/side     |refs/heads/side
+	refs/odd/spot       |refs/odd/spot
+	refs/tags/double-tag|refs/tags/double-tag
+	refs/tags/four      |refs/tags/four
+	refs/tags/one       |refs/tags/one
+	refs/tags/signed-tag|refs/tags/signed-tag
+	refs/tags/three     |refs/tags/three
+	refs/tags/two       |refs/tags/two
+	EOF
+	git for-each-ref --format="%(align:left,20)%(refname)|%(refname)" >actual &&
+	test_cmp expect actual
+'
+
+test_expect_success 'middle alignment' '
+	cat >expect <<-\EOF &&
+	|  refs/heads/master |refs/heads/master
+	|   refs/heads/side  |refs/heads/side
+	|    refs/odd/spot   |refs/odd/spot
+	|refs/tags/double-tag|refs/tags/double-tag
+	|   refs/tags/four   |refs/tags/four
+	|    refs/tags/one   |refs/tags/one
+	|refs/tags/signed-tag|refs/tags/signed-tag
+	|   refs/tags/three  |refs/tags/three
+	|    refs/tags/two   |refs/tags/two
+	EOF
+	git for-each-ref --format="|%(align:middle,20)%(refname)|%(refname)" >actual &&
+	test_cmp expect actual
+'
+
+test_expect_success 'right alignment' '
+	cat >expect <<-\EOF &&
+	|   refs/heads/master|refs/heads/master
+	|     refs/heads/side|refs/heads/side
+	|       refs/odd/spot|refs/odd/spot
+	|refs/tags/double-tag|refs/tags/double-tag
+	|      refs/tags/four|refs/tags/four
+	|       refs/tags/one|refs/tags/one
+	|refs/tags/signed-tag|refs/tags/signed-tag
+	|     refs/tags/three|refs/tags/three
+	|       refs/tags/two|refs/tags/two
+	EOF
+	git for-each-ref --format="|%(align:right,20)%(refname)|%(refname)" >actual &&
+	test_cmp expect actual
+'
+
+test_expect_success 'alignment value lesser than atom value' '
+	cat >expect <<-\EOF &&
+	|refs/heads/master|
+	|refs/heads/side|
+	|  refs/odd/spot|
+	|refs/tags/double-tag|
+	| refs/tags/four|
+	|  refs/tags/one|
+	|refs/tags/signed-tag|
+	|refs/tags/three|
+	|  refs/tags/two|
+	EOF
+	git for-each-ref --format="|%(align:right,15)%(refname)|" >actual &&
+	test_cmp expect actual
+'
+
+test_expect_success 'non atom alignment' '
+	cat >expect <<-\EOF &&
+	|    |master  |  refs/heads/master|  refs/heads/master
+	|    |side  |  refs/heads/side|  refs/heads/side
+	|    |odd/spot  |  refs/odd/spot|  refs/odd/spot
+	|    |double-tag  |  refs/tags/double-tag|  refs/tags/double-tag
+	|    |four  |  refs/tags/four|  refs/tags/four
+	|    |one  |  refs/tags/one|  refs/tags/one
+	|    |signed-tag  |  refs/tags/signed-tag|  refs/tags/signed-tag
+	|    |three  |  refs/tags/three|  refs/tags/three
+	|    |two  |  refs/tags/two|  refs/tags/two
+	EOF
+	git for-each-ref --format="|%(align:right,5)|%(refname:short)%(align:middle,5)|%(refname)%(align:left,3)|%(refname)" >actual &&
+	test_cmp expect actual
+'
+
 test_done
-- 
2.4.6

  parent reply	other threads:[~2015-08-03 16:54 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-03 16:52 [PATCH v8 0/11] Port tag.c over to use ref-filter APIs Karthik Nayak
2015-08-03 16:54 ` [PATCH v8 01/11] ref-filter: print output to strbuf for formatting Karthik Nayak
2015-08-03 20:36   ` Junio C Hamano
2015-08-03 21:23     ` Karthik Nayak
2015-08-03 16:54 ` [PATCH v8 02/11] ref-filter: introduce ref_formatting_state Karthik Nayak
2015-08-03 20:42   ` Junio C Hamano
2015-08-03 22:03     ` Karthik Nayak
2015-08-03 16:54 ` Karthik Nayak [this message]
2015-08-03 16:54 ` [PATCH v8 04/11] ref-filter: add option to filter only tags Karthik Nayak
2015-08-03 16:54 ` [PATCH v8 05/11] ref-filter: support printing N lines from tag annotation Karthik Nayak
2015-08-03 16:54 ` [PATCH v8 06/11] ref-filter: add support to sort by version Karthik Nayak
2015-08-03 16:54 ` [PATCH v8 07/11] ref-filter: add option to match literal pattern Karthik Nayak
2015-08-03 16:54 ` [PATCH v8 08/11] tag.c: use 'ref-filter' data structures Karthik Nayak
2015-08-03 16:54 ` [PATCH v8 09/11] tag.c: use 'ref-filter' APIs Karthik Nayak
2015-08-03 16:54 ` [PATCH v8 10/11] tag.c: implement '--format' option Karthik Nayak
2015-08-03 16:54 ` [PATCH v8 11/11] tag.c: implement '--merged' and '--no-merged' options Karthik Nayak
2015-08-03 20:21 ` [PATCH v8 0/11] Port tag.c over to use ref-filter APIs Junio C Hamano
2015-08-03 21:22   ` Karthik Nayak
2015-08-03 22:08     ` Junio C Hamano
2015-08-03 22:13       ` Karthik Nayak

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1438620861-25219-3-git-send-email-Karthik.188@gmail.com \
    --to=karthik.188@gmail.com \
    --cc=Matthieu.Moy@grenoble-inp.fr \
    --cc=christian.couder@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).