10 #include "parse-options.h"
13 #include "argv-array.h"
14 #include "run-command.h"
16 #include "list-objects.h"
18 #define MAX_TAGS (FLAG_BITS - 1)
20 static const char * const describe_usage[] = {
21 N_("git describe [<options>] [<commit-ish>...]"),
22 N_("git describe [<options>] --dirty"),
26 static int debug; /* Display lots of verbose info */
27 static int all; /* Any valid ref can be used */
28 static int tags; /* Allow lightweight tags */
29 static int longformat;
30 static int first_parent;
31 static int abbrev = -1; /* unspecified */
32 static int max_candidates = 10;
33 static struct hashmap names;
35 static struct string_list patterns = STRING_LIST_INIT_NODUP;
36 static struct string_list exclude_patterns = STRING_LIST_INIT_NODUP;
38 static const char *suffix, *dirty, *broken;
40 /* diff-index command arguments to check if working tree is dirty. */
41 static const char *diff_index_args[] = {
42 "diff-index", "--quiet", "HEAD", "--", NULL
46 struct hashmap_entry entry;
47 struct object_id peeled;
49 unsigned prio:2; /* annotated tag = 2, tag = 1, head = 0 */
50 unsigned name_checked:1;
55 static const char *prio_names[] = {
56 N_("head"), N_("lightweight"), N_("annotated"),
59 static int commit_name_cmp(const void *unused_cmp_data,
61 const void *entry_or_key,
64 const struct commit_name *cn1 = entry;
65 const struct commit_name *cn2 = entry_or_key;
67 return oidcmp(&cn1->peeled, peeled ? peeled : &cn2->peeled);
70 static inline struct commit_name *find_commit_name(const struct object_id *peeled)
72 return hashmap_get_from_hash(&names, sha1hash(peeled->hash), peeled->hash);
75 static int replace_name(struct commit_name *e,
77 const struct object_id *oid,
80 if (!e || e->prio < prio)
83 if (e->prio == 2 && prio == 2) {
84 /* Multiple annotated tags point to the same commit.
85 * Select one to keep based upon their tagger date.
90 t = lookup_tag(&e->oid);
91 if (!t || parse_tag(t))
97 if (!t || parse_tag(t))
101 if (e->tag->date < t->date)
108 static void add_to_known_names(const char *path,
109 const struct object_id *peeled,
111 const struct object_id *oid)
113 struct commit_name *e = find_commit_name(peeled);
114 struct tag *tag = NULL;
115 if (replace_name(e, prio, oid, &tag)) {
117 e = xmalloc(sizeof(struct commit_name));
118 oidcpy(&e->peeled, peeled);
119 hashmap_entry_init(e, sha1hash(peeled->hash));
120 hashmap_add(&names, e);
126 oidcpy(&e->oid, oid);
128 e->path = xstrdup(path);
132 static int get_name(const char *path, const struct object_id *oid, int flag, void *cb_data)
135 struct object_id peeled;
136 int is_annotated, prio;
137 const char *path_to_match = NULL;
139 if (skip_prefix(path, "refs/tags/", &path_to_match)) {
142 if ((exclude_patterns.nr || patterns.nr) &&
143 !skip_prefix(path, "refs/heads/", &path_to_match) &&
144 !skip_prefix(path, "refs/remotes/", &path_to_match)) {
145 /* Only accept reference of known type if there are match/exclude patterns */
149 /* Reject anything outside refs/tags/ unless --all */
154 * If we're given exclude patterns, first exclude any tag which match
155 * any of the exclude pattern.
157 if (exclude_patterns.nr) {
158 struct string_list_item *item;
160 for_each_string_list_item(item, &exclude_patterns) {
161 if (!wildmatch(item->string, path_to_match, 0))
167 * If we're given patterns, accept only tags which match at least one
172 struct string_list_item *item;
174 for_each_string_list_item(item, &patterns) {
175 if (!wildmatch(item->string, path_to_match, 0)) {
185 /* Is it annotated? */
186 if (!peel_ref(path, peeled.hash)) {
187 is_annotated = !!oidcmp(oid, &peeled);
189 oidcpy(&peeled, oid);
194 * By default, we only use annotated tags, but with --tags
195 * we fall back to lightweight ones (even without --tags,
196 * we still remember lightweight ones, only to give hints
197 * in an error message). --all allows any refs to be used.
206 add_to_known_names(all ? path + 5 : path + 10, &peeled, prio, oid);
210 struct possible_tag {
211 struct commit_name *name;
214 unsigned flag_within;
217 static int compare_pt(const void *a_, const void *b_)
219 struct possible_tag *a = (struct possible_tag *)a_;
220 struct possible_tag *b = (struct possible_tag *)b_;
221 if (a->depth != b->depth)
222 return a->depth - b->depth;
223 if (a->found_order != b->found_order)
224 return a->found_order - b->found_order;
228 static unsigned long finish_depth_computation(
229 struct commit_list **list,
230 struct possible_tag *best)
232 unsigned long seen_commits = 0;
234 struct commit *c = pop_commit(list);
235 struct commit_list *parents = c->parents;
237 if (c->object.flags & best->flag_within) {
238 struct commit_list *a = *list;
240 struct commit *i = a->item;
241 if (!(i->object.flags & best->flag_within))
250 struct commit *p = parents->item;
252 if (!(p->object.flags & SEEN))
253 commit_list_insert_by_date(p, list);
254 p->object.flags |= c->object.flags;
255 parents = parents->next;
261 static void append_name(struct commit_name *n, struct strbuf *dst)
263 if (n->prio == 2 && !n->tag) {
264 n->tag = lookup_tag(&n->oid);
265 if (!n->tag || parse_tag(n->tag))
266 die(_("annotated tag %s not available"), n->path);
268 if (n->tag && !n->name_checked) {
270 die(_("annotated tag %s has no embedded name"), n->path);
271 if (strcmp(n->tag->tag, all ? n->path + 5 : n->path))
272 warning(_("tag '%s' is really '%s' here"), n->tag->tag, n->path);
277 strbuf_addstr(dst, n->tag->tag);
279 strbuf_addstr(dst, n->path);
282 static void append_suffix(int depth, const struct object_id *oid, struct strbuf *dst)
284 strbuf_addf(dst, "-%d-g%s", depth, find_unique_abbrev(oid->hash, abbrev));
287 static void describe_commit(struct object_id *oid, struct strbuf *dst)
289 struct commit *cmit, *gave_up_on = NULL;
290 struct commit_list *list;
291 struct commit_name *n;
292 struct possible_tag all_matches[MAX_TAGS];
293 unsigned int match_cnt = 0, annotated_cnt = 0, cur_match;
294 unsigned long seen_commits = 0;
295 unsigned int unannotated_cnt = 0;
297 cmit = lookup_commit_reference(oid);
299 n = find_commit_name(&cmit->object.oid);
300 if (n && (tags || all || n->prio == 2)) {
302 * Exact match to an existing ref.
306 append_suffix(0, n->tag ? &n->tag->tagged->oid : oid, dst);
308 strbuf_addstr(dst, suffix);
313 die(_("no tag exactly matches '%s'"), oid_to_hex(&cmit->object.oid));
315 fprintf(stderr, _("No exact match on refs or tags, searching to describe\n"));
318 struct hashmap_iter iter;
320 struct commit_name *n = hashmap_iter_first(&names, &iter);
321 for (; n; n = hashmap_iter_next(&iter)) {
322 c = lookup_commit_reference_gently(&n->peeled, 1);
330 cmit->object.flags = SEEN;
331 commit_list_insert(cmit, &list);
333 struct commit *c = pop_commit(&list);
334 struct commit_list *parents = c->parents;
338 if (!tags && !all && n->prio < 2) {
340 } else if (match_cnt < max_candidates) {
341 struct possible_tag *t = &all_matches[match_cnt++];
343 t->depth = seen_commits - 1;
344 t->flag_within = 1u << match_cnt;
345 t->found_order = match_cnt;
346 c->object.flags |= t->flag_within;
355 for (cur_match = 0; cur_match < match_cnt; cur_match++) {
356 struct possible_tag *t = &all_matches[cur_match];
357 if (!(c->object.flags & t->flag_within))
360 if (annotated_cnt && !list) {
362 fprintf(stderr, _("finished search at %s\n"),
363 oid_to_hex(&c->object.oid));
367 struct commit *p = parents->item;
369 if (!(p->object.flags & SEEN))
370 commit_list_insert_by_date(p, &list);
371 p->object.flags |= c->object.flags;
372 parents = parents->next;
380 struct object_id *cmit_oid = &cmit->object.oid;
382 strbuf_addstr(dst, find_unique_abbrev(cmit_oid->hash, abbrev));
384 strbuf_addstr(dst, suffix);
388 die(_("No annotated tags can describe '%s'.\n"
389 "However, there were unannotated tags: try --tags."),
390 oid_to_hex(cmit_oid));
392 die(_("No tags can describe '%s'.\n"
393 "Try --always, or create some tags."),
394 oid_to_hex(cmit_oid));
397 QSORT(all_matches, match_cnt, compare_pt);
400 commit_list_insert_by_date(gave_up_on, &list);
403 seen_commits += finish_depth_computation(&list, &all_matches[0]);
404 free_commit_list(list);
407 static int label_width = -1;
408 if (label_width < 0) {
410 for (i = 0; i < ARRAY_SIZE(prio_names); i++) {
411 w = strlen(_(prio_names[i]));
416 for (cur_match = 0; cur_match < match_cnt; cur_match++) {
417 struct possible_tag *t = &all_matches[cur_match];
418 fprintf(stderr, " %-*s %8d %s\n",
419 label_width, _(prio_names[t->name->prio]),
420 t->depth, t->name->path);
422 fprintf(stderr, _("traversed %lu commits\n"), seen_commits);
425 _("more than %i tags found; listed %i most recent\n"
426 "gave up search at %s\n"),
427 max_candidates, max_candidates,
428 oid_to_hex(&gave_up_on->object.oid));
432 append_name(all_matches[0].name, dst);
434 append_suffix(all_matches[0].depth, &cmit->object.oid, dst);
436 strbuf_addstr(dst, suffix);
439 struct process_commit_data {
440 struct object_id current_commit;
441 struct object_id looking_for;
443 struct rev_info *revs;
446 static void process_commit(struct commit *commit, void *data)
448 struct process_commit_data *pcd = data;
449 pcd->current_commit = commit->object.oid;
452 static void process_object(struct object *obj, const char *path, void *data)
454 struct process_commit_data *pcd = data;
456 if (!oidcmp(&pcd->looking_for, &obj->oid) && !pcd->dst->len) {
457 reset_revision_walk();
458 describe_commit(&pcd->current_commit, pcd->dst);
459 strbuf_addf(pcd->dst, ":%s", path);
460 free_commit_list(pcd->revs->commits);
461 pcd->revs->commits = NULL;
465 static void describe_blob(struct object_id oid, struct strbuf *dst)
467 struct rev_info revs;
468 struct argv_array args = ARGV_ARRAY_INIT;
469 struct process_commit_data pcd = { null_oid, oid, dst, &revs};
471 argv_array_pushl(&args, "internal: The first arg is not parsed",
472 "--objects", "--in-commit-order", "--reverse", "HEAD",
475 init_revisions(&revs, NULL);
476 if (setup_revisions(args.argc, args.argv, &revs, NULL) > 1)
477 BUG("setup_revisions could not handle all args?");
479 if (prepare_revision_walk(&revs))
480 die("revision walk setup failed");
482 traverse_commit_list(&revs, process_commit, process_object, &pcd);
483 reset_revision_walk();
486 static void describe(const char *arg, int last_one)
488 struct object_id oid;
490 struct strbuf sb = STRBUF_INIT;
493 fprintf(stderr, _("describe %s\n"), arg);
495 if (get_oid(arg, &oid))
496 die(_("Not a valid object name %s"), arg);
497 cmit = lookup_commit_reference_gently(&oid, 1);
500 describe_commit(&oid, &sb);
501 else if (sha1_object_info(oid.hash, NULL) == OBJ_BLOB)
502 describe_blob(oid, &sb);
504 die(_("%s is neither a commit nor blob"), arg);
509 clear_commit_marks(cmit, -1);
514 int cmd_describe(int argc, const char **argv, const char *prefix)
517 struct option options[] = {
518 OPT_BOOL(0, "contains", &contains, N_("find the tag that comes after the commit")),
519 OPT_BOOL(0, "debug", &debug, N_("debug search strategy on stderr")),
520 OPT_BOOL(0, "all", &all, N_("use any ref")),
521 OPT_BOOL(0, "tags", &tags, N_("use any tag, even unannotated")),
522 OPT_BOOL(0, "long", &longformat, N_("always use long format")),
523 OPT_BOOL(0, "first-parent", &first_parent, N_("only follow first parent")),
524 OPT__ABBREV(&abbrev),
525 OPT_SET_INT(0, "exact-match", &max_candidates,
526 N_("only output exact matches"), 0),
527 OPT_INTEGER(0, "candidates", &max_candidates,
528 N_("consider <n> most recent tags (default: 10)")),
529 OPT_STRING_LIST(0, "match", &patterns, N_("pattern"),
530 N_("only consider tags matching <pattern>")),
531 OPT_STRING_LIST(0, "exclude", &exclude_patterns, N_("pattern"),
532 N_("do not consider tags matching <pattern>")),
533 OPT_BOOL(0, "always", &always,
534 N_("show abbreviated commit object as fallback")),
535 {OPTION_STRING, 0, "dirty", &dirty, N_("mark"),
536 N_("append <mark> on dirty working tree (default: \"-dirty\")"),
537 PARSE_OPT_OPTARG, NULL, (intptr_t) "-dirty"},
538 {OPTION_STRING, 0, "broken", &broken, N_("mark"),
539 N_("append <mark> on broken working tree (default: \"-broken\")"),
540 PARSE_OPT_OPTARG, NULL, (intptr_t) "-broken"},
544 git_config(git_default_config, NULL);
545 argc = parse_options(argc, argv, prefix, options, describe_usage, 0);
547 abbrev = DEFAULT_ABBREV;
549 if (max_candidates < 0)
551 else if (max_candidates > MAX_TAGS)
552 max_candidates = MAX_TAGS;
554 save_commit_buffer = 0;
556 if (longformat && abbrev == 0)
557 die(_("--long is incompatible with --abbrev=0"));
560 struct string_list_item *item;
561 struct argv_array args;
563 argv_array_init(&args);
564 argv_array_pushl(&args, "name-rev",
565 "--peel-tag", "--name-only", "--no-undefined",
568 argv_array_push(&args, "--always");
570 argv_array_push(&args, "--tags");
571 for_each_string_list_item(item, &patterns)
572 argv_array_pushf(&args, "--refs=refs/tags/%s", item->string);
573 for_each_string_list_item(item, &exclude_patterns)
574 argv_array_pushf(&args, "--exclude=refs/tags/%s", item->string);
577 argv_array_pushv(&args, argv);
579 argv_array_push(&args, "HEAD");
580 return cmd_name_rev(args.argc, args.argv, prefix);
583 hashmap_init(&names, commit_name_cmp, NULL, 0);
584 for_each_rawref(get_name, NULL);
585 if (!hashmap_get_size(&names) && !always)
586 die(_("No names found, cannot describe anything."));
590 struct child_process cp = CHILD_PROCESS_INIT;
591 argv_array_pushv(&cp.args, diff_index_args);
599 switch (run_command(&cp)) {
607 /* diff-index aborted abnormally */
611 static struct lock_file index_lock;
614 read_cache_preload(NULL);
615 refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED,
617 fd = hold_locked_index(&index_lock, 0);
619 update_index_if_able(&the_index, &index_lock);
621 if (!cmd_diff_index(ARRAY_SIZE(diff_index_args) - 1,
622 diff_index_args, prefix))
629 die(_("--dirty is incompatible with commit-ishes"));
631 die(_("--broken is incompatible with commit-ishes"));
634 describe(*argv++, argc == 0);