7 static const char show_branch_usage[] =
8 "git-show-branch [--all] [--heads] [--tags] [--topo-order] [--more=count | --list | --independent | --merge-base ] [<refs>...]";
10 #define UNINTERESTING 01
13 #define MAX_REVS 29 /* should not exceed bits_per_int - REV_SHIFT */
15 static struct commit *interesting(struct commit_list *list)
18 struct commit *commit = list->item;
20 if (commit->object.flags & UNINTERESTING)
27 static struct commit *pop_one_commit(struct commit_list **list_p)
29 struct commit *commit;
30 struct commit_list *list;
39 const char *head_name; /* which head's ancestor? */
40 int generation; /* how many parents away from head_name */
43 /* Name the commit as nth generation ancestor of head_name;
44 * we count only the first-parent relationship for naming purposes.
46 static void name_commit(struct commit *commit, const char *head_name, int nth)
48 struct commit_name *name;
49 if (!commit->object.util)
50 commit->object.util = xmalloc(sizeof(struct commit_name));
51 name = commit->object.util;
52 name->head_name = head_name;
53 name->generation = nth;
56 /* Parent is the first parent of the commit. We may name it
57 * as (n+1)th generation ancestor of the same head_name as
58 * commit is nth generation ancestor of, if that generation
59 * number is better than the name it already has.
61 static void name_parent(struct commit *commit, struct commit *parent)
63 struct commit_name *commit_name = commit->object.util;
64 struct commit_name *parent_name = parent->object.util;
68 commit_name->generation + 1 < parent_name->generation)
69 name_commit(parent, commit_name->head_name,
70 commit_name->generation + 1);
73 static int name_first_parent_chain(struct commit *c)
83 if (!p->object.util) {
92 static void name_commits(struct commit_list *list,
97 struct commit_list *cl;
101 /* First give names to the given heads */
102 for (cl = list; cl; cl = cl->next) {
106 for (i = 0; i < num_rev; i++) {
108 name_commit(c, ref_name[i], 0);
114 /* Then commits on the first parent ancestry chain */
117 for (cl = list; cl; cl = cl->next) {
118 i += name_first_parent_chain(cl->item);
122 /* Finally, any unnamed commits */
125 for (cl = list; cl; cl = cl->next) {
126 struct commit_list *parents;
127 struct commit_name *n;
133 parents = c->parents;
136 struct commit *p = parents->item;
137 char newname[1000], *en;
138 parents = parents->next;
143 switch (n->generation) {
145 en += sprintf(en, "%s", n->head_name);
148 en += sprintf(en, "%s^", n->head_name);
151 en += sprintf(en, "%s~%d",
152 n->head_name, n->generation);
156 en += sprintf(en, "^");
158 en += sprintf(en, "^%d", nth);
159 name_commit(p, strdup(newname), 0);
161 name_first_parent_chain(p);
167 static int mark_seen(struct commit *commit, struct commit_list **seen_p)
169 if (!commit->object.flags) {
170 insert_by_date(commit, seen_p);
176 static void join_revs(struct commit_list **list_p,
177 struct commit_list **seen_p,
178 int num_rev, int extra)
180 int all_mask = ((1u << (REV_SHIFT + num_rev)) - 1);
181 int all_revs = all_mask & ~((1u << REV_SHIFT) - 1);
184 struct commit_list *parents;
185 int still_interesting = !!interesting(*list_p);
186 struct commit *commit = pop_one_commit(list_p);
187 int flags = commit->object.flags & all_mask;
189 if (!still_interesting && extra <= 0)
192 mark_seen(commit, seen_p);
193 if ((flags & all_revs) == all_revs)
194 flags |= UNINTERESTING;
195 parents = commit->parents;
198 struct commit *p = parents->item;
199 int this_flag = p->object.flags;
200 parents = parents->next;
201 if ((this_flag & flags) == flags)
203 if (!p->object.parsed)
205 if (mark_seen(p, seen_p) && !still_interesting)
207 p->object.flags |= flags;
208 insert_by_date(p, list_p);
213 * Postprocess to complete well-poisoning.
215 * At this point we have all the commits we have seen in
216 * seen_p list (which happens to be sorted chronologically but
217 * it does not really matter). Mark anything that can be
218 * reached from uninteresting commits not interesting.
222 struct commit_list *s;
223 for (s = *seen_p; s; s = s->next) {
224 struct commit *c = s->item;
225 struct commit_list *parents;
227 if (((c->object.flags & all_revs) != all_revs) &&
228 !(c->object.flags & UNINTERESTING))
231 /* The current commit is either a merge base or
232 * already uninteresting one. Mark its parents
233 * as uninteresting commits _only_ if they are
234 * already parsed. No reason to find new ones
237 parents = c->parents;
239 struct commit *p = parents->item;
240 parents = parents->next;
241 if (!(p->object.flags & UNINTERESTING)) {
242 p->object.flags |= UNINTERESTING;
252 static void show_one_commit(struct commit *commit, int no_name)
254 char pretty[256], *cp;
255 struct commit_name *name = commit->object.util;
256 if (commit->object.parsed)
257 pretty_print_commit(CMIT_FMT_ONELINE, commit->buffer, ~0,
258 pretty, sizeof(pretty));
260 strcpy(pretty, "(unavailable)");
261 if (!strncmp(pretty, "[PATCH] ", 8))
267 if (name && name->head_name) {
268 printf("[%s", name->head_name);
269 if (name->generation) {
270 if (name->generation == 1)
273 printf("~%d", name->generation);
279 find_unique_abbrev(commit->object.sha1, 7));
284 static char *ref_name[MAX_REVS + 1];
285 static int ref_name_cnt;
287 static const char *find_digit_prefix(const char *s, int *v)
294 '0' <= (ch = *p) && ch <= '9';
296 ver = ver * 10 + ch - '0';
302 static int version_cmp(const char *a, const char *b)
307 a = find_digit_prefix(a, &va);
308 b = find_digit_prefix(b, &vb);
315 if ('0' <= ca && ca <= '9')
317 if ('0' <= cb && cb <= '9')
331 static int compare_ref_name(const void *a_, const void *b_)
333 const char * const*a = a_, * const*b = b_;
334 return version_cmp(*a, *b);
337 static void sort_ref_range(int bottom, int top)
339 qsort(ref_name + bottom, top - bottom, sizeof(ref_name[0]),
343 static int append_ref(const char *refname, const unsigned char *sha1)
345 struct commit *commit = lookup_commit_reference_gently(sha1, 1);
350 /* Avoid adding the same thing twice */
351 for (i = 0; i < ref_name_cnt; i++)
352 if (!strcmp(refname, ref_name[i]))
355 if (MAX_REVS <= ref_name_cnt) {
356 fprintf(stderr, "warning: ignoring %s; "
357 "cannot handle more than %d refs\n",
361 ref_name[ref_name_cnt++] = strdup(refname);
362 ref_name[ref_name_cnt] = NULL;
366 static int append_head_ref(const char *refname, const unsigned char *sha1)
368 unsigned char tmp[20];
370 if (strncmp(refname, "refs/heads/", ofs))
372 /* If both heads/foo and tags/foo exists, get_sha1 would
375 if (get_sha1(refname + ofs, tmp) || memcmp(tmp, sha1, 20))
377 return append_ref(refname + ofs, sha1);
380 static int append_tag_ref(const char *refname, const unsigned char *sha1)
382 if (strncmp(refname, "refs/tags/", 10))
384 return append_ref(refname + 5, sha1);
387 static const char *match_ref_pattern = NULL;
388 static int match_ref_slash = 0;
389 static int count_slash(const char *s)
398 static int append_matching_ref(const char *refname, const unsigned char *sha1)
400 /* we want to allow pattern hold/<asterisk> to show all
401 * branches under refs/heads/hold/, and v0.99.9? to show
402 * refs/tags/v0.99.9a and friends.
405 int slash = count_slash(refname);
406 for (tail = refname; *tail && match_ref_slash < slash; )
411 if (fnmatch(match_ref_pattern, tail, 0))
413 if (!strncmp("refs/heads/", refname, 11))
414 return append_head_ref(refname, sha1);
415 if (!strncmp("refs/tags/", refname, 10))
416 return append_tag_ref(refname, sha1);
417 return append_ref(refname, sha1);
420 static void snarf_refs(int head, int tag)
423 int orig_cnt = ref_name_cnt;
424 for_each_ref(append_head_ref);
425 sort_ref_range(orig_cnt, ref_name_cnt);
428 int orig_cnt = ref_name_cnt;
429 for_each_ref(append_tag_ref);
430 sort_ref_range(orig_cnt, ref_name_cnt);
434 static int rev_is_head(char *head_path, int headlen,
436 unsigned char *head_sha1, unsigned char *sha1)
439 if ((!head_path[0]) || memcmp(head_sha1, sha1, 20))
441 namelen = strlen(name);
442 if ((headlen < namelen) ||
443 memcmp(head_path + headlen - namelen, name, namelen))
445 if (headlen == namelen ||
446 head_path[headlen - namelen - 1] == '/')
451 static int show_merge_base(struct commit_list *seen, int num_rev)
453 int all_mask = ((1u << (REV_SHIFT + num_rev)) - 1);
454 int all_revs = all_mask & ~((1u << REV_SHIFT) - 1);
458 struct commit *commit = pop_one_commit(&seen);
459 int flags = commit->object.flags & all_mask;
460 if (!(flags & UNINTERESTING) &&
461 ((flags & all_revs) == all_revs)) {
462 puts(sha1_to_hex(commit->object.sha1));
464 commit->object.flags |= UNINTERESTING;
470 static int show_independent(struct commit **rev,
473 unsigned int *rev_mask)
477 for (i = 0; i < num_rev; i++) {
478 struct commit *commit = rev[i];
479 unsigned int flag = rev_mask[i];
481 if (commit->object.flags == flag)
482 puts(sha1_to_hex(commit->object.sha1));
483 commit->object.flags |= UNINTERESTING;
488 static void append_one_rev(const char *av)
490 unsigned char revkey[20];
491 if (!get_sha1(av, revkey)) {
492 append_ref(av, revkey);
495 if (strchr(av, '*') || strchr(av, '?')) {
496 /* glob style match */
497 int saved_matches = ref_name_cnt;
498 match_ref_pattern = av;
499 match_ref_slash = count_slash(av);
500 for_each_ref(append_matching_ref);
501 if (saved_matches == ref_name_cnt &&
502 ref_name_cnt < MAX_REVS)
503 error("no matching refs with %s", av);
504 if (saved_matches + 1 < ref_name_cnt)
505 sort_ref_range(saved_matches, ref_name_cnt);
508 die("bad sha1 reference %s", av);
511 int main(int ac, char **av)
513 struct commit *rev[MAX_REVS], *commit;
514 struct commit_list *list = NULL, *seen = NULL;
515 unsigned int rev_mask[MAX_REVS];
516 int num_rev, i, extra = 0;
517 int all_heads = 0, all_tags = 0;
518 int all_mask, all_revs;
520 const char *head_path_p;
522 unsigned char head_sha1[20];
527 int shown_merge_point = 0;
530 setup_git_directory();
532 while (1 < ac && av[1][0] == '-') {
534 if (!strcmp(arg, "--all"))
535 all_heads = all_tags = 1;
536 else if (!strcmp(arg, "--heads"))
538 else if (!strcmp(arg, "--tags"))
540 else if (!strcmp(arg, "--more"))
542 else if (!strcmp(arg, "--list"))
544 else if (!strcmp(arg, "--no-name"))
546 else if (!strcmp(arg, "--sha1-name"))
548 else if (!strncmp(arg, "--more=", 7))
549 extra = atoi(arg + 7);
550 else if (!strcmp(arg, "--merge-base"))
552 else if (!strcmp(arg, "--independent"))
554 else if (!strcmp(arg, "--topo-order"))
557 usage(show_branch_usage);
562 /* Only one of these is allowed */
563 if (1 < independent + merge_base + (extra != 0))
564 usage(show_branch_usage);
566 /* If nothing is specified, show all branches by default */
567 if (ac + all_heads + all_tags == 0)
570 if (all_heads + all_tags)
571 snarf_refs(all_heads, all_tags);
578 fprintf(stderr, "No revs to be shown.\n");
582 for (num_rev = 0; ref_name[num_rev]; num_rev++) {
583 unsigned char revkey[20];
584 unsigned int flag = 1u << (num_rev + REV_SHIFT);
586 if (MAX_REVS <= num_rev)
587 die("cannot handle more than %d revs.", MAX_REVS);
588 if (get_sha1(ref_name[num_rev], revkey))
589 die("'%s' is not a valid ref.", ref_name[num_rev]);
590 commit = lookup_commit_reference(revkey);
592 die("cannot find commit %s (%s)",
593 ref_name[num_rev], revkey);
594 parse_commit(commit);
595 mark_seen(commit, &seen);
597 /* rev#0 uses bit REV_SHIFT, rev#1 uses bit REV_SHIFT+1,
598 * and so on. REV_SHIFT bits from bit 0 are used for
599 * internal bookkeeping.
601 commit->object.flags |= flag;
602 if (commit->object.flags == flag)
603 insert_by_date(commit, &list);
604 rev[num_rev] = commit;
606 for (i = 0; i < num_rev; i++)
607 rev_mask[i] = rev[i]->object.flags;
610 join_revs(&list, &seen, num_rev, extra);
612 head_path_p = resolve_ref(git_path("HEAD"), head_sha1, 1);
614 head_path_len = strlen(head_path_p);
615 memcpy(head_path, head_path_p, head_path_len + 1);
623 return show_merge_base(seen, num_rev);
626 return show_independent(rev, num_rev, ref_name, rev_mask);
628 /* Show list; --more=-1 means list-only */
629 if (1 < num_rev || extra < 0) {
630 for (i = 0; i < num_rev; i++) {
632 int is_head = rev_is_head(head_path,
636 rev[i]->object.sha1);
639 is_head ? '*' : ' ', ref_name[i]);
641 for (j = 0; j < i; j++)
644 is_head ? '*' : '!', ref_name[i]);
646 /* header lines never need name */
647 show_one_commit(rev[i], 1);
650 for (i = 0; i < num_rev; i++)
658 /* Sort topologically */
660 sort_in_topological_order(&seen);
662 /* Give names to commits */
663 if (!sha1_name && !no_name)
664 name_commits(seen, rev, ref_name, num_rev);
666 all_mask = ((1u << (REV_SHIFT + num_rev)) - 1);
667 all_revs = all_mask & ~((1u << REV_SHIFT) - 1);
670 struct commit *commit = pop_one_commit(&seen);
671 int this_flag = commit->object.flags;
673 shown_merge_point |= ((this_flag & all_revs) == all_revs);
676 for (i = 0; i < num_rev; i++)
677 putchar((this_flag & (1u << (i + REV_SHIFT)))
681 show_one_commit(commit, no_name);
683 if (shown_merge_point && --extra < 0)