7 #include "parse-options.h"
11 #define MAX_TAGS (FLAG_BITS - 1)
13 static const char * const describe_usage
[] = {
14 "git describe [options] <committish>*",
15 "git describe [options] --dirty",
19 static int debug
; /* Display lots of verbose info */
20 static int all
; /* Any valid ref can be used */
21 static int tags
; /* Allow lightweight tags */
22 static int longformat
;
23 static int abbrev
= DEFAULT_ABBREV
;
24 static int max_candidates
= 10;
25 static int found_names
;
26 static const char *pattern
;
28 static const char *dirty
;
30 /* diff-index command arguments to check if working tree is dirty. */
31 static const char *diff_index_args
[] = {
32 "diff-index", "--quiet", "HEAD", "--", NULL
38 int prio
; /* annotated tag = 2, tag = 1, head = 0 */
39 unsigned char sha1
[20];
40 char path
[FLEX_ARRAY
]; /* more */
42 static const char *prio_names
[] = {
43 "head", "lightweight", "annotated",
46 static void add_to_known_names(const char *path
,
47 struct commit
*commit
,
49 const unsigned char *sha1
)
51 struct commit_name
*e
= commit
->util
;
52 if (!e
|| e
->prio
< prio
) {
53 size_t len
= strlen(path
)+1;
55 e
= xmalloc(sizeof(struct commit_name
) + len
);
58 hashcpy(e
->sha1
, sha1
);
59 memcpy(e
->path
, path
, len
);
65 static int get_name(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
67 int might_be_tag
= !prefixcmp(path
, "refs/tags/");
68 struct commit
*commit
;
69 struct object
*object
;
70 unsigned char peeled
[20];
73 if (!all
&& !might_be_tag
)
76 if (!peel_ref(path
, peeled
) && !is_null_sha1(peeled
)) {
77 commit
= lookup_commit_reference_gently(peeled
, 1);
80 is_tag
= !!hashcmp(sha1
, commit
->object
.sha1
);
82 commit
= lookup_commit_reference_gently(sha1
, 1);
83 object
= parse_object(sha1
);
84 if (!commit
|| !object
)
86 is_tag
= object
->type
== OBJ_TAG
;
89 /* If --all, then any refs are used.
90 * If --tags, then any tags are used.
91 * Otherwise only annotated tags are used.
99 if (pattern
&& fnmatch(pattern
, path
+ 10, 0))
109 add_to_known_names(all
? path
+ 5 : path
+ 10, commit
, prio
, sha1
);
113 struct possible_tag
{
114 struct commit_name
*name
;
117 unsigned flag_within
;
120 static int compare_pt(const void *a_
, const void *b_
)
122 struct possible_tag
*a
= (struct possible_tag
*)a_
;
123 struct possible_tag
*b
= (struct possible_tag
*)b_
;
124 if (a
->depth
!= b
->depth
)
125 return a
->depth
- b
->depth
;
126 if (a
->found_order
!= b
->found_order
)
127 return a
->found_order
- b
->found_order
;
131 static unsigned long finish_depth_computation(
132 struct commit_list
**list
,
133 struct possible_tag
*best
)
135 unsigned long seen_commits
= 0;
137 struct commit
*c
= pop_commit(list
);
138 struct commit_list
*parents
= c
->parents
;
140 if (c
->object
.flags
& best
->flag_within
) {
141 struct commit_list
*a
= *list
;
143 struct commit
*i
= a
->item
;
144 if (!(i
->object
.flags
& best
->flag_within
))
153 struct commit
*p
= parents
->item
;
155 if (!(p
->object
.flags
& SEEN
))
156 insert_by_date(p
, list
);
157 p
->object
.flags
|= c
->object
.flags
;
158 parents
= parents
->next
;
164 static void display_name(struct commit_name
*n
)
166 if (n
->prio
== 2 && !n
->tag
) {
167 n
->tag
= lookup_tag(n
->sha1
);
168 if (!n
->tag
|| parse_tag(n
->tag
) || !n
->tag
->tag
)
169 die("annotated tag %s not available", n
->path
);
170 if (strcmp(n
->tag
->tag
, all
? n
->path
+ 5 : n
->path
))
171 warning("tag '%s' is really '%s' here", n
->tag
->tag
, n
->path
);
175 printf("%s", n
->tag
->tag
);
177 printf("%s", n
->path
);
180 static void show_suffix(int depth
, const unsigned char *sha1
)
182 printf("-%d-g%s", depth
, find_unique_abbrev(sha1
, abbrev
));
185 static void describe(const char *arg
, int last_one
)
187 unsigned char sha1
[20];
188 struct commit
*cmit
, *gave_up_on
= NULL
;
189 struct commit_list
*list
;
190 struct commit_name
*n
;
191 struct possible_tag all_matches
[MAX_TAGS
];
192 unsigned int match_cnt
= 0, annotated_cnt
= 0, cur_match
;
193 unsigned long seen_commits
= 0;
194 unsigned int unannotated_cnt
= 0;
196 if (get_sha1(arg
, sha1
))
197 die("Not a valid object name %s", arg
);
198 cmit
= lookup_commit_reference(sha1
);
200 die("%s is not a valid '%s' object", arg
, commit_type
);
203 if (n
&& (tags
|| all
|| n
->prio
== 2)) {
205 * Exact match to an existing ref.
209 show_suffix(0, n
->tag
? n
->tag
->tagged
->sha1
: sha1
);
217 die("no tag exactly matches '%s'", sha1_to_hex(cmit
->object
.sha1
));
219 fprintf(stderr
, "searching to describe %s\n", arg
);
222 cmit
->object
.flags
= SEEN
;
223 commit_list_insert(cmit
, &list
);
225 struct commit
*c
= pop_commit(&list
);
226 struct commit_list
*parents
= c
->parents
;
230 if (!tags
&& !all
&& n
->prio
< 2) {
232 } else if (match_cnt
< max_candidates
) {
233 struct possible_tag
*t
= &all_matches
[match_cnt
++];
235 t
->depth
= seen_commits
- 1;
236 t
->flag_within
= 1u << match_cnt
;
237 t
->found_order
= match_cnt
;
238 c
->object
.flags
|= t
->flag_within
;
247 for (cur_match
= 0; cur_match
< match_cnt
; cur_match
++) {
248 struct possible_tag
*t
= &all_matches
[cur_match
];
249 if (!(c
->object
.flags
& t
->flag_within
))
252 if (annotated_cnt
&& !list
) {
254 fprintf(stderr
, "finished search at %s\n",
255 sha1_to_hex(c
->object
.sha1
));
259 struct commit
*p
= parents
->item
;
261 if (!(p
->object
.flags
& SEEN
))
262 insert_by_date(p
, &list
);
263 p
->object
.flags
|= c
->object
.flags
;
264 parents
= parents
->next
;
269 const unsigned char *sha1
= cmit
->object
.sha1
;
271 printf("%s", find_unique_abbrev(sha1
, abbrev
));
278 die("No annotated tags can describe '%s'.\n"
279 "However, there were unannotated tags: try --tags.",
282 die("No tags can describe '%s'.\n"
283 "Try --always, or create some tags.",
287 qsort(all_matches
, match_cnt
, sizeof(all_matches
[0]), compare_pt
);
290 insert_by_date(gave_up_on
, &list
);
293 seen_commits
+= finish_depth_computation(&list
, &all_matches
[0]);
294 free_commit_list(list
);
297 for (cur_match
= 0; cur_match
< match_cnt
; cur_match
++) {
298 struct possible_tag
*t
= &all_matches
[cur_match
];
299 fprintf(stderr
, " %-11s %8d %s\n",
300 prio_names
[t
->name
->prio
],
301 t
->depth
, t
->name
->path
);
303 fprintf(stderr
, "traversed %lu commits\n", seen_commits
);
306 "more than %i tags found; listed %i most recent\n"
307 "gave up search at %s\n",
308 max_candidates
, max_candidates
,
309 sha1_to_hex(gave_up_on
->object
.sha1
));
313 display_name(all_matches
[0].name
);
315 show_suffix(all_matches
[0].depth
, cmit
->object
.sha1
);
321 clear_commit_marks(cmit
, -1);
324 int cmd_describe(int argc
, const char **argv
, const char *prefix
)
327 struct option options
[] = {
328 OPT_BOOLEAN(0, "contains", &contains
, "find the tag that comes after the commit"),
329 OPT_BOOLEAN(0, "debug", &debug
, "debug search strategy on stderr"),
330 OPT_BOOLEAN(0, "all", &all
, "use any ref in .git/refs"),
331 OPT_BOOLEAN(0, "tags", &tags
, "use any tag in .git/refs/tags"),
332 OPT_BOOLEAN(0, "long", &longformat
, "always use long format"),
333 OPT__ABBREV(&abbrev
),
334 OPT_SET_INT(0, "exact-match", &max_candidates
,
335 "only output exact matches", 0),
336 OPT_INTEGER(0, "candidates", &max_candidates
,
337 "consider <n> most recent tags (default: 10)"),
338 OPT_STRING(0, "match", &pattern
, "pattern",
339 "only consider tags matching <pattern>"),
340 OPT_BOOLEAN(0, "always", &always
,
341 "show abbreviated commit object as fallback"),
342 {OPTION_STRING
, 0, "dirty", &dirty
, "mark",
343 "append <mark> on dirty working tree (default: \"-dirty\")",
344 PARSE_OPT_OPTARG
, NULL
, (intptr_t) "-dirty"},
348 argc
= parse_options(argc
, argv
, prefix
, options
, describe_usage
, 0);
349 if (max_candidates
< 0)
351 else if (max_candidates
> MAX_TAGS
)
352 max_candidates
= MAX_TAGS
;
354 save_commit_buffer
= 0;
356 if (longformat
&& abbrev
== 0)
357 die("--long is incompatible with --abbrev=0");
360 const char **args
= xmalloc((7 + argc
) * sizeof(char *));
362 args
[i
++] = "name-rev";
363 args
[i
++] = "--name-only";
364 args
[i
++] = "--no-undefined";
366 args
[i
++] = "--always";
368 args
[i
++] = "--tags";
370 char *s
= xmalloc(strlen("--refs=refs/tags/") + strlen(pattern
) + 1);
371 sprintf(s
, "--refs=refs/tags/%s", pattern
);
375 memcpy(args
+ i
, argv
, argc
* sizeof(char *));
376 args
[i
+ argc
] = NULL
;
377 return cmd_name_rev(i
+ argc
, args
, prefix
);
380 for_each_ref(get_name
, NULL
);
381 if (!found_names
&& !always
)
382 die("No names found, cannot describe anything.");
385 if (dirty
&& !cmd_diff_index(ARRAY_SIZE(diff_index_args
) - 1, diff_index_args
, prefix
))
389 die("--dirty is incompatible with committishes");
392 describe(*argv
++, argc
== 0);