4 #include "sha1-array.h"
7 #include "parse-options.h"
13 #define QUOTE_PYTHON 4
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)
29 struct ref_sorting
*next
;
30 int atom
; /* index into used_atom array (internal) */
36 struct ref_array_item
{
37 unsigned char objectname
[20];
41 struct commit
*commit
;
42 struct atom_value
*value
;
43 char refname
[FLEX_ARRAY
];
48 struct ref_array_item
**items
;
49 struct rev_info
*revs
;
53 const char **name_patterns
;
54 struct sha1_array points_at
;
55 struct commit_list
*with_commit
;
58 REF_FILTER_MERGED_NONE
= 0,
59 REF_FILTER_MERGED_INCLUDE
,
60 REF_FILTER_MERGED_OMIT
62 struct commit
*merge_commit
;
64 unsigned int with_commit_tag_algo
: 1,
74 /* Macros for checking --merged and --no-merged options */
75 #define _OPT_MERGED_NO_MERGED(option, filter, h) \
76 { OPTION_CALLBACK, 0, option, (filter), N_("commit"), (h), \
77 PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NONEG, \
78 parse_opt_merge_filter, (intptr_t) "HEAD" \
80 #define OPT_MERGED(f, h) _OPT_MERGED_NO_MERGED("merged", f, h)
81 #define OPT_NO_MERGED(f, h) _OPT_MERGED_NO_MERGED("no-merged", f, h)
84 * API for filtering a set of refs. Based on the type of refs the user
85 * has requested, we iterate through those refs and apply filters
86 * as per the given ref_filter structure and finally store the
87 * filtered refs in the ref_array structure.
89 int filter_refs(struct ref_array
*array
, struct ref_filter
*filter
, unsigned int type
);
90 /* Clear all memory allocated to ref_array */
91 void ref_array_clear(struct ref_array
*array
);
92 /* Parse format string and sort specifiers */
93 int parse_ref_filter_atom(const char *atom
, const char *ep
);
94 /* Used to verify if the given format is correct and to parse out the used atoms */
95 int verify_ref_format(const char *format
);
96 /* Sort the given ref_array as per the ref_sorting provided */
97 void ref_array_sort(struct ref_sorting
*sort
, struct ref_array
*array
);
98 /* Based on the given format and quote_style, fill the strbuf */
99 void format_ref_array_item(struct ref_array_item
*info
, const char *format
,
100 int quote_style
, struct strbuf
*final_buf
);
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);
107 /* Function to parse --merged and --no-merged options */
108 int parse_opt_merge_filter(const struct option
*opt
, const char *arg
, int unset
);
109 /* Get the current HEAD's description */
110 char *get_head_description(void);
111 /* Set up translated strings in the output. */
112 void setup_ref_filter_porcelain_msg(void);
115 * Print a single ref, outside of any ref-filter. Note that the
116 * name must be a fully qualified refname.
118 void pretty_print_ref(const char *name
, const unsigned char *sha1
,
121 #endif /* REF_FILTER_H */