5 #include "string-list.h"
9 struct process_trailer_options
;
15 CMIT_FMT_DEFAULT
= CMIT_FMT_MEDIUM
,
27 struct pretty_print_describe_status
{
28 unsigned int max_invocations
;
31 struct pretty_print_context
{
33 * Callers should tweak these to change the behavior of pp_* functions.
37 const char *after_subject
;
39 struct date_mode date_mode
;
40 unsigned date_mode_explicit
:1;
41 int print_email_subject
;
42 int expand_tabs_in_log
;
45 struct reflog_walk_info
*reflog_info
;
47 const char *output_encoding
;
48 struct string_list
*mailmap
;
50 struct ident_split
*from_ident
;
51 unsigned encode_email_headers
:1;
52 struct pretty_print_describe_status
*describe_status
;
55 * Fields below here are manipulated internally by pp_* functions and
56 * should not be counted on by callers.
58 struct string_list in_body_headers
;
62 /* Check whether commit format is mail. */
63 static inline int cmit_fmt_is_mail(enum cmit_fmt fmt
)
65 return (fmt
== CMIT_FMT_EMAIL
|| fmt
== CMIT_FMT_MBOXRD
);
69 * Examine the user-specified format given by "fmt" (or if NULL, the global one
70 * previously saved by get_commit_format()), and set flags based on which items
71 * the format will need when it is expanded.
73 struct userformat_want
{
78 void userformat_find_requirements(const char *fmt
, struct userformat_want
*w
);
81 * Shortcut for invoking pretty_print_commit if we do not have any context.
82 * Context would be set empty except "fmt".
84 void pp_commit_easy(enum cmit_fmt fmt
, const struct commit
*commit
,
88 * Get information about user and date from "line", format it and
90 * Format of "line" must be readable for split_ident_line function.
91 * The resulting format is "what: name <email> date".
93 void pp_user_info(struct pretty_print_context
*pp
, const char *what
,
94 struct strbuf
*sb
, const char *line
,
95 const char *encoding
);
98 * Format title line of commit message taken from "msg_p" and
100 * First line of "msg_p" is also affected.
102 void pp_title_line(struct pretty_print_context
*pp
, const char **msg_p
,
103 struct strbuf
*sb
, const char *encoding
,
107 * Get current state of commit message from "msg_p" and continue formatting
108 * by adding indentation and '>' signs. Put result into "sb".
110 void pp_remainder(struct pretty_print_context
*pp
, const char **msg_p
,
111 struct strbuf
*sb
, int indent
);
114 * Create a text message about commit using given "format" and "context".
115 * Put the result to "sb".
116 * Please use this function for custom formats.
118 void repo_format_commit_message(struct repository
*r
,
119 const struct commit
*commit
,
120 const char *format
, struct strbuf
*sb
,
121 const struct pretty_print_context
*context
);
122 #ifndef NO_THE_REPOSITORY_COMPATIBILITY_MACROS
123 #define format_commit_message(c, f, s, con) \
124 repo_format_commit_message(the_repository, c, f, s, con)
128 * Parse given arguments from "arg", check it for correctness and
129 * fill struct rev_info.
131 void get_commit_format(const char *arg
, struct rev_info
*);
134 * Make a commit message with all rules from given "pp"
135 * and put it into "sb".
136 * Please use this function if you have a context (candidate for "pp").
138 void pretty_print_commit(struct pretty_print_context
*pp
,
139 const struct commit
*commit
,
143 * Change line breaks in "msg" to "line_separator" and put it into "sb".
144 * Return "msg" itself.
146 const char *format_subject(struct strbuf
*sb
, const char *msg
,
147 const char *line_separator
);
149 /* Check if "cmit_fmt" will produce an empty output. */
150 int commit_format_is_empty(enum cmit_fmt
);
152 /* Make subject of commit message suitable for filename */
153 void format_sanitized_subject(struct strbuf
*sb
, const char *msg
, size_t len
);
156 * Set values of fields in "struct process_trailer_options"
157 * according to trailers arguments.
159 int format_set_trailers_options(struct process_trailer_options
*opts
,
160 struct string_list
*filter_list
,
161 struct strbuf
*sepbuf
,
162 struct strbuf
*kvsepbuf
,
166 #endif /* PRETTY_H */