]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/describe.c
Git 2.14.2
[thirdparty/git.git] / builtin / describe.c
CommitLineData
908e5310 1#include "cache.h"
b2141fc1 2#include "config.h"
697cc8ef 3#include "lockfile.h"
908e5310 4#include "commit.h"
635d4134 5#include "tag.h"
908e5310 6#include "refs.h"
9a0eaf83 7#include "builtin.h"
23615708 8#include "exec_cmd.h"
166185be 9#include "parse-options.h"
9f67d2e8 10#include "diff.h"
29d8a834 11#include "hashmap.h"
45bc950b 12#include "argv-array.h"
b0176ce6 13#include "run-command.h"
908e5310 14
c4472643 15#define SEEN (1u << 0)
8713ab30
SP
16#define MAX_TAGS (FLAG_BITS - 1)
17
166185be 18static const char * const describe_usage[] = {
9c9b4f2f
AH
19 N_("git describe [<options>] [<commit-ish>...]"),
20 N_("git describe [<options>] --dirty"),
166185be
PH
21 NULL
22};
908e5310 23
8713ab30 24static int debug; /* Display lots of verbose info */
7e425c4f
SP
25static int all; /* Any valid ref can be used */
26static int tags; /* Allow lightweight tags */
518120e3 27static int longformat;
e00dd1e9 28static int first_parent;
dce96489 29static int abbrev = -1; /* unspecified */
8713ab30 30static int max_candidates = 10;
29d8a834 31static struct hashmap names;
d1645d02 32static int have_util;
43f8080e 33static struct string_list patterns = STRING_LIST_INIT_NODUP;
77d21f29 34static struct string_list exclude_patterns = STRING_LIST_INIT_NODUP;
da2478db 35static int always;
b0176ce6 36static const char *suffix, *dirty, *broken;
9f67d2e8
JP
37
38/* diff-index command arguments to check if working tree is dirty. */
39static const char *diff_index_args[] = {
40 "diff-index", "--quiet", "HEAD", "--", NULL
41};
42
e7eb5034 43struct commit_name {
29d8a834 44 struct hashmap_entry entry;
6439b5d9 45 struct object_id peeled;
212945d4 46 struct tag *tag;
03e8b541
SP
47 unsigned prio:2; /* annotated tag = 2, tag = 1, head = 0 */
48 unsigned name_checked:1;
6439b5d9 49 struct object_id oid;
219a0f33 50 char *path;
e7eb5034 51};
c4472643 52
cf69fd49 53static const char *prio_names[] = {
646c3bd1 54 N_("head"), N_("lightweight"), N_("annotated"),
cf69fd49 55};
908e5310 56
7663cdc8
SB
57static int commit_name_cmp(const void *unused_cmp_data,
58 const struct commit_name *cn1,
59 const struct commit_name *cn2,
60 const void *peeled)
29d8a834 61{
6439b5d9 62 return oidcmp(&cn1->peeled, peeled ? peeled : &cn2->peeled);
29d8a834
KB
63}
64
6439b5d9 65static inline struct commit_name *find_commit_name(const struct object_id *peeled)
3cfa4db3 66{
6439b5d9 67 return hashmap_get_from_hash(&names, sha1hash(peeled->hash), peeled->hash);
d1645d02
AK
68}
69
03e8b541
SP
70static int replace_name(struct commit_name *e,
71 int prio,
6439b5d9 72 const struct object_id *oid,
03e8b541
SP
73 struct tag **tag)
74{
75 if (!e || e->prio < prio)
76 return 1;
77
78 if (e->prio == 2 && prio == 2) {
79 /* Multiple annotated tags point to the same commit.
80 * Select one to keep based upon their tagger date.
81 */
82 struct tag *t;
83
84 if (!e->tag) {
d3101b53 85 t = lookup_tag(&e->oid);
03e8b541
SP
86 if (!t || parse_tag(t))
87 return 1;
88 e->tag = t;
89 }
90
d3101b53 91 t = lookup_tag(oid);
03e8b541
SP
92 if (!t || parse_tag(t))
93 return 0;
94 *tag = t;
95
96 if (e->tag->date < t->date)
97 return 1;
98 }
99
100 return 0;
101}
102
64deb858 103static void add_to_known_names(const char *path,
6439b5d9 104 const struct object_id *peeled,
212945d4 105 int prio,
6439b5d9 106 const struct object_id *oid)
908e5310 107{
3cfa4db3 108 struct commit_name *e = find_commit_name(peeled);
03e8b541 109 struct tag *tag = NULL;
6439b5d9 110 if (replace_name(e, prio, oid, &tag)) {
1e1ade18
AK
111 if (!e) {
112 e = xmalloc(sizeof(struct commit_name));
6439b5d9 113 oidcpy(&e->peeled, peeled);
114 hashmap_entry_init(e, sha1hash(peeled->hash));
29d8a834 115 hashmap_add(&names, e);
219a0f33 116 e->path = NULL;
1e1ade18 117 }
03e8b541 118 e->tag = tag;
e7eb5034 119 e->prio = prio;
03e8b541 120 e->name_checked = 0;
6439b5d9 121 oidcpy(&e->oid, oid);
219a0f33
MH
122 free(e->path);
123 e->path = xstrdup(path);
908e5310 124 }
908e5310
LT
125}
126
99a2cfbf 127static int get_name(const char *path, const struct object_id *oid, int flag, void *cb_data)
908e5310 128{
59556548 129 int is_tag = starts_with(path, "refs/tags/");
99a2cfbf 130 struct object_id peeled;
46e1d6eb 131 int is_annotated, prio;
feededd0 132
46e1d6eb
JH
133 /* Reject anything outside refs/tags/ unless --all */
134 if (!all && !is_tag)
8a5a1884
SP
135 return 0;
136
77d21f29
JK
137 /*
138 * If we're given exclude patterns, first exclude any tag which match
139 * any of the exclude pattern.
140 */
141 if (exclude_patterns.nr) {
142 struct string_list_item *item;
143
144 if (!is_tag)
145 return 0;
146
147 for_each_string_list_item(item, &exclude_patterns) {
55d34269 148 if (!wildmatch(item->string, path + 10, 0))
77d21f29
JK
149 return 0;
150 }
151 }
152
43f8080e
JK
153 /*
154 * If we're given patterns, accept only tags which match at least one
155 * pattern.
156 */
157 if (patterns.nr) {
158 struct string_list_item *item;
159
160 if (!is_tag)
161 return 0;
162
163 for_each_string_list_item(item, &patterns) {
55d34269 164 if (!wildmatch(item->string, path + 10, 0))
43f8080e
JK
165 break;
166
167 /* If we get here, no pattern matched. */
168 return 0;
169 }
170 }
46e1d6eb
JH
171
172 /* Is it annotated? */
99a2cfbf
MH
173 if (!peel_ref(path, peeled.hash)) {
174 is_annotated = !!oidcmp(oid, &peeled);
feededd0 175 } else {
99a2cfbf 176 oidcpy(&peeled, oid);
46e1d6eb 177 is_annotated = 0;
feededd0 178 }
64deb858 179
46e1d6eb
JH
180 /*
181 * By default, we only use annotated tags, but with --tags
182 * we fall back to lightweight ones (even without --tags,
183 * we still remember lightweight ones, only to give hints
184 * in an error message). --all allows any refs to be used.
2d9e7c9f 185 */
46e1d6eb
JH
186 if (is_annotated)
187 prio = 2;
188 else if (is_tag)
189 prio = 1;
64deb858
JH
190 else
191 prio = 0;
192
6439b5d9 193 add_to_known_names(all ? path + 5 : path + 10, &peeled, prio, oid);
908e5310
LT
194 return 0;
195}
196
80dbae03 197struct possible_tag {
80dbae03 198 struct commit_name *name;
cf69fd49
SP
199 int depth;
200 int found_order;
8713ab30 201 unsigned flag_within;
80dbae03
SP
202};
203
cf69fd49
SP
204static int compare_pt(const void *a_, const void *b_)
205{
206 struct possible_tag *a = (struct possible_tag *)a_;
207 struct possible_tag *b = (struct possible_tag *)b_;
cf69fd49
SP
208 if (a->depth != b->depth)
209 return a->depth - b->depth;
210 if (a->found_order != b->found_order)
211 return a->found_order - b->found_order;
212 return 0;
213}
214
1b600e65
SP
215static unsigned long finish_depth_computation(
216 struct commit_list **list,
217 struct possible_tag *best)
218{
219 unsigned long seen_commits = 0;
220 while (*list) {
221 struct commit *c = pop_commit(list);
222 struct commit_list *parents = c->parents;
223 seen_commits++;
224 if (c->object.flags & best->flag_within) {
225 struct commit_list *a = *list;
226 while (a) {
227 struct commit *i = a->item;
228 if (!(i->object.flags & best->flag_within))
229 break;
230 a = a->next;
231 }
232 if (!a)
233 break;
234 } else
235 best->depth++;
236 while (parents) {
237 struct commit *p = parents->item;
238 parse_commit(p);
239 if (!(p->object.flags & SEEN))
47e44ed1 240 commit_list_insert_by_date(p, list);
1b600e65
SP
241 p->object.flags |= c->object.flags;
242 parents = parents->next;
243 }
244 }
245 return seen_commits;
246}
247
212945d4
SP
248static void display_name(struct commit_name *n)
249{
250 if (n->prio == 2 && !n->tag) {
d3101b53 251 n->tag = lookup_tag(&n->oid);
03e8b541 252 if (!n->tag || parse_tag(n->tag))
e41f1cb3 253 die(_("annotated tag %s not available"), n->path);
03e8b541
SP
254 }
255 if (n->tag && !n->name_checked) {
256 if (!n->tag->tag)
e41f1cb3 257 die(_("annotated tag %s has no embedded name"), n->path);
81dc223d 258 if (strcmp(n->tag->tag, all ? n->path + 5 : n->path))
e41f1cb3 259 warning(_("tag '%s' is really '%s' here"), n->tag->tag, n->path);
03e8b541 260 n->name_checked = 1;
212945d4
SP
261 }
262
263 if (n->tag)
264 printf("%s", n->tag->tag);
265 else
266 printf("%s", n->path);
870cf7d6
JH
267}
268
6439b5d9 269static void show_suffix(int depth, const struct object_id *oid)
870cf7d6 270{
6439b5d9 271 printf("-%d-g%s", depth, find_unique_abbrev(oid->hash, abbrev));
212945d4
SP
272}
273
554fe20d 274static void describe(const char *arg, int last_one)
908e5310 275{
6439b5d9 276 struct object_id oid;
8713ab30 277 struct commit *cmit, *gave_up_on = NULL;
908e5310 278 struct commit_list *list;
908e5310 279 struct commit_name *n;
cf69fd49 280 struct possible_tag all_matches[MAX_TAGS];
8713ab30
SP
281 unsigned int match_cnt = 0, annotated_cnt = 0, cur_match;
282 unsigned long seen_commits = 0;
4d23660e 283 unsigned int unannotated_cnt = 0;
908e5310 284
6439b5d9 285 if (get_oid(arg, &oid))
e41f1cb3 286 die(_("Not a valid object name %s"), arg);
bc83266a 287 cmit = lookup_commit_reference(&oid);
4c34a2c5 288 if (!cmit)
e41f1cb3 289 die(_("%s is not a valid '%s' object"), arg, commit_type);
4c34a2c5 290
6439b5d9 291 n = find_commit_name(&cmit->object.oid);
7a0d61bb 292 if (n && (tags || all || n->prio == 2)) {
870cf7d6
JH
293 /*
294 * Exact match to an existing ref.
295 */
212945d4 296 display_name(n);
870cf7d6 297 if (longformat)
6439b5d9 298 show_suffix(0, n->tag ? &n->tag->tagged->oid : &oid);
b0176ce6
SB
299 if (suffix)
300 printf("%s", suffix);
212945d4 301 printf("\n");
908e5310
LT
302 return;
303 }
304
2c33f757 305 if (!max_candidates)
f2fd0760 306 die(_("no tag exactly matches '%s'"), oid_to_hex(&cmit->object.oid));
8713ab30 307 if (debug)
e41f1cb3 308 fprintf(stderr, _("searching to describe %s\n"), arg);
8713ab30 309
d1645d02 310 if (!have_util) {
29d8a834
KB
311 struct hashmap_iter iter;
312 struct commit *c;
313 struct commit_name *n = hashmap_iter_first(&names, &iter);
314 for (; n; n = hashmap_iter_next(&iter)) {
bc83266a 315 c = lookup_commit_reference_gently(&n->peeled, 1);
29d8a834
KB
316 if (c)
317 c->util = n;
318 }
d1645d02
AK
319 have_util = 1;
320 }
321
908e5310 322 list = NULL;
8713ab30 323 cmit->object.flags = SEEN;
908e5310
LT
324 commit_list_insert(cmit, &list);
325 while (list) {
80dbae03 326 struct commit *c = pop_commit(&list);
dccd0c2a 327 struct commit_list *parents = c->parents;
8713ab30 328 seen_commits++;
e7eb5034 329 n = c->util;
908e5310 330 if (n) {
4d23660e
TR
331 if (!tags && !all && n->prio < 2) {
332 unannotated_cnt++;
333 } else if (match_cnt < max_candidates) {
8713ab30
SP
334 struct possible_tag *t = &all_matches[match_cnt++];
335 t->name = n;
336 t->depth = seen_commits - 1;
337 t->flag_within = 1u << match_cnt;
8a8169c0 338 t->found_order = match_cnt;
8713ab30
SP
339 c->object.flags |= t->flag_within;
340 if (n->prio == 2)
341 annotated_cnt++;
342 }
343 else {
344 gave_up_on = c;
345 break;
346 }
347 }
348 for (cur_match = 0; cur_match < match_cnt; cur_match++) {
349 struct possible_tag *t = &all_matches[cur_match];
350 if (!(c->object.flags & t->flag_within))
351 t->depth++;
352 }
353 if (annotated_cnt && !list) {
354 if (debug)
e41f1cb3 355 fprintf(stderr, _("finished search at %s\n"),
f2fd0760 356 oid_to_hex(&c->object.oid));
8713ab30 357 break;
dccd0c2a
SP
358 }
359 while (parents) {
360 struct commit *p = parents->item;
361 parse_commit(p);
8713ab30 362 if (!(p->object.flags & SEEN))
47e44ed1 363 commit_list_insert_by_date(p, &list);
8713ab30 364 p->object.flags |= c->object.flags;
dccd0c2a 365 parents = parents->next;
e00dd1e9
MC
366
367 if (first_parent)
368 break;
80dbae03
SP
369 }
370 }
371
da2478db 372 if (!match_cnt) {
f2fd0760 373 struct object_id *oid = &cmit->object.oid;
da2478db 374 if (always) {
f2fd0760 375 printf("%s", find_unique_abbrev(oid->hash, abbrev));
b0176ce6
SB
376 if (suffix)
377 printf("%s", suffix);
9f67d2e8 378 printf("\n");
da2478db
JH
379 return;
380 }
4d23660e 381 if (unannotated_cnt)
e41f1cb3
ÆAB
382 die(_("No annotated tags can describe '%s'.\n"
383 "However, there were unannotated tags: try --tags."),
f2fd0760 384 oid_to_hex(oid));
4d23660e 385 else
e41f1cb3
ÆAB
386 die(_("No tags can describe '%s'.\n"
387 "Try --always, or create some tags."),
f2fd0760 388 oid_to_hex(oid));
da2478db 389 }
80dbae03 390
9ed0d8d6 391 QSORT(all_matches, match_cnt, compare_pt);
1b600e65
SP
392
393 if (gave_up_on) {
47e44ed1 394 commit_list_insert_by_date(gave_up_on, &list);
1b600e65
SP
395 seen_commits--;
396 }
397 seen_commits += finish_depth_computation(&list, &all_matches[0]);
398 free_commit_list(list);
399
8713ab30 400 if (debug) {
646c3bd1
MG
401 static int label_width = -1;
402 if (label_width < 0) {
403 int i, w;
404 for (i = 0; i < ARRAY_SIZE(prio_names); i++) {
405 w = strlen(_(prio_names[i]));
406 if (label_width < w)
407 label_width = w;
408 }
409 }
8713ab30
SP
410 for (cur_match = 0; cur_match < match_cnt; cur_match++) {
411 struct possible_tag *t = &all_matches[cur_match];
646c3bd1
MG
412 fprintf(stderr, " %-*s %8d %s\n",
413 label_width, _(prio_names[t->name->prio]),
8713ab30
SP
414 t->depth, t->name->path);
415 }
e41f1cb3 416 fprintf(stderr, _("traversed %lu commits\n"), seen_commits);
8713ab30
SP
417 if (gave_up_on) {
418 fprintf(stderr,
e41f1cb3
ÆAB
419 _("more than %i tags found; listed %i most recent\n"
420 "gave up search at %s\n"),
8713ab30 421 max_candidates, max_candidates,
f2fd0760 422 oid_to_hex(&gave_up_on->object.oid));
8713ab30 423 }
80dbae03 424 }
212945d4
SP
425
426 display_name(all_matches[0].name);
427 if (abbrev)
6439b5d9 428 show_suffix(all_matches[0].depth, &cmit->object.oid);
b0176ce6
SB
429 if (suffix)
430 printf("%s", suffix);
212945d4 431 printf("\n");
80dbae03 432
8713ab30
SP
433 if (!last_one)
434 clear_commit_marks(cmit, -1);
908e5310
LT
435}
436
9a0eaf83 437int cmd_describe(int argc, const char **argv, const char *prefix)
908e5310 438{
23615708 439 int contains = 0;
166185be 440 struct option options[] = {
d5d09d47
SB
441 OPT_BOOL(0, "contains", &contains, N_("find the tag that comes after the commit")),
442 OPT_BOOL(0, "debug", &debug, N_("debug search strategy on stderr")),
443 OPT_BOOL(0, "all", &all, N_("use any ref")),
444 OPT_BOOL(0, "tags", &tags, N_("use any tag, even unannotated")),
445 OPT_BOOL(0, "long", &longformat, N_("always use long format")),
446 OPT_BOOL(0, "first-parent", &first_parent, N_("only follow first parent")),
166185be 447 OPT__ABBREV(&abbrev),
2c33f757 448 OPT_SET_INT(0, "exact-match", &max_candidates,
bfb0737d 449 N_("only output exact matches"), 0),
166185be 450 OPT_INTEGER(0, "candidates", &max_candidates,
bfb0737d 451 N_("consider <n> most recent tags (default: 10)")),
43f8080e 452 OPT_STRING_LIST(0, "match", &patterns, N_("pattern"),
bfb0737d 453 N_("only consider tags matching <pattern>")),
77d21f29
JK
454 OPT_STRING_LIST(0, "exclude", &exclude_patterns, N_("pattern"),
455 N_("do not consider tags matching <pattern>")),
d5d09d47
SB
456 OPT_BOOL(0, "always", &always,
457 N_("show abbreviated commit object as fallback")),
bfb0737d 458 {OPTION_STRING, 0, "dirty", &dirty, N_("mark"),
d5d09d47
SB
459 N_("append <mark> on dirty working tree (default: \"-dirty\")"),
460 PARSE_OPT_OPTARG, NULL, (intptr_t) "-dirty"},
b0176ce6
SB
461 {OPTION_STRING, 0, "broken", &broken, N_("mark"),
462 N_("append <mark> on broken working tree (default: \"-broken\")"),
463 PARSE_OPT_OPTARG, NULL, (intptr_t) "-broken"},
166185be
PH
464 OPT_END(),
465 };
908e5310 466
dce96489 467 git_config(git_default_config, NULL);
37782920 468 argc = parse_options(argc, argv, prefix, options, describe_usage, 0);
dce96489
LT
469 if (abbrev < 0)
470 abbrev = DEFAULT_ABBREV;
471
2c33f757
SP
472 if (max_candidates < 0)
473 max_candidates = 0;
166185be
PH
474 else if (max_candidates > MAX_TAGS)
475 max_candidates = MAX_TAGS;
4c34a2c5 476
8c599c74 477 save_commit_buffer = 0;
8112894d 478
518120e3 479 if (longformat && abbrev == 0)
e41f1cb3 480 die(_("--long is incompatible with --abbrev=0"));
518120e3 481
23615708 482 if (contains) {
43f8080e 483 struct string_list_item *item;
45bc950b
JH
484 struct argv_array args;
485
486 argv_array_init(&args);
adfc1857
JH
487 argv_array_pushl(&args, "name-rev",
488 "--peel-tag", "--name-only", "--no-undefined",
45bc950b 489 NULL);
da2478db 490 if (always)
45bc950b 491 argv_array_push(&args, "--always");
30ffa603 492 if (!all) {
45bc950b 493 argv_array_push(&args, "--tags");
43f8080e
JK
494 for_each_string_list_item(item, &patterns)
495 argv_array_pushf(&args, "--refs=refs/tags/%s", item->string);
77d21f29
JK
496 for_each_string_list_item(item, &exclude_patterns)
497 argv_array_pushf(&args, "--exclude=refs/tags/%s", item->string);
45bc950b 498 }
2bd07065
SG
499 if (argc)
500 argv_array_pushv(&args, argv);
501 else
502 argv_array_push(&args, "HEAD");
45bc950b 503 return cmd_name_rev(args.argc, args.argv, prefix);
23615708
SP
504 }
505
7663cdc8 506 hashmap_init(&names, (hashmap_cmp_fn) commit_name_cmp, NULL, 0);
99a2cfbf 507 for_each_rawref(get_name, NULL);
29d8a834 508 if (!names.size && !always)
e41f1cb3 509 die(_("No names found, cannot describe anything."));
fb423da0 510
166185be 511 if (argc == 0) {
b0176ce6
SB
512 if (broken) {
513 struct child_process cp = CHILD_PROCESS_INIT;
514 argv_array_pushv(&cp.args, diff_index_args);
515 cp.git_cmd = 1;
516 cp.no_stdin = 1;
517 cp.no_stdout = 1;
518
519 if (!dirty)
520 dirty = "-dirty";
521
522 switch (run_command(&cp)) {
523 case 0:
524 suffix = NULL;
525 break;
526 case 1:
527 suffix = dirty;
528 break;
529 default:
530 /* diff-index aborted abnormally */
531 suffix = broken;
532 }
533 } else if (dirty) {
bb571486
AC
534 static struct lock_file index_lock;
535 int fd;
536
537 read_cache_preload(NULL);
538 refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED,
539 NULL, NULL, NULL);
540 fd = hold_locked_index(&index_lock, 0);
541 if (0 <= fd)
542 update_index_if_able(&the_index, &index_lock);
543
544 if (!cmd_diff_index(ARRAY_SIZE(diff_index_args) - 1,
545 diff_index_args, prefix))
b0176ce6
SB
546 suffix = NULL;
547 else
548 suffix = dirty;
bb571486 549 }
fec9ebf1 550 describe("HEAD", 1);
9f67d2e8 551 } else if (dirty) {
a8a5406a 552 die(_("--dirty is incompatible with commit-ishes"));
b0176ce6
SB
553 } else if (broken) {
554 die(_("--broken is incompatible with commit-ishes"));
166185be 555 } else {
c4472643 556 while (argc-- > 0)
166185be 557 describe(*argv++, argc == 0);
166185be 558 }
908e5310
LT
559 return 0;
560}