Merge branch 'ab/config-based-hooks-base' into seen
[git] / revision.h
1 #ifndef REVISION_H
2 #define REVISION_H
3
4 #include "commit.h"
5 #include "parse-options.h"
6 #include "grep.h"
7 #include "notes.h"
8 #include "pretty.h"
9 #include "diff.h"
10 #include "commit-slab-decl.h"
11
12 /**
13  * The revision walking API offers functions to build a list of revisions
14  * and then iterate over that list.
15  *
16  * Calling sequence
17  * ----------------
18  *
19  * The walking API has a given calling sequence: first you need to initialize
20  * a rev_info structure, then add revisions to control what kind of revision
21  * list do you want to get, finally you can iterate over the revision list.
22  *
23  */
24
25 /* Remember to update object flag allocation in object.h */
26 #define SEEN            (1u<<0)
27 #define UNINTERESTING   (1u<<1)
28 #define TREESAME        (1u<<2)
29 #define SHOWN           (1u<<3)
30 #define TMP_MARK        (1u<<4) /* for isolated cases; clean after use */
31 #define BOUNDARY        (1u<<5)
32 #define CHILD_SHOWN     (1u<<6)
33 #define ADDED           (1u<<7) /* Parents already parsed and added? */
34 #define SYMMETRIC_LEFT  (1u<<8)
35 #define PATCHSAME       (1u<<9)
36 #define BOTTOM          (1u<<10)
37
38 /* WARNING: This is also used as REACHABLE in commit-graph.c. */
39 #define PULL_MERGE      (1u<<15)
40
41 #define TOPO_WALK_EXPLORED      (1u<<23)
42 #define TOPO_WALK_INDEGREE      (1u<<24)
43
44 /*
45  * Indicates object was reached by traversal. i.e. not given by user on
46  * command-line or stdin.
47  */
48 #define NOT_USER_GIVEN  (1u<<25)
49 #define TRACK_LINEAR    (1u<<26)
50 #define ALL_REV_FLAGS   (((1u<<11)-1) | NOT_USER_GIVEN | TRACK_LINEAR | PULL_MERGE)
51
52 #define DECORATE_SHORT_REFS     1
53 #define DECORATE_FULL_REFS      2
54
55 struct log_info;
56 struct repository;
57 struct rev_info;
58 struct string_list;
59 struct saved_parents;
60 struct bloom_key;
61 struct bloom_filter_settings;
62 define_shared_commit_slab(revision_sources, char *);
63
64 struct rev_cmdline_info {
65         unsigned int nr;
66         unsigned int alloc;
67         struct rev_cmdline_entry {
68                 struct object *item;
69                 const char *name;
70                 enum {
71                         REV_CMD_REF,
72                         REV_CMD_PARENTS_ONLY,
73                         REV_CMD_LEFT,
74                         REV_CMD_RIGHT,
75                         REV_CMD_MERGE_BASE,
76                         REV_CMD_REV
77                 } whence;
78                 unsigned flags;
79         } *rev;
80 };
81
82 #define REVISION_WALK_WALK 0
83 #define REVISION_WALK_NO_WALK_SORTED 1
84 #define REVISION_WALK_NO_WALK_UNSORTED 2
85
86 struct oidset;
87 struct topo_walk_info;
88
89 enum rev_info_stdin {
90         REV_INFO_STDIN_CONSUME_ON_OPTION = 0,
91         REV_INFO_STDIN_IGNORE,
92         REV_INFO_STDIN_ALWAYS_READ,
93 };
94
95 enum rev_info_stdin_line {
96         REV_INFO_STDIN_LINE_PROCESS,
97         REV_INFO_STDIN_LINE_BREAK,
98         REV_INFO_STDIN_LINE_CONTINUE,
99 };
100
101 typedef enum rev_info_stdin_line (*rev_info_stdin_line_func)(
102         struct rev_info *revs, struct strbuf *line, void *stdin_line_priv);
103
104 struct rev_info {
105         /* Starting list */
106         struct commit_list *commits;
107         struct object_array pending;
108         struct repository *repo;
109
110         /* Parents of shown commits */
111         struct object_array boundary_commits;
112
113         /* The end-points specified by the end user */
114         struct rev_cmdline_info cmdline;
115
116         /* excluding from --branches, --refs, etc. expansion */
117         struct string_list *ref_excludes;
118
119         /* Basic information */
120         const char *prefix;
121         const char *def;
122         struct pathspec prune_data;
123
124         /*
125          * Whether the arguments parsed by setup_revisions() included any
126          * "input" revisions that might still have yielded an empty pending
127          * list (e.g., patterns like "--all" or "--glob").
128          */
129         int rev_input_given;
130
131         /*
132          * How should we handle seeing --stdin?
133          *
134          * Defaults to reading if we see it with
135          * REV_INFO_STDIN_CONSUME_ON_OPTION.
136          *
137          * Can be set to REV_INFO_STDIN_IGNORE to ignore any provided
138          * --stdin option.
139          *
140          * Set it to REV_INFO_STDIN_ALWAYS_READ if there's always data
141          * on stdin to be read, even if no --stdin option is provided.
142          */
143         enum rev_info_stdin stdin_handling;
144
145         /*
146          * Did we read from stdin due to stdin_handling ==
147          * REV_INFO_STDIN_CONSUME_ON_OPTION and seeing the --stdin
148          * option?
149          */
150         int consumed_stdin_per_option;
151
152         /*
153          * When reading from stdin (see "stdin_handling" above) define
154          * a handle_stdin_line function to consume the lines.
155          *
156          * - Return 0 to continue revision.c's normal processing of the
157          *   line (after possibly munging the provided strbuf).
158          *
159          *   Change "revarg_flags" to affect the subsequent handling
160          *   in handle_revision_arg()
161          *
162          * - Return 1 to indicate that the line is fully processed,
163          *   moving onto the next line (if any)
164          *
165          * - Return 2 to process no further lines.
166          *
167          * Use the "stdin_line_priv" to optionally pass your own data
168          * around.
169          */
170         rev_info_stdin_line_func handle_stdin_line;
171         int revarg_flags;
172         void *stdin_line_priv;
173
174         /* topo-sort */
175         enum rev_sort_order sort_order;
176
177         unsigned int early_output;
178
179         unsigned int    ignore_missing:1,
180                         ignore_missing_links:1;
181
182         /* Traversal flags */
183         unsigned int    dense:1,
184                         prune:1,
185                         no_walk:2,
186                         remove_empty_trees:1,
187                         simplify_history:1,
188                         show_pulls:1,
189                         topo_order:1,
190                         simplify_merges:1,
191                         simplify_by_decoration:1,
192                         single_worktree:1,
193                         tag_objects:1,
194                         tree_objects:1,
195                         blob_objects:1,
196                         verify_objects:1,
197                         edge_hint:1,
198                         edge_hint_aggressive:1,
199                         limited:1,
200                         unpacked:1,
201                         no_kept_objects:1,
202                         boundary:2,
203                         count:1,
204                         left_right:1,
205                         left_only:1,
206                         right_only:1,
207                         rewrite_parents:1,
208                         print_parents:1,
209                         show_decorations:1,
210                         reverse:1,
211                         reverse_output_stage:1,
212                         cherry_pick:1,
213                         cherry_mark:1,
214                         bisect:1,
215                         ancestry_path:1,
216                         first_parent_only:1,
217                         line_level_traverse:1,
218                         tree_blobs_in_commit_order:1,
219
220                         /*
221                          * Blobs are shown without regard for their existence.
222                          * But not so for trees: unless exclude_promisor_objects
223                          * is set and the tree in question is a promisor object;
224                          * OR ignore_missing_links is set, the revision walker
225                          * dies with a "bad tree object HASH" message when
226                          * encountering a missing tree. For callers that can
227                          * handle missing trees and want them to be filterable
228                          * and showable, set this to true. The revision walker
229                          * will filter and show such a missing tree as usual,
230                          * but will not attempt to recurse into this tree
231                          * object.
232                          */
233                         do_not_die_on_missing_tree:1,
234
235                         /* for internal use only */
236                         exclude_promisor_objects:1;
237
238         /* Diff flags */
239         unsigned int    diff:1,
240                         full_diff:1,
241                         show_root_diff:1,
242                         match_missing:1,
243                         no_commit_id:1,
244                         verbose_header:1,
245                         always_show_header:1,
246                         /* Diff-merge flags */
247                         explicit_diff_merges: 1,
248                         merges_need_diff: 1,
249                         merges_imply_patch:1,
250                         separate_merges: 1,
251                         combine_merges:1,
252                         combined_all_paths:1,
253                         dense_combined_merges:1,
254                         first_parent_merges:1;
255
256         /* Format info */
257         int             show_notes;
258         unsigned int    shown_one:1,
259                         shown_dashes:1,
260                         show_merge:1,
261                         show_notes_given:1,
262                         show_signature:1,
263                         pretty_given:1,
264                         abbrev_commit:1,
265                         abbrev_commit_given:1,
266                         zero_commit:1,
267                         use_terminator:1,
268                         missing_newline:1,
269                         date_mode_explicit:1,
270                         preserve_subject:1,
271                         encode_email_headers:1;
272         /* --show-linear-break */
273         unsigned int    track_linear:1,
274                         track_first_time:1,
275                         linear:1;
276
277         struct date_mode date_mode;
278         int             expand_tabs_in_log; /* unset if negative */
279         int             expand_tabs_in_log_default;
280
281         unsigned int    abbrev;
282         enum cmit_fmt   commit_format;
283         struct log_info *loginfo;
284         int             nr, total;
285         const char      *mime_boundary;
286         const char      *patch_suffix;
287         int             numbered_files;
288         const char      *reroll_count;
289         char            *message_id;
290         struct ident_split from_ident;
291         struct string_list *ref_message_ids;
292         int             add_signoff;
293         const char      *extra_headers;
294         const char      *log_reencode;
295         const char      *subject_prefix;
296         int             patch_name_max;
297         int             no_inline;
298         int             show_log_size;
299         struct string_list *mailmap;
300
301         /* Filter by commit log message */
302         struct grep_opt grep_filter;
303         /* Negate the match of grep_filter */
304         int invert_grep;
305
306         /* Display history graph */
307         struct git_graph *graph;
308
309         /* special limits */
310         int skip_count;
311         int max_count;
312         timestamp_t max_age;
313         timestamp_t min_age;
314         int min_parents;
315         int max_parents;
316         int (*include_check)(struct commit *, void *);
317         int (*include_check_obj)(struct object *obj, void *);
318         void *include_check_data;
319
320         /* diff info for patches and for paths limiting */
321         struct diff_options diffopt;
322         struct diff_options pruning;
323
324         struct reflog_walk_info *reflog_info;
325         struct decoration children;
326         struct decoration merge_simplification;
327         struct decoration treesame;
328
329         /* notes-specific options: which refs to show */
330         struct display_notes_opt notes_opt;
331
332         /* interdiff */
333         const struct object_id *idiff_oid1;
334         const struct object_id *idiff_oid2;
335         const char *idiff_title;
336
337         /* range-diff */
338         const char *rdiff1;
339         const char *rdiff2;
340         int creation_factor;
341         const char *rdiff_title;
342
343         /* commit counts */
344         int count_left;
345         int count_right;
346         int count_same;
347
348         /* line level range that we are chasing */
349         struct decoration line_log_data;
350
351         /* copies of the parent lists, for --full-diff display */
352         struct saved_parents *saved_parents_slab;
353
354         struct commit_list *previous_parents;
355         const char *break_bar;
356
357         struct revision_sources *sources;
358
359         struct topo_walk_info *topo_walk_info;
360
361         /* Commit graph bloom filter fields */
362         /* The bloom filter key(s) for the pathspec */
363         struct bloom_key *bloom_keys;
364         int bloom_keys_nr;
365
366         /*
367          * The bloom filter settings used to generate the key.
368          * This is loaded from the commit-graph being used.
369          */
370         struct bloom_filter_settings *bloom_filter_settings;
371
372         /* misc. flags related to '--no-kept-objects' */
373         unsigned keep_pack_cache_flags;
374 };
375
376 int ref_excluded(struct string_list *, const char *path);
377 void clear_ref_exclusion(struct string_list **);
378 void add_ref_exclusion(struct string_list **, const char *exclude);
379
380
381 #define REV_TREE_SAME           0
382 #define REV_TREE_NEW            1       /* Only new files */
383 #define REV_TREE_OLD            2       /* Only files removed */
384 #define REV_TREE_DIFFERENT      3       /* Mixed changes */
385
386 /* revision.c */
387 typedef void (*show_early_output_fn_t)(struct rev_info *, struct commit_list *);
388 extern volatile show_early_output_fn_t show_early_output;
389
390 struct setup_revision_opt {
391         const char *def;
392         void (*tweak)(struct rev_info *, struct setup_revision_opt *);
393         const char *submodule;  /* TODO: drop this and use rev_info->repo */
394         unsigned int    assume_dashdash:1,
395                         allow_exclude_promisor_objects:1;
396         unsigned revarg_opt;
397 };
398
399 #ifndef NO_THE_REPOSITORY_COMPATIBILITY_MACROS
400 #define init_revisions(revs, prefix) repo_init_revisions(the_repository, revs, prefix)
401 #endif
402
403 /**
404  * Initialize a rev_info structure with default values. The third parameter may
405  * be NULL or can be prefix path, and then the `.prefix` variable will be set
406  * to it. This is typically the first function you want to call when you want
407  * to deal with a revision list. After calling this function, you are free to
408  * customize options, like set `.ignore_merges` to 0 if you don't want to
409  * ignore merges, and so on.
410  */
411 void repo_init_revisions(struct repository *r,
412                          struct rev_info *revs,
413                          const char *prefix);
414
415 /**
416  * Parse revision information, filling in the `rev_info` structure, and
417  * removing the used arguments from the argument list. Returns the number
418  * of arguments left that weren't recognized, which are also moved to the
419  * head of the argument list. The last parameter is used in case no
420  * parameter given by the first two arguments.
421  */
422 int setup_revisions(int argc, const char **argv, struct rev_info *revs,
423                     struct setup_revision_opt *);
424
425 void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
426                         const struct option *options,
427                         const char * const usagestr[]);
428 #define REVARG_CANNOT_BE_FILENAME 01
429 #define REVARG_COMMITTISH 02
430
431 /**
432  * Reset the flags used by the revision walking api. You can use this to do
433  * multiple sequential revision walks.
434  */
435 void reset_revision_walk(void);
436
437 /**
438  * Prepares the rev_info structure for a walk. You should check if it returns
439  * any error (non-zero return code) and if it does not, you can start using
440  * get_revision() to do the iteration.
441  */
442 int prepare_revision_walk(struct rev_info *revs);
443
444 /**
445  * Takes a pointer to a `rev_info` structure and iterates over it, returning a
446  * `struct commit *` each time you call it. The end of the revision list is
447  * indicated by returning a NULL pointer.
448  */
449 struct commit *get_revision(struct rev_info *revs);
450
451 const char *get_revision_mark(const struct rev_info *revs,
452                               const struct commit *commit);
453 void put_revision_mark(const struct rev_info *revs,
454                        const struct commit *commit);
455
456 void mark_parents_uninteresting(struct commit *commit);
457 void mark_tree_uninteresting(struct repository *r, struct tree *tree);
458 void mark_trees_uninteresting_sparse(struct repository *r, struct oidset *trees);
459
460 void show_object_with_name(FILE *, struct object *, const char *);
461
462 /**
463  * This function can be used if you want to add commit objects as revision
464  * information. You can use the `UNINTERESTING` object flag to indicate if
465  * you want to include or exclude the given commit (and commits reachable
466  * from the given commit) from the revision list.
467  *
468  * NOTE: If you have the commits as a string list then you probably want to
469  * use setup_revisions(), instead of parsing each string and using this
470  * function.
471  */
472 void add_pending_object(struct rev_info *revs,
473                         struct object *obj, const char *name);
474
475 void add_pending_oid(struct rev_info *revs,
476                      const char *name, const struct object_id *oid,
477                      unsigned int flags);
478
479 void add_head_to_pending(struct rev_info *);
480 void add_reflogs_to_pending(struct rev_info *, unsigned int flags);
481 void add_index_objects_to_pending(struct rev_info *, unsigned int flags);
482
483 enum commit_action {
484         commit_ignore,
485         commit_show,
486         commit_error
487 };
488
489 enum commit_action get_commit_action(struct rev_info *revs,
490                                      struct commit *commit);
491 enum commit_action simplify_commit(struct rev_info *revs,
492                                    struct commit *commit);
493
494 enum rewrite_result {
495         rewrite_one_ok,
496         rewrite_one_noparents,
497         rewrite_one_error
498 };
499
500 typedef enum rewrite_result (*rewrite_parent_fn_t)(struct rev_info *revs, struct commit **pp);
501
502 int rewrite_parents(struct rev_info *revs,
503                     struct commit *commit,
504                     rewrite_parent_fn_t rewrite_parent);
505
506 /*
507  * The log machinery saves the original parent list so that
508  * get_saved_parents() can later tell what the real parents of the
509  * commits are, when commit->parents has been modified by history
510  * simpification.
511  *
512  * get_saved_parents() will transparently return commit->parents if
513  * history simplification is off.
514  */
515 struct commit_list *get_saved_parents(struct rev_info *revs, const struct commit *commit);
516
517 #endif