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