7 #include "parse-options.h"
10 #include "argv-array.h"
12 #define SEEN (1u << 0)
13 #define MAX_TAGS (FLAG_BITS - 1)
15 static const char * const describe_usage[] = {
16 N_("git describe [options] <commit-ish>*"),
17 N_("git describe [options] --dirty"),
21 static int debug; /* Display lots of verbose info */
22 static int all; /* Any valid ref can be used */
23 static int tags; /* Allow lightweight tags */
24 static int longformat;
25 static int first_parent;
26 static int abbrev = -1; /* unspecified */
27 static int max_candidates = 10;
28 static struct hashmap names;
30 static const char *pattern;
32 static const char *dirty;
34 /* diff-index command arguments to check if working tree is dirty. */
35 static const char *diff_index_args[] = {
36 "diff-index", "--quiet", "HEAD", "--", NULL
40 struct hashmap_entry entry;
41 unsigned char peeled[20];
43 unsigned prio:2; /* annotated tag = 2, tag = 1, head = 0 */
44 unsigned name_checked:1;
45 unsigned char sha1[20];
49 static const char *prio_names[] = {
50 "head", "lightweight", "annotated",
53 static int commit_name_cmp(const struct commit_name *cn1,
54 const struct commit_name *cn2, const void *peeled)
56 return hashcmp(cn1->peeled, peeled ? peeled : cn2->peeled);
59 static inline struct commit_name *find_commit_name(const unsigned char *peeled)
61 return hashmap_get_from_hash(&names, sha1hash(peeled), peeled);
64 static int replace_name(struct commit_name *e,
66 const unsigned char *sha1,
69 if (!e || e->prio < prio)
72 if (e->prio == 2 && prio == 2) {
73 /* Multiple annotated tags point to the same commit.
74 * Select one to keep based upon their tagger date.
79 t = lookup_tag(e->sha1);
80 if (!t || parse_tag(t))
86 if (!t || parse_tag(t))
90 if (e->tag->date < t->date)
97 static void add_to_known_names(const char *path,
98 const unsigned char *peeled,
100 const unsigned char *sha1)
102 struct commit_name *e = find_commit_name(peeled);
103 struct tag *tag = NULL;
104 if (replace_name(e, prio, sha1, &tag)) {
106 e = xmalloc(sizeof(struct commit_name));
107 hashcpy(e->peeled, peeled);
108 hashmap_entry_init(e, sha1hash(peeled));
109 hashmap_add(&names, e);
115 hashcpy(e->sha1, sha1);
117 e->path = xstrdup(path);
121 static int get_name(const char *path, const unsigned char *sha1, int flag, void *cb_data)
123 int is_tag = starts_with(path, "refs/tags/");
124 unsigned char peeled[20];
125 int is_annotated, prio;
127 /* Reject anything outside refs/tags/ unless --all */
131 /* Accept only tags that match the pattern, if given */
132 if (pattern && (!is_tag || wildmatch(pattern, path + 10, 0, NULL)))
135 /* Is it annotated? */
136 if (!peel_ref(path, peeled)) {
137 is_annotated = !!hashcmp(sha1, peeled);
139 hashcpy(peeled, sha1);
144 * By default, we only use annotated tags, but with --tags
145 * we fall back to lightweight ones (even without --tags,
146 * we still remember lightweight ones, only to give hints
147 * in an error message). --all allows any refs to be used.
156 add_to_known_names(all ? path + 5 : path + 10, peeled, prio, sha1);
160 struct possible_tag {
161 struct commit_name *name;
164 unsigned flag_within;
167 static int compare_pt(const void *a_, const void *b_)
169 struct possible_tag *a = (struct possible_tag *)a_;
170 struct possible_tag *b = (struct possible_tag *)b_;
171 if (a->depth != b->depth)
172 return a->depth - b->depth;
173 if (a->found_order != b->found_order)
174 return a->found_order - b->found_order;
178 static unsigned long finish_depth_computation(
179 struct commit_list **list,
180 struct possible_tag *best)
182 unsigned long seen_commits = 0;
184 struct commit *c = pop_commit(list);
185 struct commit_list *parents = c->parents;
187 if (c->object.flags & best->flag_within) {
188 struct commit_list *a = *list;
190 struct commit *i = a->item;
191 if (!(i->object.flags & best->flag_within))
200 struct commit *p = parents->item;
202 if (!(p->object.flags & SEEN))
203 commit_list_insert_by_date(p, list);
204 p->object.flags |= c->object.flags;
205 parents = parents->next;
211 static void display_name(struct commit_name *n)
213 if (n->prio == 2 && !n->tag) {
214 n->tag = lookup_tag(n->sha1);
215 if (!n->tag || parse_tag(n->tag))
216 die(_("annotated tag %s not available"), n->path);
218 if (n->tag && !n->name_checked) {
220 die(_("annotated tag %s has no embedded name"), n->path);
221 if (strcmp(n->tag->tag, all ? n->path + 5 : n->path))
222 warning(_("tag '%s' is really '%s' here"), n->tag->tag, n->path);
227 printf("%s", n->tag->tag);
229 printf("%s", n->path);
232 static void show_suffix(int depth, const unsigned char *sha1)
234 printf("-%d-g%s", depth, find_unique_abbrev(sha1, abbrev));
237 static void describe(const char *arg, int last_one)
239 unsigned char sha1[20];
240 struct commit *cmit, *gave_up_on = NULL;
241 struct commit_list *list;
242 struct commit_name *n;
243 struct possible_tag all_matches[MAX_TAGS];
244 unsigned int match_cnt = 0, annotated_cnt = 0, cur_match;
245 unsigned long seen_commits = 0;
246 unsigned int unannotated_cnt = 0;
248 if (get_sha1(arg, sha1))
249 die(_("Not a valid object name %s"), arg);
250 cmit = lookup_commit_reference(sha1);
252 die(_("%s is not a valid '%s' object"), arg, commit_type);
254 n = find_commit_name(cmit->object.sha1);
255 if (n && (tags || all || n->prio == 2)) {
257 * Exact match to an existing ref.
261 show_suffix(0, n->tag ? n->tag->tagged->sha1 : sha1);
269 die(_("no tag exactly matches '%s'"), sha1_to_hex(cmit->object.sha1));
271 fprintf(stderr, _("searching to describe %s\n"), arg);
274 struct hashmap_iter iter;
276 struct commit_name *n = hashmap_iter_first(&names, &iter);
277 for (; n; n = hashmap_iter_next(&iter)) {
278 c = lookup_commit_reference_gently(n->peeled, 1);
286 cmit->object.flags = SEEN;
287 commit_list_insert(cmit, &list);
289 struct commit *c = pop_commit(&list);
290 struct commit_list *parents = c->parents;
294 if (!tags && !all && n->prio < 2) {
296 } else if (match_cnt < max_candidates) {
297 struct possible_tag *t = &all_matches[match_cnt++];
299 t->depth = seen_commits - 1;
300 t->flag_within = 1u << match_cnt;
301 t->found_order = match_cnt;
302 c->object.flags |= t->flag_within;
311 for (cur_match = 0; cur_match < match_cnt; cur_match++) {
312 struct possible_tag *t = &all_matches[cur_match];
313 if (!(c->object.flags & t->flag_within))
316 if (annotated_cnt && !list) {
318 fprintf(stderr, _("finished search at %s\n"),
319 sha1_to_hex(c->object.sha1));
323 struct commit *p = parents->item;
325 if (!(p->object.flags & SEEN))
326 commit_list_insert_by_date(p, &list);
327 p->object.flags |= c->object.flags;
328 parents = parents->next;
336 const unsigned char *sha1 = cmit->object.sha1;
338 printf("%s", find_unique_abbrev(sha1, abbrev));
345 die(_("No annotated tags can describe '%s'.\n"
346 "However, there were unannotated tags: try --tags."),
349 die(_("No tags can describe '%s'.\n"
350 "Try --always, or create some tags."),
354 qsort(all_matches, match_cnt, sizeof(all_matches[0]), compare_pt);
357 commit_list_insert_by_date(gave_up_on, &list);
360 seen_commits += finish_depth_computation(&list, &all_matches[0]);
361 free_commit_list(list);
364 for (cur_match = 0; cur_match < match_cnt; cur_match++) {
365 struct possible_tag *t = &all_matches[cur_match];
366 fprintf(stderr, " %-11s %8d %s\n",
367 prio_names[t->name->prio],
368 t->depth, t->name->path);
370 fprintf(stderr, _("traversed %lu commits\n"), seen_commits);
373 _("more than %i tags found; listed %i most recent\n"
374 "gave up search at %s\n"),
375 max_candidates, max_candidates,
376 sha1_to_hex(gave_up_on->object.sha1));
380 display_name(all_matches[0].name);
382 show_suffix(all_matches[0].depth, cmit->object.sha1);
388 clear_commit_marks(cmit, -1);
391 int cmd_describe(int argc, const char **argv, const char *prefix)
394 struct option options[] = {
395 OPT_BOOL(0, "contains", &contains, N_("find the tag that comes after the commit")),
396 OPT_BOOL(0, "debug", &debug, N_("debug search strategy on stderr")),
397 OPT_BOOL(0, "all", &all, N_("use any ref")),
398 OPT_BOOL(0, "tags", &tags, N_("use any tag, even unannotated")),
399 OPT_BOOL(0, "long", &longformat, N_("always use long format")),
400 OPT_BOOL(0, "first-parent", &first_parent, N_("only follow first parent")),
401 OPT__ABBREV(&abbrev),
402 OPT_SET_INT(0, "exact-match", &max_candidates,
403 N_("only output exact matches"), 0),
404 OPT_INTEGER(0, "candidates", &max_candidates,
405 N_("consider <n> most recent tags (default: 10)")),
406 OPT_STRING(0, "match", &pattern, N_("pattern"),
407 N_("only consider tags matching <pattern>")),
408 OPT_BOOL(0, "always", &always,
409 N_("show abbreviated commit object as fallback")),
410 {OPTION_STRING, 0, "dirty", &dirty, N_("mark"),
411 N_("append <mark> on dirty working tree (default: \"-dirty\")"),
412 PARSE_OPT_OPTARG, NULL, (intptr_t) "-dirty"},
416 git_config(git_default_config, NULL);
417 argc = parse_options(argc, argv, prefix, options, describe_usage, 0);
419 abbrev = DEFAULT_ABBREV;
421 if (max_candidates < 0)
423 else if (max_candidates > MAX_TAGS)
424 max_candidates = MAX_TAGS;
426 save_commit_buffer = 0;
428 if (longformat && abbrev == 0)
429 die(_("--long is incompatible with --abbrev=0"));
432 struct argv_array args;
434 argv_array_init(&args);
435 argv_array_pushl(&args, "name-rev",
436 "--peel-tag", "--name-only", "--no-undefined",
439 argv_array_push(&args, "--always");
441 argv_array_push(&args, "--tags");
443 argv_array_pushf(&args, "--refs=refs/tags/%s", pattern);
446 argv_array_push(&args, *argv);
449 return cmd_name_rev(args.argc, args.argv, prefix);
452 hashmap_init(&names, (hashmap_cmp_fn) commit_name_cmp, 0);
453 for_each_rawref(get_name, NULL);
454 if (!names.size && !always)
455 die(_("No names found, cannot describe anything."));
459 static struct lock_file index_lock;
462 read_cache_preload(NULL);
463 refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED,
465 fd = hold_locked_index(&index_lock, 0);
467 update_index_if_able(&the_index, &index_lock);
469 if (!cmd_diff_index(ARRAY_SIZE(diff_index_args) - 1,
470 diff_index_args, prefix))
475 die(_("--dirty is incompatible with commit-ishes"));
478 describe(*argv++, argc == 0);