3 #include "repository.h"
8 #include "parse-options.h"
9 #include "prio-queue.h"
10 #include "hash-lookup.h"
11 #include "commit-slab.h"
12 #include "commit-graph.h"
15 * One day. See the 'name a rev shortly after epoch' test in t6120 when
18 #define CUTOFF_DATE_SLOP 86400
22 timestamp_t taggerdate
;
28 define_commit_slab(commit_rev_name
, struct rev_name
);
30 static timestamp_t generation_cutoff
= GENERATION_NUMBER_INFINITY
;
31 static timestamp_t cutoff
= TIME_MAX
;
32 static struct commit_rev_name rev_names
;
34 /* Disable the cutoff checks entirely */
35 static void disable_cutoff(void)
37 generation_cutoff
= 0;
41 /* Cutoff searching any commits older than this one */
42 static void set_commit_cutoff(struct commit
*commit
)
45 if (cutoff
> commit
->date
)
46 cutoff
= commit
->date
;
48 if (generation_cutoff
) {
49 timestamp_t generation
= commit_graph_generation(commit
);
51 if (generation_cutoff
> generation
)
52 generation_cutoff
= generation
;
56 /* adjust the commit date cutoff with a slop to allow for slightly incorrect
57 * commit timestamps in case of clock skew.
59 static void adjust_cutoff_timestamp_for_slop(void)
62 /* check for undeflow */
63 if (cutoff
> TIME_MIN
+ CUTOFF_DATE_SLOP
)
64 cutoff
= cutoff
- CUTOFF_DATE_SLOP
;
70 /* Check if a commit is before the cutoff. Prioritize generation numbers
71 * first, but use the commit timestamp if we lack generation data.
73 static int commit_is_before_cutoff(struct commit
*commit
)
75 if (generation_cutoff
< GENERATION_NUMBER_INFINITY
)
76 return generation_cutoff
&&
77 commit_graph_generation(commit
) < generation_cutoff
;
79 return commit
->date
< cutoff
;
82 /* How many generations are maximally preferred over _one_ merge traversal? */
83 #define MERGE_TRAVERSAL_WEIGHT 65535
85 static int is_valid_rev_name(const struct rev_name
*name
)
87 return name
&& name
->tip_name
;
90 static struct rev_name
*get_commit_rev_name(const struct commit
*commit
)
92 struct rev_name
*name
= commit_rev_name_peek(&rev_names
, commit
);
94 return is_valid_rev_name(name
) ? name
: NULL
;
97 static int effective_distance(int distance
, int generation
)
99 return distance
+ (generation
> 0 ? MERGE_TRAVERSAL_WEIGHT
: 0);
102 static int is_better_name(struct rev_name
*name
,
103 timestamp_t taggerdate
,
108 int name_distance
= effective_distance(name
->distance
, name
->generation
);
109 int new_distance
= effective_distance(distance
, generation
);
112 * When comparing names based on tags, prefer names
113 * based on the older tag, even if it is farther away.
115 if (from_tag
&& name
->from_tag
)
116 return (name
->taggerdate
> taggerdate
||
117 (name
->taggerdate
== taggerdate
&&
118 name_distance
> new_distance
));
121 * We know that at least one of them is a non-tag at this point.
122 * favor a tag over a non-tag.
124 if (name
->from_tag
!= from_tag
)
128 * We are now looking at two non-tags. Tiebreak to favor
131 if (name_distance
!= new_distance
)
132 return name_distance
> new_distance
;
134 /* ... or tiebreak to favor older date */
135 if (name
->taggerdate
!= taggerdate
)
136 return name
->taggerdate
> taggerdate
;
138 /* keep the current one if we cannot decide */
142 static struct rev_name
*create_or_update_name(struct commit
*commit
,
143 timestamp_t taggerdate
,
144 int generation
, int distance
,
147 struct rev_name
*name
= commit_rev_name_at(&rev_names
, commit
);
149 if (is_valid_rev_name(name
) &&
150 !is_better_name(name
, taggerdate
, generation
, distance
, from_tag
))
153 name
->taggerdate
= taggerdate
;
154 name
->generation
= generation
;
155 name
->distance
= distance
;
156 name
->from_tag
= from_tag
;
161 static char *get_parent_name(const struct rev_name
*name
, int parent_number
)
163 struct strbuf sb
= STRBUF_INIT
;
166 strip_suffix(name
->tip_name
, "^0", &len
);
167 if (name
->generation
> 0) {
168 strbuf_grow(&sb
, len
+
169 1 + decimal_width(name
->generation
) +
170 1 + decimal_width(parent_number
));
171 strbuf_addf(&sb
, "%.*s~%d^%d", (int)len
, name
->tip_name
,
172 name
->generation
, parent_number
);
174 strbuf_grow(&sb
, len
+
175 1 + decimal_width(parent_number
));
176 strbuf_addf(&sb
, "%.*s^%d", (int)len
, name
->tip_name
,
179 return strbuf_detach(&sb
, NULL
);
182 static void name_rev(struct commit
*start_commit
,
183 const char *tip_name
, timestamp_t taggerdate
,
184 int from_tag
, int deref
)
186 struct prio_queue queue
;
187 struct commit
*commit
;
188 struct commit
**parents_to_queue
= NULL
;
189 size_t parents_to_queue_nr
, parents_to_queue_alloc
= 0;
190 struct rev_name
*start_name
;
192 parse_commit(start_commit
);
193 if (commit_is_before_cutoff(start_commit
))
196 start_name
= create_or_update_name(start_commit
, taggerdate
, 0, 0,
201 start_name
->tip_name
= xstrfmt("%s^0", tip_name
);
203 start_name
->tip_name
= xstrdup(tip_name
);
205 memset(&queue
, 0, sizeof(queue
)); /* Use the prio_queue as LIFO */
206 prio_queue_put(&queue
, start_commit
);
208 while ((commit
= prio_queue_get(&queue
))) {
209 struct rev_name
*name
= get_commit_rev_name(commit
);
210 struct commit_list
*parents
;
211 int parent_number
= 1;
213 parents_to_queue_nr
= 0;
215 for (parents
= commit
->parents
;
217 parents
= parents
->next
, parent_number
++) {
218 struct commit
*parent
= parents
->item
;
219 struct rev_name
*parent_name
;
220 int generation
, distance
;
222 parse_commit(parent
);
223 if (commit_is_before_cutoff(parent
))
226 if (parent_number
> 1) {
228 distance
= name
->distance
+ MERGE_TRAVERSAL_WEIGHT
;
230 generation
= name
->generation
+ 1;
231 distance
= name
->distance
+ 1;
234 parent_name
= create_or_update_name(parent
, taggerdate
,
238 if (parent_number
> 1)
239 parent_name
->tip_name
=
240 get_parent_name(name
,
243 parent_name
->tip_name
= name
->tip_name
;
244 ALLOC_GROW(parents_to_queue
,
245 parents_to_queue_nr
+ 1,
246 parents_to_queue_alloc
);
247 parents_to_queue
[parents_to_queue_nr
] = parent
;
248 parents_to_queue_nr
++;
252 /* The first parent must come out first from the prio_queue */
253 while (parents_to_queue_nr
)
254 prio_queue_put(&queue
,
255 parents_to_queue
[--parents_to_queue_nr
]);
258 clear_prio_queue(&queue
);
259 free(parents_to_queue
);
262 static int subpath_matches(const char *path
, const char *filter
)
264 const char *subpath
= path
;
267 if (!wildmatch(filter
, subpath
, 0))
268 return subpath
- path
;
269 subpath
= strchr(subpath
, '/');
276 static const char *name_ref_abbrev(const char *refname
, int shorten_unambiguous
)
278 if (shorten_unambiguous
)
279 refname
= shorten_unambiguous_ref(refname
, 0);
280 else if (skip_prefix(refname
, "refs/heads/", &refname
))
281 ; /* refname already advanced */
283 skip_prefix(refname
, "refs/", &refname
);
287 struct name_ref_data
{
290 struct string_list ref_filters
;
291 struct string_list exclude_filters
;
294 static struct tip_table
{
295 struct tip_table_entry
{
296 struct object_id oid
;
298 struct commit
*commit
;
299 timestamp_t taggerdate
;
300 unsigned int from_tag
:1;
301 unsigned int deref
:1;
308 static void add_to_tip_table(const struct object_id
*oid
, const char *refname
,
309 int shorten_unambiguous
, struct commit
*commit
,
310 timestamp_t taggerdate
, int from_tag
, int deref
)
312 refname
= name_ref_abbrev(refname
, shorten_unambiguous
);
314 ALLOC_GROW(tip_table
.table
, tip_table
.nr
+ 1, tip_table
.alloc
);
315 oidcpy(&tip_table
.table
[tip_table
.nr
].oid
, oid
);
316 tip_table
.table
[tip_table
.nr
].refname
= xstrdup(refname
);
317 tip_table
.table
[tip_table
.nr
].commit
= commit
;
318 tip_table
.table
[tip_table
.nr
].taggerdate
= taggerdate
;
319 tip_table
.table
[tip_table
.nr
].from_tag
= from_tag
;
320 tip_table
.table
[tip_table
.nr
].deref
= deref
;
322 tip_table
.sorted
= 0;
325 static int tipcmp(const void *a_
, const void *b_
)
327 const struct tip_table_entry
*a
= a_
, *b
= b_
;
328 return oidcmp(&a
->oid
, &b
->oid
);
331 static int cmp_by_tag_and_age(const void *a_
, const void *b_
)
333 const struct tip_table_entry
*a
= a_
, *b
= b_
;
337 cmp
= b
->from_tag
- a
->from_tag
;
341 /* Older is better. */
342 if (a
->taggerdate
< b
->taggerdate
)
344 return a
->taggerdate
!= b
->taggerdate
;
347 static int name_ref(const char *path
, const struct object_id
*oid
,
348 int UNUSED(flags
), void *cb_data
)
350 struct object
*o
= parse_object(the_repository
, oid
);
351 struct name_ref_data
*data
= cb_data
;
352 int can_abbreviate_output
= data
->tags_only
&& data
->name_only
;
355 struct commit
*commit
= NULL
;
356 timestamp_t taggerdate
= TIME_MAX
;
358 if (data
->tags_only
&& !starts_with(path
, "refs/tags/"))
361 if (data
->exclude_filters
.nr
) {
362 struct string_list_item
*item
;
364 for_each_string_list_item(item
, &data
->exclude_filters
) {
365 if (subpath_matches(path
, item
->string
) >= 0)
370 if (data
->ref_filters
.nr
) {
371 struct string_list_item
*item
;
374 /* See if any of the patterns match. */
375 for_each_string_list_item(item
, &data
->ref_filters
) {
377 * Check all patterns even after finding a match, so
378 * that we can see if a match with a subpath exists.
379 * When a user asked for 'refs/tags/v*' and 'v1.*',
380 * both of which match, the user is showing her
381 * willingness to accept a shortened output by having
382 * the 'v1.*' in the acceptable refnames, so we
383 * shouldn't stop when seeing 'refs/tags/v1.4' matches
384 * 'refs/tags/v*'. We should show it as 'v1.4'.
386 switch (subpath_matches(path
, item
->string
)) {
387 case -1: /* did not match */
389 case 0: /* matched fully */
392 default: /* matched subpath */
394 can_abbreviate_output
= 1;
399 /* If none of the patterns matched, stop now */
404 while (o
&& o
->type
== OBJ_TAG
) {
405 struct tag
*t
= (struct tag
*) o
;
407 break; /* broken repository */
408 o
= parse_object(the_repository
, &t
->tagged
->oid
);
410 taggerdate
= t
->date
;
412 if (o
&& o
->type
== OBJ_COMMIT
) {
413 commit
= (struct commit
*)o
;
414 from_tag
= starts_with(path
, "refs/tags/");
415 if (taggerdate
== TIME_MAX
)
416 taggerdate
= commit
->date
;
419 add_to_tip_table(oid
, path
, can_abbreviate_output
, commit
, taggerdate
,
424 static void name_tips(void)
429 * Try to set better names first, so that worse ones spread
432 QSORT(tip_table
.table
, tip_table
.nr
, cmp_by_tag_and_age
);
433 for (i
= 0; i
< tip_table
.nr
; i
++) {
434 struct tip_table_entry
*e
= &tip_table
.table
[i
];
436 name_rev(e
->commit
, e
->refname
, e
->taggerdate
,
437 e
->from_tag
, e
->deref
);
442 static const struct object_id
*nth_tip_table_ent(size_t ix
, const void *table_
)
444 const struct tip_table_entry
*table
= table_
;
445 return &table
[ix
].oid
;
448 static const char *get_exact_ref_match(const struct object
*o
)
452 if (!tip_table
.table
|| !tip_table
.nr
)
455 if (!tip_table
.sorted
) {
456 QSORT(tip_table
.table
, tip_table
.nr
, tipcmp
);
457 tip_table
.sorted
= 1;
460 found
= oid_pos(&o
->oid
, tip_table
.table
, tip_table
.nr
,
463 return tip_table
.table
[found
].refname
;
467 /* may return a constant string or use "buf" as scratch space */
468 static const char *get_rev_name(const struct object
*o
, struct strbuf
*buf
)
471 const struct commit
*c
;
473 if (o
->type
!= OBJ_COMMIT
)
474 return get_exact_ref_match(o
);
475 c
= (const struct commit
*) o
;
476 n
= get_commit_rev_name(c
);
484 strbuf_addstr(buf
, n
->tip_name
);
485 strbuf_strip_suffix(buf
, "^0");
486 strbuf_addf(buf
, "~%d", n
->generation
);
491 static void show_name(const struct object
*obj
,
492 const char *caller_name
,
493 int always
, int allow_undefined
, int name_only
)
496 const struct object_id
*oid
= &obj
->oid
;
497 struct strbuf buf
= STRBUF_INIT
;
500 printf("%s ", caller_name
? caller_name
: oid_to_hex(oid
));
501 name
= get_rev_name(obj
, &buf
);
503 printf("%s\n", name
);
504 else if (allow_undefined
)
505 printf("undefined\n");
507 printf("%s\n", find_unique_abbrev(oid
, DEFAULT_ABBREV
));
509 die("cannot describe '%s'", oid_to_hex(oid
));
510 strbuf_release(&buf
);
513 static char const * const name_rev_usage
[] = {
514 N_("git name-rev [<options>] <commit>..."),
515 N_("git name-rev [<options>] --all"),
516 N_("git name-rev [<options>] --annotate-stdin"),
520 static void name_rev_line(char *p
, struct name_ref_data
*data
)
522 struct strbuf buf
= STRBUF_INIT
;
525 const unsigned hexsz
= the_hash_algo
->hexsz
;
527 for (p_start
= p
; *p
; p
++) {
528 #define ishex(x) (isdigit((x)) || ((x) >= 'a' && (x) <= 'f'))
531 else if (++counter
== hexsz
&&
533 struct object_id oid
;
534 const char *name
= NULL
;
536 int p_len
= p
- p_start
+ 1;
541 if (!get_oid(p
- (hexsz
- 1), &oid
)) {
543 lookup_object(the_repository
, &oid
);
545 name
= get_rev_name(o
, &buf
);
553 printf("%.*s%s", p_len
- hexsz
, p_start
, name
);
555 printf("%.*s (%s)", p_len
, p_start
, name
);
562 fwrite(p_start
, p
- p_start
, 1, stdout
);
564 strbuf_release(&buf
);
567 int cmd_name_rev(int argc
, const char **argv
, const char *prefix
)
569 struct object_array revs
= OBJECT_ARRAY_INIT
;
570 int all
= 0, annotate_stdin
= 0, transform_stdin
= 0, allow_undefined
= 1, always
= 0, peel_tag
= 0;
571 struct name_ref_data data
= { 0, 0, STRING_LIST_INIT_NODUP
, STRING_LIST_INIT_NODUP
};
572 struct option opts
[] = {
573 OPT_BOOL(0, "name-only", &data
.name_only
, N_("print only ref-based names (no object names)")),
574 OPT_BOOL(0, "tags", &data
.tags_only
, N_("only use tags to name the commits")),
575 OPT_STRING_LIST(0, "refs", &data
.ref_filters
, N_("pattern"),
576 N_("only use refs matching <pattern>")),
577 OPT_STRING_LIST(0, "exclude", &data
.exclude_filters
, N_("pattern"),
578 N_("ignore refs matching <pattern>")),
580 OPT_BOOL(0, "all", &all
, N_("list all commits reachable from all refs")),
581 OPT_BOOL(0, "stdin", &transform_stdin
, N_("deprecated: use --annotate-stdin instead")),
582 OPT_BOOL(0, "annotate-stdin", &annotate_stdin
, N_("annotate text from stdin")),
583 OPT_BOOL(0, "undefined", &allow_undefined
, N_("allow to print `undefined` names (default)")),
584 OPT_BOOL(0, "always", &always
,
585 N_("show abbreviated commit object as fallback")),
587 /* A Hidden OPT_BOOL */
588 OPTION_SET_INT
, 0, "peel-tag", &peel_tag
, NULL
,
589 N_("dereference tags in the input (internal use)"),
590 PARSE_OPT_NOARG
| PARSE_OPT_HIDDEN
, NULL
, 1,
595 init_commit_rev_name(&rev_names
);
596 git_config(git_default_config
, NULL
);
597 argc
= parse_options(argc
, argv
, prefix
, opts
, name_rev_usage
, 0);
599 if (transform_stdin
) {
600 warning("--stdin is deprecated. Please use --annotate-stdin instead, "
601 "which is functionally equivalent.\n"
602 "This option will be removed in a future release.");
606 if (all
+ annotate_stdin
+ !!argc
> 1) {
607 error("Specify either a list, or --all, not both!");
608 usage_with_options(name_rev_usage
, opts
);
610 if (all
|| annotate_stdin
)
613 for (; argc
; argc
--, argv
++) {
614 struct object_id oid
;
615 struct object
*object
;
616 struct commit
*commit
;
618 if (get_oid(*argv
, &oid
)) {
619 fprintf(stderr
, "Could not get sha1 for %s. Skipping.\n",
625 object
= parse_object(the_repository
, &oid
);
627 struct object
*peeled
= deref_tag(the_repository
,
629 if (peeled
&& peeled
->type
== OBJ_COMMIT
)
630 commit
= (struct commit
*)peeled
;
634 fprintf(stderr
, "Could not get object for %s. Skipping.\n",
640 set_commit_cutoff(commit
);
644 fprintf(stderr
, "Could not get commit for %s. Skipping.\n",
648 object
= (struct object
*)commit
;
650 add_object_array(object
, *argv
, &revs
);
653 adjust_cutoff_timestamp_for_slop();
655 for_each_ref(name_ref
, &data
);
658 if (annotate_stdin
) {
659 struct strbuf sb
= STRBUF_INIT
;
661 while (strbuf_getline(&sb
, stdin
) != EOF
) {
662 strbuf_addch(&sb
, '\n');
663 name_rev_line(sb
.buf
, &data
);
669 max
= get_max_object_index();
670 for (i
= 0; i
< max
; i
++) {
671 struct object
*obj
= get_indexed_object(i
);
672 if (!obj
|| obj
->type
!= OBJ_COMMIT
)
675 always
, allow_undefined
, data
.name_only
);
679 for (i
= 0; i
< revs
.nr
; i
++)
680 show_name(revs
.objects
[i
].item
, revs
.objects
[i
].name
,
681 always
, allow_undefined
, data
.name_only
);