Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 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 | |
Karthik Nayak | 5b4f285 | 2015-09-10 21:18:23 +0530 | [diff] [blame] | 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) |
Karthik Nayak | 14de7fb | 2015-06-14 01:07:28 +0530 | [diff] [blame] | 25 | |
Karthik Nayak | 3a25761 | 2015-08-22 09:09:37 +0530 | [diff] [blame] | 26 | struct atom_value; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 27 | |
| 28 | struct ref_sorting { |
| 29 | struct ref_sorting *next; |
| 30 | int atom; /* index into used_atom array (internal) */ |
Karthik Nayak | 90c0040 | 2015-09-10 21:18:25 +0530 | [diff] [blame] | 31 | unsigned reverse : 1, |
| 32 | version : 1; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 33 | }; |
| 34 | |
| 35 | struct ref_array_item { |
| 36 | unsigned char objectname[20]; |
| 37 | int flag; |
Karthik Nayak | 5b4f285 | 2015-09-10 21:18:23 +0530 | [diff] [blame] | 38 | unsigned int kind; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 39 | const char *symref; |
Karthik Nayak | 35257aa | 2015-07-07 21:36:12 +0530 | [diff] [blame] | 40 | struct commit *commit; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 41 | struct atom_value *value; |
Karthik Nayak | 1958a6e | 2015-06-14 01:07:29 +0530 | [diff] [blame] | 42 | char refname[FLEX_ARRAY]; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | struct ref_array { |
| 46 | int nr, alloc; |
| 47 | struct ref_array_item **items; |
Karthik Nayak | 1511b22 | 2015-09-23 23:41:11 +0530 | [diff] [blame] | 48 | struct rev_info *revs; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 49 | }; |
| 50 | |
| 51 | struct ref_filter { |
| 52 | const char **name_patterns; |
Karthik Nayak | 6841104 | 2015-07-07 21:36:09 +0530 | [diff] [blame] | 53 | struct sha1_array points_at; |
Karthik Nayak | ee2bd06 | 2015-07-07 21:36:16 +0530 | [diff] [blame] | 54 | struct commit_list *with_commit; |
Karthik Nayak | 35257aa | 2015-07-07 21:36:12 +0530 | [diff] [blame] | 55 | |
| 56 | enum { |
| 57 | REF_FILTER_MERGED_NONE = 0, |
| 58 | REF_FILTER_MERGED_INCLUDE, |
| 59 | REF_FILTER_MERGED_OMIT |
| 60 | } merge; |
| 61 | struct commit *merge_commit; |
Karthik Nayak | ee2bd06 | 2015-07-07 21:36:16 +0530 | [diff] [blame] | 62 | |
Karthik Nayak | bef0e12 | 2015-09-10 21:18:26 +0530 | [diff] [blame] | 63 | unsigned int with_commit_tag_algo : 1, |
Karthik Nayak | 1511b22 | 2015-09-23 23:41:11 +0530 | [diff] [blame] | 64 | match_as_path : 1, |
| 65 | detached : 1; |
Karthik Nayak | 1bb38e5 | 2015-09-11 20:34:16 +0530 | [diff] [blame] | 66 | unsigned int kind, |
| 67 | lines; |
Karthik Nayak | 1511b22 | 2015-09-23 23:41:11 +0530 | [diff] [blame] | 68 | int abbrev, |
| 69 | verbose; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 70 | }; |
| 71 | |
| 72 | struct ref_filter_cbdata { |
Karthik Nayak | 14de7fb | 2015-06-14 01:07:28 +0530 | [diff] [blame] | 73 | struct ref_array *array; |
| 74 | struct ref_filter *filter; |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 75 | }; |
| 76 | |
Karthik Nayak | 5afcb90 | 2015-07-07 21:36:11 +0530 | [diff] [blame] | 77 | /* Macros for checking --merged and --no-merged options */ |
| 78 | #define _OPT_MERGED_NO_MERGED(option, filter, h) \ |
| 79 | { OPTION_CALLBACK, 0, option, (filter), N_("commit"), (h), \ |
| 80 | PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NONEG, \ |
| 81 | parse_opt_merge_filter, (intptr_t) "HEAD" \ |
| 82 | } |
| 83 | #define OPT_MERGED(f, h) _OPT_MERGED_NO_MERGED("merged", f, h) |
| 84 | #define OPT_NO_MERGED(f, h) _OPT_MERGED_NO_MERGED("no-merged", f, h) |
| 85 | |
Karthik Nayak | 14de7fb | 2015-06-14 01:07:28 +0530 | [diff] [blame] | 86 | /* |
| 87 | * API for filtering a set of refs. Based on the type of refs the user |
| 88 | * has requested, we iterate through those refs and apply filters |
| 89 | * as per the given ref_filter structure and finally store the |
| 90 | * filtered refs in the ref_array structure. |
| 91 | */ |
| 92 | int filter_refs(struct ref_array *array, struct ref_filter *filter, unsigned int type); |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 93 | /* Clear all memory allocated to ref_array */ |
| 94 | void ref_array_clear(struct ref_array *array); |
| 95 | /* Parse format string and sort specifiers */ |
| 96 | int parse_ref_filter_atom(const char *atom, const char *ep); |
| 97 | /* Used to verify if the given format is correct and to parse out the used atoms */ |
| 98 | int verify_ref_format(const char *format); |
| 99 | /* Sort the given ref_array as per the ref_sorting provided */ |
| 100 | void ref_array_sort(struct ref_sorting *sort, struct ref_array *array); |
| 101 | /* Print the ref using the given format and quote_style */ |
| 102 | void show_ref_array_item(struct ref_array_item *info, const char *format, int quote_style); |
| 103 | /* Callback function for parsing the sort option */ |
| 104 | int parse_opt_ref_sorting(const struct option *opt, const char *arg, int unset); |
| 105 | /* Default sort option based on refname */ |
| 106 | struct ref_sorting *ref_default_sorting(void); |
Karthik Nayak | 5afcb90 | 2015-07-07 21:36:11 +0530 | [diff] [blame] | 107 | /* Function to parse --merged and --no-merged options */ |
| 108 | int parse_opt_merge_filter(const struct option *opt, const char *arg, int unset); |
Karthik Nayak | 69b1cf9 | 2015-06-14 01:07:26 +0530 | [diff] [blame] | 109 | |
| 110 | #endif /* REF_FILTER_H */ |