Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 1 | #ifndef REF_FILTER_H |
| 2 | #define REF_FILTER_H |
| 3 | |
| 4 | #include "sha1-array.h" |
| 5 | #include "refs.h" |
| 6 | #include "commit.h" |
| 7 | #include "parse-options.h" |
| 8 | |
| 9 | /* Quoting styles */ |
| 10 | #define QUOTE_NONE 0 |
| 11 | #define QUOTE_SHELL 1 |
| 12 | #define QUOTE_PERL 2 |
| 13 | #define QUOTE_PYTHON 4 |
| 14 | #define QUOTE_TCL 8 |
| 15 | |
Karthik Nayak | 5b4f285 | 2015-09-10 21:18:23 +0530 | [diff] [blame] | 16 | #define FILTER_REFS_INCLUDE_BROKEN 0x0001 |
| 17 | #define FILTER_REFS_TAGS 0x0002 |
| 18 | #define FILTER_REFS_BRANCHES 0x0004 |
| 19 | #define FILTER_REFS_REMOTES 0x0008 |
| 20 | #define FILTER_REFS_OTHERS 0x0010 |
| 21 | #define FILTER_REFS_ALL (FILTER_REFS_TAGS | FILTER_REFS_BRANCHES | \ |
| 22 | FILTER_REFS_REMOTES | FILTER_REFS_OTHERS) |
| 23 | #define FILTER_REFS_DETACHED_HEAD 0x0020 |
| 24 | #define FILTER_REFS_KIND_MASK (FILTER_REFS_ALL | FILTER_REFS_DETACHED_HEAD) |
Karthik Nayak | 14de7fb | 2015-06-14 01:07:28 +0530 | [diff] [blame] | 25 | |
Karthik Nayak | 3a25761 | 2015-08-22 09:09:37 +0530 | [diff] [blame] | 26 | struct atom_value; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 27 | |
| 28 | struct ref_sorting { |
| 29 | struct ref_sorting *next; |
| 30 | int atom; /* index into used_atom array (internal) */ |
Karthik Nayak | 90c0040 | 2015-09-10 21:18:25 +0530 | [diff] [blame] | 31 | unsigned reverse : 1, |
Nguyễn Thái Ngọc Duy | 3bb16a8 | 2016-12-04 09:52:25 +0700 | [diff] [blame] | 32 | ignore_case : 1, |
Karthik Nayak | 90c0040 | 2015-09-10 21:18:25 +0530 | [diff] [blame] | 33 | version : 1; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | struct ref_array_item { |
brian m. carlson | cedfc41 | 2017-05-06 22:10:21 +0000 | [diff] [blame] | 37 | struct object_id objectname; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 38 | int flag; |
Karthik Nayak | 5b4f285 | 2015-09-10 21:18:23 +0530 | [diff] [blame] | 39 | unsigned int kind; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 40 | const char *symref; |
Karthik Nayak | 35257aa | 2015-07-07 21:36:12 +0530 | [diff] [blame] | 41 | struct commit *commit; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 42 | struct atom_value *value; |
Karthik Nayak | 1958a6e | 2015-06-14 01:07:29 +0530 | [diff] [blame] | 43 | char refname[FLEX_ARRAY]; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 44 | }; |
| 45 | |
| 46 | struct ref_array { |
| 47 | int nr, alloc; |
| 48 | struct ref_array_item **items; |
Karthik Nayak | 1511b22 | 2015-09-23 23:41:11 +0530 | [diff] [blame] | 49 | struct rev_info *revs; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | struct ref_filter { |
| 53 | const char **name_patterns; |
brian m. carlson | 910650d | 2017-03-31 01:40:00 +0000 | [diff] [blame] | 54 | struct oid_array points_at; |
Karthik Nayak | ee2bd06 | 2015-07-07 21:36:16 +0530 | [diff] [blame] | 55 | struct commit_list *with_commit; |
Ævar Arnfjörð Bjarmason | ac3f5a3 | 2017-03-24 18:40:57 +0000 | [diff] [blame] | 56 | struct commit_list *no_commit; |
Karthik Nayak | 35257aa | 2015-07-07 21:36:12 +0530 | [diff] [blame] | 57 | |
| 58 | enum { |
| 59 | REF_FILTER_MERGED_NONE = 0, |
| 60 | REF_FILTER_MERGED_INCLUDE, |
| 61 | REF_FILTER_MERGED_OMIT |
| 62 | } merge; |
| 63 | struct commit *merge_commit; |
Karthik Nayak | ee2bd06 | 2015-07-07 21:36:16 +0530 | [diff] [blame] | 64 | |
Karthik Nayak | bef0e12 | 2015-09-10 21:18:26 +0530 | [diff] [blame] | 65 | unsigned int with_commit_tag_algo : 1, |
Karthik Nayak | 1511b22 | 2015-09-23 23:41:11 +0530 | [diff] [blame] | 66 | match_as_path : 1, |
Nguyễn Thái Ngọc Duy | 3bb16a8 | 2016-12-04 09:52:25 +0700 | [diff] [blame] | 67 | ignore_case : 1, |
Karthik Nayak | 1511b22 | 2015-09-23 23:41:11 +0530 | [diff] [blame] | 68 | detached : 1; |
Karthik Nayak | 1bb38e5 | 2015-09-11 20:34:16 +0530 | [diff] [blame] | 69 | unsigned int kind, |
| 70 | lines; |
Karthik Nayak | 1511b22 | 2015-09-23 23:41:11 +0530 | [diff] [blame] | 71 | int abbrev, |
| 72 | verbose; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 73 | }; |
| 74 | |
Jeff King | 4a68e36 | 2017-07-13 11:01:18 -0400 | [diff] [blame] | 75 | struct ref_format { |
| 76 | /* |
| 77 | * Set these to define the format; make sure you call |
| 78 | * verify_ref_format() afterwards to finalize. |
| 79 | */ |
| 80 | const char *format; |
| 81 | int quote_style; |
Jeff King | 11b087a | 2017-07-13 11:09:32 -0400 | [diff] [blame] | 82 | int use_color; |
Jeff King | bf285ae | 2017-07-13 11:02:30 -0400 | [diff] [blame] | 83 | |
| 84 | /* Internal state to ref-filter */ |
| 85 | int need_color_reset_at_eol; |
Jeff King | 4a68e36 | 2017-07-13 11:01:18 -0400 | [diff] [blame] | 86 | }; |
| 87 | |
Jeff King | 11b087a | 2017-07-13 11:09:32 -0400 | [diff] [blame] | 88 | #define REF_FORMAT_INIT { NULL, 0, -1 } |
Jeff King | 4a68e36 | 2017-07-13 11:01:18 -0400 | [diff] [blame] | 89 | |
Karthik Nayak | 5afcb90 | 2015-07-07 21:36:11 +0530 | [diff] [blame] | 90 | /* Macros for checking --merged and --no-merged options */ |
| 91 | #define _OPT_MERGED_NO_MERGED(option, filter, h) \ |
| 92 | { OPTION_CALLBACK, 0, option, (filter), N_("commit"), (h), \ |
| 93 | PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NONEG, \ |
| 94 | parse_opt_merge_filter, (intptr_t) "HEAD" \ |
| 95 | } |
| 96 | #define OPT_MERGED(f, h) _OPT_MERGED_NO_MERGED("merged", f, h) |
| 97 | #define OPT_NO_MERGED(f, h) _OPT_MERGED_NO_MERGED("no-merged", f, h) |
| 98 | |
Karthik Nayak | 14de7fb | 2015-06-14 01:07:28 +0530 | [diff] [blame] | 99 | /* |
| 100 | * API for filtering a set of refs. Based on the type of refs the user |
| 101 | * has requested, we iterate through those refs and apply filters |
| 102 | * as per the given ref_filter structure and finally store the |
| 103 | * filtered refs in the ref_array structure. |
| 104 | */ |
| 105 | int filter_refs(struct ref_array *array, struct ref_filter *filter, unsigned int type); |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 106 | /* Clear all memory allocated to ref_array */ |
| 107 | void ref_array_clear(struct ref_array *array); |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 108 | /* Used to verify if the given format is correct and to parse out the used atoms */ |
Jeff King | 4a68e36 | 2017-07-13 11:01:18 -0400 | [diff] [blame] | 109 | int verify_ref_format(struct ref_format *format); |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 110 | /* Sort the given ref_array as per the ref_sorting provided */ |
| 111 | void ref_array_sort(struct ref_sorting *sort, struct ref_array *array); |
Karthik Nayak | 99c6a71 | 2017-01-10 14:19:39 +0530 | [diff] [blame] | 112 | /* Based on the given format and quote_style, fill the strbuf */ |
Olga Telezhnaya | 3019eca | 2018-03-29 12:49:45 +0000 | [diff] [blame] | 113 | int format_ref_array_item(struct ref_array_item *info, |
| 114 | const struct ref_format *format, |
| 115 | struct strbuf *final_buf, |
| 116 | struct strbuf *error_buf); |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 117 | /* Print the ref using the given format and quote_style */ |
Jeff King | 4a68e36 | 2017-07-13 11:01:18 -0400 | [diff] [blame] | 118 | void show_ref_array_item(struct ref_array_item *info, const struct ref_format *format); |
Jeff King | 18a2565 | 2017-07-13 11:02:44 -0400 | [diff] [blame] | 119 | /* Parse a single sort specifier and add it to the list */ |
| 120 | void parse_ref_sorting(struct ref_sorting **sorting_tail, const char *atom); |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 121 | /* Callback function for parsing the sort option */ |
| 122 | int parse_opt_ref_sorting(const struct option *opt, const char *arg, int unset); |
| 123 | /* Default sort option based on refname */ |
| 124 | struct ref_sorting *ref_default_sorting(void); |
Karthik Nayak | 5afcb90 | 2015-07-07 21:36:11 +0530 | [diff] [blame] | 125 | /* Function to parse --merged and --no-merged options */ |
| 126 | int parse_opt_merge_filter(const struct option *opt, const char *arg, int unset); |
Karthik Nayak | d4919bb | 2017-01-10 14:19:38 +0530 | [diff] [blame] | 127 | /* Get the current HEAD's description */ |
| 128 | char *get_head_description(void); |
Karthik Nayak | 6eac70f | 2017-01-10 14:19:50 +0530 | [diff] [blame] | 129 | /* Set up translated strings in the output. */ |
| 130 | void setup_ref_filter_porcelain_msg(void); |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 131 | |
Lukas Puehringer | 2111aa7 | 2017-01-17 18:37:19 -0500 | [diff] [blame] | 132 | /* |
| 133 | * Print a single ref, outside of any ref-filter. Note that the |
| 134 | * name must be a fully qualified refname. |
| 135 | */ |
Jeff King | 53df97a | 2018-04-06 14:58:32 -0400 | [diff] [blame] | 136 | void pretty_print_ref(const char *name, const struct object_id *oid, |
Jeff King | 4a68e36 | 2017-07-13 11:01:18 -0400 | [diff] [blame] | 137 | const struct ref_format *format); |
Lukas Puehringer | 2111aa7 | 2017-01-17 18:37:19 -0500 | [diff] [blame] | 138 | |
Jeff King | 427cbc9 | 2018-04-06 14:59:45 -0400 | [diff] [blame] | 139 | /* |
| 140 | * Push a single ref onto the array; this can be used to construct your own |
| 141 | * ref_array without using filter_refs(). |
| 142 | */ |
| 143 | struct ref_array_item *ref_array_push(struct ref_array *array, |
| 144 | const char *refname, |
| 145 | const struct object_id *oid); |
| 146 | |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 147 | #endif /* REF_FILTER_H */ |