]> git.ipfire.org Git - thirdparty/git.git/blame - ref-filter.h
ref-filter: implement an `align` atom
[thirdparty/git.git] / ref-filter.h
CommitLineData
69b1cf91
KN
1#ifndef REF_FILTER_H
2#define REF_FILTER_H
3
4#include "sha1-array.h"
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
14de7fba
KN
16#define FILTER_REFS_INCLUDE_BROKEN 0x1
17#define FILTER_REFS_ALL 0x2
18
3a25761a 19struct atom_value;
69b1cf91
KN
20
21struct ref_sorting {
22 struct ref_sorting *next;
23 int atom; /* index into used_atom array (internal) */
24 unsigned reverse : 1;
25};
26
27struct ref_array_item {
28 unsigned char objectname[20];
29 int flag;
30 const char *symref;
35257aa0 31 struct commit *commit;
69b1cf91 32 struct atom_value *value;
1958a6eb 33 char refname[FLEX_ARRAY];
69b1cf91
KN
34};
35
36struct ref_array {
37 int nr, alloc;
38 struct ref_array_item **items;
39};
40
41struct ref_filter {
42 const char **name_patterns;
68411046 43 struct sha1_array points_at;
ee2bd06b 44 struct commit_list *with_commit;
35257aa0
KN
45
46 enum {
47 REF_FILTER_MERGED_NONE = 0,
48 REF_FILTER_MERGED_INCLUDE,
49 REF_FILTER_MERGED_OMIT
50 } merge;
51 struct commit *merge_commit;
ee2bd06b
KN
52
53 unsigned int with_commit_tag_algo : 1;
69b1cf91
KN
54};
55
56struct ref_filter_cbdata {
14de7fba
KN
57 struct ref_array *array;
58 struct ref_filter *filter;
69b1cf91
KN
59};
60
5afcb905
KN
61/* Macros for checking --merged and --no-merged options */
62#define _OPT_MERGED_NO_MERGED(option, filter, h) \
63 { OPTION_CALLBACK, 0, option, (filter), N_("commit"), (h), \
64 PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NONEG, \
65 parse_opt_merge_filter, (intptr_t) "HEAD" \
66 }
67#define OPT_MERGED(f, h) _OPT_MERGED_NO_MERGED("merged", f, h)
68#define OPT_NO_MERGED(f, h) _OPT_MERGED_NO_MERGED("no-merged", f, h)
69
14de7fba
KN
70/*
71 * API for filtering a set of refs. Based on the type of refs the user
72 * has requested, we iterate through those refs and apply filters
73 * as per the given ref_filter structure and finally store the
74 * filtered refs in the ref_array structure.
75 */
76int filter_refs(struct ref_array *array, struct ref_filter *filter, unsigned int type);
69b1cf91
KN
77/* Clear all memory allocated to ref_array */
78void ref_array_clear(struct ref_array *array);
79/* Parse format string and sort specifiers */
80int parse_ref_filter_atom(const char *atom, const char *ep);
81/* Used to verify if the given format is correct and to parse out the used atoms */
82int verify_ref_format(const char *format);
83/* Sort the given ref_array as per the ref_sorting provided */
84void ref_array_sort(struct ref_sorting *sort, struct ref_array *array);
85/* Print the ref using the given format and quote_style */
86void show_ref_array_item(struct ref_array_item *info, const char *format, int quote_style);
87/* Callback function for parsing the sort option */
88int parse_opt_ref_sorting(const struct option *opt, const char *arg, int unset);
89/* Default sort option based on refname */
90struct ref_sorting *ref_default_sorting(void);
5afcb905
KN
91/* Function to parse --merged and --no-merged options */
92int parse_opt_merge_filter(const struct option *opt, const char *arg, int unset);
69b1cf91
KN
93
94#endif /* REF_FILTER_H */