]> git.ipfire.org Git - thirdparty/git.git/blame - ref-filter.h
generate-cmdlist.sh: don't call get_categories() from category_list()
[thirdparty/git.git] / ref-filter.h
CommitLineData
69b1cf91
KN
1#ifndef REF_FILTER_H
2#define REF_FILTER_H
3
fe299ec5 4#include "oid-array.h"
69b1cf91
KN
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
5b4f2851
KN
16#define FILTER_REFS_TAGS 0x0002
17#define FILTER_REFS_BRANCHES 0x0004
18#define FILTER_REFS_REMOTES 0x0008
19#define FILTER_REFS_OTHERS 0x0010
20#define FILTER_REFS_ALL (FILTER_REFS_TAGS | FILTER_REFS_BRANCHES | \
21 FILTER_REFS_REMOTES | FILTER_REFS_OTHERS)
22#define FILTER_REFS_DETACHED_HEAD 0x0020
23#define FILTER_REFS_KIND_MASK (FILTER_REFS_ALL | FILTER_REFS_DETACHED_HEAD)
14de7fba 24
3a25761a 25struct atom_value;
69b1cf91
KN
26
27struct ref_sorting {
28 struct ref_sorting *next;
29 int atom; /* index into used_atom array (internal) */
7c269a7b
ÆAB
30 enum {
31 REF_SORTING_REVERSE = 1<<0,
32 REF_SORTING_ICASE = 1<<1,
33 REF_SORTING_VERSION = 1<<2,
2708ce62 34 REF_SORTING_DETACHED_HEAD_FIRST = 1<<3,
7c269a7b 35 } sort_flags;
69b1cf91
KN
36};
37
38struct ref_array_item {
cedfc41a 39 struct object_id objectname;
b9dee075 40 const char *rest;
69b1cf91 41 int flag;
5b4f2851 42 unsigned int kind;
69b1cf91 43 const char *symref;
35257aa0 44 struct commit *commit;
69b1cf91 45 struct atom_value *value;
1958a6eb 46 char refname[FLEX_ARRAY];
69b1cf91
KN
47};
48
49struct ref_array {
50 int nr, alloc;
51 struct ref_array_item **items;
1511b22d 52 struct rev_info *revs;
69b1cf91
KN
53};
54
55struct ref_filter {
56 const char **name_patterns;
910650d2 57 struct oid_array points_at;
ee2bd06b 58 struct commit_list *with_commit;
ac3f5a34 59 struct commit_list *no_commit;
21bf9339
AL
60 struct commit_list *reachable_from;
61 struct commit_list *unreachable_from;
ee2bd06b 62
bef0e12b 63 unsigned int with_commit_tag_algo : 1,
1511b22d 64 match_as_path : 1,
3bb16a8b 65 ignore_case : 1,
1511b22d 66 detached : 1;
1bb38e5a
KN
67 unsigned int kind,
68 lines;
1511b22d
KN
69 int abbrev,
70 verbose;
69b1cf91
KN
71};
72
4a68e36d
JK
73struct ref_format {
74 /*
75 * Set these to define the format; make sure you call
76 * verify_ref_format() afterwards to finalize.
77 */
78 const char *format;
b9dee075 79 const char *rest;
4a68e36d 80 int quote_style;
b9dee075 81 int use_rest;
11b087ad 82 int use_color;
bf285ae6
JK
83
84 /* Internal state to ref-filter */
85 int need_color_reset_at_eol;
4a68e36d
JK
86};
87
b9dee075 88#define REF_FORMAT_INIT { .use_color = -1 }
4a68e36d 89
5afcb905
KN
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
95be717c
JK
99#define OPT_REF_SORT(var) \
100 OPT_CALLBACK_F(0, "sort", (var), \
101 N_("key"), N_("field name to sort on"), \
102 PARSE_OPT_NONEG, parse_opt_ref_sorting)
103
14de7fba
KN
104/*
105 * API for filtering a set of refs. Based on the type of refs the user
106 * has requested, we iterate through those refs and apply filters
107 * as per the given ref_filter structure and finally store the
108 * filtered refs in the ref_array structure.
109 */
110int filter_refs(struct ref_array *array, struct ref_filter *filter, unsigned int type);
69b1cf91
KN
111/* Clear all memory allocated to ref_array */
112void ref_array_clear(struct ref_array *array);
69b1cf91 113/* Used to verify if the given format is correct and to parse out the used atoms */
4a68e36d 114int verify_ref_format(struct ref_format *format);
69b1cf91
KN
115/* Sort the given ref_array as per the ref_sorting provided */
116void ref_array_sort(struct ref_sorting *sort, struct ref_array *array);
7c269a7b
ÆAB
117/* Set REF_SORTING_* sort_flags for all elements of a sorting list */
118void ref_sorting_set_sort_flags_all(struct ref_sorting *sorting, unsigned int mask, int on);
99c6a71d 119/* Based on the given format and quote_style, fill the strbuf */
3019eca9 120int format_ref_array_item(struct ref_array_item *info,
e85fcb35 121 struct ref_format *format,
3019eca9
OT
122 struct strbuf *final_buf,
123 struct strbuf *error_buf);
18a25650
JK
124/* Parse a single sort specifier and add it to the list */
125void parse_ref_sorting(struct ref_sorting **sorting_tail, const char *atom);
69b1cf91
KN
126/* Callback function for parsing the sort option */
127int parse_opt_ref_sorting(const struct option *opt, const char *arg, int unset);
128/* Default sort option based on refname */
129struct ref_sorting *ref_default_sorting(void);
e5fb0286
ÆAB
130/* Release a "struct ref_sorting" */
131void ref_sorting_release(struct ref_sorting *);
5afcb905
KN
132/* Function to parse --merged and --no-merged options */
133int parse_opt_merge_filter(const struct option *opt, const char *arg, int unset);
d4919bb2
KN
134/* Get the current HEAD's description */
135char *get_head_description(void);
6eac70fa
KN
136/* Set up translated strings in the output. */
137void setup_ref_filter_porcelain_msg(void);
69b1cf91 138
2111aa79
LP
139/*
140 * Print a single ref, outside of any ref-filter. Note that the
141 * name must be a fully qualified refname.
142 */
53df97a2 143void pretty_print_ref(const char *name, const struct object_id *oid,
e85fcb35 144 struct ref_format *format);
2111aa79 145
427cbc9d
JK
146/*
147 * Push a single ref onto the array; this can be used to construct your own
148 * ref_array without using filter_refs().
149 */
150struct ref_array_item *ref_array_push(struct ref_array *array,
151 const char *refname,
152 const struct object_id *oid);
153
69b1cf91 154#endif /* REF_FILTER_H */