10 #include "commit-slab-decl.h"
13 #include "list-objects-filter-options.h"
17 * The revision walking API offers functions to build a list of revisions
18 * and then iterate over that list.
23 * The walking API has a given calling sequence: first you need to initialize
24 * a rev_info structure, then add revisions to control what kind of revision
25 * list do you want to get, finally you can iterate over the revision list.
29 /* Remember to update object flag allocation in object.h */
31 #define UNINTERESTING (1u<<1)
32 #define TREESAME (1u<<2)
34 #define TMP_MARK (1u<<4) /* for isolated cases; clean after use */
35 #define BOUNDARY (1u<<5)
36 #define CHILD_SHOWN (1u<<6)
37 #define ADDED (1u<<7) /* Parents already parsed and added? */
38 #define SYMMETRIC_LEFT (1u<<8)
39 #define PATCHSAME (1u<<9)
40 #define BOTTOM (1u<<10)
42 /* WARNING: This is also used as REACHABLE in commit-graph.c. */
43 #define PULL_MERGE (1u<<15)
45 #define TOPO_WALK_EXPLORED (1u<<23)
46 #define TOPO_WALK_INDEGREE (1u<<24)
49 * Indicates object was reached by traversal. i.e. not given by user on
50 * command-line or stdin.
52 #define NOT_USER_GIVEN (1u<<25)
53 #define TRACK_LINEAR (1u<<26)
54 #define ANCESTRY_PATH (1u<<27)
55 #define ALL_REV_FLAGS (((1u<<11)-1) | NOT_USER_GIVEN | TRACK_LINEAR | PULL_MERGE)
57 #define DECORATE_SHORT_REFS 1
58 #define DECORATE_FULL_REFS 2
66 struct bloom_filter_settings
;
68 struct parse_opt_ctx_t
;
69 define_shared_commit_slab(revision_sources
, char *);
71 struct rev_cmdline_info
{
74 struct rev_cmdline_entry
{
89 struct ref_exclusions
{
91 * Excluded refs is a list of wildmatch patterns. If any of the
92 * patterns match, the reference will be excluded.
94 struct string_list excluded_refs
;
97 * Hidden refs is a list of patterns that is to be hidden via
100 struct strvec hidden_refs
;
103 * Indicates whether hidden refs have been configured. This is to
104 * distinguish between no hidden refs existing and hidden refs not
107 char hidden_refs_configured
;
111 * Initialize a `struct ref_exclusions` with a macro.
113 #define REF_EXCLUSIONS_INIT { \
114 .excluded_refs = STRING_LIST_INIT_DUP, \
115 .hidden_refs = STRVEC_INIT, \
119 struct topo_walk_info
;
123 struct commit_list
*commits
;
124 struct object_array pending
;
125 struct repository
*repo
;
127 /* Parents of shown commits */
128 struct object_array boundary_commits
;
130 /* The end-points specified by the end user */
131 struct rev_cmdline_info cmdline
;
134 * Object filter options. No filtering is specified
135 * if and only if filter.choice is zero.
137 struct list_objects_filter_options filter
;
139 /* excluding from --branches, --refs, etc. expansion */
140 struct ref_exclusions ref_excludes
;
142 /* Basic information */
145 char *ps_matched
; /* optionally record matches of prune_data */
146 struct pathspec prune_data
;
149 * Whether the arguments parsed by setup_revisions() included any
150 * "input" revisions that might still have yielded an empty pending
151 * list (e.g., patterns like "--all" or "--glob").
156 * Whether we read from stdin due to the --stdin option.
161 enum rev_sort_order sort_order
;
163 unsigned int early_output
;
165 unsigned int ignore_missing
:1,
166 ignore_missing_links
:1;
168 /* Traversal flags */
169 unsigned int dense
:1,
173 remove_empty_trees
:1,
178 simplify_by_decoration
:1,
185 edge_hint_aggressive
:1,
198 reverse_output_stage
:1,
204 /* True if --ancestry-path was specified without an
205 * argument. The bottom revisions are implicitly
206 * the arguments in this case.
208 ancestry_path_implicit_bottoms
:1,
211 exclude_first_parent_only
:1,
212 line_level_traverse
:1,
213 tree_blobs_in_commit_order
:1,
216 * Blobs are shown without regard for their existence.
217 * But not so for trees/commits: unless exclude_promisor_objects
218 * is set and the tree in question is a promisor object;
219 * OR ignore_missing_links is set, the revision walker
220 * dies with a "bad <type> object HASH" message when
221 * encountering a missing object. For callers that can
222 * handle missing trees/commits and want them to be filterable
223 * and showable, set this to true. The revision walker
224 * will filter and show such a missing object as usual,
225 * but will not attempt to recurse into this tree/commit
226 * object. The revision walker will also set the MISSING
227 * flag for such objects.
229 do_not_die_on_missing_objects
:1,
231 /* for internal use only */
232 exclude_promisor_objects
:1;
241 always_show_header
:1,
242 /* Diff-merge flags */
243 explicit_diff_merges
: 1,
245 merges_imply_patch
:1,
248 combined_all_paths
:1,
249 dense_combined_merges
:1,
250 first_parent_merges
:1,
255 unsigned int shown_one
:1,
259 show_notes_by_default
:1,
263 abbrev_commit_given
:1,
267 date_mode_explicit
:1,
269 force_in_body_from
:1,
270 encode_email_headers
:1,
272 unsigned int disable_stdin
:1;
273 /* --show-linear-break */
274 unsigned int track_linear
:1,
278 struct date_mode date_mode
;
279 int expand_tabs_in_log
; /* unset if negative */
280 int expand_tabs_in_log_default
;
283 enum cmit_fmt commit_format
;
284 struct log_info
*loginfo
;
286 const char *mime_boundary
;
287 const char *patch_suffix
;
289 const char *reroll_count
;
291 struct ident_split from_ident
;
292 struct string_list
*ref_message_ids
;
294 const char *extra_headers
;
295 const char *log_reencode
;
296 const char *subject_prefix
;
300 struct string_list
*mailmap
;
302 /* Filter by commit log message */
303 struct grep_opt grep_filter
;
305 /* Display history graph */
306 struct git_graph
*graph
;
312 timestamp_t max_age_as_filter
;
316 int (*include_check
)(struct commit
*, void *);
317 int (*include_check_obj
)(struct object
*obj
, void *);
318 void *include_check_data
;
320 /* diff info for patches and for paths limiting */
321 struct diff_options diffopt
;
322 struct diff_options pruning
;
324 struct reflog_walk_info
*reflog_info
;
325 struct decoration children
;
326 struct decoration merge_simplification
;
327 struct decoration treesame
;
329 /* notes-specific options: which refs to show */
330 struct display_notes_opt notes_opt
;
333 const struct object_id
*idiff_oid1
;
334 const struct object_id
*idiff_oid2
;
335 const char *idiff_title
;
341 const char *rdiff_title
;
348 /* line level range that we are chasing */
349 struct decoration line_log_data
;
351 /* copies of the parent lists, for --full-diff display */
352 struct saved_parents
*saved_parents_slab
;
354 struct commit_list
*previous_parents
;
355 struct commit_list
*ancestry_path_bottoms
;
356 const char *break_bar
;
358 struct revision_sources
*sources
;
360 struct topo_walk_info
*topo_walk_info
;
362 /* Commit graph bloom filter fields */
363 /* The bloom filter key(s) for the pathspec */
364 struct bloom_key
*bloom_keys
;
368 * The bloom filter settings used to generate the key.
369 * This is loaded from the commit-graph being used.
371 struct bloom_filter_settings
*bloom_filter_settings
;
373 /* misc. flags related to '--no-kept-objects' */
374 unsigned keep_pack_cache_flags
;
376 /* Location where temporary objects for remerge-diff are written. */
377 struct tmp_objdir
*remerge_objdir
;
379 /* Missing commits to be tracked without failing traversal. */
380 struct oidset missing_commits
;
384 * Initialize the "struct rev_info" structure with a macro.
386 * This will not fully initialize a "struct rev_info", the
387 * repo_init_revisions() function needs to be called before
388 * setup_revisions() and any revision walking takes place.
390 * Use REV_INFO_INIT to make the "struct rev_info" safe for passing to
391 * release_revisions() when it's inconvenient (e.g. due to a "goto
392 * cleanup" pattern) to arrange for repo_init_revisions() to be called
393 * before release_revisions() is called.
395 * Initializing with this REV_INFO_INIT is redundant to invoking
396 * repo_init_revisions(). If repo_init_revisions() is guaranteed to be
397 * called before release_revisions() the "struct rev_info" can be left
400 #define REV_INFO_INIT { \
401 .abbrev = DEFAULT_ABBREV, \
402 .simplify_history = 1, \
403 .pruning.flags.recursive = 1, \
404 .pruning.flags.quick = 1, \
405 .sort_order = REV_SORT_IN_GRAPH_ORDER, \
408 .max_age_as_filter = -1, \
413 .expand_tabs_in_log = -1, \
414 .commit_format = CMIT_FMT_DEFAULT, \
415 .expand_tabs_in_log_default = 8, \
419 * Initialize a rev_info structure with default values. The third parameter may
420 * be NULL or can be prefix path, and then the `.prefix` variable will be set
421 * to it. This is typically the first function you want to call when you want
422 * to deal with a revision list. After calling this function, you are free to
423 * customize options, like set `.ignore_merges` to 0 if you don't want to
424 * ignore merges, and so on.
426 void repo_init_revisions(struct repository
*r
,
427 struct rev_info
*revs
,
431 * Parse revision information, filling in the `rev_info` structure, and
432 * removing the used arguments from the argument list. Returns the number
433 * of arguments left that weren't recognized, which are also moved to the
434 * head of the argument list. The last parameter is used in case no
435 * parameter given by the first two arguments.
437 struct setup_revision_opt
{
439 void (*tweak
)(struct rev_info
*);
440 unsigned int assume_dashdash
:1,
441 allow_exclude_promisor_objects
:1,
442 free_removed_argv_elements
:1;
445 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
,
446 struct setup_revision_opt
*);
449 * Free data allocated in a "struct rev_info" after it's been
450 * initialized with repo_init_revisions() or REV_INFO_INIT.
452 void release_revisions(struct rev_info
*revs
);
454 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
455 const struct option
*options
,
456 const char * const usagestr
[]);
457 #define REVARG_CANNOT_BE_FILENAME 01
458 #define REVARG_COMMITTISH 02
459 int handle_revision_arg(const char *arg
, struct rev_info
*revs
,
460 int flags
, unsigned revarg_opt
);
461 void revision_opts_finish(struct rev_info
*revs
);
464 * Reset the flags used by the revision walking api. You can use this to do
465 * multiple sequential revision walks.
467 void reset_revision_walk(void);
470 * Prepares the rev_info structure for a walk. You should check if it returns
471 * any error (non-zero return code) and if it does not, you can start using
472 * get_revision() to do the iteration.
474 int prepare_revision_walk(struct rev_info
*revs
);
477 * Takes a pointer to a `rev_info` structure and iterates over it, returning a
478 * `struct commit *` each time you call it. The end of the revision list is
479 * indicated by returning a NULL pointer.
481 struct commit
*get_revision(struct rev_info
*revs
);
483 const char *get_revision_mark(const struct rev_info
*revs
,
484 const struct commit
*commit
);
485 void put_revision_mark(const struct rev_info
*revs
,
486 const struct commit
*commit
);
488 void mark_parents_uninteresting(struct rev_info
*revs
, struct commit
*commit
);
489 void mark_tree_uninteresting(struct repository
*r
, struct tree
*tree
);
490 void mark_trees_uninteresting_sparse(struct repository
*r
, struct oidset
*trees
);
492 void show_object_with_name(FILE *, struct object
*, const char *);
495 * Helpers to check if a reference should be excluded.
498 int ref_excluded(const struct ref_exclusions
*exclusions
, const char *path
);
499 void init_ref_exclusions(struct ref_exclusions
*);
500 void clear_ref_exclusions(struct ref_exclusions
*);
501 void add_ref_exclusion(struct ref_exclusions
*, const char *exclude
);
502 void exclude_hidden_refs(struct ref_exclusions
*, const char *section
);
505 * This function can be used if you want to add commit objects as revision
506 * information. You can use the `UNINTERESTING` object flag to indicate if
507 * you want to include or exclude the given commit (and commits reachable
508 * from the given commit) from the revision list.
510 * NOTE: If you have the commits as a string list then you probably want to
511 * use setup_revisions(), instead of parsing each string and using this
514 void add_pending_object(struct rev_info
*revs
,
515 struct object
*obj
, const char *name
);
517 void add_pending_oid(struct rev_info
*revs
,
518 const char *name
, const struct object_id
*oid
,
521 void add_head_to_pending(struct rev_info
*);
522 void add_reflogs_to_pending(struct rev_info
*, unsigned int flags
);
523 void add_index_objects_to_pending(struct rev_info
*, unsigned int flags
);
531 enum commit_action
get_commit_action(struct rev_info
*revs
,
532 struct commit
*commit
);
533 enum commit_action
simplify_commit(struct rev_info
*revs
,
534 struct commit
*commit
);
536 enum rewrite_result
{
538 rewrite_one_noparents
,
542 typedef enum rewrite_result (*rewrite_parent_fn_t
)(struct rev_info
*revs
, struct commit
**pp
);
544 int rewrite_parents(struct rev_info
*revs
,
545 struct commit
*commit
,
546 rewrite_parent_fn_t rewrite_parent
);
549 * The log machinery saves the original parent list so that
550 * get_saved_parents() can later tell what the real parents of the
551 * commits are, when commit->parents has been modified by history
554 * get_saved_parents() will transparently return commit->parents if
555 * history simplification is off.
557 struct commit_list
*get_saved_parents(struct rev_info
*revs
, const struct commit
*commit
);
560 * Global for the (undocumented) "--early-output" flag for "git log".
562 typedef void (*show_early_output_fn_t
)(struct rev_info
*, struct commit_list
*);
563 extern volatile show_early_output_fn_t show_early_output
;