6 static void show_parents(struct commit *commit, int abbrev)
9 for (p = commit->parents; p ; p = p->next) {
10 struct commit *parent = p->item;
11 printf(" %s", diff_unique_abbrev(parent->object.sha1, abbrev));
16 * Search for "^[-A-Za-z]+: [^@]+@" pattern. It usually matches
17 * Signed-off-by: and Acked-by: lines.
19 static int detect_any_signoff(char *letter, int size)
28 while (letter <= --cp && (ch = *cp) == '\n')
31 while (letter <= cp) {
50 if (('A' <= ch && ch <= 'Z') ||
51 ('a' <= ch && ch <= 'z') ||
56 /* no empty last line doesn't match */
59 return seen_head && seen_name;
62 static int append_signoff(char *buf, int buf_sz, int at, const char *signoff)
64 static const char signed_off_by[] = "Signed-off-by: ";
65 int signoff_len = strlen(signoff);
69 /* Do we have enough space to add it? */
70 if (buf_sz - at <= strlen(signed_off_by) + signoff_len + 3)
73 /* First see if we already have the sign-off by the signer */
74 while ((cp = strstr(cp, signed_off_by))) {
78 cp += strlen(signed_off_by);
79 if (cp + signoff_len >= buf + at)
81 if (strncmp(cp, signoff, signoff_len))
83 if (!isspace(cp[signoff_len]))
85 /* we already have him */
90 has_signoff = detect_any_signoff(buf, at);
95 strcpy(buf + at, signed_off_by);
96 at += strlen(signed_off_by);
97 strcpy(buf + at, signoff);
104 void show_log(struct rev_info *opt, const char *sep)
106 static char this_header[16384];
107 struct log_info *log = opt->loginfo;
108 struct commit *commit = log->commit, *parent = log->parent;
109 int abbrev = opt->diffopt.abbrev;
110 int abbrev_commit = opt->abbrev_commit ? opt->abbrev : 40;
113 const char *subject = NULL, *extra_headers = opt->extra_headers;
116 if (!opt->verbose_header) {
117 fputs(diff_unique_abbrev(commit->object.sha1, abbrev_commit), stdout);
119 show_parents(commit, abbrev_commit);
120 putchar(opt->diffopt.line_termination);
125 * The "oneline" format has several special cases:
126 * - The pretty-printed commit lacks a newline at the end
127 * of the buffer, but we do want to make sure that we
128 * have a newline there. If the separator isn't already
129 * a newline, add an extra one.
130 * - unlike other log messages, the one-line format does
131 * not have an empty line between entries.
134 if (*sep != '\n' && opt->commit_format == CMIT_FMT_ONELINE)
136 if (opt->shown_one && opt->commit_format != CMIT_FMT_ONELINE)
141 * Print header line of header..
144 if (opt->commit_format == CMIT_FMT_EMAIL) {
145 char *sha1 = sha1_to_hex(commit->object.sha1);
146 if (opt->total > 0) {
147 static char buffer[64];
148 snprintf(buffer, sizeof(buffer),
149 "Subject: [PATCH %d/%d] ",
150 opt->nr, opt->total);
152 } else if (opt->total == 0)
153 subject = "Subject: [PATCH] ";
155 subject = "Subject: ";
157 printf("From %s Mon Sep 17 00:00:00 2001\n", sha1);
159 printf("Message-Id: <%s>\n", opt->message_id);
160 if (opt->ref_message_id)
161 printf("In-Reply-To: <%s>\nReferences: <%s>\n",
162 opt->ref_message_id, opt->ref_message_id);
163 if (opt->mime_boundary) {
164 static char subject_buffer[1024];
165 static char buffer[1024];
166 snprintf(subject_buffer, sizeof(subject_buffer) - 1,
168 "MIME-Version: 1.0\n"
169 "Content-Type: multipart/mixed;\n"
170 " boundary=\"%s%s\"\n"
172 "This is a multi-part message in MIME "
175 "Content-Type: text/plain; "
176 "charset=UTF-8; format=fixed\n"
177 "Content-Transfer-Encoding: 8bit\n\n",
178 extra_headers ? extra_headers : "",
179 mime_boundary_leader, opt->mime_boundary,
180 mime_boundary_leader, opt->mime_boundary);
181 extra_headers = subject_buffer;
183 snprintf(buffer, sizeof(buffer) - 1,
185 "Content-Type: text/x-patch;\n"
186 " name=\"%s.diff\"\n"
187 "Content-Transfer-Encoding: 8bit\n"
188 "Content-Disposition: inline;\n"
189 " filename=\"%s.diff\"\n\n",
190 mime_boundary_leader, opt->mime_boundary,
192 opt->diffopt.stat_sep = buffer;
196 diff_get_color(opt->diffopt.color_diff, DIFF_COMMIT),
197 opt->commit_format == CMIT_FMT_ONELINE ? "" : "commit ",
198 diff_unique_abbrev(commit->object.sha1, abbrev_commit));
200 show_parents(commit, abbrev_commit);
203 diff_unique_abbrev(parent->object.sha1,
206 diff_get_color(opt->diffopt.color_diff, DIFF_RESET));
207 putchar(opt->commit_format == CMIT_FMT_ONELINE ? ' ' : '\n');
211 * And then the pretty-printed message itself
213 len = pretty_print_commit(opt->commit_format, commit, ~0u, this_header,
214 sizeof(this_header), abbrev, subject,
215 extra_headers, opt->relative_date);
217 if (opt->add_signoff)
218 len = append_signoff(this_header, sizeof(this_header), len,
220 printf("%s%s%s", this_header, extra, sep);
223 int log_tree_diff_flush(struct rev_info *opt)
225 diffcore_std(&opt->diffopt);
227 if (diff_queue_is_empty()) {
228 int saved_fmt = opt->diffopt.output_format;
229 opt->diffopt.output_format = DIFF_FORMAT_NO_OUTPUT;
230 diff_flush(&opt->diffopt);
231 opt->diffopt.output_format = saved_fmt;
235 if (opt->loginfo && !opt->no_commit_id) {
236 /* When showing a verbose header (i.e. log message),
237 * and not in --pretty=oneline format, we would want
238 * an extra newline between the end of log and the
239 * output for readability.
241 show_log(opt, opt->diffopt.msg_sep);
242 if (opt->verbose_header &&
243 opt->commit_format != CMIT_FMT_ONELINE) {
244 int pch = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH;
245 if ((pch & opt->diffopt.output_format) == pch)
246 printf("---%c", opt->diffopt.line_termination);
248 putchar(opt->diffopt.line_termination);
251 diff_flush(&opt->diffopt);
255 static int do_diff_combined(struct rev_info *opt, struct commit *commit)
257 unsigned const char *sha1 = commit->object.sha1;
259 diff_tree_combined_merge(sha1, opt->dense_combined_merges, opt);
260 return !opt->loginfo;
264 * Show the diff of a commit.
266 * Return true if we printed any log info messages
268 static int log_tree_diff(struct rev_info *opt, struct commit *commit, struct log_info *log)
271 struct commit_list *parents;
272 unsigned const char *sha1 = commit->object.sha1;
278 parents = commit->parents;
280 if (opt->show_root_diff) {
281 diff_root_tree_sha1(sha1, "", &opt->diffopt);
282 log_tree_diff_flush(opt);
284 return !opt->loginfo;
287 /* More than one parent? */
288 if (parents && parents->next) {
289 if (opt->ignore_merges)
291 else if (opt->combine_merges)
292 return do_diff_combined(opt, commit);
294 /* If we show individual diffs, show the parent info */
295 log->parent = parents->item;
300 struct commit *parent = parents->item;
302 diff_tree_sha1(parent->object.sha1, sha1, "", &opt->diffopt);
303 log_tree_diff_flush(opt);
305 showed_log |= !opt->loginfo;
307 /* Set up the log info for the next parent, if any.. */
308 parents = parents->next;
311 log->parent = parents->item;
317 int log_tree_commit(struct rev_info *opt, struct commit *commit)
326 shown = log_tree_diff(opt, commit, &log);
327 if (!shown && opt->loginfo && opt->always_show_header) {