]> git.ipfire.org Git - thirdparty/git.git/blob - trailer.h
pretty format %(trailers): add a "keyonly"
[thirdparty/git.git] / trailer.h
1 #ifndef TRAILER_H
2 #define TRAILER_H
3
4 #include "list.h"
5 #include "strbuf.h"
6
7 enum trailer_where {
8 WHERE_DEFAULT,
9 WHERE_END,
10 WHERE_AFTER,
11 WHERE_BEFORE,
12 WHERE_START
13 };
14 enum trailer_if_exists {
15 EXISTS_DEFAULT,
16 EXISTS_ADD_IF_DIFFERENT_NEIGHBOR,
17 EXISTS_ADD_IF_DIFFERENT,
18 EXISTS_ADD,
19 EXISTS_REPLACE,
20 EXISTS_DO_NOTHING
21 };
22 enum trailer_if_missing {
23 MISSING_DEFAULT,
24 MISSING_ADD,
25 MISSING_DO_NOTHING
26 };
27
28 int trailer_set_where(enum trailer_where *item, const char *value);
29 int trailer_set_if_exists(enum trailer_if_exists *item, const char *value);
30 int trailer_set_if_missing(enum trailer_if_missing *item, const char *value);
31
32 struct trailer_info {
33 /*
34 * True if there is a blank line before the location pointed to by
35 * trailer_start.
36 */
37 int blank_line_before_trailer;
38
39 /*
40 * Pointers to the start and end of the trailer block found. If there
41 * is no trailer block found, these 2 pointers point to the end of the
42 * input string.
43 */
44 const char *trailer_start, *trailer_end;
45
46 /*
47 * Array of trailers found.
48 */
49 char **trailers;
50 size_t trailer_nr;
51 };
52
53 /*
54 * A list that represents newly-added trailers, such as those provided
55 * with the --trailer command line option of git-interpret-trailers.
56 */
57 struct new_trailer_item {
58 struct list_head list;
59
60 const char *text;
61
62 enum trailer_where where;
63 enum trailer_if_exists if_exists;
64 enum trailer_if_missing if_missing;
65 };
66
67 struct process_trailer_options {
68 int in_place;
69 int trim_empty;
70 int only_trailers;
71 int only_input;
72 int unfold;
73 int no_divider;
74 int key_only;
75 int value_only;
76 const struct strbuf *separator;
77 int (*filter)(const struct strbuf *, void *);
78 void *filter_data;
79 };
80
81 #define PROCESS_TRAILER_OPTIONS_INIT {0}
82
83 void process_trailers(const char *file,
84 const struct process_trailer_options *opts,
85 struct list_head *new_trailer_head);
86
87 void trailer_info_get(struct trailer_info *info, const char *str,
88 const struct process_trailer_options *opts);
89
90 void trailer_info_release(struct trailer_info *info);
91
92 /*
93 * Format the trailers from the commit msg "msg" into the strbuf "out".
94 * Note two caveats about "opts":
95 *
96 * - this is primarily a helper for pretty.c, and not
97 * all of the flags are supported.
98 *
99 * - this differs from process_trailers slightly in that we always format
100 * only the trailer block itself, even if the "only_trailers" option is not
101 * set.
102 */
103 void format_trailers_from_commit(struct strbuf *out, const char *msg,
104 const struct process_trailer_options *opts);
105
106 /*
107 * An interface for iterating over the trailers found in a particular commit
108 * message. Use like:
109 *
110 * struct trailer_iterator iter;
111 * trailer_iterator_init(&iter, msg);
112 * while (trailer_iterator_advance(&iter))
113 * ... do something with iter.key and iter.val ...
114 * trailer_iterator_release(&iter);
115 */
116 struct trailer_iterator {
117 struct strbuf key;
118 struct strbuf val;
119
120 /* private */
121 struct trailer_info info;
122 size_t cur;
123 };
124
125 /*
126 * Initialize "iter" in preparation for walking over the trailers in the commit
127 * message "msg". The "msg" pointer must remain valid until the iterator is
128 * released.
129 *
130 * After initializing, note that key/val will not yet point to any trailer.
131 * Call advance() to parse the first one (if any).
132 */
133 void trailer_iterator_init(struct trailer_iterator *iter, const char *msg);
134
135 /*
136 * Advance to the next trailer of the iterator. Returns 0 if there is no such
137 * trailer, and 1 otherwise. The key and value of the trailer can be
138 * fetched from the iter->key and iter->value fields (which are valid
139 * only until the next advance).
140 */
141 int trailer_iterator_advance(struct trailer_iterator *iter);
142
143 /*
144 * Release all resources associated with the trailer iteration.
145 */
146 void trailer_iterator_release(struct trailer_iterator *iter);
147
148 #endif /* TRAILER_H */