summaryrefslogtreecommitdiff
path: root/diff.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-10-26 20:14:42 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-10-26 20:14:42 (GMT)
commitc334effa2332e30199451695b148f02eb7d9fd13 (patch)
tree8eb31aaccd26c6ea83dbee65764a35d075530452 /diff.c
parent659889482ac63411daea38b2c3d127842ea04e4d (diff)
parentd709f1fb9d3bfa148dd8b461e633138fdf5957e6 (diff)
downloadgit-c334effa2332e30199451695b148f02eb7d9fd13.zip
git-c334effa2332e30199451695b148f02eb7d9fd13.tar.gz
git-c334effa2332e30199451695b148f02eb7d9fd13.tar.bz2
Merge branch 'jc/diff-unique-abbrev-comments'
A bit more comments in a tricky code. * jc/diff-unique-abbrev-comments: diff_unique_abbrev(): document its assumption and limitation
Diffstat (limited to 'diff.c')
-rw-r--r--diff.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/diff.c b/diff.c
index 1d304e0..f5d6d7e 100644
--- a/diff.c
+++ b/diff.c
@@ -4136,7 +4136,8 @@ void diff_free_filepair(struct diff_filepair *p)
free(p);
}
-/* This is different from find_unique_abbrev() in that
+/*
+ * This is different from find_unique_abbrev() in that
* it stuffs the result with dots for alignment.
*/
const char *diff_unique_abbrev(const unsigned char *sha1, int len)
@@ -4148,6 +4149,26 @@ const char *diff_unique_abbrev(const unsigned char *sha1, int len)
abbrev = find_unique_abbrev(sha1, len);
abblen = strlen(abbrev);
+
+ /*
+ * In well-behaved cases, where the abbbreviated result is the
+ * same as the requested length, append three dots after the
+ * abbreviation (hence the whole logic is limited to the case
+ * where abblen < 37); when the actual abbreviated result is a
+ * bit longer than the requested length, we reduce the number
+ * of dots so that they match the well-behaved ones. However,
+ * if the actual abbreviation is longer than the requested
+ * length by more than three, we give up on aligning, and add
+ * three dots anyway, to indicate that the output is not the
+ * full object name. Yes, this may be suboptimal, but this
+ * appears only in "diff --raw --abbrev" output and it is not
+ * worth the effort to change it now. Note that this would
+ * likely to work fine when the automatic sizing of default
+ * abbreviation length is used--we would be fed -1 in "len" in
+ * that case, and will end up always appending three-dots, but
+ * the automatic sizing is supposed to give abblen that ensures
+ * uniqueness across all objects (statistically speaking).
+ */
if (abblen < 37) {
static char hex[41];
if (len < abblen && abblen <= len + 2)