5 #include "reflog-walk.h"
7 static void show_parents(struct commit *commit, int abbrev)
10 for (p = commit->parents; p ; p = p->next) {
11 struct commit *parent = p->item;
12 printf(" %s", diff_unique_abbrev(parent->object.sha1, abbrev));
17 * Search for "^[-A-Za-z]+: [^@]+@" pattern. It usually matches
18 * Signed-off-by: and Acked-by: lines.
20 static int detect_any_signoff(char *letter, int size)
29 while (letter <= --cp && (ch = *cp) == '\n')
32 while (letter <= cp) {
51 if (('A' <= ch && ch <= 'Z') ||
52 ('a' <= ch && ch <= 'z') ||
57 /* no empty last line doesn't match */
60 return seen_head && seen_name;
63 static int append_signoff(char *buf, int buf_sz, int at, const char *signoff)
65 static const char signed_off_by[] = "Signed-off-by: ";
66 int signoff_len = strlen(signoff);
70 /* Do we have enough space to add it? */
71 if (buf_sz - at <= strlen(signed_off_by) + signoff_len + 3)
74 /* First see if we already have the sign-off by the signer */
75 while ((cp = strstr(cp, signed_off_by))) {
79 cp += strlen(signed_off_by);
80 if (cp + signoff_len >= buf + at)
82 if (strncmp(cp, signoff, signoff_len))
84 if (!isspace(cp[signoff_len]))
86 /* we already have him */
91 has_signoff = detect_any_signoff(buf, at);
96 strcpy(buf + at, signed_off_by);
97 at += strlen(signed_off_by);
98 strcpy(buf + at, signoff);
105 static unsigned int digits_in_number(unsigned int number)
107 unsigned int i = 10, result = 1;
108 while (i <= number) {
115 void show_log(struct rev_info *opt, const char *sep)
117 static char this_header[16384];
118 struct log_info *log = opt->loginfo;
119 struct commit *commit = log->commit, *parent = log->parent;
120 int abbrev = opt->diffopt.abbrev;
121 int abbrev_commit = opt->abbrev_commit ? opt->abbrev : 40;
124 const char *subject = NULL, *extra_headers = opt->extra_headers;
127 if (!opt->verbose_header) {
128 if (opt->left_right) {
129 if (commit->object.flags & BOUNDARY)
131 else if (commit->object.flags & SYMMETRIC_LEFT)
136 fputs(diff_unique_abbrev(commit->object.sha1, abbrev_commit), stdout);
138 show_parents(commit, abbrev_commit);
139 putchar(opt->diffopt.line_termination);
144 * The "oneline" format has several special cases:
145 * - The pretty-printed commit lacks a newline at the end
146 * of the buffer, but we do want to make sure that we
147 * have a newline there. If the separator isn't already
148 * a newline, add an extra one.
149 * - unlike other log messages, the one-line format does
150 * not have an empty line between entries.
153 if (*sep != '\n' && opt->commit_format == CMIT_FMT_ONELINE)
155 if (opt->shown_one && opt->commit_format != CMIT_FMT_ONELINE)
156 putchar(opt->diffopt.line_termination);
160 * Print header line of header..
163 if (opt->commit_format == CMIT_FMT_EMAIL) {
164 char *sha1 = sha1_to_hex(commit->object.sha1);
165 if (opt->total > 0) {
166 static char buffer[64];
167 snprintf(buffer, sizeof(buffer),
168 "Subject: [PATCH %0*d/%d] ",
169 digits_in_number(opt->total),
170 opt->nr, opt->total);
172 } else if (opt->total == 0)
173 subject = "Subject: [PATCH] ";
175 subject = "Subject: ";
177 printf("From %s Mon Sep 17 00:00:00 2001\n", sha1);
179 printf("Message-Id: <%s>\n", opt->message_id);
180 if (opt->ref_message_id)
181 printf("In-Reply-To: <%s>\nReferences: <%s>\n",
182 opt->ref_message_id, opt->ref_message_id);
183 if (opt->mime_boundary) {
184 static char subject_buffer[1024];
185 static char buffer[1024];
186 snprintf(subject_buffer, sizeof(subject_buffer) - 1,
188 "MIME-Version: 1.0\n"
189 "Content-Type: multipart/mixed;\n"
190 " boundary=\"%s%s\"\n"
192 "This is a multi-part message in MIME "
195 "Content-Type: text/plain; "
196 "charset=UTF-8; format=fixed\n"
197 "Content-Transfer-Encoding: 8bit\n\n",
198 extra_headers ? extra_headers : "",
199 mime_boundary_leader, opt->mime_boundary,
200 mime_boundary_leader, opt->mime_boundary);
201 extra_headers = subject_buffer;
203 snprintf(buffer, sizeof(buffer) - 1,
205 "Content-Type: text/x-patch;\n"
206 " name=\"%s.diff\"\n"
207 "Content-Transfer-Encoding: 8bit\n"
208 "Content-Disposition: inline;\n"
209 " filename=\"%s.diff\"\n\n",
210 mime_boundary_leader, opt->mime_boundary,
212 opt->diffopt.stat_sep = buffer;
215 fputs(diff_get_color(opt->diffopt.color_diff, DIFF_COMMIT),
217 if (opt->commit_format != CMIT_FMT_ONELINE)
218 fputs("commit ", stdout);
219 if (opt->left_right) {
220 if (commit->object.flags & BOUNDARY)
222 else if (commit->object.flags & SYMMETRIC_LEFT)
227 fputs(diff_unique_abbrev(commit->object.sha1, abbrev_commit),
230 show_parents(commit, abbrev_commit);
233 diff_unique_abbrev(parent->object.sha1,
236 diff_get_color(opt->diffopt.color_diff, DIFF_RESET));
237 putchar(opt->commit_format == CMIT_FMT_ONELINE ? ' ' : '\n');
238 if (opt->reflog_info) {
239 show_reflog_message(opt->reflog_info,
240 opt->commit_format == CMIT_FMT_ONELINE,
242 if (opt->commit_format == CMIT_FMT_ONELINE) {
250 * And then the pretty-printed message itself
252 len = pretty_print_commit(opt->commit_format, commit, ~0u, this_header,
253 sizeof(this_header), abbrev, subject,
254 extra_headers, opt->relative_date);
256 if (opt->add_signoff)
257 len = append_signoff(this_header, sizeof(this_header), len,
259 printf("%s%s%s", this_header, extra, sep);
262 int log_tree_diff_flush(struct rev_info *opt)
264 diffcore_std(&opt->diffopt);
266 if (diff_queue_is_empty()) {
267 int saved_fmt = opt->diffopt.output_format;
268 opt->diffopt.output_format = DIFF_FORMAT_NO_OUTPUT;
269 diff_flush(&opt->diffopt);
270 opt->diffopt.output_format = saved_fmt;
274 if (opt->loginfo && !opt->no_commit_id) {
275 /* When showing a verbose header (i.e. log message),
276 * and not in --pretty=oneline format, we would want
277 * an extra newline between the end of log and the
278 * output for readability.
280 show_log(opt, opt->diffopt.msg_sep);
281 if (opt->verbose_header &&
282 opt->commit_format != CMIT_FMT_ONELINE) {
283 int pch = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH;
284 if ((pch & opt->diffopt.output_format) == pch)
289 diff_flush(&opt->diffopt);
293 static int do_diff_combined(struct rev_info *opt, struct commit *commit)
295 unsigned const char *sha1 = commit->object.sha1;
297 diff_tree_combined_merge(sha1, opt->dense_combined_merges, opt);
298 return !opt->loginfo;
302 * Show the diff of a commit.
304 * Return true if we printed any log info messages
306 static int log_tree_diff(struct rev_info *opt, struct commit *commit, struct log_info *log)
309 struct commit_list *parents;
310 unsigned const char *sha1 = commit->object.sha1;
316 parents = commit->parents;
318 if (opt->show_root_diff) {
319 diff_root_tree_sha1(sha1, "", &opt->diffopt);
320 log_tree_diff_flush(opt);
322 return !opt->loginfo;
325 /* More than one parent? */
326 if (parents && parents->next) {
327 if (opt->ignore_merges)
329 else if (opt->combine_merges)
330 return do_diff_combined(opt, commit);
332 /* If we show individual diffs, show the parent info */
333 log->parent = parents->item;
338 struct commit *parent = parents->item;
340 diff_tree_sha1(parent->object.sha1, sha1, "", &opt->diffopt);
341 log_tree_diff_flush(opt);
343 showed_log |= !opt->loginfo;
345 /* Set up the log info for the next parent, if any.. */
346 parents = parents->next;
349 log->parent = parents->item;
355 int log_tree_commit(struct rev_info *opt, struct commit *commit)
364 shown = log_tree_diff(opt, commit, &log);
365 if (!shown && opt->loginfo && opt->always_show_header) {