]> git.ipfire.org Git - thirdparty/git.git/blame - show-branch.c
Merge branch 'ml/cvsserver'
[thirdparty/git.git] / show-branch.c
CommitLineData
f76412ed 1#include <stdlib.h>
287f8600 2#include <fnmatch.h>
f76412ed
JH
3#include "cache.h"
4#include "commit.h"
5#include "refs.h"
6
7static const char show_branch_usage[] =
1aa68d67 8"git-show-branch [--current] [--all] [--heads] [--tags] [--topo-order] [--more=count | --list | --independent | --merge-base ] [<refs>...]";
f76412ed 9
c2bdd6af
JH
10static int default_num = 0;
11static int default_alloc = 0;
12static char **default_arg = NULL;
13
f76412ed
JH
14#define UNINTERESTING 01
15
16#define REV_SHIFT 2
17#define MAX_REVS 29 /* should not exceed bits_per_int - REV_SHIFT */
18
19static struct commit *interesting(struct commit_list *list)
20{
21 while (list) {
22 struct commit *commit = list->item;
23 list = list->next;
24 if (commit->object.flags & UNINTERESTING)
25 continue;
26 return commit;
27 }
28 return NULL;
29}
30
31static struct commit *pop_one_commit(struct commit_list **list_p)
32{
33 struct commit *commit;
34 struct commit_list *list;
35 list = *list_p;
36 commit = list->item;
37 *list_p = list->next;
38 free(list);
39 return commit;
40}
41
42struct commit_name {
8e5dd22b
JH
43 const char *head_name; /* which head's ancestor? */
44 int generation; /* how many parents away from head_name */
f76412ed
JH
45};
46
8e5dd22b 47/* Name the commit as nth generation ancestor of head_name;
f76412ed
JH
48 * we count only the first-parent relationship for naming purposes.
49 */
8e5dd22b 50static void name_commit(struct commit *commit, const char *head_name, int nth)
f76412ed
JH
51{
52 struct commit_name *name;
53 if (!commit->object.util)
54 commit->object.util = xmalloc(sizeof(struct commit_name));
55 name = commit->object.util;
8e5dd22b 56 name->head_name = head_name;
f76412ed
JH
57 name->generation = nth;
58}
59
60/* Parent is the first parent of the commit. We may name it
8e5dd22b 61 * as (n+1)th generation ancestor of the same head_name as
bcaf60b2 62 * commit is nth generation ancestor of, if that generation
f76412ed
JH
63 * number is better than the name it already has.
64 */
65static void name_parent(struct commit *commit, struct commit *parent)
66{
67 struct commit_name *commit_name = commit->object.util;
68 struct commit_name *parent_name = parent->object.util;
69 if (!commit_name)
70 return;
71 if (!parent_name ||
72 commit_name->generation + 1 < parent_name->generation)
8e5dd22b 73 name_commit(parent, commit_name->head_name,
f76412ed
JH
74 commit_name->generation + 1);
75}
76
8e5dd22b
JH
77static int name_first_parent_chain(struct commit *c)
78{
79 int i = 0;
80 while (c) {
81 struct commit *p;
82 if (!c->object.util)
83 break;
84 if (!c->parents)
85 break;
86 p = c->parents->item;
87 if (!p->object.util) {
88 name_parent(c, p);
89 i++;
90 }
91 c = p;
92 }
93 return i;
94}
95
96static void name_commits(struct commit_list *list,
97 struct commit **rev,
98 char **ref_name,
99 int num_rev)
100{
101 struct commit_list *cl;
102 struct commit *c;
103 int i;
104
105 /* First give names to the given heads */
106 for (cl = list; cl; cl = cl->next) {
107 c = cl->item;
108 if (c->object.util)
109 continue;
110 for (i = 0; i < num_rev; i++) {
111 if (rev[i] == c) {
112 name_commit(c, ref_name[i], 0);
113 break;
114 }
115 }
116 }
117
118 /* Then commits on the first parent ancestry chain */
119 do {
120 i = 0;
121 for (cl = list; cl; cl = cl->next) {
122 i += name_first_parent_chain(cl->item);
123 }
124 } while (i);
125
126 /* Finally, any unnamed commits */
127 do {
128 i = 0;
129 for (cl = list; cl; cl = cl->next) {
130 struct commit_list *parents;
131 struct commit_name *n;
132 int nth;
133 c = cl->item;
134 if (!c->object.util)
135 continue;
136 n = c->object.util;
137 parents = c->parents;
138 nth = 0;
139 while (parents) {
140 struct commit *p = parents->item;
013f276e 141 char newname[1000], *en;
8e5dd22b
JH
142 parents = parents->next;
143 nth++;
144 if (p->object.util)
145 continue;
013f276e 146 en = newname;
fbaf834d
JH
147 switch (n->generation) {
148 case 0:
013f276e 149 en += sprintf(en, "%s", n->head_name);
fbaf834d
JH
150 break;
151 case 1:
013f276e 152 en += sprintf(en, "%s^", n->head_name);
fbaf834d
JH
153 break;
154 default:
013f276e
JH
155 en += sprintf(en, "%s~%d",
156 n->head_name, n->generation);
157 break;
fbaf834d 158 }
013f276e
JH
159 if (nth == 1)
160 en += sprintf(en, "^");
161 else
162 en += sprintf(en, "^%d", nth);
8e5dd22b
JH
163 name_commit(p, strdup(newname), 0);
164 i++;
165 name_first_parent_chain(p);
166 }
167 }
168 } while (i);
169}
170
f76412ed
JH
171static int mark_seen(struct commit *commit, struct commit_list **seen_p)
172{
173 if (!commit->object.flags) {
174 insert_by_date(commit, seen_p);
175 return 1;
176 }
177 return 0;
178}
179
180static void join_revs(struct commit_list **list_p,
181 struct commit_list **seen_p,
182 int num_rev, int extra)
183{
184 int all_mask = ((1u << (REV_SHIFT + num_rev)) - 1);
185 int all_revs = all_mask & ~((1u << REV_SHIFT) - 1);
186
187 while (*list_p) {
188 struct commit_list *parents;
9ce70285 189 int still_interesting = !!interesting(*list_p);
f76412ed
JH
190 struct commit *commit = pop_one_commit(list_p);
191 int flags = commit->object.flags & all_mask;
f76412ed 192
9ce70285 193 if (!still_interesting && extra <= 0)
f76412ed
JH
194 break;
195
196 mark_seen(commit, seen_p);
197 if ((flags & all_revs) == all_revs)
198 flags |= UNINTERESTING;
199 parents = commit->parents;
200
201 while (parents) {
202 struct commit *p = parents->item;
203 int this_flag = p->object.flags;
204 parents = parents->next;
f76412ed
JH
205 if ((this_flag & flags) == flags)
206 continue;
6b209d47
JH
207 if (!p->object.parsed)
208 parse_commit(p);
f76412ed
JH
209 if (mark_seen(p, seen_p) && !still_interesting)
210 extra--;
211 p->object.flags |= flags;
212 insert_by_date(p, list_p);
213 }
214 }
6b209d47
JH
215
216 /*
217 * Postprocess to complete well-poisoning.
218 *
219 * At this point we have all the commits we have seen in
220 * seen_p list (which happens to be sorted chronologically but
221 * it does not really matter). Mark anything that can be
222 * reached from uninteresting commits not interesting.
223 */
224 for (;;) {
225 int changed = 0;
226 struct commit_list *s;
227 for (s = *seen_p; s; s = s->next) {
228 struct commit *c = s->item;
229 struct commit_list *parents;
230
231 if (((c->object.flags & all_revs) != all_revs) &&
232 !(c->object.flags & UNINTERESTING))
233 continue;
234
235 /* The current commit is either a merge base or
236 * already uninteresting one. Mark its parents
237 * as uninteresting commits _only_ if they are
238 * already parsed. No reason to find new ones
239 * here.
240 */
241 parents = c->parents;
242 while (parents) {
243 struct commit *p = parents->item;
244 parents = parents->next;
245 if (!(p->object.flags & UNINTERESTING)) {
246 p->object.flags |= UNINTERESTING;
247 changed = 1;
248 }
249 }
250 }
251 if (!changed)
252 break;
253 }
f76412ed
JH
254}
255
013f276e 256static void show_one_commit(struct commit *commit, int no_name)
f76412ed 257{
6b209d47 258 char pretty[256], *cp;
f76412ed 259 struct commit_name *name = commit->object.util;
0a2ba738 260 if (commit->object.parsed)
3815f423 261 pretty_print_commit(CMIT_FMT_ONELINE, commit, ~0,
b2d4c56f 262 pretty, sizeof(pretty), 0);
0a2ba738
JH
263 else
264 strcpy(pretty, "(unavailable)");
f76412ed
JH
265 if (!strncmp(pretty, "[PATCH] ", 8))
266 cp = pretty + 8;
267 else
268 cp = pretty;
013f276e
JH
269
270 if (!no_name) {
271 if (name && name->head_name) {
272 printf("[%s", name->head_name);
273 if (name->generation) {
274 if (name->generation == 1)
275 printf("^");
276 else
277 printf("~%d", name->generation);
278 }
279 printf("] ");
280 }
281 else
282 printf("[%s] ",
283 find_unique_abbrev(commit->object.sha1, 7));
f76412ed
JH
284 }
285 puts(cp);
286}
287
288static char *ref_name[MAX_REVS + 1];
289static int ref_name_cnt;
290
bb5ebed7
JH
291static const char *find_digit_prefix(const char *s, int *v)
292{
293 const char *p;
294 int ver;
295 char ch;
296
297 for (p = s, ver = 0;
298 '0' <= (ch = *p) && ch <= '9';
299 p++)
300 ver = ver * 10 + ch - '0';
301 *v = ver;
302 return p;
303}
304
305
306static int version_cmp(const char *a, const char *b)
307{
308 while (1) {
309 int va, vb;
310
311 a = find_digit_prefix(a, &va);
312 b = find_digit_prefix(b, &vb);
313 if (va != vb)
314 return va - vb;
315
316 while (1) {
317 int ca = *a;
318 int cb = *b;
319 if ('0' <= ca && ca <= '9')
320 ca = 0;
321 if ('0' <= cb && cb <= '9')
322 cb = 0;
323 if (ca != cb)
324 return ca - cb;
325 if (!ca)
326 break;
327 a++;
328 b++;
329 }
330 if (!*a && !*b)
331 return 0;
332 }
333}
334
628894b2
JH
335static int compare_ref_name(const void *a_, const void *b_)
336{
337 const char * const*a = a_, * const*b = b_;
bb5ebed7 338 return version_cmp(*a, *b);
628894b2
JH
339}
340
341static void sort_ref_range(int bottom, int top)
342{
343 qsort(ref_name + bottom, top - bottom, sizeof(ref_name[0]),
344 compare_ref_name);
345}
346
f76412ed
JH
347static int append_ref(const char *refname, const unsigned char *sha1)
348{
349 struct commit *commit = lookup_commit_reference_gently(sha1, 1);
bb5ebed7
JH
350 int i;
351
f76412ed
JH
352 if (!commit)
353 return 0;
bb5ebed7
JH
354 /* Avoid adding the same thing twice */
355 for (i = 0; i < ref_name_cnt; i++)
356 if (!strcmp(refname, ref_name[i]))
357 return 0;
358
79778e46 359 if (MAX_REVS <= ref_name_cnt) {
f76412ed 360 fprintf(stderr, "warning: ignoring %s; "
7246ed43 361 "cannot handle more than %d refs\n",
f76412ed
JH
362 refname, MAX_REVS);
363 return 0;
364 }
365 ref_name[ref_name_cnt++] = strdup(refname);
366 ref_name[ref_name_cnt] = NULL;
367 return 0;
368}
369
370static int append_head_ref(const char *refname, const unsigned char *sha1)
371{
92421502
JH
372 unsigned char tmp[20];
373 int ofs = 11;
374 if (strncmp(refname, "refs/heads/", ofs))
f76412ed 375 return 0;
92421502
JH
376 /* If both heads/foo and tags/foo exists, get_sha1 would
377 * get confused.
378 */
379 if (get_sha1(refname + ofs, tmp) || memcmp(tmp, sha1, 20))
380 ofs = 5;
381 return append_ref(refname + ofs, sha1);
f76412ed
JH
382}
383
384static int append_tag_ref(const char *refname, const unsigned char *sha1)
385{
386 if (strncmp(refname, "refs/tags/", 10))
387 return 0;
388 return append_ref(refname + 5, sha1);
389}
390
287f8600
JH
391static const char *match_ref_pattern = NULL;
392static int match_ref_slash = 0;
393static int count_slash(const char *s)
394{
395 int cnt = 0;
396 while (*s)
397 if (*s++ == '/')
398 cnt++;
399 return cnt;
400}
401
402static int append_matching_ref(const char *refname, const unsigned char *sha1)
403{
404 /* we want to allow pattern hold/<asterisk> to show all
405 * branches under refs/heads/hold/, and v0.99.9? to show
406 * refs/tags/v0.99.9a and friends.
407 */
408 const char *tail;
409 int slash = count_slash(refname);
410 for (tail = refname; *tail && match_ref_slash < slash; )
411 if (*tail++ == '/')
412 slash--;
413 if (!*tail)
414 return 0;
415 if (fnmatch(match_ref_pattern, tail, 0))
416 return 0;
417 if (!strncmp("refs/heads/", refname, 11))
418 return append_head_ref(refname, sha1);
419 if (!strncmp("refs/tags/", refname, 10))
420 return append_tag_ref(refname, sha1);
421 return append_ref(refname, sha1);
422}
423
f76412ed
JH
424static void snarf_refs(int head, int tag)
425{
628894b2
JH
426 if (head) {
427 int orig_cnt = ref_name_cnt;
f76412ed 428 for_each_ref(append_head_ref);
628894b2
JH
429 sort_ref_range(orig_cnt, ref_name_cnt);
430 }
431 if (tag) {
432 int orig_cnt = ref_name_cnt;
f76412ed 433 for_each_ref(append_tag_ref);
628894b2
JH
434 sort_ref_range(orig_cnt, ref_name_cnt);
435 }
f76412ed
JH
436}
437
1aa68d67 438static int rev_is_head(char *head_path, int headlen, char *name,
f76412ed
JH
439 unsigned char *head_sha1, unsigned char *sha1)
440{
441 int namelen;
1aa68d67
JH
442 if ((!head_path[0]) ||
443 (head_sha1 && sha1 && memcmp(head_sha1, sha1, 20)))
f76412ed
JH
444 return 0;
445 namelen = strlen(name);
446 if ((headlen < namelen) ||
447 memcmp(head_path + headlen - namelen, name, namelen))
448 return 0;
449 if (headlen == namelen ||
450 head_path[headlen - namelen - 1] == '/')
451 return 1;
452 return 0;
453}
454
455static int show_merge_base(struct commit_list *seen, int num_rev)
456{
457 int all_mask = ((1u << (REV_SHIFT + num_rev)) - 1);
458 int all_revs = all_mask & ~((1u << REV_SHIFT) - 1);
2f0f8b71 459 int exit_status = 1;
f76412ed
JH
460
461 while (seen) {
462 struct commit *commit = pop_one_commit(&seen);
463 int flags = commit->object.flags & all_mask;
464 if (!(flags & UNINTERESTING) &&
465 ((flags & all_revs) == all_revs)) {
466 puts(sha1_to_hex(commit->object.sha1));
2f0f8b71
JH
467 exit_status = 0;
468 commit->object.flags |= UNINTERESTING;
f76412ed
JH
469 }
470 }
2f0f8b71 471 return exit_status;
f76412ed
JH
472}
473
1f8af483
JH
474static int show_independent(struct commit **rev,
475 int num_rev,
476 char **ref_name,
477 unsigned int *rev_mask)
478{
479 int i;
480
481 for (i = 0; i < num_rev; i++) {
482 struct commit *commit = rev[i];
483 unsigned int flag = rev_mask[i];
484
485 if (commit->object.flags == flag)
486 puts(sha1_to_hex(commit->object.sha1));
487 commit->object.flags |= UNINTERESTING;
488 }
489 return 0;
490}
491
287f8600
JH
492static void append_one_rev(const char *av)
493{
494 unsigned char revkey[20];
495 if (!get_sha1(av, revkey)) {
496 append_ref(av, revkey);
497 return;
498 }
87758f97 499 if (strchr(av, '*') || strchr(av, '?') || strchr(av, '[')) {
287f8600
JH
500 /* glob style match */
501 int saved_matches = ref_name_cnt;
502 match_ref_pattern = av;
503 match_ref_slash = count_slash(av);
504 for_each_ref(append_matching_ref);
505 if (saved_matches == ref_name_cnt &&
506 ref_name_cnt < MAX_REVS)
507 error("no matching refs with %s", av);
06d900cf
JH
508 if (saved_matches + 1 < ref_name_cnt)
509 sort_ref_range(saved_matches, ref_name_cnt);
287f8600
JH
510 return;
511 }
512 die("bad sha1 reference %s", av);
513}
514
c2bdd6af
JH
515static int git_show_branch_config(const char *var, const char *value)
516{
517 if (!strcmp(var, "showbranch.default")) {
518 if (default_alloc <= default_num + 1) {
519 default_alloc = default_alloc * 3 / 2 + 20;
520 default_arg = xrealloc(default_arg, sizeof *default_arg * default_alloc);
521 }
522 default_arg[default_num++] = strdup(value);
523 default_arg[default_num] = NULL;
524 return 0;
525 }
526
527 return git_default_config(var, value);
528}
529
f76412ed
JH
530int main(int ac, char **av)
531{
532 struct commit *rev[MAX_REVS], *commit;
533 struct commit_list *list = NULL, *seen = NULL;
1f8af483 534 unsigned int rev_mask[MAX_REVS];
f76412ed
JH
535 int num_rev, i, extra = 0;
536 int all_heads = 0, all_tags = 0;
6b209d47 537 int all_mask, all_revs;
4c8725f1 538 int lifo = 1;
f76412ed 539 char head_path[128];
8098a178 540 const char *head_path_p;
f76412ed
JH
541 int head_path_len;
542 unsigned char head_sha1[20];
543 int merge_base = 0;
1f8af483 544 int independent = 0;
013f276e
JH
545 int no_name = 0;
546 int sha1_name = 0;
6b209d47 547 int shown_merge_point = 0;
1aa68d67 548 int with_current_branch = 0;
ebedc319 549 int head_at = -1;
f76412ed 550
076b2324 551 setup_git_directory();
ce1610ea 552 git_config(git_show_branch_config);
076b2324 553
c2bdd6af
JH
554 /* If nothing is specified, try the default first */
555 if (ac == 1 && default_num) {
556 ac = default_num + 1;
557 av = default_arg - 1; /* ick; we would not address av[0] */
558 }
559
f76412ed
JH
560 while (1 < ac && av[1][0] == '-') {
561 char *arg = av[1];
c2bdd6af
JH
562 if (!strcmp(arg, "--")) {
563 ac--; av++;
564 break;
565 }
566 else if (!strcmp(arg, "--all"))
f76412ed
JH
567 all_heads = all_tags = 1;
568 else if (!strcmp(arg, "--heads"))
569 all_heads = 1;
570 else if (!strcmp(arg, "--tags"))
571 all_tags = 1;
572 else if (!strcmp(arg, "--more"))
573 extra = 1;
1f8af483
JH
574 else if (!strcmp(arg, "--list"))
575 extra = -1;
013f276e
JH
576 else if (!strcmp(arg, "--no-name"))
577 no_name = 1;
1aa68d67
JH
578 else if (!strcmp(arg, "--current"))
579 with_current_branch = 1;
013f276e
JH
580 else if (!strcmp(arg, "--sha1-name"))
581 sha1_name = 1;
1f8af483 582 else if (!strncmp(arg, "--more=", 7))
f76412ed 583 extra = atoi(arg + 7);
f76412ed
JH
584 else if (!strcmp(arg, "--merge-base"))
585 merge_base = 1;
1f8af483
JH
586 else if (!strcmp(arg, "--independent"))
587 independent = 1;
6b209d47 588 else if (!strcmp(arg, "--topo-order"))
4c8725f1
JH
589 lifo = 1;
590 else if (!strcmp(arg, "--date-order"))
591 lifo = 0;
f76412ed
JH
592 else
593 usage(show_branch_usage);
594 ac--; av++;
595 }
596 ac--; av++;
597
1f8af483
JH
598 /* Only one of these is allowed */
599 if (1 < independent + merge_base + (extra != 0))
600 usage(show_branch_usage);
601
bb5ebed7
JH
602 /* If nothing is specified, show all branches by default */
603 if (ac + all_heads + all_tags == 0)
604 all_heads = 1;
605
f76412ed
JH
606 if (all_heads + all_tags)
607 snarf_refs(all_heads, all_tags);
bb5ebed7
JH
608 while (0 < ac) {
609 append_one_rev(*av);
610 ac--; av++;
287f8600 611 }
bb5ebed7 612
1aa68d67
JH
613 head_path_p = resolve_ref(git_path("HEAD"), head_sha1, 1);
614 if (head_path_p) {
615 head_path_len = strlen(head_path_p);
616 memcpy(head_path, head_path_p, head_path_len + 1);
617 }
618 else {
619 head_path_len = 0;
620 head_path[0] = 0;
621 }
622
623 if (with_current_branch && head_path_p) {
624 int has_head = 0;
625 for (i = 0; !has_head && i < ref_name_cnt; i++) {
626 /* We are only interested in adding the branch
627 * HEAD points at.
628 */
629 if (rev_is_head(head_path,
630 head_path_len,
631 ref_name[i],
632 head_sha1, NULL))
633 has_head++;
634 }
635 if (!has_head) {
636 int pfxlen = strlen(git_path("refs/heads/"));
637 append_one_rev(head_path + pfxlen);
638 }
639 }
640
287f8600
JH
641 if (!ref_name_cnt) {
642 fprintf(stderr, "No revs to be shown.\n");
643 exit(0);
644 }
f76412ed
JH
645
646 for (num_rev = 0; ref_name[num_rev]; num_rev++) {
647 unsigned char revkey[20];
1f8af483 648 unsigned int flag = 1u << (num_rev + REV_SHIFT);
f76412ed
JH
649
650 if (MAX_REVS <= num_rev)
651 die("cannot handle more than %d revs.", MAX_REVS);
652 if (get_sha1(ref_name[num_rev], revkey))
7246ed43 653 die("'%s' is not a valid ref.", ref_name[num_rev]);
f76412ed
JH
654 commit = lookup_commit_reference(revkey);
655 if (!commit)
656 die("cannot find commit %s (%s)",
657 ref_name[num_rev], revkey);
658 parse_commit(commit);
f76412ed
JH
659 mark_seen(commit, &seen);
660
661 /* rev#0 uses bit REV_SHIFT, rev#1 uses bit REV_SHIFT+1,
662 * and so on. REV_SHIFT bits from bit 0 are used for
663 * internal bookkeeping.
664 */
1f8af483
JH
665 commit->object.flags |= flag;
666 if (commit->object.flags == flag)
667 insert_by_date(commit, &list);
f76412ed
JH
668 rev[num_rev] = commit;
669 }
1f8af483
JH
670 for (i = 0; i < num_rev; i++)
671 rev_mask[i] = rev[i]->object.flags;
672
673 if (0 <= extra)
674 join_revs(&list, &seen, num_rev, extra);
f76412ed 675
f76412ed
JH
676 if (merge_base)
677 return show_merge_base(seen, num_rev);
678
1f8af483
JH
679 if (independent)
680 return show_independent(rev, num_rev, ref_name, rev_mask);
681
682 /* Show list; --more=-1 means list-only */
c9d023b2 683 if (1 < num_rev || extra < 0) {
f76412ed
JH
684 for (i = 0; i < num_rev; i++) {
685 int j;
686 int is_head = rev_is_head(head_path,
687 head_path_len,
688 ref_name[i],
689 head_sha1,
690 rev[i]->object.sha1);
1f8af483
JH
691 if (extra < 0)
692 printf("%c [%s] ",
693 is_head ? '*' : ' ', ref_name[i]);
694 else {
695 for (j = 0; j < i; j++)
696 putchar(' ');
697 printf("%c [%s] ",
698 is_head ? '*' : '!', ref_name[i]);
699 }
013f276e
JH
700 /* header lines never need name */
701 show_one_commit(rev[i], 1);
ebedc319
JH
702 if (is_head)
703 head_at = i;
f76412ed 704 }
1f8af483
JH
705 if (0 <= extra) {
706 for (i = 0; i < num_rev; i++)
707 putchar('-');
708 putchar('\n');
709 }
f5e375c9 710 }
1f8af483
JH
711 if (extra < 0)
712 exit(0);
f5e375c9 713
8e5dd22b 714 /* Sort topologically */
4c8725f1 715 sort_in_topological_order(&seen, lifo);
8e5dd22b
JH
716
717 /* Give names to commits */
013f276e
JH
718 if (!sha1_name && !no_name)
719 name_commits(seen, rev, ref_name, num_rev);
8e5dd22b
JH
720
721 all_mask = ((1u << (REV_SHIFT + num_rev)) - 1);
722 all_revs = all_mask & ~((1u << REV_SHIFT) - 1);
8e5dd22b 723
f76412ed
JH
724 while (seen) {
725 struct commit *commit = pop_one_commit(&seen);
726 int this_flag = commit->object.flags;
f5e375c9 727
6b209d47 728 shown_merge_point |= ((this_flag & all_revs) == all_revs);
8e5dd22b 729
f5e375c9 730 if (1 < num_rev) {
ebedc319
JH
731 int is_merge = !!(commit->parents && commit->parents->next);
732 for (i = 0; i < num_rev; i++) {
733 int mark;
734 if (!(this_flag & (1u << (i + REV_SHIFT))))
735 mark = ' ';
736 else if (is_merge)
737 mark = '-';
738 else if (i == head_at)
739 mark = '*';
740 else
741 mark = '+';
742 putchar(mark);
743 }
f5e375c9
JH
744 putchar(' ');
745 }
013f276e 746 show_one_commit(commit, no_name);
6b209d47
JH
747
748 if (shown_merge_point && --extra < 0)
749 break;
f76412ed
JH
750 }
751 return 0;
752}