Merge branch 'jx/pkt-line-doc-count-fix'
[git.git] / list-objects-filter-options.h
blob73fffa4ad746a31a4a798d05f38452f1916b365d
1 #ifndef LIST_OBJECTS_FILTER_OPTIONS_H
2 #define LIST_OBJECTS_FILTER_OPTIONS_H
4 #include "parse-options.h"
5 #include "string-list.h"
7 /*
8 * The list of defined filters for list-objects.
9 */
10 enum list_objects_filter_choice {
11 LOFC_DISABLED = 0,
12 LOFC_BLOB_NONE,
13 LOFC_BLOB_LIMIT,
14 LOFC_TREE_DEPTH,
15 LOFC_SPARSE_OID,
16 LOFC_COMBINE,
17 LOFC__COUNT /* must be last */
20 struct list_objects_filter_options {
22 * 'filter_spec' is the raw argument value given on the command line
23 * or protocol request. (The part after the "--keyword=".) For
24 * commands that launch filtering sub-processes, or for communication
25 * over the network, don't use this value; use the result of
26 * expand_list_objects_filter_spec() instead.
27 * To get the raw filter spec given by the user, use the result of
28 * list_objects_filter_spec().
30 struct string_list filter_spec;
33 * 'choice' is determined by parsing the filter-spec. This indicates
34 * the filtering algorithm to use.
36 enum list_objects_filter_choice choice;
39 * Choice is LOFC_DISABLED because "--no-filter" was requested.
41 unsigned int no_filter : 1;
44 * BEGIN choice-specific parsed values from within the filter-spec. Only
45 * some values will be defined for any given choice.
48 char *sparse_oid_name;
49 unsigned long blob_limit_value;
50 unsigned long tree_exclude_depth;
52 /* LOFC_COMBINE values */
54 /* This array contains all the subfilters which this filter combines. */
55 size_t sub_nr, sub_alloc;
56 struct list_objects_filter_options *sub;
59 * END choice-specific parsed values.
63 /* Normalized command line arguments */
64 #define CL_ARG__FILTER "filter"
66 void list_objects_filter_die_if_populated(
67 struct list_objects_filter_options *filter_options);
70 * Parses the filter spec string given by arg and either (1) simply places the
71 * result in filter_options if it is not yet populated or (2) combines it with
72 * the filter already in filter_options if it is already populated. In the case
73 * of (2), the filter specs are combined as if specified with 'combine:'.
75 * Dies and prints a user-facing message if an error occurs.
77 void parse_list_objects_filter(
78 struct list_objects_filter_options *filter_options,
79 const char *arg);
81 int opt_parse_list_objects_filter(const struct option *opt,
82 const char *arg, int unset);
84 #define OPT_PARSE_LIST_OBJECTS_FILTER(fo) \
85 OPT_CALLBACK(0, CL_ARG__FILTER, fo, N_("args"), \
86 N_("object filtering"), \
87 opt_parse_list_objects_filter)
90 * Translates abbreviated numbers in the filter's filter_spec into their
91 * fully-expanded forms (e.g., "limit:blob=1k" becomes "limit:blob=1024").
92 * Returns a string owned by the list_objects_filter_options object.
94 * This form should be used instead of the raw list_objects_filter_spec()
95 * value when communicating with a remote process or subprocess.
97 const char *expand_list_objects_filter_spec(
98 struct list_objects_filter_options *filter);
101 * Returns the filter spec string more or less in the form as the user
102 * entered it. This form of the filter_spec can be used in user-facing
103 * messages. Returns a string owned by the list_objects_filter_options
104 * object.
106 const char *list_objects_filter_spec(
107 struct list_objects_filter_options *filter);
109 void list_objects_filter_release(
110 struct list_objects_filter_options *filter_options);
112 static inline void list_objects_filter_set_no_filter(
113 struct list_objects_filter_options *filter_options)
115 list_objects_filter_release(filter_options);
116 filter_options->no_filter = 1;
119 void partial_clone_register(
120 const char *remote,
121 struct list_objects_filter_options *filter_options);
122 void partial_clone_get_default_filter_spec(
123 struct list_objects_filter_options *filter_options,
124 const char *remote);
126 #endif /* LIST_OBJECTS_FILTER_OPTIONS_H */