Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 1 | #ifndef LIST_OBJECTS_FILTER_OPTIONS_H |
| 2 | #define LIST_OBJECTS_FILTER_OPTIONS_H |
| 3 | |
Elijah Newren | f394e09 | 2023-03-21 06:25:54 +0000 | [diff] [blame] | 4 | #include "gettext.h" |
Elijah Newren | a64215b | 2023-02-24 00:09:30 +0000 | [diff] [blame] | 5 | #include "object.h" |
Elijah Newren | a64215b | 2023-02-24 00:09:30 +0000 | [diff] [blame] | 6 | #include "strbuf.h" |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 7 | |
SZEDER Gábor | c4d9c79 | 2023-03-19 17:27:12 +0100 | [diff] [blame] | 8 | struct option; |
| 9 | |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 10 | /* |
| 11 | * The list of defined filters for list-objects. |
| 12 | */ |
| 13 | enum list_objects_filter_choice { |
| 14 | LOFC_DISABLED = 0, |
| 15 | LOFC_BLOB_NONE, |
| 16 | LOFC_BLOB_LIMIT, |
Matthew DeVore | c813a7c | 2019-01-08 18:59:13 -0800 | [diff] [blame] | 17 | LOFC_TREE_DEPTH, |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 18 | LOFC_SPARSE_OID, |
Patrick Steinhardt | b0c42a5 | 2021-04-19 13:46:53 +0200 | [diff] [blame] | 19 | LOFC_OBJECT_TYPE, |
Matthew DeVore | e987df5 | 2019-06-27 15:54:08 -0700 | [diff] [blame] | 20 | LOFC_COMBINE, |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 21 | LOFC__COUNT /* must be last */ |
| 22 | }; |
| 23 | |
Taylor Blau | b9ea214 | 2020-07-31 16:26:26 -0400 | [diff] [blame] | 24 | /* |
| 25 | * Returns a configuration key suitable for describing the given object filter, |
| 26 | * e.g.: "blob:none", "combine", etc. |
| 27 | */ |
| 28 | const char *list_object_filter_config_name(enum list_objects_filter_choice c); |
| 29 | |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 30 | struct list_objects_filter_options { |
| 31 | /* |
| 32 | * 'filter_spec' is the raw argument value given on the command line |
| 33 | * or protocol request. (The part after the "--keyword=".) For |
Josh Steadmon | 87c2d9d | 2019-01-07 16:17:09 -0800 | [diff] [blame] | 34 | * commands that launch filtering sub-processes, or for communication |
| 35 | * over the network, don't use this value; use the result of |
| 36 | * expand_list_objects_filter_spec() instead. |
Matthew DeVore | cf9ceb5 | 2019-06-27 15:54:10 -0700 | [diff] [blame] | 37 | * To get the raw filter spec given by the user, use the result of |
| 38 | * list_objects_filter_spec(). |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 39 | */ |
Jeff King | c54980a | 2022-09-11 01:03:31 -0400 | [diff] [blame] | 40 | struct strbuf filter_spec; |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 41 | |
| 42 | /* |
| 43 | * 'choice' is determined by parsing the filter-spec. This indicates |
| 44 | * the filtering algorithm to use. |
| 45 | */ |
| 46 | enum list_objects_filter_choice choice; |
| 47 | |
| 48 | /* |
Jeff Hostetler | aa57b87 | 2017-12-08 15:58:50 +0000 | [diff] [blame] | 49 | * Choice is LOFC_DISABLED because "--no-filter" was requested. |
| 50 | */ |
| 51 | unsigned int no_filter : 1; |
| 52 | |
| 53 | /* |
Matthew DeVore | e987df5 | 2019-06-27 15:54:08 -0700 | [diff] [blame] | 54 | * BEGIN choice-specific parsed values from within the filter-spec. Only |
| 55 | * some values will be defined for any given choice. |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 56 | */ |
Matthew DeVore | e987df5 | 2019-06-27 15:54:08 -0700 | [diff] [blame] | 57 | |
Jeff King | 4c96a77 | 2019-09-15 12:12:44 -0400 | [diff] [blame] | 58 | char *sparse_oid_name; |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 59 | unsigned long blob_limit_value; |
Matthew DeVore | c813a7c | 2019-01-08 18:59:13 -0800 | [diff] [blame] | 60 | unsigned long tree_exclude_depth; |
Patrick Steinhardt | b0c42a5 | 2021-04-19 13:46:53 +0200 | [diff] [blame] | 61 | enum object_type object_type; |
Matthew DeVore | e987df5 | 2019-06-27 15:54:08 -0700 | [diff] [blame] | 62 | |
| 63 | /* LOFC_COMBINE values */ |
| 64 | |
| 65 | /* This array contains all the subfilters which this filter combines. */ |
| 66 | size_t sub_nr, sub_alloc; |
| 67 | struct list_objects_filter_options *sub; |
| 68 | |
| 69 | /* |
| 70 | * END choice-specific parsed values. |
| 71 | */ |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 72 | }; |
| 73 | |
Jeff King | c54980a | 2022-09-11 01:03:31 -0400 | [diff] [blame] | 74 | #define LIST_OBJECTS_FILTER_INIT { .filter_spec = STRBUF_INIT } |
Jeff King | 2a01bde | 2022-09-11 01:03:07 -0400 | [diff] [blame] | 75 | void list_objects_filter_init(struct list_objects_filter_options *filter_options); |
| 76 | |
Derrick Stolee | 105c6f1 | 2022-03-09 16:01:39 +0000 | [diff] [blame] | 77 | /* |
| 78 | * Parse value of the argument to the "filter" keyword. |
| 79 | * On the command line this looks like: |
| 80 | * --filter=<arg> |
| 81 | * and in the pack protocol as: |
| 82 | * "filter" SP <arg> |
| 83 | * |
| 84 | * The filter keyword will be used by many commands. |
| 85 | * See Documentation/rev-list-options.txt for allowed values for <arg>. |
| 86 | * |
| 87 | * Capture the given arg as the "filter_spec". This can be forwarded to |
| 88 | * subordinate commands when necessary (although it's better to pass it through |
| 89 | * expand_list_objects_filter_spec() first). We also "intern" the arg for the |
| 90 | * convenience of the current command. |
| 91 | */ |
| 92 | int gently_parse_list_objects_filter( |
| 93 | struct list_objects_filter_options *filter_options, |
| 94 | const char *arg, |
| 95 | struct strbuf *errbuf); |
| 96 | |
Matthew DeVore | 489fc9e | 2019-06-27 15:54:12 -0700 | [diff] [blame] | 97 | void list_objects_filter_die_if_populated( |
| 98 | struct list_objects_filter_options *filter_options); |
| 99 | |
| 100 | /* |
| 101 | * Parses the filter spec string given by arg and either (1) simply places the |
| 102 | * result in filter_options if it is not yet populated or (2) combines it with |
| 103 | * the filter already in filter_options if it is already populated. In the case |
| 104 | * of (2), the filter specs are combined as if specified with 'combine:'. |
| 105 | * |
| 106 | * Dies and prints a user-facing message if an error occurs. |
| 107 | */ |
Matthew DeVore | 90d21f9 | 2019-06-27 15:54:14 -0700 | [diff] [blame] | 108 | void parse_list_objects_filter( |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 109 | struct list_objects_filter_options *filter_options, |
| 110 | const char *arg); |
| 111 | |
Ævar Arnfjörð Bjarmason | 5cb2827 | 2022-03-28 17:43:18 +0200 | [diff] [blame] | 112 | /** |
| 113 | * The opt->value to opt_parse_list_objects_filter() is either a |
| 114 | * "struct list_objects_filter_option *" when using |
| 115 | * OPT_PARSE_LIST_OBJECTS_FILTER(). |
Ævar Arnfjörð Bjarmason | 5cb2827 | 2022-03-28 17:43:18 +0200 | [diff] [blame] | 116 | */ |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 117 | int opt_parse_list_objects_filter(const struct option *opt, |
| 118 | const char *arg, int unset); |
| 119 | |
| 120 | #define OPT_PARSE_LIST_OBJECTS_FILTER(fo) \ |
René Scharfe | d4f7036 | 2022-11-29 13:26:44 +0100 | [diff] [blame] | 121 | OPT_CALLBACK(0, "filter", (fo), N_("args"), \ |
| 122 | N_("object filtering"), opt_parse_list_objects_filter) |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 123 | |
Josh Steadmon | 87c2d9d | 2019-01-07 16:17:09 -0800 | [diff] [blame] | 124 | /* |
| 125 | * Translates abbreviated numbers in the filter's filter_spec into their |
| 126 | * fully-expanded forms (e.g., "limit:blob=1k" becomes "limit:blob=1024"). |
Matthew DeVore | cf9ceb5 | 2019-06-27 15:54:10 -0700 | [diff] [blame] | 127 | * Returns a string owned by the list_objects_filter_options object. |
Josh Steadmon | 87c2d9d | 2019-01-07 16:17:09 -0800 | [diff] [blame] | 128 | * |
Matthew DeVore | cf9ceb5 | 2019-06-27 15:54:10 -0700 | [diff] [blame] | 129 | * This form should be used instead of the raw list_objects_filter_spec() |
| 130 | * value when communicating with a remote process or subprocess. |
Josh Steadmon | 87c2d9d | 2019-01-07 16:17:09 -0800 | [diff] [blame] | 131 | */ |
Matthew DeVore | cf9ceb5 | 2019-06-27 15:54:10 -0700 | [diff] [blame] | 132 | const char *expand_list_objects_filter_spec( |
| 133 | struct list_objects_filter_options *filter); |
| 134 | |
| 135 | /* |
| 136 | * Returns the filter spec string more or less in the form as the user |
| 137 | * entered it. This form of the filter_spec can be used in user-facing |
| 138 | * messages. Returns a string owned by the list_objects_filter_options |
| 139 | * object. |
| 140 | */ |
| 141 | const char *list_objects_filter_spec( |
| 142 | struct list_objects_filter_options *filter); |
Josh Steadmon | 87c2d9d | 2019-01-07 16:17:09 -0800 | [diff] [blame] | 143 | |
Jeff Hostetler | 4875c97 | 2017-12-05 16:50:13 +0000 | [diff] [blame] | 144 | void list_objects_filter_release( |
| 145 | struct list_objects_filter_options *filter_options); |
| 146 | |
Jeff Hostetler | aa57b87 | 2017-12-08 15:58:50 +0000 | [diff] [blame] | 147 | static inline void list_objects_filter_set_no_filter( |
| 148 | struct list_objects_filter_options *filter_options) |
| 149 | { |
| 150 | list_objects_filter_release(filter_options); |
| 151 | filter_options->no_filter = 1; |
| 152 | } |
| 153 | |
Jeff Hostetler | 1e1e39b | 2017-12-08 15:58:45 +0000 | [diff] [blame] | 154 | void partial_clone_register( |
| 155 | const char *remote, |
Matthew DeVore | cf9ceb5 | 2019-06-27 15:54:10 -0700 | [diff] [blame] | 156 | struct list_objects_filter_options *filter_options); |
Jeff Hostetler | 1e1e39b | 2017-12-08 15:58:45 +0000 | [diff] [blame] | 157 | void partial_clone_get_default_filter_spec( |
Christian Couder | fa3d1b6 | 2019-06-25 15:40:32 +0200 | [diff] [blame] | 158 | struct list_objects_filter_options *filter_options, |
| 159 | const char *remote); |
Jeff Hostetler | 1e1e39b | 2017-12-08 15:58:45 +0000 | [diff] [blame] | 160 | |
Derrick Stolee | 4a4c3f9 | 2022-03-09 16:01:32 +0000 | [diff] [blame] | 161 | void list_objects_filter_copy( |
| 162 | struct list_objects_filter_options *dest, |
| 163 | const struct list_objects_filter_options *src); |
| 164 | |
Jeff Hostetler | 25ec7bc | 2017-11-21 20:58:50 +0000 | [diff] [blame] | 165 | #endif /* LIST_OBJECTS_FILTER_OPTIONS_H */ |