Skip to content

Commit be53706

Browse files
committed
Merge branch 'cc/pretty-contents-size' into master
"git for-each-ref --format=<>" learned %(contents:size). * cc/pretty-contents-size: ref-filter: add support for %(contents:size) t6300: test refs pointing to tree and blob Documentation: clarify %(contents:XXXX) doc
2 parents a20e20e + b6839fd commit be53706

File tree

3 files changed

+65
-7
lines changed

3 files changed

+65
-7
lines changed

Documentation/git-for-each-ref.txt

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -232,12 +232,27 @@ Fields that have name-email-date tuple as its value (`author`,
232232
`committer`, and `tagger`) can be suffixed with `name`, `email`,
233233
and `date` to extract the named component.
234234

235-
The complete message in a commit and tag object is `contents`.
236-
Its first line is `contents:subject`, where subject is the concatenation
237-
of all lines of the commit message up to the first blank line. The next
238-
line is `contents:body`, where body is all of the lines after the first
239-
blank line. The optional GPG signature is `contents:signature`. The
240-
first `N` lines of the message is obtained using `contents:lines=N`.
235+
The message in a commit or a tag object is `contents`, from which
236+
`contents:<part>` can be used to extract various parts out of:
237+
238+
contents:size::
239+
The size in bytes of the commit or tag message.
240+
241+
contents:subject::
242+
The first paragraph of the message, which typically is a
243+
single line, is taken as the "subject" of the commit or the
244+
tag message.
245+
246+
contents:body::
247+
The remainder of the commit or the tag message that follows
248+
the "subject".
249+
250+
contents:signature::
251+
The optional GPG signature of the tag.
252+
253+
contents:lines=N::
254+
The first `N` lines of the message.
255+
241256
Additionally, the trailers as interpreted by linkgit:git-interpret-trailers[1]
242257
are obtained as `trailers` (or by using the historical alias
243258
`contents:trailers`). Non-trailer lines from the trailer block can be omitted

ref-filter.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ static struct used_atom {
127127
unsigned int nobracket : 1, push : 1, push_remote : 1;
128128
} remote_ref;
129129
struct {
130-
enum { C_BARE, C_BODY, C_BODY_DEP, C_LINES, C_SIG, C_SUB, C_TRAILERS } option;
130+
enum { C_BARE, C_BODY, C_BODY_DEP, C_LENGTH,
131+
C_LINES, C_SIG, C_SUB, C_TRAILERS } option;
131132
struct process_trailer_options trailer_opts;
132133
unsigned int nlines;
133134
} contents;
@@ -338,6 +339,8 @@ static int contents_atom_parser(const struct ref_format *format, struct used_ato
338339
atom->u.contents.option = C_BARE;
339340
else if (!strcmp(arg, "body"))
340341
atom->u.contents.option = C_BODY;
342+
else if (!strcmp(arg, "size"))
343+
atom->u.contents.option = C_LENGTH;
341344
else if (!strcmp(arg, "signature"))
342345
atom->u.contents.option = C_SIG;
343346
else if (!strcmp(arg, "subject"))
@@ -1253,6 +1256,8 @@ static void grab_sub_body_contents(struct atom_value *val, int deref, void *buf)
12531256
v->s = copy_subject(subpos, sublen);
12541257
else if (atom->u.contents.option == C_BODY_DEP)
12551258
v->s = xmemdupz(bodypos, bodylen);
1259+
else if (atom->u.contents.option == C_LENGTH)
1260+
v->s = xstrfmt("%"PRIuMAX, (uintmax_t)strlen(subpos));
12561261
else if (atom->u.contents.option == C_BODY)
12571262
v->s = xmemdupz(bodypos, nonsiglen);
12581263
else if (atom->u.contents.option == C_SIG)

t/t6300-for-each-ref.sh

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,25 @@ test_atom() {
5252
sanitize_pgp <actual >actual.clean &&
5353
test_cmp expected actual.clean
5454
"
55+
# Automatically test "contents:size" atom after testing "contents"
56+
if test "$2" = "contents"
57+
then
58+
case $(git cat-file -t "$ref") in
59+
tag)
60+
# We cannot use $3 as it expects sanitize_pgp to run
61+
expect=$(git cat-file tag $ref | tail -n +6 | wc -c) ;;
62+
tree | blob)
63+
expect='' ;;
64+
commit)
65+
expect=$(printf '%s' "$3" | wc -c) ;;
66+
esac
67+
# Leave $expect unquoted to lose possible leading whitespaces
68+
echo $expect >expected
69+
test_expect_${4:-sucess} $PREREQ "basic atom: $1 contents:size" '
70+
git for-each-ref --format="%(contents:size)" "$ref" >actual &&
71+
test_cmp expect actual
72+
'
73+
fi
5574
}
5675

5776
hexlen=$(test_oid hexsz)
@@ -650,6 +669,25 @@ test_atom refs/tags/signed-long contents "subject line
650669
body contents
651670
$sig"
652671

672+
test_expect_success 'set up refs pointing to tree and blob' '
673+
git update-ref refs/mytrees/first refs/heads/master^{tree} &&
674+
git update-ref refs/myblobs/first refs/heads/master:one
675+
'
676+
677+
test_atom refs/mytrees/first subject ""
678+
test_atom refs/mytrees/first contents:subject ""
679+
test_atom refs/mytrees/first body ""
680+
test_atom refs/mytrees/first contents:body ""
681+
test_atom refs/mytrees/first contents:signature ""
682+
test_atom refs/mytrees/first contents ""
683+
684+
test_atom refs/myblobs/first subject ""
685+
test_atom refs/myblobs/first contents:subject ""
686+
test_atom refs/myblobs/first body ""
687+
test_atom refs/myblobs/first contents:body ""
688+
test_atom refs/myblobs/first contents:signature ""
689+
test_atom refs/myblobs/first contents ""
690+
653691
test_expect_success 'set up multiple-sort tags' '
654692
for when in 100000 200000
655693
do

0 commit comments

Comments
 (0)