core.hidedotfiles: hide '.git' dir by default
[git/dscho.git] / bisect.c
blobdd7e8ed69bc0c1268dc3b0a6590501ba9c10d7db
1 #include "cache.h"
2 #include "commit.h"
3 #include "diff.h"
4 #include "revision.h"
5 #include "refs.h"
6 #include "list-objects.h"
7 #include "quote.h"
8 #include "sha1-lookup.h"
9 #include "run-command.h"
10 #include "log-tree.h"
11 #include "bisect.h"
12 #include "sha1-array.h"
14 static struct sha1_array good_revs;
15 static struct sha1_array skipped_revs;
17 static const unsigned char *current_bad_sha1;
19 struct argv_array {
20 const char **argv;
21 int argv_nr;
22 int argv_alloc;
25 static const char *argv_checkout[] = {"checkout", "-q", NULL, "--", NULL};
26 static const char *argv_show_branch[] = {"show-branch", NULL, NULL};
28 /* bits #0-15 in revision.h */
30 #define COUNTED (1u<<16)
33 * This is a truly stupid algorithm, but it's only
34 * used for bisection, and we just don't care enough.
36 * We care just barely enough to avoid recursing for
37 * non-merge entries.
39 static int count_distance(struct commit_list *entry)
41 int nr = 0;
43 while (entry) {
44 struct commit *commit = entry->item;
45 struct commit_list *p;
47 if (commit->object.flags & (UNINTERESTING | COUNTED))
48 break;
49 if (!(commit->object.flags & TREESAME))
50 nr++;
51 commit->object.flags |= COUNTED;
52 p = commit->parents;
53 entry = p;
54 if (p) {
55 p = p->next;
56 while (p) {
57 nr += count_distance(p);
58 p = p->next;
63 return nr;
66 static void clear_distance(struct commit_list *list)
68 while (list) {
69 struct commit *commit = list->item;
70 commit->object.flags &= ~COUNTED;
71 list = list->next;
75 #define DEBUG_BISECT 0
77 static inline int weight(struct commit_list *elem)
79 return *((int*)(elem->item->util));
82 static inline void weight_set(struct commit_list *elem, int weight)
84 *((int*)(elem->item->util)) = weight;
87 static int count_interesting_parents(struct commit *commit)
89 struct commit_list *p;
90 int count;
92 for (count = 0, p = commit->parents; p; p = p->next) {
93 if (p->item->object.flags & UNINTERESTING)
94 continue;
95 count++;
97 return count;
100 static inline int halfway(struct commit_list *p, int nr)
103 * Don't short-cut something we are not going to return!
105 if (p->item->object.flags & TREESAME)
106 return 0;
107 if (DEBUG_BISECT)
108 return 0;
110 * 2 and 3 are halfway of 5.
111 * 3 is halfway of 6 but 2 and 4 are not.
113 switch (2 * weight(p) - nr) {
114 case -1: case 0: case 1:
115 return 1;
116 default:
117 return 0;
121 #if !DEBUG_BISECT
122 #define show_list(a,b,c,d) do { ; } while (0)
123 #else
124 static void show_list(const char *debug, int counted, int nr,
125 struct commit_list *list)
127 struct commit_list *p;
129 fprintf(stderr, "%s (%d/%d)\n", debug, counted, nr);
131 for (p = list; p; p = p->next) {
132 struct commit_list *pp;
133 struct commit *commit = p->item;
134 unsigned flags = commit->object.flags;
135 enum object_type type;
136 unsigned long size;
137 char *buf = read_sha1_file(commit->object.sha1, &type, &size);
138 const char *subject_start;
139 int subject_len;
141 fprintf(stderr, "%c%c%c ",
142 (flags & TREESAME) ? ' ' : 'T',
143 (flags & UNINTERESTING) ? 'U' : ' ',
144 (flags & COUNTED) ? 'C' : ' ');
145 if (commit->util)
146 fprintf(stderr, "%3d", weight(p));
147 else
148 fprintf(stderr, "---");
149 fprintf(stderr, " %.*s", 8, sha1_to_hex(commit->object.sha1));
150 for (pp = commit->parents; pp; pp = pp->next)
151 fprintf(stderr, " %.*s", 8,
152 sha1_to_hex(pp->item->object.sha1));
154 subject_len = find_commit_subject(buf, &subject_start);
155 if (subject_len)
156 fprintf(stderr, " %.*s", subject_len, subject_start);
157 fprintf(stderr, "\n");
160 #endif /* DEBUG_BISECT */
162 static struct commit_list *best_bisection(struct commit_list *list, int nr)
164 struct commit_list *p, *best;
165 int best_distance = -1;
167 best = list;
168 for (p = list; p; p = p->next) {
169 int distance;
170 unsigned flags = p->item->object.flags;
172 if (flags & TREESAME)
173 continue;
174 distance = weight(p);
175 if (nr - distance < distance)
176 distance = nr - distance;
177 if (distance > best_distance) {
178 best = p;
179 best_distance = distance;
183 return best;
186 struct commit_dist {
187 struct commit *commit;
188 int distance;
191 static int compare_commit_dist(const void *a_, const void *b_)
193 struct commit_dist *a, *b;
195 a = (struct commit_dist *)a_;
196 b = (struct commit_dist *)b_;
197 if (a->distance != b->distance)
198 return b->distance - a->distance; /* desc sort */
199 return hashcmp(a->commit->object.sha1, b->commit->object.sha1);
202 static struct commit_list *best_bisection_sorted(struct commit_list *list, int nr)
204 struct commit_list *p;
205 struct commit_dist *array = xcalloc(nr, sizeof(*array));
206 int cnt, i;
208 for (p = list, cnt = 0; p; p = p->next) {
209 int distance;
210 unsigned flags = p->item->object.flags;
212 if (flags & TREESAME)
213 continue;
214 distance = weight(p);
215 if (nr - distance < distance)
216 distance = nr - distance;
217 array[cnt].commit = p->item;
218 array[cnt].distance = distance;
219 cnt++;
221 qsort(array, cnt, sizeof(*array), compare_commit_dist);
222 for (p = list, i = 0; i < cnt; i++) {
223 struct name_decoration *r = xmalloc(sizeof(*r) + 100);
224 struct object *obj = &(array[i].commit->object);
226 sprintf(r->name, "dist=%d", array[i].distance);
227 r->next = add_decoration(&name_decoration, obj, r);
228 p->item = array[i].commit;
229 p = p->next;
231 if (p)
232 p->next = NULL;
233 free(array);
234 return list;
238 * zero or positive weight is the number of interesting commits it can
239 * reach, including itself. Especially, weight = 0 means it does not
240 * reach any tree-changing commits (e.g. just above uninteresting one
241 * but traversal is with pathspec).
243 * weight = -1 means it has one parent and its distance is yet to
244 * be computed.
246 * weight = -2 means it has more than one parent and its distance is
247 * unknown. After running count_distance() first, they will get zero
248 * or positive distance.
250 static struct commit_list *do_find_bisection(struct commit_list *list,
251 int nr, int *weights,
252 int find_all)
254 int n, counted;
255 struct commit_list *p;
257 counted = 0;
259 for (n = 0, p = list; p; p = p->next) {
260 struct commit *commit = p->item;
261 unsigned flags = commit->object.flags;
263 p->item->util = &weights[n++];
264 switch (count_interesting_parents(commit)) {
265 case 0:
266 if (!(flags & TREESAME)) {
267 weight_set(p, 1);
268 counted++;
269 show_list("bisection 2 count one",
270 counted, nr, list);
273 * otherwise, it is known not to reach any
274 * tree-changing commit and gets weight 0.
276 break;
277 case 1:
278 weight_set(p, -1);
279 break;
280 default:
281 weight_set(p, -2);
282 break;
286 show_list("bisection 2 initialize", counted, nr, list);
289 * If you have only one parent in the resulting set
290 * then you can reach one commit more than that parent
291 * can reach. So we do not have to run the expensive
292 * count_distance() for single strand of pearls.
294 * However, if you have more than one parents, you cannot
295 * just add their distance and one for yourself, since
296 * they usually reach the same ancestor and you would
297 * end up counting them twice that way.
299 * So we will first count distance of merges the usual
300 * way, and then fill the blanks using cheaper algorithm.
302 for (p = list; p; p = p->next) {
303 if (p->item->object.flags & UNINTERESTING)
304 continue;
305 if (weight(p) != -2)
306 continue;
307 weight_set(p, count_distance(p));
308 clear_distance(list);
310 /* Does it happen to be at exactly half-way? */
311 if (!find_all && halfway(p, nr))
312 return p;
313 counted++;
316 show_list("bisection 2 count_distance", counted, nr, list);
318 while (counted < nr) {
319 for (p = list; p; p = p->next) {
320 struct commit_list *q;
321 unsigned flags = p->item->object.flags;
323 if (0 <= weight(p))
324 continue;
325 for (q = p->item->parents; q; q = q->next) {
326 if (q->item->object.flags & UNINTERESTING)
327 continue;
328 if (0 <= weight(q))
329 break;
331 if (!q)
332 continue;
335 * weight for p is unknown but q is known.
336 * add one for p itself if p is to be counted,
337 * otherwise inherit it from q directly.
339 if (!(flags & TREESAME)) {
340 weight_set(p, weight(q)+1);
341 counted++;
342 show_list("bisection 2 count one",
343 counted, nr, list);
345 else
346 weight_set(p, weight(q));
348 /* Does it happen to be at exactly half-way? */
349 if (!find_all && halfway(p, nr))
350 return p;
354 show_list("bisection 2 counted all", counted, nr, list);
356 if (!find_all)
357 return best_bisection(list, nr);
358 else
359 return best_bisection_sorted(list, nr);
362 struct commit_list *find_bisection(struct commit_list *list,
363 int *reaches, int *all,
364 int find_all)
366 int nr, on_list;
367 struct commit_list *p, *best, *next, *last;
368 int *weights;
370 show_list("bisection 2 entry", 0, 0, list);
373 * Count the number of total and tree-changing items on the
374 * list, while reversing the list.
376 for (nr = on_list = 0, last = NULL, p = list;
378 p = next) {
379 unsigned flags = p->item->object.flags;
381 next = p->next;
382 if (flags & UNINTERESTING)
383 continue;
384 p->next = last;
385 last = p;
386 if (!(flags & TREESAME))
387 nr++;
388 on_list++;
390 list = last;
391 show_list("bisection 2 sorted", 0, nr, list);
393 *all = nr;
394 weights = xcalloc(on_list, sizeof(*weights));
396 /* Do the real work of finding bisection commit. */
397 best = do_find_bisection(list, nr, weights, find_all);
398 if (best) {
399 if (!find_all)
400 best->next = NULL;
401 *reaches = weight(best);
403 free(weights);
404 return best;
407 static void argv_array_push(struct argv_array *array, const char *string)
409 ALLOC_GROW(array->argv, array->argv_nr + 1, array->argv_alloc);
410 array->argv[array->argv_nr++] = string;
413 static void argv_array_push_sha1(struct argv_array *array,
414 const unsigned char *sha1,
415 const char *format)
417 struct strbuf buf = STRBUF_INIT;
418 strbuf_addf(&buf, format, sha1_to_hex(sha1));
419 argv_array_push(array, strbuf_detach(&buf, NULL));
422 static int register_ref(const char *refname, const unsigned char *sha1,
423 int flags, void *cb_data)
425 if (!strcmp(refname, "bad")) {
426 current_bad_sha1 = sha1;
427 } else if (!prefixcmp(refname, "good-")) {
428 sha1_array_append(&good_revs, sha1);
429 } else if (!prefixcmp(refname, "skip-")) {
430 sha1_array_append(&skipped_revs, sha1);
433 return 0;
436 static int read_bisect_refs(void)
438 return for_each_ref_in("refs/bisect/", register_ref, NULL);
441 static void read_bisect_paths(struct argv_array *array)
443 struct strbuf str = STRBUF_INIT;
444 const char *filename = git_path("BISECT_NAMES");
445 FILE *fp = fopen(filename, "r");
447 if (!fp)
448 die_errno("Could not open file '%s'", filename);
450 while (strbuf_getline(&str, fp, '\n') != EOF) {
451 char *quoted;
452 int res;
454 strbuf_trim(&str);
455 quoted = strbuf_detach(&str, NULL);
456 res = sq_dequote_to_argv(quoted, &array->argv,
457 &array->argv_nr, &array->argv_alloc);
458 if (res)
459 die("Badly quoted content in file '%s': %s",
460 filename, quoted);
463 strbuf_release(&str);
464 fclose(fp);
467 static char *join_sha1_array_hex(struct sha1_array *array, char delim)
469 struct strbuf joined_hexs = STRBUF_INIT;
470 int i;
472 for (i = 0; i < array->nr; i++) {
473 strbuf_addstr(&joined_hexs, sha1_to_hex(array->sha1[i]));
474 if (i + 1 < array->nr)
475 strbuf_addch(&joined_hexs, delim);
478 return strbuf_detach(&joined_hexs, NULL);
482 * In this function, passing a not NULL skipped_first is very special.
483 * It means that we want to know if the first commit in the list is
484 * skipped because we will want to test a commit away from it if it is
485 * indeed skipped.
486 * So if the first commit is skipped, we cannot take the shortcut to
487 * just "return list" when we find the first non skipped commit, we
488 * have to return a fully filtered list.
490 * We use (*skipped_first == -1) to mean "it has been found that the
491 * first commit is not skipped". In this case *skipped_first is set back
492 * to 0 just before the function returns.
494 struct commit_list *filter_skipped(struct commit_list *list,
495 struct commit_list **tried,
496 int show_all,
497 int *count,
498 int *skipped_first)
500 struct commit_list *filtered = NULL, **f = &filtered;
502 *tried = NULL;
504 if (skipped_first)
505 *skipped_first = 0;
506 if (count)
507 *count = 0;
509 if (!skipped_revs.nr)
510 return list;
512 while (list) {
513 struct commit_list *next = list->next;
514 list->next = NULL;
515 if (0 <= sha1_array_lookup(&skipped_revs,
516 list->item->object.sha1)) {
517 if (skipped_first && !*skipped_first)
518 *skipped_first = 1;
519 /* Move current to tried list */
520 *tried = list;
521 tried = &list->next;
522 } else {
523 if (!show_all) {
524 if (!skipped_first || !*skipped_first)
525 return list;
526 } else if (skipped_first && !*skipped_first) {
527 /* This means we know it's not skipped */
528 *skipped_first = -1;
530 /* Move current to filtered list */
531 *f = list;
532 f = &list->next;
533 if (count)
534 (*count)++;
536 list = next;
539 if (skipped_first && *skipped_first == -1)
540 *skipped_first = 0;
542 return filtered;
545 #define PRN_MODULO 32768
548 * This is a pseudo random number generator based on "man 3 rand".
549 * It is not used properly because the seed is the argument and it
550 * is increased by one between each call, but that should not matter
551 * for this application.
553 static int get_prn(int count) {
554 count = count * 1103515245 + 12345;
555 return ((unsigned)(count/65536) % PRN_MODULO);
559 * Custom integer square root from
560 * http://en.wikipedia.org/wiki/Integer_square_root
562 static int sqrti(int val)
564 float d, x = val;
566 if (val == 0)
567 return 0;
569 do {
570 float y = (x + (float)val / x) / 2;
571 d = (y > x) ? y - x : x - y;
572 x = y;
573 } while (d >= 0.5);
575 return (int)x;
578 static struct commit_list *skip_away(struct commit_list *list, int count)
580 struct commit_list *cur, *previous;
581 int prn, index, i;
583 prn = get_prn(count);
584 index = (count * prn / PRN_MODULO) * sqrti(prn) / sqrti(PRN_MODULO);
586 cur = list;
587 previous = NULL;
589 for (i = 0; cur; cur = cur->next, i++) {
590 if (i == index) {
591 if (hashcmp(cur->item->object.sha1, current_bad_sha1))
592 return cur;
593 if (previous)
594 return previous;
595 return list;
597 previous = cur;
600 return list;
603 static struct commit_list *managed_skipped(struct commit_list *list,
604 struct commit_list **tried)
606 int count, skipped_first;
608 *tried = NULL;
610 if (!skipped_revs.nr)
611 return list;
613 list = filter_skipped(list, tried, 0, &count, &skipped_first);
615 if (!skipped_first)
616 return list;
618 return skip_away(list, count);
621 static void bisect_rev_setup(struct rev_info *revs, const char *prefix,
622 const char *bad_format, const char *good_format,
623 int read_paths)
625 struct argv_array rev_argv = { NULL, 0, 0 };
626 int i;
628 init_revisions(revs, prefix);
629 revs->abbrev = 0;
630 revs->commit_format = CMIT_FMT_UNSPECIFIED;
632 /* rev_argv.argv[0] will be ignored by setup_revisions */
633 argv_array_push(&rev_argv, xstrdup("bisect_rev_setup"));
634 argv_array_push_sha1(&rev_argv, current_bad_sha1, bad_format);
635 for (i = 0; i < good_revs.nr; i++)
636 argv_array_push_sha1(&rev_argv, good_revs.sha1[i],
637 good_format);
638 argv_array_push(&rev_argv, xstrdup("--"));
639 if (read_paths)
640 read_bisect_paths(&rev_argv);
641 argv_array_push(&rev_argv, NULL);
643 setup_revisions(rev_argv.argv_nr, rev_argv.argv, revs, NULL);
646 static void bisect_common(struct rev_info *revs)
648 if (prepare_revision_walk(revs))
649 die("revision walk setup failed");
650 if (revs->tree_objects)
651 mark_edges_uninteresting(revs->commits, revs, NULL);
654 static void exit_if_skipped_commits(struct commit_list *tried,
655 const unsigned char *bad)
657 if (!tried)
658 return;
660 printf("There are only 'skip'ped commits left to test.\n"
661 "The first bad commit could be any of:\n");
662 print_commit_list(tried, "%s\n", "%s\n");
663 if (bad)
664 printf("%s\n", sha1_to_hex(bad));
665 printf("We cannot bisect more!\n");
666 exit(2);
669 static int is_expected_rev(const unsigned char *sha1)
671 const char *filename = git_path("BISECT_EXPECTED_REV");
672 struct stat st;
673 struct strbuf str = STRBUF_INIT;
674 FILE *fp;
675 int res = 0;
677 if (stat(filename, &st) || !S_ISREG(st.st_mode))
678 return 0;
680 fp = fopen(filename, "r");
681 if (!fp)
682 return 0;
684 if (strbuf_getline(&str, fp, '\n') != EOF)
685 res = !strcmp(str.buf, sha1_to_hex(sha1));
687 strbuf_release(&str);
688 fclose(fp);
690 return res;
693 static void mark_expected_rev(char *bisect_rev_hex)
695 int len = strlen(bisect_rev_hex);
696 const char *filename = git_path("BISECT_EXPECTED_REV");
697 int fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY, 0600);
699 if (fd < 0)
700 die_errno("could not create file '%s'", filename);
702 bisect_rev_hex[len] = '\n';
703 write_or_die(fd, bisect_rev_hex, len + 1);
704 bisect_rev_hex[len] = '\0';
706 if (close(fd) < 0)
707 die("closing file %s: %s", filename, strerror(errno));
710 static int bisect_checkout(char *bisect_rev_hex)
712 int res;
714 mark_expected_rev(bisect_rev_hex);
716 argv_checkout[2] = bisect_rev_hex;
717 res = run_command_v_opt(argv_checkout, RUN_GIT_CMD);
718 if (res)
719 exit(res);
721 argv_show_branch[1] = bisect_rev_hex;
722 return run_command_v_opt(argv_show_branch, RUN_GIT_CMD);
725 static struct commit *get_commit_reference(const unsigned char *sha1)
727 struct commit *r = lookup_commit_reference(sha1);
728 if (!r)
729 die("Not a valid commit name %s", sha1_to_hex(sha1));
730 return r;
733 static struct commit **get_bad_and_good_commits(int *rev_nr)
735 int len = 1 + good_revs.nr;
736 struct commit **rev = xmalloc(len * sizeof(*rev));
737 int i, n = 0;
739 rev[n++] = get_commit_reference(current_bad_sha1);
740 for (i = 0; i < good_revs.nr; i++)
741 rev[n++] = get_commit_reference(good_revs.sha1[i]);
742 *rev_nr = n;
744 return rev;
747 static void handle_bad_merge_base(void)
749 if (is_expected_rev(current_bad_sha1)) {
750 char *bad_hex = sha1_to_hex(current_bad_sha1);
751 char *good_hex = join_sha1_array_hex(&good_revs, ' ');
753 fprintf(stderr, "The merge base %s is bad.\n"
754 "This means the bug has been fixed "
755 "between %s and [%s].\n",
756 bad_hex, bad_hex, good_hex);
758 exit(3);
761 fprintf(stderr, "Some good revs are not ancestor of the bad rev.\n"
762 "git bisect cannot work properly in this case.\n"
763 "Maybe you mistake good and bad revs?\n");
764 exit(1);
767 static void handle_skipped_merge_base(const unsigned char *mb)
769 char *mb_hex = sha1_to_hex(mb);
770 char *bad_hex = sha1_to_hex(current_bad_sha1);
771 char *good_hex = join_sha1_array_hex(&good_revs, ' ');
773 warning("the merge base between %s and [%s] "
774 "must be skipped.\n"
775 "So we cannot be sure the first bad commit is "
776 "between %s and %s.\n"
777 "We continue anyway.",
778 bad_hex, good_hex, mb_hex, bad_hex);
779 free(good_hex);
783 * "check_merge_bases" checks that merge bases are not "bad".
785 * - If one is "bad", it means the user assumed something wrong
786 * and we must exit with a non 0 error code.
787 * - If one is "good", that's good, we have nothing to do.
788 * - If one is "skipped", we can't know but we should warn.
789 * - If we don't know, we should check it out and ask the user to test.
791 static void check_merge_bases(void)
793 struct commit_list *result;
794 int rev_nr;
795 struct commit **rev = get_bad_and_good_commits(&rev_nr);
797 result = get_merge_bases_many(rev[0], rev_nr - 1, rev + 1, 0);
799 for (; result; result = result->next) {
800 const unsigned char *mb = result->item->object.sha1;
801 if (!hashcmp(mb, current_bad_sha1)) {
802 handle_bad_merge_base();
803 } else if (0 <= sha1_array_lookup(&good_revs, mb)) {
804 continue;
805 } else if (0 <= sha1_array_lookup(&skipped_revs, mb)) {
806 handle_skipped_merge_base(mb);
807 } else {
808 printf("Bisecting: a merge base must be tested\n");
809 exit(bisect_checkout(sha1_to_hex(mb)));
813 free(rev);
814 free_commit_list(result);
817 static int check_ancestors(const char *prefix)
819 struct rev_info revs;
820 struct object_array pending_copy;
821 int i, res;
823 bisect_rev_setup(&revs, prefix, "^%s", "%s", 0);
825 /* Save pending objects, so they can be cleaned up later. */
826 memset(&pending_copy, 0, sizeof(pending_copy));
827 for (i = 0; i < revs.pending.nr; i++)
828 add_object_array(revs.pending.objects[i].item,
829 revs.pending.objects[i].name,
830 &pending_copy);
832 bisect_common(&revs);
833 res = (revs.commits != NULL);
835 /* Clean up objects used, as they will be reused. */
836 for (i = 0; i < pending_copy.nr; i++) {
837 struct object *o = pending_copy.objects[i].item;
838 clear_commit_marks((struct commit *)o, ALL_REV_FLAGS);
841 return res;
845 * "check_good_are_ancestors_of_bad" checks that all "good" revs are
846 * ancestor of the "bad" rev.
848 * If that's not the case, we need to check the merge bases.
849 * If a merge base must be tested by the user, its source code will be
850 * checked out to be tested by the user and we will exit.
852 static void check_good_are_ancestors_of_bad(const char *prefix)
854 const char *filename = git_path("BISECT_ANCESTORS_OK");
855 struct stat st;
856 int fd;
858 if (!current_bad_sha1)
859 die("a bad revision is needed");
861 /* Check if file BISECT_ANCESTORS_OK exists. */
862 if (!stat(filename, &st) && S_ISREG(st.st_mode))
863 return;
865 /* Bisecting with no good rev is ok. */
866 if (good_revs.nr == 0)
867 return;
869 /* Check if all good revs are ancestor of the bad rev. */
870 if (check_ancestors(prefix))
871 check_merge_bases();
873 /* Create file BISECT_ANCESTORS_OK. */
874 fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY, 0600);
875 if (fd < 0)
876 warning("could not create file '%s': %s",
877 filename, strerror(errno));
878 else
879 close(fd);
883 * This does "git diff-tree --pretty COMMIT" without one fork+exec.
885 static void show_diff_tree(const char *prefix, struct commit *commit)
887 struct rev_info opt;
889 /* diff-tree init */
890 init_revisions(&opt, prefix);
891 git_config(git_diff_basic_config, NULL); /* no "diff" UI options */
892 opt.abbrev = 0;
893 opt.diff = 1;
895 /* This is what "--pretty" does */
896 opt.verbose_header = 1;
897 opt.use_terminator = 0;
898 opt.commit_format = CMIT_FMT_DEFAULT;
900 /* diff-tree init */
901 if (!opt.diffopt.output_format)
902 opt.diffopt.output_format = DIFF_FORMAT_RAW;
904 log_tree_commit(&opt, commit);
908 * We use the convention that exiting with an exit code 10 means that
909 * the bisection process finished successfully.
910 * In this case the calling shell script should exit 0.
912 int bisect_next_all(const char *prefix)
914 struct rev_info revs;
915 struct commit_list *tried;
916 int reaches = 0, all = 0, nr, steps;
917 const unsigned char *bisect_rev;
918 char bisect_rev_hex[41];
920 if (read_bisect_refs())
921 die("reading bisect refs failed");
923 check_good_are_ancestors_of_bad(prefix);
925 bisect_rev_setup(&revs, prefix, "%s", "^%s", 1);
926 revs.limited = 1;
928 bisect_common(&revs);
930 revs.commits = find_bisection(revs.commits, &reaches, &all,
931 !!skipped_revs.nr);
932 revs.commits = managed_skipped(revs.commits, &tried);
934 if (!revs.commits) {
936 * We should exit here only if the "bad"
937 * commit is also a "skip" commit.
939 exit_if_skipped_commits(tried, NULL);
941 printf("%s was both good and bad\n",
942 sha1_to_hex(current_bad_sha1));
943 exit(1);
946 if (!all) {
947 fprintf(stderr, "No testable commit found.\n"
948 "Maybe you started with bad path parameters?\n");
949 exit(4);
952 bisect_rev = revs.commits->item->object.sha1;
953 memcpy(bisect_rev_hex, sha1_to_hex(bisect_rev), 41);
955 if (!hashcmp(bisect_rev, current_bad_sha1)) {
956 exit_if_skipped_commits(tried, current_bad_sha1);
957 printf("%s is the first bad commit\n", bisect_rev_hex);
958 show_diff_tree(prefix, revs.commits->item);
959 /* This means the bisection process succeeded. */
960 exit(10);
963 nr = all - reaches - 1;
964 steps = estimate_bisect_steps(all);
965 printf("Bisecting: %d revision%s left to test after this "
966 "(roughly %d step%s)\n", nr, (nr == 1 ? "" : "s"),
967 steps, (steps == 1 ? "" : "s"));
969 return bisect_checkout(bisect_rev_hex);