fetch-pack: close output channel after sideband demultiplexer terminates
[git/dscho.git] / builtin-show-branch.c
blobc3afabbe914d699a8e0c80bdb5063ca51506167e
1 #include "cache.h"
2 #include "commit.h"
3 #include "refs.h"
4 #include "builtin.h"
6 static const char show_branch_usage[] =
7 "git show-branch [--sparse] [--current] [--all] [--remotes] [--topo-order] [--more=count | --list | --independent | --merge-base ] [--topics] [<refs>...] | --reflog[=n[,b]] <branch>";
8 static const char show_branch_usage_reflog[] =
9 "--reflog is incompatible with --all, --remotes, --independent or --merge-base";
11 static int default_num;
12 static int default_alloc;
13 static const char **default_arg;
15 #define UNINTERESTING 01
17 #define REV_SHIFT 2
18 #define MAX_REVS (FLAG_BITS - REV_SHIFT) /* should not exceed bits_per_int - REV_SHIFT */
20 #define DEFAULT_REFLOG 4
22 static struct commit *interesting(struct commit_list *list)
24 while (list) {
25 struct commit *commit = list->item;
26 list = list->next;
27 if (commit->object.flags & UNINTERESTING)
28 continue;
29 return commit;
31 return NULL;
34 static struct commit *pop_one_commit(struct commit_list **list_p)
36 struct commit *commit;
37 struct commit_list *list;
38 list = *list_p;
39 commit = list->item;
40 *list_p = list->next;
41 free(list);
42 return commit;
45 struct commit_name {
46 const char *head_name; /* which head's ancestor? */
47 int generation; /* how many parents away from head_name */
50 /* Name the commit as nth generation ancestor of head_name;
51 * we count only the first-parent relationship for naming purposes.
53 static void name_commit(struct commit *commit, const char *head_name, int nth)
55 struct commit_name *name;
56 if (!commit->util)
57 commit->util = xmalloc(sizeof(struct commit_name));
58 name = commit->util;
59 name->head_name = head_name;
60 name->generation = nth;
63 /* Parent is the first parent of the commit. We may name it
64 * as (n+1)th generation ancestor of the same head_name as
65 * commit is nth generation ancestor of, if that generation
66 * number is better than the name it already has.
68 static void name_parent(struct commit *commit, struct commit *parent)
70 struct commit_name *commit_name = commit->util;
71 struct commit_name *parent_name = parent->util;
72 if (!commit_name)
73 return;
74 if (!parent_name ||
75 commit_name->generation + 1 < parent_name->generation)
76 name_commit(parent, commit_name->head_name,
77 commit_name->generation + 1);
80 static int name_first_parent_chain(struct commit *c)
82 int i = 0;
83 while (c) {
84 struct commit *p;
85 if (!c->util)
86 break;
87 if (!c->parents)
88 break;
89 p = c->parents->item;
90 if (!p->util) {
91 name_parent(c, p);
92 i++;
94 else
95 break;
96 c = p;
98 return i;
101 static void name_commits(struct commit_list *list,
102 struct commit **rev,
103 char **ref_name,
104 int num_rev)
106 struct commit_list *cl;
107 struct commit *c;
108 int i;
110 /* First give names to the given heads */
111 for (cl = list; cl; cl = cl->next) {
112 c = cl->item;
113 if (c->util)
114 continue;
115 for (i = 0; i < num_rev; i++) {
116 if (rev[i] == c) {
117 name_commit(c, ref_name[i], 0);
118 break;
123 /* Then commits on the first parent ancestry chain */
124 do {
125 i = 0;
126 for (cl = list; cl; cl = cl->next) {
127 i += name_first_parent_chain(cl->item);
129 } while (i);
131 /* Finally, any unnamed commits */
132 do {
133 i = 0;
134 for (cl = list; cl; cl = cl->next) {
135 struct commit_list *parents;
136 struct commit_name *n;
137 int nth;
138 c = cl->item;
139 if (!c->util)
140 continue;
141 n = c->util;
142 parents = c->parents;
143 nth = 0;
144 while (parents) {
145 struct commit *p = parents->item;
146 char newname[1000], *en;
147 parents = parents->next;
148 nth++;
149 if (p->util)
150 continue;
151 en = newname;
152 switch (n->generation) {
153 case 0:
154 en += sprintf(en, "%s", n->head_name);
155 break;
156 case 1:
157 en += sprintf(en, "%s^", n->head_name);
158 break;
159 default:
160 en += sprintf(en, "%s~%d",
161 n->head_name, n->generation);
162 break;
164 if (nth == 1)
165 en += sprintf(en, "^");
166 else
167 en += sprintf(en, "^%d", nth);
168 name_commit(p, xstrdup(newname), 0);
169 i++;
170 name_first_parent_chain(p);
173 } while (i);
176 static int mark_seen(struct commit *commit, struct commit_list **seen_p)
178 if (!commit->object.flags) {
179 commit_list_insert(commit, seen_p);
180 return 1;
182 return 0;
185 static void join_revs(struct commit_list **list_p,
186 struct commit_list **seen_p,
187 int num_rev, int extra)
189 int all_mask = ((1u << (REV_SHIFT + num_rev)) - 1);
190 int all_revs = all_mask & ~((1u << REV_SHIFT) - 1);
192 while (*list_p) {
193 struct commit_list *parents;
194 int still_interesting = !!interesting(*list_p);
195 struct commit *commit = pop_one_commit(list_p);
196 int flags = commit->object.flags & all_mask;
198 if (!still_interesting && extra <= 0)
199 break;
201 mark_seen(commit, seen_p);
202 if ((flags & all_revs) == all_revs)
203 flags |= UNINTERESTING;
204 parents = commit->parents;
206 while (parents) {
207 struct commit *p = parents->item;
208 int this_flag = p->object.flags;
209 parents = parents->next;
210 if ((this_flag & flags) == flags)
211 continue;
212 if (!p->object.parsed)
213 parse_commit(p);
214 if (mark_seen(p, seen_p) && !still_interesting)
215 extra--;
216 p->object.flags |= flags;
217 insert_by_date(p, list_p);
222 * Postprocess to complete well-poisoning.
224 * At this point we have all the commits we have seen in
225 * seen_p list. Mark anything that can be reached from
226 * uninteresting commits not interesting.
228 for (;;) {
229 int changed = 0;
230 struct commit_list *s;
231 for (s = *seen_p; s; s = s->next) {
232 struct commit *c = s->item;
233 struct commit_list *parents;
235 if (((c->object.flags & all_revs) != all_revs) &&
236 !(c->object.flags & UNINTERESTING))
237 continue;
239 /* The current commit is either a merge base or
240 * already uninteresting one. Mark its parents
241 * as uninteresting commits _only_ if they are
242 * already parsed. No reason to find new ones
243 * here.
245 parents = c->parents;
246 while (parents) {
247 struct commit *p = parents->item;
248 parents = parents->next;
249 if (!(p->object.flags & UNINTERESTING)) {
250 p->object.flags |= UNINTERESTING;
251 changed = 1;
255 if (!changed)
256 break;
260 static void show_one_commit(struct commit *commit, int no_name)
262 struct strbuf pretty = STRBUF_INIT;
263 const char *pretty_str = "(unavailable)";
264 struct commit_name *name = commit->util;
266 if (commit->object.parsed) {
267 pretty_print_commit(CMIT_FMT_ONELINE, commit,
268 &pretty, 0, NULL, NULL, 0, 0);
269 pretty_str = pretty.buf;
271 if (!prefixcmp(pretty_str, "[PATCH] "))
272 pretty_str += 8;
274 if (!no_name) {
275 if (name && name->head_name) {
276 printf("[%s", name->head_name);
277 if (name->generation) {
278 if (name->generation == 1)
279 printf("^");
280 else
281 printf("~%d", name->generation);
283 printf("] ");
285 else
286 printf("[%s] ",
287 find_unique_abbrev(commit->object.sha1, 7));
289 puts(pretty_str);
290 strbuf_release(&pretty);
293 static char *ref_name[MAX_REVS + 1];
294 static int ref_name_cnt;
296 static const char *find_digit_prefix(const char *s, int *v)
298 const char *p;
299 int ver;
300 char ch;
302 for (p = s, ver = 0;
303 '0' <= (ch = *p) && ch <= '9';
304 p++)
305 ver = ver * 10 + ch - '0';
306 *v = ver;
307 return p;
311 static int version_cmp(const char *a, const char *b)
313 while (1) {
314 int va, vb;
316 a = find_digit_prefix(a, &va);
317 b = find_digit_prefix(b, &vb);
318 if (va != vb)
319 return va - vb;
321 while (1) {
322 int ca = *a;
323 int cb = *b;
324 if ('0' <= ca && ca <= '9')
325 ca = 0;
326 if ('0' <= cb && cb <= '9')
327 cb = 0;
328 if (ca != cb)
329 return ca - cb;
330 if (!ca)
331 break;
332 a++;
333 b++;
335 if (!*a && !*b)
336 return 0;
340 static int compare_ref_name(const void *a_, const void *b_)
342 const char * const*a = a_, * const*b = b_;
343 return version_cmp(*a, *b);
346 static void sort_ref_range(int bottom, int top)
348 qsort(ref_name + bottom, top - bottom, sizeof(ref_name[0]),
349 compare_ref_name);
352 static int append_ref(const char *refname, const unsigned char *sha1,
353 int allow_dups)
355 struct commit *commit = lookup_commit_reference_gently(sha1, 1);
356 int i;
358 if (!commit)
359 return 0;
361 if (!allow_dups) {
362 /* Avoid adding the same thing twice */
363 for (i = 0; i < ref_name_cnt; i++)
364 if (!strcmp(refname, ref_name[i]))
365 return 0;
367 if (MAX_REVS <= ref_name_cnt) {
368 warning("ignoring %s; cannot handle more than %d refs",
369 refname, MAX_REVS);
370 return 0;
372 ref_name[ref_name_cnt++] = xstrdup(refname);
373 ref_name[ref_name_cnt] = NULL;
374 return 0;
377 static int append_head_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
379 unsigned char tmp[20];
380 int ofs = 11;
381 if (prefixcmp(refname, "refs/heads/"))
382 return 0;
383 /* If both heads/foo and tags/foo exists, get_sha1 would
384 * get confused.
386 if (get_sha1(refname + ofs, tmp) || hashcmp(tmp, sha1))
387 ofs = 5;
388 return append_ref(refname + ofs, sha1, 0);
391 static int append_remote_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
393 unsigned char tmp[20];
394 int ofs = 13;
395 if (prefixcmp(refname, "refs/remotes/"))
396 return 0;
397 /* If both heads/foo and tags/foo exists, get_sha1 would
398 * get confused.
400 if (get_sha1(refname + ofs, tmp) || hashcmp(tmp, sha1))
401 ofs = 5;
402 return append_ref(refname + ofs, sha1, 0);
405 static int append_tag_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
407 if (prefixcmp(refname, "refs/tags/"))
408 return 0;
409 return append_ref(refname + 5, sha1, 0);
412 static const char *match_ref_pattern = NULL;
413 static int match_ref_slash = 0;
414 static int count_slash(const char *s)
416 int cnt = 0;
417 while (*s)
418 if (*s++ == '/')
419 cnt++;
420 return cnt;
423 static int append_matching_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
425 /* we want to allow pattern hold/<asterisk> to show all
426 * branches under refs/heads/hold/, and v0.99.9? to show
427 * refs/tags/v0.99.9a and friends.
429 const char *tail;
430 int slash = count_slash(refname);
431 for (tail = refname; *tail && match_ref_slash < slash; )
432 if (*tail++ == '/')
433 slash--;
434 if (!*tail)
435 return 0;
436 if (fnmatch(match_ref_pattern, tail, 0))
437 return 0;
438 if (!prefixcmp(refname, "refs/heads/"))
439 return append_head_ref(refname, sha1, flag, cb_data);
440 if (!prefixcmp(refname, "refs/tags/"))
441 return append_tag_ref(refname, sha1, flag, cb_data);
442 return append_ref(refname, sha1, 0);
445 static void snarf_refs(int head, int remotes)
447 if (head) {
448 int orig_cnt = ref_name_cnt;
449 for_each_ref(append_head_ref, NULL);
450 sort_ref_range(orig_cnt, ref_name_cnt);
452 if (remotes) {
453 int orig_cnt = ref_name_cnt;
454 for_each_ref(append_remote_ref, NULL);
455 sort_ref_range(orig_cnt, ref_name_cnt);
459 static int rev_is_head(char *head, int headlen, char *name,
460 unsigned char *head_sha1, unsigned char *sha1)
462 if ((!head[0]) ||
463 (head_sha1 && sha1 && hashcmp(head_sha1, sha1)))
464 return 0;
465 if (!prefixcmp(head, "refs/heads/"))
466 head += 11;
467 if (!prefixcmp(name, "refs/heads/"))
468 name += 11;
469 else if (!prefixcmp(name, "heads/"))
470 name += 6;
471 return !strcmp(head, name);
474 static int show_merge_base(struct commit_list *seen, int num_rev)
476 int all_mask = ((1u << (REV_SHIFT + num_rev)) - 1);
477 int all_revs = all_mask & ~((1u << REV_SHIFT) - 1);
478 int exit_status = 1;
480 while (seen) {
481 struct commit *commit = pop_one_commit(&seen);
482 int flags = commit->object.flags & all_mask;
483 if (!(flags & UNINTERESTING) &&
484 ((flags & all_revs) == all_revs)) {
485 puts(sha1_to_hex(commit->object.sha1));
486 exit_status = 0;
487 commit->object.flags |= UNINTERESTING;
490 return exit_status;
493 static int show_independent(struct commit **rev,
494 int num_rev,
495 char **ref_name,
496 unsigned int *rev_mask)
498 int i;
500 for (i = 0; i < num_rev; i++) {
501 struct commit *commit = rev[i];
502 unsigned int flag = rev_mask[i];
504 if (commit->object.flags == flag)
505 puts(sha1_to_hex(commit->object.sha1));
506 commit->object.flags |= UNINTERESTING;
508 return 0;
511 static void append_one_rev(const char *av)
513 unsigned char revkey[20];
514 if (!get_sha1(av, revkey)) {
515 append_ref(av, revkey, 0);
516 return;
518 if (strchr(av, '*') || strchr(av, '?') || strchr(av, '[')) {
519 /* glob style match */
520 int saved_matches = ref_name_cnt;
521 match_ref_pattern = av;
522 match_ref_slash = count_slash(av);
523 for_each_ref(append_matching_ref, NULL);
524 if (saved_matches == ref_name_cnt &&
525 ref_name_cnt < MAX_REVS)
526 error("no matching refs with %s", av);
527 if (saved_matches + 1 < ref_name_cnt)
528 sort_ref_range(saved_matches, ref_name_cnt);
529 return;
531 die("bad sha1 reference %s", av);
534 static int git_show_branch_config(const char *var, const char *value, void *cb)
536 if (!strcmp(var, "showbranch.default")) {
537 if (!value)
538 return config_error_nonbool(var);
539 if (default_alloc <= default_num + 1) {
540 default_alloc = default_alloc * 3 / 2 + 20;
541 default_arg = xrealloc(default_arg, sizeof *default_arg * default_alloc);
543 default_arg[default_num++] = xstrdup(value);
544 default_arg[default_num] = NULL;
545 return 0;
548 return git_default_config(var, value, cb);
551 static int omit_in_dense(struct commit *commit, struct commit **rev, int n)
553 /* If the commit is tip of the named branches, do not
554 * omit it.
555 * Otherwise, if it is a merge that is reachable from only one
556 * tip, it is not that interesting.
558 int i, flag, count;
559 for (i = 0; i < n; i++)
560 if (rev[i] == commit)
561 return 0;
562 flag = commit->object.flags;
563 for (i = count = 0; i < n; i++) {
564 if (flag & (1u << (i + REV_SHIFT)))
565 count++;
567 if (count == 1)
568 return 1;
569 return 0;
572 static void parse_reflog_param(const char *arg, int *cnt, const char **base)
574 char *ep;
575 *cnt = strtoul(arg, &ep, 10);
576 if (*ep == ',')
577 *base = ep + 1;
578 else if (*ep)
579 die("unrecognized reflog param '%s'", arg);
580 else
581 *base = NULL;
582 if (*cnt <= 0)
583 *cnt = DEFAULT_REFLOG;
586 int cmd_show_branch(int ac, const char **av, const char *prefix)
588 struct commit *rev[MAX_REVS], *commit;
589 char *reflog_msg[MAX_REVS];
590 struct commit_list *list = NULL, *seen = NULL;
591 unsigned int rev_mask[MAX_REVS];
592 int num_rev, i, extra = 0;
593 int all_heads = 0, all_remotes = 0;
594 int all_mask, all_revs;
595 int lifo = 1;
596 char head[128];
597 const char *head_p;
598 int head_len;
599 unsigned char head_sha1[20];
600 int merge_base = 0;
601 int independent = 0;
602 int no_name = 0;
603 int sha1_name = 0;
604 int shown_merge_point = 0;
605 int with_current_branch = 0;
606 int head_at = -1;
607 int topics = 0;
608 int dense = 1;
609 int reflog = 0;
610 const char *reflog_base = NULL;
612 git_config(git_show_branch_config, NULL);
614 /* If nothing is specified, try the default first */
615 if (ac == 1 && default_num) {
616 ac = default_num + 1;
617 av = default_arg - 1; /* ick; we would not address av[0] */
620 while (1 < ac && av[1][0] == '-') {
621 const char *arg = av[1];
622 if (!strcmp(arg, "--")) {
623 ac--; av++;
624 break;
626 else if (!strcmp(arg, "--all") || !strcmp(arg, "-a"))
627 all_heads = all_remotes = 1;
628 else if (!strcmp(arg, "--remotes") || !strcmp(arg, "-r"))
629 all_remotes = 1;
630 else if (!strcmp(arg, "--more"))
631 extra = 1;
632 else if (!strcmp(arg, "--list"))
633 extra = -1;
634 else if (!strcmp(arg, "--no-name"))
635 no_name = 1;
636 else if (!strcmp(arg, "--current"))
637 with_current_branch = 1;
638 else if (!strcmp(arg, "--sha1-name"))
639 sha1_name = 1;
640 else if (!prefixcmp(arg, "--more="))
641 extra = atoi(arg + 7);
642 else if (!strcmp(arg, "--merge-base"))
643 merge_base = 1;
644 else if (!strcmp(arg, "--independent"))
645 independent = 1;
646 else if (!strcmp(arg, "--topo-order"))
647 lifo = 1;
648 else if (!strcmp(arg, "--topics"))
649 topics = 1;
650 else if (!strcmp(arg, "--sparse"))
651 dense = 0;
652 else if (!strcmp(arg, "--date-order"))
653 lifo = 0;
654 else if (!strcmp(arg, "--reflog") || !strcmp(arg, "-g")) {
655 reflog = DEFAULT_REFLOG;
657 else if (!prefixcmp(arg, "--reflog="))
658 parse_reflog_param(arg + 9, &reflog, &reflog_base);
659 else if (!prefixcmp(arg, "-g="))
660 parse_reflog_param(arg + 3, &reflog, &reflog_base);
661 else
662 usage(show_branch_usage);
663 ac--; av++;
665 ac--; av++;
667 if (extra || reflog) {
668 /* "listing" mode is incompatible with
669 * independent nor merge-base modes.
671 if (independent || merge_base)
672 usage(show_branch_usage);
673 if (reflog && ((0 < extra) || all_heads || all_remotes))
675 * Asking for --more in reflog mode does not
676 * make sense. --list is Ok.
678 * Also --all and --remotes do not make sense either.
680 usage(show_branch_usage_reflog);
683 /* If nothing is specified, show all branches by default */
684 if (ac + all_heads + all_remotes == 0)
685 all_heads = 1;
687 if (reflog) {
688 unsigned char sha1[20];
689 char nth_desc[256];
690 char *ref;
691 int base = 0;
693 if (ac == 0) {
694 static const char *fake_av[2];
695 const char *refname;
697 refname = resolve_ref("HEAD", sha1, 1, NULL);
698 fake_av[0] = xstrdup(refname);
699 fake_av[1] = NULL;
700 av = fake_av;
701 ac = 1;
703 if (ac != 1)
704 die("--reflog option needs one branch name");
706 if (MAX_REVS < reflog)
707 die("Only %d entries can be shown at one time.",
708 MAX_REVS);
709 if (!dwim_ref(*av, strlen(*av), sha1, &ref))
710 die("No such ref %s", *av);
712 /* Has the base been specified? */
713 if (reflog_base) {
714 char *ep;
715 base = strtoul(reflog_base, &ep, 10);
716 if (*ep) {
717 /* Ah, that is a date spec... */
718 unsigned long at;
719 at = approxidate(reflog_base);
720 read_ref_at(ref, at, -1, sha1, NULL,
721 NULL, NULL, &base);
725 for (i = 0; i < reflog; i++) {
726 char *logmsg, *m;
727 const char *msg;
728 unsigned long timestamp;
729 int tz;
731 if (read_ref_at(ref, 0, base+i, sha1, &logmsg,
732 &timestamp, &tz, NULL)) {
733 reflog = i;
734 break;
736 msg = strchr(logmsg, '\t');
737 if (!msg)
738 msg = "(none)";
739 else
740 msg++;
741 m = xmalloc(strlen(msg) + 200);
742 sprintf(m, "(%s) %s",
743 show_date(timestamp, tz, 1),
744 msg);
745 reflog_msg[i] = m;
746 free(logmsg);
747 sprintf(nth_desc, "%s@{%d}", *av, base+i);
748 append_ref(nth_desc, sha1, 1);
751 else if (all_heads + all_remotes)
752 snarf_refs(all_heads, all_remotes);
753 else {
754 while (0 < ac) {
755 append_one_rev(*av);
756 ac--; av++;
760 head_p = resolve_ref("HEAD", head_sha1, 1, NULL);
761 if (head_p) {
762 head_len = strlen(head_p);
763 memcpy(head, head_p, head_len + 1);
765 else {
766 head_len = 0;
767 head[0] = 0;
770 if (with_current_branch && head_p) {
771 int has_head = 0;
772 for (i = 0; !has_head && i < ref_name_cnt; i++) {
773 /* We are only interested in adding the branch
774 * HEAD points at.
776 if (rev_is_head(head,
777 head_len,
778 ref_name[i],
779 head_sha1, NULL))
780 has_head++;
782 if (!has_head) {
783 int offset = !prefixcmp(head, "refs/heads/") ? 11 : 0;
784 append_one_rev(head + offset);
788 if (!ref_name_cnt) {
789 fprintf(stderr, "No revs to be shown.\n");
790 exit(0);
793 for (num_rev = 0; ref_name[num_rev]; num_rev++) {
794 unsigned char revkey[20];
795 unsigned int flag = 1u << (num_rev + REV_SHIFT);
797 if (MAX_REVS <= num_rev)
798 die("cannot handle more than %d revs.", MAX_REVS);
799 if (get_sha1(ref_name[num_rev], revkey))
800 die("'%s' is not a valid ref.", ref_name[num_rev]);
801 commit = lookup_commit_reference(revkey);
802 if (!commit)
803 die("cannot find commit %s (%s)",
804 ref_name[num_rev], revkey);
805 parse_commit(commit);
806 mark_seen(commit, &seen);
808 /* rev#0 uses bit REV_SHIFT, rev#1 uses bit REV_SHIFT+1,
809 * and so on. REV_SHIFT bits from bit 0 are used for
810 * internal bookkeeping.
812 commit->object.flags |= flag;
813 if (commit->object.flags == flag)
814 insert_by_date(commit, &list);
815 rev[num_rev] = commit;
817 for (i = 0; i < num_rev; i++)
818 rev_mask[i] = rev[i]->object.flags;
820 if (0 <= extra)
821 join_revs(&list, &seen, num_rev, extra);
823 sort_by_date(&seen);
825 if (merge_base)
826 return show_merge_base(seen, num_rev);
828 if (independent)
829 return show_independent(rev, num_rev, ref_name, rev_mask);
831 /* Show list; --more=-1 means list-only */
832 if (1 < num_rev || extra < 0) {
833 for (i = 0; i < num_rev; i++) {
834 int j;
835 int is_head = rev_is_head(head,
836 head_len,
837 ref_name[i],
838 head_sha1,
839 rev[i]->object.sha1);
840 if (extra < 0)
841 printf("%c [%s] ",
842 is_head ? '*' : ' ', ref_name[i]);
843 else {
844 for (j = 0; j < i; j++)
845 putchar(' ');
846 printf("%c [%s] ",
847 is_head ? '*' : '!', ref_name[i]);
850 if (!reflog) {
851 /* header lines never need name */
852 show_one_commit(rev[i], 1);
854 else
855 puts(reflog_msg[i]);
857 if (is_head)
858 head_at = i;
860 if (0 <= extra) {
861 for (i = 0; i < num_rev; i++)
862 putchar('-');
863 putchar('\n');
866 if (extra < 0)
867 exit(0);
869 /* Sort topologically */
870 sort_in_topological_order(&seen, lifo);
872 /* Give names to commits */
873 if (!sha1_name && !no_name)
874 name_commits(seen, rev, ref_name, num_rev);
876 all_mask = ((1u << (REV_SHIFT + num_rev)) - 1);
877 all_revs = all_mask & ~((1u << REV_SHIFT) - 1);
879 while (seen) {
880 struct commit *commit = pop_one_commit(&seen);
881 int this_flag = commit->object.flags;
882 int is_merge_point = ((this_flag & all_revs) == all_revs);
884 shown_merge_point |= is_merge_point;
886 if (1 < num_rev) {
887 int is_merge = !!(commit->parents &&
888 commit->parents->next);
889 if (topics &&
890 !is_merge_point &&
891 (this_flag & (1u << REV_SHIFT)))
892 continue;
893 if (dense && is_merge &&
894 omit_in_dense(commit, rev, num_rev))
895 continue;
896 for (i = 0; i < num_rev; i++) {
897 int mark;
898 if (!(this_flag & (1u << (i + REV_SHIFT))))
899 mark = ' ';
900 else if (is_merge)
901 mark = '-';
902 else if (i == head_at)
903 mark = '*';
904 else
905 mark = '+';
906 putchar(mark);
908 putchar(' ');
910 show_one_commit(commit, no_name);
912 if (shown_merge_point && --extra < 0)
913 break;
915 return 0;