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