]> git.ipfire.org Git - thirdparty/git.git/blame - ref-filter.h
Merge branch 'js/empty-index-fixes'
[thirdparty/git.git] / ref-filter.h
CommitLineData
69b1cf91
KN
1#ifndef REF_FILTER_H
2#define REF_FILTER_H
3
f394e093 4#include "gettext.h"
fe299ec5 5#include "oid-array.h"
69b1cf91
KN
6#include "refs.h"
7#include "commit.h"
49abcd21 8#include "string-list.h"
69b1cf91
KN
9
10/* Quoting styles */
11#define QUOTE_NONE 0
12#define QUOTE_SHELL 1
13#define QUOTE_PERL 2
14#define QUOTE_PYTHON 4
15#define QUOTE_TCL 8
16
5b4f2851
KN
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)
14de7fba 25
3a25761a 26struct atom_value;
98e7ab6d 27struct ref_sorting;
49abcd21 28struct ahead_behind_count;
c4d9c793 29struct option;
69b1cf91 30
98e7ab6d
JH
31enum ref_sorting_order {
32 REF_SORTING_REVERSE = 1<<0,
33 REF_SORTING_ICASE = 1<<1,
34 REF_SORTING_VERSION = 1<<2,
35 REF_SORTING_DETACHED_HEAD_FIRST = 1<<3,
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;
49abcd21
DS
46 struct ahead_behind_count **counts;
47
1958a6eb 48 char refname[FLEX_ARRAY];
69b1cf91
KN
49};
50
51struct ref_array {
52 int nr, alloc;
53 struct ref_array_item **items;
1511b22d 54 struct rev_info *revs;
49abcd21
DS
55
56 struct ahead_behind_count *counts;
57 size_t counts_nr;
69b1cf91
KN
58};
59
60struct ref_filter {
61 const char **name_patterns;
910650d2 62 struct oid_array points_at;
ee2bd06b 63 struct commit_list *with_commit;
ac3f5a34 64 struct commit_list *no_commit;
21bf9339
AL
65 struct commit_list *reachable_from;
66 struct commit_list *unreachable_from;
ee2bd06b 67
bef0e12b 68 unsigned int with_commit_tag_algo : 1,
1511b22d 69 match_as_path : 1,
3bb16a8b 70 ignore_case : 1,
1511b22d 71 detached : 1;
1bb38e5a
KN
72 unsigned int kind,
73 lines;
1511b22d
KN
74 int abbrev,
75 verbose;
69b1cf91
KN
76};
77
4a68e36d
JK
78struct ref_format {
79 /*
80 * Set these to define the format; make sure you call
81 * verify_ref_format() afterwards to finalize.
82 */
83 const char *format;
b9dee075 84 const char *rest;
4a68e36d 85 int quote_style;
11b087ad 86 int use_color;
bf285ae6
JK
87
88 /* Internal state to ref-filter */
89 int need_color_reset_at_eol;
49abcd21
DS
90
91 /* List of bases for ahead-behind counts. */
92 struct string_list bases;
4a68e36d
JK
93};
94
49abcd21
DS
95#define REF_FORMAT_INIT { \
96 .use_color = -1, \
97 .bases = STRING_LIST_INIT_DUP, \
98}
4a68e36d 99
5afcb905
KN
100/* Macros for checking --merged and --no-merged options */
101#define _OPT_MERGED_NO_MERGED(option, filter, h) \
102 { OPTION_CALLBACK, 0, option, (filter), N_("commit"), (h), \
103 PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NONEG, \
104 parse_opt_merge_filter, (intptr_t) "HEAD" \
105 }
106#define OPT_MERGED(f, h) _OPT_MERGED_NO_MERGED("merged", f, h)
107#define OPT_NO_MERGED(f, h) _OPT_MERGED_NO_MERGED("no-merged", f, h)
108
95be717c 109#define OPT_REF_SORT(var) \
98e7ab6d
JH
110 OPT_STRING_LIST(0, "sort", (var), \
111 N_("key"), N_("field name to sort on"))
95be717c 112
14de7fba
KN
113/*
114 * API for filtering a set of refs. Based on the type of refs the user
115 * has requested, we iterate through those refs and apply filters
116 * as per the given ref_filter structure and finally store the
117 * filtered refs in the ref_array structure.
118 */
119int filter_refs(struct ref_array *array, struct ref_filter *filter, unsigned int type);
69b1cf91
KN
120/* Clear all memory allocated to ref_array */
121void ref_array_clear(struct ref_array *array);
69b1cf91 122/* Used to verify if the given format is correct and to parse out the used atoms */
4a68e36d 123int verify_ref_format(struct ref_format *format);
69b1cf91
KN
124/* Sort the given ref_array as per the ref_sorting provided */
125void ref_array_sort(struct ref_sorting *sort, struct ref_array *array);
7c269a7b
ÆAB
126/* Set REF_SORTING_* sort_flags for all elements of a sorting list */
127void ref_sorting_set_sort_flags_all(struct ref_sorting *sorting, unsigned int mask, int on);
99c6a71d 128/* Based on the given format and quote_style, fill the strbuf */
3019eca9 129int format_ref_array_item(struct ref_array_item *info,
e85fcb35 130 struct ref_format *format,
3019eca9
OT
131 struct strbuf *final_buf,
132 struct strbuf *error_buf);
e5fb0286
ÆAB
133/* Release a "struct ref_sorting" */
134void ref_sorting_release(struct ref_sorting *);
98e7ab6d
JH
135/* Convert list of sort options into ref_sorting */
136struct ref_sorting *ref_sorting_options(struct string_list *);
5afcb905
KN
137/* Function to parse --merged and --no-merged options */
138int parse_opt_merge_filter(const struct option *opt, const char *arg, int unset);
d4919bb2
KN
139/* Get the current HEAD's description */
140char *get_head_description(void);
6eac70fa
KN
141/* Set up translated strings in the output. */
142void setup_ref_filter_porcelain_msg(void);
69b1cf91 143
2111aa79
LP
144/*
145 * Print a single ref, outside of any ref-filter. Note that the
146 * name must be a fully qualified refname.
147 */
53df97a2 148void pretty_print_ref(const char *name, const struct object_id *oid,
e85fcb35 149 struct ref_format *format);
2111aa79 150
427cbc9d
JK
151/*
152 * Push a single ref onto the array; this can be used to construct your own
153 * ref_array without using filter_refs().
154 */
155struct ref_array_item *ref_array_push(struct ref_array *array,
156 const char *refname,
157 const struct object_id *oid);
158
49abcd21
DS
159/*
160 * If the provided format includes ahead-behind atoms, then compute the
161 * ahead-behind values for the array of filtered references. Must be
162 * called after filter_refs() but before outputting the formatted refs.
163 *
164 * If this is not called, then any ahead-behind atoms will be blank.
165 */
166void filter_ahead_behind(struct repository *r,
167 struct ref_format *format,
168 struct ref_array *array);
169
69b1cf91 170#endif /* REF_FILTER_H */