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.
272 static struct commit_list *find_bisection(struct commit_list *list,
273 int *reaches, int *all)
275 int n, nr, on_list, counted, distance;
276 struct commit_list *p, *best, *next, *last;
279 show_list("bisection 2 entry", 0, 0, list);
282 * Count the number of total and tree-changing items on the
283 * list, while reversing the list.
285 for (nr = on_list = 0, last = NULL, p = list;
288 unsigned flags = p->item->object.flags;
291 if (flags & UNINTERESTING)
295 if (!revs.prune_fn || (flags & TREECHANGE))
300 show_list("bisection 2 sorted", 0, nr, list);
303 weights = xcalloc(on_list, sizeof(*weights));
306 for (n = 0, p = list; p; p = p->next) {
307 struct commit *commit = p->item;
308 unsigned flags = commit->object.flags;
310 p->item->util = &weights[n++];
311 switch (count_interesting_parents(commit)) {
313 if (!revs.prune_fn || (flags & TREECHANGE)) {
316 show_list("bisection 2 count one",
320 * otherwise, it is known not to reach any
321 * tree-changing commit and gets weight 0.
333 show_list("bisection 2 initialize", counted, nr, list);
336 * If you have only one parent in the resulting set
337 * then you can reach one commit more than that parent
338 * can reach. So we do not have to run the expensive
339 * count_distance() for single strand of pearls.
341 * However, if you have more than one parents, you cannot
342 * just add their distance and one for yourself, since
343 * they usually reach the same ancestor and you would
344 * end up counting them twice that way.
346 * So we will first count distance of merges the usual
347 * way, and then fill the blanks using cheaper algorithm.
349 for (p = list; p; p = p->next) {
350 if (p->item->object.flags & UNINTERESTING)
355 distance = count_distance(p);
356 clear_distance(list);
357 weight_set(p, distance);
359 /* Does it happen to be at exactly half-way? */
360 if (halfway(p, distance, nr)) {
369 show_list("bisection 2 count_distance", counted, nr, list);
371 while (counted < nr) {
372 for (p = list; p; p = p->next) {
373 struct commit_list *q;
374 unsigned flags = p->item->object.flags;
378 for (q = p->item->parents; q; q = q->next) {
379 if (q->item->object.flags & UNINTERESTING)
388 * weight for p is unknown but q is known.
389 * add one for p itself if p is to be counted,
390 * otherwise inherit it from q directly.
392 if (!revs.prune_fn || (flags & TREECHANGE)) {
393 weight_set(p, weight(q)+1);
395 show_list("bisection 2 count one",
399 weight_set(p, weight(q));
401 /* Does it happen to be at exactly half-way? */
402 distance = weight(p);
403 if (halfway(p, distance, nr)) {
412 show_list("bisection 2 counted all", counted, nr, list);
414 /* Then find the best one */
417 for (p = list; p; p = p->next) {
418 unsigned flags = p->item->object.flags;
420 if (revs.prune_fn && !(flags & TREECHANGE))
422 distance = weight(p);
423 if (nr - distance < distance)
424 distance = nr - distance;
425 if (distance > counted) {
428 *reaches = weight(p);
437 static void read_revisions_from_stdin(struct rev_info *revs)
441 while (fgets(line, sizeof(line), stdin) != NULL) {
442 int len = strlen(line);
443 if (line[len - 1] == '\n')
448 die("options not supported in --stdin mode");
449 if (handle_revision_arg(line, revs, 0, 1))
450 die("bad revision '%s'", line);
454 int cmd_rev_list(int argc, const char **argv, const char *prefix)
456 struct commit_list *list;
458 int read_from_stdin = 0;
459 int bisect_show_vars = 0;
461 git_config(git_default_config);
462 init_revisions(&revs, prefix);
464 revs.commit_format = CMIT_FMT_UNSPECIFIED;
465 argc = setup_revisions(argc, argv, &revs, NULL);
467 for (i = 1 ; i < argc; i++) {
468 const char *arg = argv[i];
470 if (!strcmp(arg, "--header")) {
471 revs.verbose_header = 1;
474 if (!strcmp(arg, "--timestamp")) {
478 if (!strcmp(arg, "--bisect")) {
482 if (!strcmp(arg, "--bisect-vars")) {
484 bisect_show_vars = 1;
487 if (!strcmp(arg, "--stdin")) {
488 if (read_from_stdin++)
489 die("--stdin given twice?");
490 read_revisions_from_stdin(&revs);
493 usage(rev_list_usage);
496 if (revs.commit_format != CMIT_FMT_UNSPECIFIED) {
497 /* The command line has a --pretty */
498 hdr_termination = '\n';
499 if (revs.commit_format == CMIT_FMT_ONELINE)
502 header_prefix = "commit ";
504 else if (revs.verbose_header)
505 /* Only --header was specified */
506 revs.commit_format = CMIT_FMT_RAW;
511 (!(revs.tag_objects||revs.tree_objects||revs.blob_objects) &&
512 !revs.pending.nr)) ||
514 usage(rev_list_usage);
516 save_commit_buffer = revs.verbose_header || revs.grep_filter;
517 track_object_refs = 0;
521 prepare_revision_walk(&revs);
522 if (revs.tree_objects)
523 mark_edges_uninteresting(revs.commits, &revs, show_edge);
526 int reaches = reaches, all = all;
528 revs.commits = find_bisection(revs.commits, &reaches, &all);
529 if (bisect_show_vars) {
534 * revs.commits can reach "reaches" commits among
535 * "all" commits. If it is good, then there are
536 * (all-reaches) commits left to be bisected.
537 * On the other hand, if it is bad, then the set
538 * to bisect is "reaches".
539 * A bisect set of size N has (N-1) commits further
540 * to test, as we already know one bad one.
545 printf("bisect_rev=%s\n"
550 sha1_to_hex(revs.commits->item->object.sha1),
559 traverse_commit_list(&revs, show_commit, show_object);