Merge branch 'ds/doc-add-interactive-singlekey'
[alt-git.git] / trailer.h
blob6eb53df155eb45ec2082d34084e4c470596b1e6c
1 #ifndef TRAILER_H
2 #define TRAILER_H
4 #include "list.h"
5 #include "strbuf.h"
7 struct trailer_info;
8 struct strvec;
10 enum trailer_where {
11 WHERE_DEFAULT,
12 WHERE_END,
13 WHERE_AFTER,
14 WHERE_BEFORE,
15 WHERE_START
17 enum trailer_if_exists {
18 EXISTS_DEFAULT,
19 EXISTS_ADD_IF_DIFFERENT_NEIGHBOR,
20 EXISTS_ADD_IF_DIFFERENT,
21 EXISTS_ADD,
22 EXISTS_REPLACE,
23 EXISTS_DO_NOTHING
25 enum trailer_if_missing {
26 MISSING_DEFAULT,
27 MISSING_ADD,
28 MISSING_DO_NOTHING
31 int trailer_set_where(enum trailer_where *item, const char *value);
32 int trailer_set_if_exists(enum trailer_if_exists *item, const char *value);
33 int trailer_set_if_missing(enum trailer_if_missing *item, const char *value);
36 * A list that represents newly-added trailers, such as those provided
37 * with the --trailer command line option of git-interpret-trailers.
39 struct new_trailer_item {
40 struct list_head list;
42 const char *text;
44 enum trailer_where where;
45 enum trailer_if_exists if_exists;
46 enum trailer_if_missing if_missing;
49 struct process_trailer_options {
50 int in_place;
51 int trim_empty;
52 int only_trailers;
53 int only_input;
54 int unfold;
55 int no_divider;
56 int key_only;
57 int value_only;
58 const struct strbuf *separator;
59 const struct strbuf *key_value_separator;
60 int (*filter)(const struct strbuf *, void *);
61 void *filter_data;
64 #define PROCESS_TRAILER_OPTIONS_INIT {0}
66 void parse_trailers_from_config(struct list_head *config_head);
68 void parse_trailers_from_command_line_args(struct list_head *arg_head,
69 struct list_head *new_trailer_head);
71 void process_trailers_lists(struct list_head *head,
72 struct list_head *arg_head);
75 * Given some input string "str", return a pointer to an opaque trailer_info
76 * structure. Also populate the trailer_objects list with parsed trailer
77 * objects. Internally this calls trailer_info_get() to get the opaque pointer,
78 * but does some extra work to populate the trailer_objects linked list.
80 * The opaque trailer_info pointer can be used to check the position of the
81 * trailer block as offsets relative to the beginning of "str" in
82 * trailer_block_start() and trailer_block_end().
83 * blank_line_before_trailer_block() returns 1 if there is a blank line just
84 * before the trailer block. All of these functions are useful for preserving
85 * the input before and after the trailer block, if we were to write out the
86 * original input (but with the trailer block itself modified); see
87 * builtin/interpret-trailers.c for an example.
89 * For iterating through the parsed trailer block (if you don't care about the
90 * position of the trailer block itself in the context of the larger string text
91 * from which it was parsed), please see trailer_iterator_init() which uses the
92 * trailer_info struct internally.
94 * Lastly, callers should call trailer_info_release() when they are done using
95 * the opaque pointer.
97 * NOTE: Callers should treat both trailer_info and trailer_objects as
98 * read-only items, because there is some overlap between the two (trailer_info
99 * has "char **trailers" string array, and trailer_objects will have the same
100 * data but as a linked list of trailer_item objects). This API does not perform
101 * any synchronization between the two. In the future we should be able to
102 * reduce the duplication and use just the linked list.
104 struct trailer_info *parse_trailers(const struct process_trailer_options *,
105 const char *str,
106 struct list_head *trailer_objects);
109 * Return the offset of the start of the trailer block. That is, 0 is the start
110 * of the input ("str" in parse_trailers()) and some other positive number
111 * indicates how many bytes we have to skip over before we get to the beginning
112 * of the trailer block.
114 size_t trailer_block_start(struct trailer_info *);
117 * Return the end of the trailer block, again relative to the start of the
118 * input.
120 size_t trailer_block_end(struct trailer_info *);
123 * Return 1 if the trailer block had an extra newline (blank line) just before
124 * it.
126 int blank_line_before_trailer_block(struct trailer_info *);
129 * Free trailer_info struct.
131 void trailer_info_release(struct trailer_info *info);
133 void trailer_config_init(void);
134 void format_trailers(const struct process_trailer_options *,
135 struct list_head *trailers,
136 struct strbuf *out);
137 void free_trailers(struct list_head *);
140 * Convenience function to format the trailers from the commit msg "msg" into
141 * the strbuf "out". Reuses format_trailers() internally.
143 void format_trailers_from_commit(const struct process_trailer_options *,
144 const char *msg,
145 struct strbuf *out);
148 * An interface for iterating over the trailers found in a particular commit
149 * message. Use like:
151 * struct trailer_iterator iter;
152 * trailer_iterator_init(&iter, msg);
153 * while (trailer_iterator_advance(&iter))
154 * ... do something with iter.key and iter.val ...
155 * trailer_iterator_release(&iter);
157 struct trailer_iterator {
159 * Raw line (e.g., "foo: bar baz") before being parsed as a trailer
160 * key/val pair as part of a trailer block (as the "key" and "val"
161 * fields below). If a line fails to parse as a trailer, then the "key"
162 * will be the entire line and "val" will be the empty string.
164 const char *raw;
165 struct strbuf key;
166 struct strbuf val;
168 /* private */
169 struct {
170 struct trailer_info *info;
171 size_t cur;
172 } internal;
176 * Initialize "iter" in preparation for walking over the trailers in the commit
177 * message "msg". The "msg" pointer must remain valid until the iterator is
178 * released.
180 * After initializing, note that key/val will not yet point to any trailer.
181 * Call advance() to parse the first one (if any).
183 void trailer_iterator_init(struct trailer_iterator *iter, const char *msg);
186 * Advance to the next trailer of the iterator. Returns 0 if there is no such
187 * trailer, and 1 otherwise. The key and value of the trailer can be
188 * fetched from the iter->key and iter->value fields (which are valid
189 * only until the next advance).
191 int trailer_iterator_advance(struct trailer_iterator *iter);
194 * Release all resources associated with the trailer iteration.
196 void trailer_iterator_release(struct trailer_iterator *iter);
199 * Augment a file to add trailers to it by running git-interpret-trailers.
200 * This calls run_command() and its return value is the same (i.e. 0 for
201 * success, various non-zero for other errors). See run-command.h.
203 int amend_file_with_trailers(const char *path, const struct strvec *trailer_args);
205 #endif /* TRAILER_H */