6 #include "list-objects.h"
7 #include "list-objects-filter.h"
8 #include "list-objects-filter-options.h"
9 #include "object-store.h"
11 #include "pack-bitmap.h"
17 #include "reflog-walk.h"
20 #include "object-store.h"
22 static const char rev_list_usage
[] =
23 "git rev-list [OPTION] <commit-id>... [ -- paths... ]\n"
26 " --max-age=<epoch>\n"
27 " --min-age=<epoch>\n"
30 " --min-parents=<n>\n"
32 " --max-parents=<n>\n"
45 " formatting output:\n"
48 " --objects | --objects-edge\n"
50 " --header | --pretty\n"
51 " --abbrev=<n> | --no-abbrev\n"
61 static struct progress
*progress
;
62 static unsigned progress_counter
;
64 static struct list_objects_filter_options filter_options
;
65 static struct oidset omitted_objects
;
66 static int arg_print_omitted
; /* print objects omitted by filter */
68 static struct oidset missing_objects
;
70 MA_ERROR
= 0, /* fail if any missing objects are encountered */
71 MA_ALLOW_ANY
, /* silently allow ALL missing objects */
72 MA_PRINT
, /* print ALL missing objects in special section */
73 MA_ALLOW_PROMISOR
, /* silently allow all missing PROMISOR objects */
75 static enum missing_action arg_missing_action
;
77 #define DEFAULT_OIDSET_SIZE (16*1024)
79 static void finish_commit(struct commit
*commit
, void *data
);
80 static void show_commit(struct commit
*commit
, void *data
)
82 struct rev_list_info
*info
= data
;
83 struct rev_info
*revs
= info
->revs
;
85 display_progress(progress
, ++progress_counter
);
87 if (info
->flags
& REV_LIST_QUIET
) {
88 finish_commit(commit
, data
);
92 graph_show_commit(revs
->graph
);
95 if (commit
->object
.flags
& PATCHSAME
)
97 else if (commit
->object
.flags
& SYMMETRIC_LEFT
)
101 finish_commit(commit
, data
);
105 if (info
->show_timestamp
)
106 printf("%"PRItime
" ", commit
->date
);
107 if (info
->header_prefix
)
108 fputs(info
->header_prefix
, stdout
);
111 fputs(get_revision_mark(revs
, commit
), stdout
);
112 if (revs
->abbrev_commit
&& revs
->abbrev
)
113 fputs(find_unique_abbrev(&commit
->object
.oid
, revs
->abbrev
),
116 fputs(oid_to_hex(&commit
->object
.oid
), stdout
);
117 if (revs
->print_parents
) {
118 struct commit_list
*parents
= commit
->parents
;
120 printf(" %s", oid_to_hex(&parents
->item
->object
.oid
));
121 parents
= parents
->next
;
124 if (revs
->children
.name
) {
125 struct commit_list
*children
;
127 children
= lookup_decoration(&revs
->children
, &commit
->object
);
129 printf(" %s", oid_to_hex(&children
->item
->object
.oid
));
130 children
= children
->next
;
133 show_decorations(revs
, commit
);
134 if (revs
->commit_format
== CMIT_FMT_ONELINE
)
139 if (revs
->verbose_header
) {
140 struct strbuf buf
= STRBUF_INIT
;
141 struct pretty_print_context ctx
= {0};
142 ctx
.abbrev
= revs
->abbrev
;
143 ctx
.date_mode
= revs
->date_mode
;
144 ctx
.date_mode_explicit
= revs
->date_mode_explicit
;
145 ctx
.fmt
= revs
->commit_format
;
146 ctx
.output_encoding
= get_log_output_encoding();
147 ctx
.color
= revs
->diffopt
.use_color
;
148 pretty_print_commit(&ctx
, commit
, &buf
);
150 if (revs
->commit_format
!= CMIT_FMT_ONELINE
)
151 graph_show_oneline(revs
->graph
);
153 graph_show_commit_msg(revs
->graph
, stdout
, &buf
);
156 * Add a newline after the commit message.
158 * Usually, this newline produces a blank
159 * padding line between entries, in which case
160 * we need to add graph padding on this line.
162 * However, the commit message may not end in a
163 * newline. In this case the newline simply
164 * ends the last line of the commit message,
165 * and we don't need any graph output. (This
166 * always happens with CMIT_FMT_ONELINE, and it
167 * happens with CMIT_FMT_USERFORMAT when the
168 * format doesn't explicitly end in a newline.)
170 if (buf
.len
&& buf
.buf
[buf
.len
- 1] == '\n')
171 graph_show_padding(revs
->graph
);
172 putchar(info
->hdr_termination
);
175 * If the message buffer is empty, just show
176 * the rest of the graph output for this
179 if (graph_show_remainder(revs
->graph
))
181 if (revs
->commit_format
== CMIT_FMT_ONELINE
)
184 strbuf_release(&buf
);
186 if (graph_show_remainder(revs
->graph
))
189 maybe_flush_or_die(stdout
, "stdout");
190 finish_commit(commit
, data
);
193 static void finish_commit(struct commit
*commit
, void *data
)
195 if (commit
->parents
) {
196 free_commit_list(commit
->parents
);
197 commit
->parents
= NULL
;
199 free_commit_buffer(commit
);
202 static inline void finish_object__ma(struct object
*obj
)
205 * Whether or not we try to dynamically fetch missing objects
206 * from the server, we currently DO NOT have the object. We
207 * can either print, allow (ignore), or conditionally allow
210 switch (arg_missing_action
) {
212 die("missing blob object '%s'", oid_to_hex(&obj
->oid
));
219 oidset_insert(&missing_objects
, &obj
->oid
);
222 case MA_ALLOW_PROMISOR
:
223 if (is_promisor_object(&obj
->oid
))
225 die("unexpected missing blob object '%s'",
226 oid_to_hex(&obj
->oid
));
230 BUG("unhandled missing_action");
235 static int finish_object(struct object
*obj
, const char *name
, void *cb_data
)
237 struct rev_list_info
*info
= cb_data
;
238 if (obj
->type
== OBJ_BLOB
&& !has_object_file(&obj
->oid
)) {
239 finish_object__ma(obj
);
242 if (info
->revs
->verify_objects
&& !obj
->parsed
&& obj
->type
!= OBJ_COMMIT
)
243 parse_object(the_repository
, &obj
->oid
);
247 static void show_object(struct object
*obj
, const char *name
, void *cb_data
)
249 struct rev_list_info
*info
= cb_data
;
250 if (finish_object(obj
, name
, cb_data
))
252 display_progress(progress
, ++progress_counter
);
253 if (info
->flags
& REV_LIST_QUIET
)
255 show_object_with_name(stdout
, obj
, name
);
258 static void show_edge(struct commit
*commit
)
260 printf("-%s\n", oid_to_hex(&commit
->object
.oid
));
263 static void print_var_str(const char *var
, const char *val
)
265 printf("%s='%s'\n", var
, val
);
268 static void print_var_int(const char *var
, int val
)
270 printf("%s=%d\n", var
, val
);
273 static int show_bisect_vars(struct rev_list_info
*info
, int reaches
, int all
)
275 int cnt
, flags
= info
->flags
;
276 char hex
[GIT_MAX_HEXSZ
+ 1] = "";
277 struct commit_list
*tried
;
278 struct rev_info
*revs
= info
->revs
;
283 revs
->commits
= filter_skipped(revs
->commits
, &tried
,
284 flags
& BISECT_SHOW_ALL
,
288 * revs->commits can reach "reaches" commits among
289 * "all" commits. If it is good, then there are
290 * (all-reaches) commits left to be bisected.
291 * On the other hand, if it is bad, then the set
292 * to bisect is "reaches".
293 * A bisect set of size N has (N-1) commits further
294 * to test, as we already know one bad one.
301 oid_to_hex_r(hex
, &revs
->commits
->item
->object
.oid
);
303 if (flags
& BISECT_SHOW_ALL
) {
304 traverse_commit_list(revs
, show_commit
, show_object
, info
);
308 print_var_str("bisect_rev", hex
);
309 print_var_int("bisect_nr", cnt
- 1);
310 print_var_int("bisect_good", all
- reaches
- 1);
311 print_var_int("bisect_bad", reaches
- 1);
312 print_var_int("bisect_all", all
);
313 print_var_int("bisect_steps", estimate_bisect_steps(all
));
318 static int show_object_fast(
319 const struct object_id
*oid
,
320 enum object_type type
,
323 struct packed_git
*found_pack
,
326 fprintf(stdout
, "%s\n", oid_to_hex(oid
));
330 static inline int parse_missing_action_value(const char *value
)
332 if (!strcmp(value
, "error")) {
333 arg_missing_action
= MA_ERROR
;
337 if (!strcmp(value
, "allow-any")) {
338 arg_missing_action
= MA_ALLOW_ANY
;
339 fetch_if_missing
= 0;
343 if (!strcmp(value
, "print")) {
344 arg_missing_action
= MA_PRINT
;
345 fetch_if_missing
= 0;
349 if (!strcmp(value
, "allow-promisor")) {
350 arg_missing_action
= MA_ALLOW_PROMISOR
;
351 fetch_if_missing
= 0;
358 int cmd_rev_list(int argc
, const char **argv
, const char *prefix
)
360 struct rev_info revs
;
361 struct rev_list_info info
;
364 int bisect_show_vars
= 0;
365 int bisect_find_all
= 0;
366 int use_bitmap_index
= 0;
367 const char *show_progress
= NULL
;
369 if (argc
== 2 && !strcmp(argv
[1], "-h"))
370 usage(rev_list_usage
);
372 git_config(git_default_config
, NULL
);
373 init_revisions(&revs
, prefix
);
374 revs
.abbrev
= DEFAULT_ABBREV
;
375 revs
.allow_exclude_promisor_objects_opt
= 1;
376 revs
.commit_format
= CMIT_FMT_UNSPECIFIED
;
379 * Scan the argument list before invoking setup_revisions(), so that we
380 * know if fetch_if_missing needs to be set to 0.
382 * "--exclude-promisor-objects" acts as a pre-filter on missing objects
383 * by not crossing the boundary from realized objects to promisor
386 * Let "--missing" to conditionally set fetch_if_missing.
388 for (i
= 1; i
< argc
; i
++) {
389 const char *arg
= argv
[i
];
390 if (!strcmp(arg
, "--exclude-promisor-objects")) {
391 fetch_if_missing
= 0;
392 revs
.exclude_promisor_objects
= 1;
396 for (i
= 1; i
< argc
; i
++) {
397 const char *arg
= argv
[i
];
398 if (skip_prefix(arg
, "--missing=", &arg
)) {
399 if (revs
.exclude_promisor_objects
)
400 die(_("cannot combine --exclude-promisor-objects and --missing"));
401 if (parse_missing_action_value(arg
))
406 argc
= setup_revisions(argc
, argv
, &revs
, NULL
);
408 memset(&info
, 0, sizeof(info
));
413 if (revs
.diffopt
.flags
.quick
)
414 info
.flags
|= REV_LIST_QUIET
;
415 for (i
= 1 ; i
< argc
; i
++) {
416 const char *arg
= argv
[i
];
418 if (!strcmp(arg
, "--header")) {
419 revs
.verbose_header
= 1;
422 if (!strcmp(arg
, "--timestamp")) {
423 info
.show_timestamp
= 1;
426 if (!strcmp(arg
, "--bisect")) {
430 if (!strcmp(arg
, "--bisect-all")) {
433 info
.flags
|= BISECT_SHOW_ALL
;
434 revs
.show_decorations
= 1;
437 if (!strcmp(arg
, "--bisect-vars")) {
439 bisect_show_vars
= 1;
442 if (!strcmp(arg
, "--use-bitmap-index")) {
443 use_bitmap_index
= 1;
446 if (!strcmp(arg
, "--test-bitmap")) {
447 test_bitmap_walk(&revs
);
450 if (skip_prefix(arg
, "--progress=", &arg
)) {
455 if (skip_prefix(arg
, ("--" CL_ARG__FILTER
"="), &arg
)) {
456 parse_list_objects_filter(&filter_options
, arg
);
457 if (filter_options
.choice
&& !revs
.blob_objects
)
458 die(_("object filtering requires --objects"));
459 if (filter_options
.choice
== LOFC_SPARSE_OID
&&
460 !filter_options
.sparse_oid_value
)
461 die(_("invalid sparse value '%s'"),
462 filter_options
.filter_spec
);
465 if (!strcmp(arg
, ("--no-" CL_ARG__FILTER
))) {
466 list_objects_filter_set_no_filter(&filter_options
);
469 if (!strcmp(arg
, "--filter-print-omitted")) {
470 arg_print_omitted
= 1;
474 if (!strcmp(arg
, "--exclude-promisor-objects"))
475 continue; /* already handled above */
476 if (skip_prefix(arg
, "--missing=", &arg
))
477 continue; /* already handled above */
479 usage(rev_list_usage
);
482 if (revs
.commit_format
!= CMIT_FMT_UNSPECIFIED
) {
483 /* The command line has a --pretty */
484 info
.hdr_termination
= '\n';
485 if (revs
.commit_format
== CMIT_FMT_ONELINE
)
486 info
.header_prefix
= "";
488 info
.header_prefix
= "commit ";
490 else if (revs
.verbose_header
)
491 /* Only --header was specified */
492 revs
.commit_format
= CMIT_FMT_RAW
;
494 if ((!revs
.commits
&& reflog_walk_empty(revs
.reflog_info
) &&
495 (!(revs
.tag_objects
|| revs
.tree_objects
|| revs
.blob_objects
) &&
497 !revs
.rev_input_given
) ||
499 usage(rev_list_usage
);
502 die(_("rev-list does not support display of notes"));
504 if (filter_options
.choice
&& use_bitmap_index
)
505 die(_("cannot combine --use-bitmap-index with object filtering"));
507 save_commit_buffer
= (revs
.verbose_header
||
508 revs
.grep_filter
.pattern_list
||
509 revs
.grep_filter
.header_list
);
514 progress
= start_delayed_progress(show_progress
, 0);
516 if (use_bitmap_index
&& !revs
.prune
) {
517 if (revs
.count
&& !revs
.left_right
&& !revs
.cherry_mark
) {
518 uint32_t commit_count
;
519 int max_count
= revs
.max_count
;
520 struct bitmap_index
*bitmap_git
;
521 if ((bitmap_git
= prepare_bitmap_walk(&revs
))) {
522 count_bitmap_commit_list(bitmap_git
, &commit_count
, NULL
, NULL
, NULL
);
523 if (max_count
>= 0 && max_count
< commit_count
)
524 commit_count
= max_count
;
525 printf("%d\n", commit_count
);
526 free_bitmap_index(bitmap_git
);
529 } else if (revs
.max_count
< 0 &&
530 revs
.tag_objects
&& revs
.tree_objects
&& revs
.blob_objects
) {
531 struct bitmap_index
*bitmap_git
;
532 if ((bitmap_git
= prepare_bitmap_walk(&revs
))) {
533 traverse_bitmap_commit_list(bitmap_git
, &show_object_fast
);
534 free_bitmap_index(bitmap_git
);
540 if (prepare_revision_walk(&revs
))
541 die("revision walk setup failed");
542 if (revs
.tree_objects
)
543 mark_edges_uninteresting(&revs
, show_edge
);
548 find_bisection(&revs
.commits
, &reaches
, &all
, bisect_find_all
);
550 if (bisect_show_vars
)
551 return show_bisect_vars(&info
, reaches
, all
);
554 if (arg_print_omitted
)
555 oidset_init(&omitted_objects
, DEFAULT_OIDSET_SIZE
);
556 if (arg_missing_action
== MA_PRINT
)
557 oidset_init(&missing_objects
, DEFAULT_OIDSET_SIZE
);
559 traverse_commit_list_filtered(
560 &filter_options
, &revs
, show_commit
, show_object
, &info
,
561 (arg_print_omitted
? &omitted_objects
: NULL
));
563 if (arg_print_omitted
) {
564 struct oidset_iter iter
;
565 struct object_id
*oid
;
566 oidset_iter_init(&omitted_objects
, &iter
);
567 while ((oid
= oidset_iter_next(&iter
)))
568 printf("~%s\n", oid_to_hex(oid
));
569 oidset_clear(&omitted_objects
);
571 if (arg_missing_action
== MA_PRINT
) {
572 struct oidset_iter iter
;
573 struct object_id
*oid
;
574 oidset_iter_init(&missing_objects
, &iter
);
575 while ((oid
= oidset_iter_next(&iter
)))
576 printf("?%s\n", oid_to_hex(oid
));
577 oidset_clear(&missing_objects
);
580 stop_progress(&progress
);
583 if (revs
.left_right
&& revs
.cherry_mark
)
584 printf("%d\t%d\t%d\n", revs
.count_left
, revs
.count_right
, revs
.count_same
);
585 else if (revs
.left_right
)
586 printf("%d\t%d\n", revs
.count_left
, revs
.count_right
);
587 else if (revs
.cherry_mark
)
588 printf("%d\t%d\n", revs
.count_left
+ revs
.count_right
, revs
.count_same
);
590 printf("%d\n", revs
.count_left
+ revs
.count_right
);