10 #include "list-objects.h"
13 /* bits #0-15 in revision.h */
15 #define COUNTED (1u<<16)
17 static const char rev_list_usage
[] =
18 "git-rev-list [OPTION] <commit-id>... [ -- paths... ]\n"
31 " formatting output:\n"
33 " --objects | --objects-edge\n"
35 " --header | --pretty\n"
36 " --abbrev=nr | --no-abbrev\n"
44 static struct rev_info revs
;
46 static int bisect_list
;
47 static int show_timestamp
;
48 static int hdr_termination
;
49 static const char *header_prefix
;
51 static void show_commit(struct commit
*commit
)
54 printf("%lu ", commit
->date
);
56 fputs(header_prefix
, stdout
);
57 if (commit
->object
.flags
& BOUNDARY
)
59 else if (revs
.left_right
) {
60 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
65 if (revs
.abbrev_commit
&& revs
.abbrev
)
66 fputs(find_unique_abbrev(commit
->object
.sha1
, revs
.abbrev
),
69 fputs(sha1_to_hex(commit
->object
.sha1
), stdout
);
71 struct commit_list
*parents
= commit
->parents
;
73 printf(" %s", sha1_to_hex(parents
->item
->object
.sha1
));
74 parents
= parents
->next
;
77 if (revs
.commit_format
== CMIT_FMT_ONELINE
)
82 if (revs
.verbose_header
) {
84 unsigned long buflen
= 0;
85 pretty_print_commit(revs
.commit_format
, commit
, ~0,
87 revs
.abbrev
, NULL
, NULL
, revs
.date_mode
);
88 printf("%s%c", buf
, hdr_termination
);
91 maybe_flush_or_die(stdout
, "stdout");
92 if (commit
->parents
) {
93 free_commit_list(commit
->parents
);
94 commit
->parents
= NULL
;
97 commit
->buffer
= NULL
;
100 static void show_object(struct object_array_entry
*p
)
102 /* An object with name "foo\n0000000..." can be used to
103 * confuse downstream git-pack-objects very badly.
105 const char *ep
= strchr(p
->name
, '\n');
107 if (p
->item
->type
== OBJ_BLOB
&& !has_sha1_file(p
->item
->sha1
))
108 die("missing blob object '%s'", sha1_to_hex(p
->item
->sha1
));
111 printf("%s %.*s\n", sha1_to_hex(p
->item
->sha1
),
112 (int) (ep
- p
->name
),
116 printf("%s %s\n", sha1_to_hex(p
->item
->sha1
), p
->name
);
119 static void show_edge(struct commit
*commit
)
121 printf("-%s\n", sha1_to_hex(commit
->object
.sha1
));
125 * This is a truly stupid algorithm, but it's only
126 * used for bisection, and we just don't care enough.
128 * We care just barely enough to avoid recursing for
131 static int count_distance(struct commit_list
*entry
)
136 struct commit
*commit
= entry
->item
;
137 struct commit_list
*p
;
139 if (commit
->object
.flags
& (UNINTERESTING
| COUNTED
))
141 if (!revs
.prune_fn
|| (commit
->object
.flags
& TREECHANGE
))
143 commit
->object
.flags
|= COUNTED
;
149 nr
+= count_distance(p
);
158 static void clear_distance(struct commit_list
*list
)
161 struct commit
*commit
= list
->item
;
162 commit
->object
.flags
&= ~COUNTED
;
167 #define DEBUG_BISECT 0
169 static inline int weight(struct commit_list
*elem
)
171 return *((int*)(elem
->item
->util
));
174 static inline void weight_set(struct commit_list
*elem
, int weight
)
176 *((int*)(elem
->item
->util
)) = weight
;
179 static int count_interesting_parents(struct commit
*commit
)
181 struct commit_list
*p
;
184 for (count
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
185 if (p
->item
->object
.flags
& UNINTERESTING
)
192 static inline int halfway(struct commit_list
*p
, int distance
, int nr
)
195 * Don't short-cut something we are not going to return!
197 if (revs
.prune_fn
&& !(p
->item
->object
.flags
& TREECHANGE
))
202 * 2 and 3 are halfway of 5.
203 * 3 is halfway of 6 but 2 and 4 are not.
206 switch (distance
- nr
) {
207 case -1: case 0: case 1:
215 #define show_list(a,b,c,d) do { ; } while (0)
217 static void show_list(const char *debug
, int counted
, int nr
,
218 struct commit_list
*list
)
220 struct commit_list
*p
;
222 fprintf(stderr
, "%s (%d/%d)\n", debug
, counted
, nr
);
224 for (p
= list
; p
; p
= p
->next
) {
225 struct commit_list
*pp
;
226 struct commit
*commit
= p
->item
;
227 unsigned flags
= commit
->object
.flags
;
228 enum object_type type
;
230 char *buf
= read_sha1_file(commit
->object
.sha1
, &type
, &size
);
233 fprintf(stderr
, "%c%c%c ",
234 (flags
& TREECHANGE
) ? 'T' : ' ',
235 (flags
& UNINTERESTING
) ? 'U' : ' ',
236 (flags
& COUNTED
) ? 'C' : ' ');
238 fprintf(stderr
, "%3d", weight(p
));
240 fprintf(stderr
, "---");
241 fprintf(stderr
, " %.*s", 8, sha1_to_hex(commit
->object
.sha1
));
242 for (pp
= commit
->parents
; pp
; pp
= pp
->next
)
243 fprintf(stderr
, " %.*s", 8,
244 sha1_to_hex(pp
->item
->object
.sha1
));
246 sp
= strstr(buf
, "\n\n");
249 for (ep
= sp
; *ep
&& *ep
!= '\n'; ep
++)
251 fprintf(stderr
, " %.*s", (int)(ep
- sp
), sp
);
253 fprintf(stderr
, "\n");
256 #endif /* DEBUG_BISECT */
259 * zero or positive weight is the number of interesting commits it can
260 * reach, including itself. Especially, weight = 0 means it does not
261 * reach any tree-changing commits (e.g. just above uninteresting one
262 * but traversal is with pathspec).
264 * weight = -1 means it has one parent and its distance is yet to
267 * weight = -2 means it has more than one parent and its distance is
268 * unknown. After running count_distance() first, they will get zero
269 * or positive distance.
271 static struct commit_list
*do_find_bisection(struct commit_list
*list
,
272 int nr
, int *weights
)
274 int n
, counted
, distance
;
275 struct commit_list
*p
, *best
;
279 for (n
= 0, p
= list
; p
; p
= p
->next
) {
280 struct commit
*commit
= p
->item
;
281 unsigned flags
= commit
->object
.flags
;
283 p
->item
->util
= &weights
[n
++];
284 switch (count_interesting_parents(commit
)) {
286 if (!revs
.prune_fn
|| (flags
& TREECHANGE
)) {
289 show_list("bisection 2 count one",
293 * otherwise, it is known not to reach any
294 * tree-changing commit and gets weight 0.
306 show_list("bisection 2 initialize", counted
, nr
, list
);
309 * If you have only one parent in the resulting set
310 * then you can reach one commit more than that parent
311 * can reach. So we do not have to run the expensive
312 * count_distance() for single strand of pearls.
314 * However, if you have more than one parents, you cannot
315 * just add their distance and one for yourself, since
316 * they usually reach the same ancestor and you would
317 * end up counting them twice that way.
319 * So we will first count distance of merges the usual
320 * way, and then fill the blanks using cheaper algorithm.
322 for (p
= list
; p
; p
= p
->next
) {
323 if (p
->item
->object
.flags
& UNINTERESTING
)
328 distance
= count_distance(p
);
329 clear_distance(list
);
330 weight_set(p
, distance
);
332 /* Does it happen to be at exactly half-way? */
333 if (halfway(p
, distance
, nr
))
338 show_list("bisection 2 count_distance", counted
, nr
, list
);
340 while (counted
< nr
) {
341 for (p
= list
; p
; p
= p
->next
) {
342 struct commit_list
*q
;
343 unsigned flags
= p
->item
->object
.flags
;
347 for (q
= p
->item
->parents
; q
; q
= q
->next
) {
348 if (q
->item
->object
.flags
& UNINTERESTING
)
357 * weight for p is unknown but q is known.
358 * add one for p itself if p is to be counted,
359 * otherwise inherit it from q directly.
361 if (!revs
.prune_fn
|| (flags
& TREECHANGE
)) {
362 weight_set(p
, weight(q
)+1);
364 show_list("bisection 2 count one",
368 weight_set(p
, weight(q
));
370 /* Does it happen to be at exactly half-way? */
371 distance
= weight(p
);
372 if (halfway(p
, distance
, nr
))
377 show_list("bisection 2 counted all", counted
, nr
, list
);
379 /* Then find the best one */
382 for (p
= list
; p
; p
= p
->next
) {
383 unsigned flags
= p
->item
->object
.flags
;
385 if (revs
.prune_fn
&& !(flags
& TREECHANGE
))
387 distance
= weight(p
);
388 if (nr
- distance
< distance
)
389 distance
= nr
- distance
;
390 if (distance
> counted
) {
398 static struct commit_list
*find_bisection(struct commit_list
*list
,
399 int *reaches
, int *all
)
402 struct commit_list
*p
, *best
, *next
, *last
;
405 show_list("bisection 2 entry", 0, 0, list
);
408 * Count the number of total and tree-changing items on the
409 * list, while reversing the list.
411 for (nr
= on_list
= 0, last
= NULL
, p
= list
;
414 unsigned flags
= p
->item
->object
.flags
;
417 if (flags
& UNINTERESTING
)
421 if (!revs
.prune_fn
|| (flags
& TREECHANGE
))
426 show_list("bisection 2 sorted", 0, nr
, list
);
429 weights
= xcalloc(on_list
, sizeof(*weights
));
431 /* Do the real work of finding bisection commit. */
432 best
= do_find_bisection(list
, nr
, weights
);
437 *reaches
= weight(best
);
443 static void read_revisions_from_stdin(struct rev_info
*revs
)
447 while (fgets(line
, sizeof(line
), stdin
) != NULL
) {
448 int len
= strlen(line
);
449 if (line
[len
- 1] == '\n')
454 die("options not supported in --stdin mode");
455 if (handle_revision_arg(line
, revs
, 0, 1))
456 die("bad revision '%s'", line
);
460 int cmd_rev_list(int argc
, const char **argv
, const char *prefix
)
462 struct commit_list
*list
;
464 int read_from_stdin
= 0;
465 int bisect_show_vars
= 0;
467 git_config(git_default_config
);
468 init_revisions(&revs
, prefix
);
470 revs
.commit_format
= CMIT_FMT_UNSPECIFIED
;
471 argc
= setup_revisions(argc
, argv
, &revs
, NULL
);
473 for (i
= 1 ; i
< argc
; i
++) {
474 const char *arg
= argv
[i
];
476 if (!strcmp(arg
, "--header")) {
477 revs
.verbose_header
= 1;
480 if (!strcmp(arg
, "--timestamp")) {
484 if (!strcmp(arg
, "--bisect")) {
488 if (!strcmp(arg
, "--bisect-vars")) {
490 bisect_show_vars
= 1;
493 if (!strcmp(arg
, "--stdin")) {
494 if (read_from_stdin
++)
495 die("--stdin given twice?");
496 read_revisions_from_stdin(&revs
);
499 usage(rev_list_usage
);
502 if (revs
.commit_format
!= CMIT_FMT_UNSPECIFIED
) {
503 /* The command line has a --pretty */
504 hdr_termination
= '\n';
505 if (revs
.commit_format
== CMIT_FMT_ONELINE
)
508 header_prefix
= "commit ";
510 else if (revs
.verbose_header
)
511 /* Only --header was specified */
512 revs
.commit_format
= CMIT_FMT_RAW
;
517 (!(revs
.tag_objects
||revs
.tree_objects
||revs
.blob_objects
) &&
518 !revs
.pending
.nr
)) ||
520 usage(rev_list_usage
);
522 save_commit_buffer
= revs
.verbose_header
|| revs
.grep_filter
;
523 track_object_refs
= 0;
527 prepare_revision_walk(&revs
);
528 if (revs
.tree_objects
)
529 mark_edges_uninteresting(revs
.commits
, &revs
, show_edge
);
532 int reaches
= reaches
, all
= all
;
534 revs
.commits
= find_bisection(revs
.commits
, &reaches
, &all
);
535 if (bisect_show_vars
) {
540 * revs.commits can reach "reaches" commits among
541 * "all" commits. If it is good, then there are
542 * (all-reaches) commits left to be bisected.
543 * On the other hand, if it is bad, then the set
544 * to bisect is "reaches".
545 * A bisect set of size N has (N-1) commits further
546 * to test, as we already know one bad one.
551 printf("bisect_rev=%s\n"
556 sha1_to_hex(revs
.commits
->item
->object
.sha1
),
565 traverse_commit_list(&revs
, show_commit
, show_object
);