6 static const char show_branch_usage
[] =
7 "git-show-branch [--all] [--heads] [--tags] [--more=count | --list | --independent | --merge-base ] [<refs>...]";
9 #define UNINTERESTING 01
12 #define MAX_REVS 29 /* should not exceed bits_per_int - REV_SHIFT */
14 static struct commit
*interesting(struct commit_list
*list
)
17 struct commit
*commit
= list
->item
;
19 if (commit
->object
.flags
& UNINTERESTING
)
26 static struct commit
*pop_one_commit(struct commit_list
**list_p
)
28 struct commit
*commit
;
29 struct commit_list
*list
;
38 const char *head_name
; /* which head's ancestor? */
39 int generation
; /* how many parents away from head_name */
42 /* Name the commit as nth generation ancestor of head_name;
43 * we count only the first-parent relationship for naming purposes.
45 static void name_commit(struct commit
*commit
, const char *head_name
, int nth
)
47 struct commit_name
*name
;
48 if (!commit
->object
.util
)
49 commit
->object
.util
= xmalloc(sizeof(struct commit_name
));
50 name
= commit
->object
.util
;
51 name
->head_name
= head_name
;
52 name
->generation
= nth
;
55 /* Parent is the first parent of the commit. We may name it
56 * as (n+1)th generation ancestor of the same head_name as
57 * commit is nth generation ancestore of, if that generation
58 * number is better than the name it already has.
60 static void name_parent(struct commit
*commit
, struct commit
*parent
)
62 struct commit_name
*commit_name
= commit
->object
.util
;
63 struct commit_name
*parent_name
= parent
->object
.util
;
67 commit_name
->generation
+ 1 < parent_name
->generation
)
68 name_commit(parent
, commit_name
->head_name
,
69 commit_name
->generation
+ 1);
72 static int name_first_parent_chain(struct commit
*c
)
82 if (!p
->object
.util
) {
91 static void name_commits(struct commit_list
*list
,
96 struct commit_list
*cl
;
100 /* First give names to the given heads */
101 for (cl
= list
; cl
; cl
= cl
->next
) {
105 for (i
= 0; i
< num_rev
; i
++) {
107 name_commit(c
, ref_name
[i
], 0);
113 /* Then commits on the first parent ancestry chain */
116 for (cl
= list
; cl
; cl
= cl
->next
) {
117 i
+= name_first_parent_chain(cl
->item
);
121 /* Finally, any unnamed commits */
124 for (cl
= list
; cl
; cl
= cl
->next
) {
125 struct commit_list
*parents
;
126 struct commit_name
*n
;
132 parents
= c
->parents
;
135 struct commit
*p
= parents
->item
;
137 parents
= parents
->next
;
141 switch (n
->generation
) {
143 sprintf(newname
, "%s^%d",
147 sprintf(newname
, "%s^^%d",
151 sprintf(newname
, "%s~%d^%d",
152 n
->head_name
, n
->generation
,
155 name_commit(p
, strdup(newname
), 0);
157 name_first_parent_chain(p
);
163 static int mark_seen(struct commit
*commit
, struct commit_list
**seen_p
)
165 if (!commit
->object
.flags
) {
166 insert_by_date(commit
, seen_p
);
172 static void join_revs(struct commit_list
**list_p
,
173 struct commit_list
**seen_p
,
174 int num_rev
, int extra
)
176 int all_mask
= ((1u << (REV_SHIFT
+ num_rev
)) - 1);
177 int all_revs
= all_mask
& ~((1u << REV_SHIFT
) - 1);
180 struct commit_list
*parents
;
181 struct commit
*commit
= pop_one_commit(list_p
);
182 int flags
= commit
->object
.flags
& all_mask
;
183 int still_interesting
= !!interesting(*list_p
);
185 if (!still_interesting
&& extra
< 0)
188 mark_seen(commit
, seen_p
);
189 if ((flags
& all_revs
) == all_revs
)
190 flags
|= UNINTERESTING
;
191 parents
= commit
->parents
;
194 struct commit
*p
= parents
->item
;
195 int this_flag
= p
->object
.flags
;
196 parents
= parents
->next
;
197 if ((this_flag
& flags
) == flags
)
200 if (mark_seen(p
, seen_p
) && !still_interesting
)
202 p
->object
.flags
|= flags
;
203 insert_by_date(p
, list_p
);
208 static void show_one_commit(struct commit
*commit
)
210 char pretty
[128], *cp
;
211 struct commit_name
*name
= commit
->object
.util
;
212 if (commit
->object
.parsed
)
213 pretty_print_commit(CMIT_FMT_ONELINE
, commit
->buffer
, ~0,
214 pretty
, sizeof(pretty
));
216 strcpy(pretty
, "(unavailable)");
217 if (!strncmp(pretty
, "[PATCH] ", 8))
221 if (name
&& name
->head_name
) {
222 printf("[%s", name
->head_name
);
223 if (name
->generation
)
224 printf("~%d", name
->generation
);
230 static char *ref_name
[MAX_REVS
+ 1];
231 static int ref_name_cnt
;
233 static int compare_ref_name(const void *a_
, const void *b_
)
235 const char * const*a
= a_
, * const*b
= b_
;
236 return strcmp(*a
, *b
);
239 static void sort_ref_range(int bottom
, int top
)
241 qsort(ref_name
+ bottom
, top
- bottom
, sizeof(ref_name
[0]),
245 static int append_ref(const char *refname
, const unsigned char *sha1
)
247 struct commit
*commit
= lookup_commit_reference_gently(sha1
, 1);
250 if (MAX_REVS
< ref_name_cnt
) {
251 fprintf(stderr
, "warning: ignoring %s; "
252 "cannot handle more than %d refs",
256 ref_name
[ref_name_cnt
++] = strdup(refname
);
257 ref_name
[ref_name_cnt
] = NULL
;
261 static int append_head_ref(const char *refname
, const unsigned char *sha1
)
263 if (strncmp(refname
, "refs/heads/", 11))
265 return append_ref(refname
+ 11, sha1
);
268 static int append_tag_ref(const char *refname
, const unsigned char *sha1
)
270 if (strncmp(refname
, "refs/tags/", 10))
272 return append_ref(refname
+ 5, sha1
);
275 static void snarf_refs(int head
, int tag
)
278 int orig_cnt
= ref_name_cnt
;
279 for_each_ref(append_head_ref
);
280 sort_ref_range(orig_cnt
, ref_name_cnt
);
283 int orig_cnt
= ref_name_cnt
;
284 for_each_ref(append_tag_ref
);
285 sort_ref_range(orig_cnt
, ref_name_cnt
);
289 static int rev_is_head(char *head_path
, int headlen
,
291 unsigned char *head_sha1
, unsigned char *sha1
)
294 if ((!head_path
[0]) || memcmp(head_sha1
, sha1
, 20))
296 namelen
= strlen(name
);
297 if ((headlen
< namelen
) ||
298 memcmp(head_path
+ headlen
- namelen
, name
, namelen
))
300 if (headlen
== namelen
||
301 head_path
[headlen
- namelen
- 1] == '/')
306 static int show_merge_base(struct commit_list
*seen
, int num_rev
)
308 int all_mask
= ((1u << (REV_SHIFT
+ num_rev
)) - 1);
309 int all_revs
= all_mask
& ~((1u << REV_SHIFT
) - 1);
313 struct commit
*commit
= pop_one_commit(&seen
);
314 int flags
= commit
->object
.flags
& all_mask
;
315 if (!(flags
& UNINTERESTING
) &&
316 ((flags
& all_revs
) == all_revs
)) {
317 puts(sha1_to_hex(commit
->object
.sha1
));
319 commit
->object
.flags
|= UNINTERESTING
;
325 static int show_independent(struct commit
**rev
,
328 unsigned int *rev_mask
)
332 for (i
= 0; i
< num_rev
; i
++) {
333 struct commit
*commit
= rev
[i
];
334 unsigned int flag
= rev_mask
[i
];
336 if (commit
->object
.flags
== flag
)
337 puts(sha1_to_hex(commit
->object
.sha1
));
338 commit
->object
.flags
|= UNINTERESTING
;
343 int main(int ac
, char **av
)
345 struct commit
*rev
[MAX_REVS
], *commit
;
346 struct commit_list
*list
= NULL
, *seen
= NULL
;
347 unsigned int rev_mask
[MAX_REVS
];
348 int num_rev
, i
, extra
= 0;
349 int all_heads
= 0, all_tags
= 0;
350 int all_mask
, all_revs
, shown_merge_point
;
352 const char *head_path_p
;
354 unsigned char head_sha1
[20];
359 setup_git_directory();
361 while (1 < ac
&& av
[1][0] == '-') {
363 if (!strcmp(arg
, "--all"))
364 all_heads
= all_tags
= 1;
365 else if (!strcmp(arg
, "--heads"))
367 else if (!strcmp(arg
, "--tags"))
369 else if (!strcmp(arg
, "--more"))
371 else if (!strcmp(arg
, "--list"))
373 else if (!strncmp(arg
, "--more=", 7))
374 extra
= atoi(arg
+ 7);
375 else if (!strcmp(arg
, "--merge-base"))
377 else if (!strcmp(arg
, "--independent"))
380 usage(show_branch_usage
);
385 /* Only one of these is allowed */
386 if (1 < independent
+ merge_base
+ (extra
!= 0))
387 usage(show_branch_usage
);
389 if (all_heads
+ all_tags
)
390 snarf_refs(all_heads
, all_tags
);
393 unsigned char revkey
[20];
394 if (get_sha1(*av
, revkey
))
395 die("bad sha1 reference %s", *av
);
396 append_ref(*av
, revkey
);
400 /* If still no revs, then add heads */
404 for (num_rev
= 0; ref_name
[num_rev
]; num_rev
++) {
405 unsigned char revkey
[20];
406 unsigned int flag
= 1u << (num_rev
+ REV_SHIFT
);
408 if (MAX_REVS
<= num_rev
)
409 die("cannot handle more than %d revs.", MAX_REVS
);
410 if (get_sha1(ref_name
[num_rev
], revkey
))
411 usage(show_branch_usage
);
412 commit
= lookup_commit_reference(revkey
);
414 die("cannot find commit %s (%s)",
415 ref_name
[num_rev
], revkey
);
416 parse_commit(commit
);
417 mark_seen(commit
, &seen
);
419 /* rev#0 uses bit REV_SHIFT, rev#1 uses bit REV_SHIFT+1,
420 * and so on. REV_SHIFT bits from bit 0 are used for
421 * internal bookkeeping.
423 commit
->object
.flags
|= flag
;
424 if (commit
->object
.flags
== flag
)
425 insert_by_date(commit
, &list
);
426 rev
[num_rev
] = commit
;
428 for (i
= 0; i
< num_rev
; i
++)
429 rev_mask
[i
] = rev
[i
]->object
.flags
;
432 join_revs(&list
, &seen
, num_rev
, extra
);
434 head_path_p
= resolve_ref(git_path("HEAD"), head_sha1
, 1);
436 head_path_len
= strlen(head_path_p
);
437 memcpy(head_path
, head_path_p
, head_path_len
+ 1);
445 return show_merge_base(seen
, num_rev
);
448 return show_independent(rev
, num_rev
, ref_name
, rev_mask
);
450 /* Show list; --more=-1 means list-only */
451 if (1 < num_rev
|| extra
< 0) {
452 for (i
= 0; i
< num_rev
; i
++) {
454 int is_head
= rev_is_head(head_path
,
458 rev
[i
]->object
.sha1
);
461 is_head
? '*' : ' ', ref_name
[i
]);
463 for (j
= 0; j
< i
; j
++)
466 is_head
? '*' : '!', ref_name
[i
]);
468 show_one_commit(rev
[i
]);
471 for (i
= 0; i
< num_rev
; i
++)
479 /* Sort topologically */
480 sort_in_topological_order(&seen
);
482 /* Give names to commits */
483 name_commits(seen
, rev
, ref_name
, num_rev
);
485 all_mask
= ((1u << (REV_SHIFT
+ num_rev
)) - 1);
486 all_revs
= all_mask
& ~((1u << REV_SHIFT
) - 1);
487 shown_merge_point
= 0;
490 struct commit
*commit
= pop_one_commit(&seen
);
491 int this_flag
= commit
->object
.flags
;
492 int is_merge_point
= (this_flag
& all_revs
) == all_revs
;
493 static char *obvious
[] = { "" };
496 shown_merge_point
= 1;
499 for (i
= 0; i
< num_rev
; i
++)
500 putchar((this_flag
& (1u << (i
+ REV_SHIFT
)))
504 show_one_commit(commit
);
507 if (shown_merge_point
&& is_merge_point
)