7 #include "reflog-walk.h"
9 #include "string-list.h"
12 struct decoration name_decoration
= { "object names" };
14 enum decoration_type
{
17 DECORATION_REF_REMOTE
,
23 static char decoration_colors
[][COLOR_MAXLEN
] = {
25 GIT_COLOR_BOLD_GREEN
, /* REF_LOCAL */
26 GIT_COLOR_BOLD_RED
, /* REF_REMOTE */
27 GIT_COLOR_BOLD_YELLOW
, /* REF_TAG */
28 GIT_COLOR_BOLD_MAGENTA
, /* REF_STASH */
29 GIT_COLOR_BOLD_CYAN
, /* REF_HEAD */
32 static const char *decorate_get_color(int decorate_use_color
, enum decoration_type ix
)
34 if (decorate_use_color
)
35 return decoration_colors
[ix
];
39 static int parse_decorate_color_slot(const char *slot
)
42 * We're comparing with 'ignore-case' on
43 * (because config.c sets them all tolower),
44 * but let's match the letters in the literal
45 * string values here with how they are
46 * documented in Documentation/config.txt, for
49 * We love being consistent, don't we?
51 if (!strcasecmp(slot
, "branch"))
52 return DECORATION_REF_LOCAL
;
53 if (!strcasecmp(slot
, "remoteBranch"))
54 return DECORATION_REF_REMOTE
;
55 if (!strcasecmp(slot
, "tag"))
56 return DECORATION_REF_TAG
;
57 if (!strcasecmp(slot
, "stash"))
58 return DECORATION_REF_STASH
;
59 if (!strcasecmp(slot
, "HEAD"))
60 return DECORATION_REF_HEAD
;
64 int parse_decorate_color_config(const char *var
, const int ofs
, const char *value
)
66 int slot
= parse_decorate_color_slot(var
+ ofs
);
70 return config_error_nonbool(var
);
71 color_parse(value
, var
, decoration_colors
[slot
]);
76 * log-tree.c uses DIFF_OPT_TST for determining whether to use color
77 * for showing the commit sha1, use the same check for --decorate
79 #define decorate_get_color_opt(o, ix) \
80 decorate_get_color(DIFF_OPT_TST((o), COLOR_DIFF), ix)
82 static void add_name_decoration(enum decoration_type type
, const char *name
, struct object
*obj
)
84 int nlen
= strlen(name
);
85 struct name_decoration
*res
= xmalloc(sizeof(struct name_decoration
) + nlen
);
86 memcpy(res
->name
, name
, nlen
+ 1);
88 res
->next
= add_decoration(&name_decoration
, obj
, res
);
91 static int add_ref_decoration(const char *refname
, const unsigned char *sha1
, int flags
, void *cb_data
)
93 struct object
*obj
= parse_object(sha1
);
94 enum decoration_type type
= DECORATION_NONE
;
98 if (!prefixcmp(refname
, "refs/heads"))
99 type
= DECORATION_REF_LOCAL
;
100 else if (!prefixcmp(refname
, "refs/remotes"))
101 type
= DECORATION_REF_REMOTE
;
102 else if (!prefixcmp(refname
, "refs/tags"))
103 type
= DECORATION_REF_TAG
;
104 else if (!prefixcmp(refname
, "refs/stash"))
105 type
= DECORATION_REF_STASH
;
106 else if (!prefixcmp(refname
, "HEAD"))
107 type
= DECORATION_REF_HEAD
;
109 if (!cb_data
|| *(int *)cb_data
== DECORATE_SHORT_REFS
)
110 refname
= prettify_refname(refname
);
111 add_name_decoration(type
, refname
, obj
);
112 while (obj
->type
== OBJ_TAG
) {
113 obj
= ((struct tag
*)obj
)->tagged
;
116 add_name_decoration(DECORATION_REF_TAG
, refname
, obj
);
121 void load_ref_decorations(int flags
)
126 for_each_ref(add_ref_decoration
, &flags
);
127 head_ref(add_ref_decoration
, &flags
);
131 static void show_parents(struct commit
*commit
, int abbrev
)
133 struct commit_list
*p
;
134 for (p
= commit
->parents
; p
; p
= p
->next
) {
135 struct commit
*parent
= p
->item
;
136 printf(" %s", find_unique_abbrev(parent
->object
.sha1
, abbrev
));
140 void show_decorations(struct rev_info
*opt
, struct commit
*commit
)
143 struct name_decoration
*decoration
;
144 const char *color_commit
=
145 diff_get_color_opt(&opt
->diffopt
, DIFF_COMMIT
);
146 const char *color_reset
=
147 decorate_get_color_opt(&opt
->diffopt
, DECORATION_NONE
);
149 if (opt
->show_source
&& commit
->util
)
150 printf("\t%s", (char *) commit
->util
);
151 if (!opt
->show_decorations
)
153 decoration
= lookup_decoration(&name_decoration
, &commit
->object
);
158 printf("%s", prefix
);
159 fputs(decorate_get_color_opt(&opt
->diffopt
, decoration
->type
),
161 if (decoration
->type
== DECORATION_REF_TAG
)
162 fputs("tag: ", stdout
);
163 printf("%s", decoration
->name
);
164 fputs(color_reset
, stdout
);
165 fputs(color_commit
, stdout
);
167 decoration
= decoration
->next
;
173 * Search for "^[-A-Za-z]+: [^@]+@" pattern. It usually matches
174 * Signed-off-by: and Acked-by: lines.
176 static int detect_any_signoff(char *letter
, int size
)
185 while (letter
<= --cp
&& *cp
== '\n')
188 while (letter
<= cp
) {
207 if (('A' <= ch
&& ch
<= 'Z') ||
208 ('a' <= ch
&& ch
<= 'z') ||
213 /* no empty last line doesn't match */
216 return seen_head
&& seen_name
;
219 static void append_signoff(struct strbuf
*sb
, const char *signoff
)
221 static const char signed_off_by
[] = "Signed-off-by: ";
222 size_t signoff_len
= strlen(signoff
);
228 /* First see if we already have the sign-off by the signer */
229 while ((cp
= strstr(cp
, signed_off_by
))) {
233 cp
+= strlen(signed_off_by
);
234 if (cp
+ signoff_len
>= sb
->buf
+ sb
->len
)
236 if (strncmp(cp
, signoff
, signoff_len
))
238 if (!isspace(cp
[signoff_len
]))
240 /* we already have him */
245 has_signoff
= detect_any_signoff(sb
->buf
, sb
->len
);
248 strbuf_addch(sb
, '\n');
250 strbuf_addstr(sb
, signed_off_by
);
251 strbuf_add(sb
, signoff
, signoff_len
);
252 strbuf_addch(sb
, '\n');
255 static unsigned int digits_in_number(unsigned int number
)
257 unsigned int i
= 10, result
= 1;
258 while (i
<= number
) {
265 void get_patch_filename(struct commit
*commit
, int nr
, const char *suffix
,
268 int suffix_len
= strlen(suffix
) + 1;
269 int start_len
= buf
->len
;
271 strbuf_addf(buf
, commit
? "%04d-" : "%d", nr
);
273 int max_len
= start_len
+ FORMAT_PATCH_NAME_MAX
- suffix_len
;
274 struct pretty_print_context ctx
= {0};
275 ctx
.date_mode
= DATE_NORMAL
;
277 format_commit_message(commit
, "%f", buf
, &ctx
);
278 if (max_len
< buf
->len
)
279 strbuf_setlen(buf
, max_len
);
280 strbuf_addstr(buf
, suffix
);
284 void log_write_email_headers(struct rev_info
*opt
, struct commit
*commit
,
285 const char **subject_p
,
286 const char **extra_headers_p
,
287 int *need_8bit_cte_p
)
289 const char *subject
= NULL
;
290 const char *extra_headers
= opt
->extra_headers
;
291 const char *name
= sha1_to_hex(commit
->object
.sha1
);
293 *need_8bit_cte_p
= 0; /* unknown */
294 if (opt
->total
> 0) {
295 static char buffer
[64];
296 snprintf(buffer
, sizeof(buffer
),
297 "Subject: [%s%s%0*d/%d] ",
299 *opt
->subject_prefix
? " " : "",
300 digits_in_number(opt
->total
),
301 opt
->nr
, opt
->total
);
303 } else if (opt
->total
== 0 && opt
->subject_prefix
&& *opt
->subject_prefix
) {
304 static char buffer
[256];
305 snprintf(buffer
, sizeof(buffer
),
307 opt
->subject_prefix
);
310 subject
= "Subject: ";
313 printf("From %s Mon Sep 17 00:00:00 2001\n", name
);
314 graph_show_oneline(opt
->graph
);
315 if (opt
->message_id
) {
316 printf("Message-Id: <%s>\n", opt
->message_id
);
317 graph_show_oneline(opt
->graph
);
319 if (opt
->ref_message_ids
&& opt
->ref_message_ids
->nr
> 0) {
321 n
= opt
->ref_message_ids
->nr
;
322 printf("In-Reply-To: <%s>\n", opt
->ref_message_ids
->items
[n
-1].string
);
323 for (i
= 0; i
< n
; i
++)
324 printf("%s<%s>\n", (i
> 0 ? "\t" : "References: "),
325 opt
->ref_message_ids
->items
[i
].string
);
326 graph_show_oneline(opt
->graph
);
328 if (opt
->mime_boundary
) {
329 static char subject_buffer
[1024];
330 static char buffer
[1024];
331 struct strbuf filename
= STRBUF_INIT
;
332 *need_8bit_cte_p
= -1; /* NEVER */
333 snprintf(subject_buffer
, sizeof(subject_buffer
) - 1,
335 "MIME-Version: 1.0\n"
336 "Content-Type: multipart/mixed;"
337 " boundary=\"%s%s\"\n"
339 "This is a multi-part message in MIME "
342 "Content-Type: text/plain; "
343 "charset=UTF-8; format=fixed\n"
344 "Content-Transfer-Encoding: 8bit\n\n",
345 extra_headers
? extra_headers
: "",
346 mime_boundary_leader
, opt
->mime_boundary
,
347 mime_boundary_leader
, opt
->mime_boundary
);
348 extra_headers
= subject_buffer
;
350 get_patch_filename(opt
->numbered_files
? NULL
: commit
, opt
->nr
,
351 opt
->patch_suffix
, &filename
);
352 snprintf(buffer
, sizeof(buffer
) - 1,
354 "Content-Type: text/x-patch;"
356 "Content-Transfer-Encoding: 8bit\n"
357 "Content-Disposition: %s;"
358 " filename=\"%s\"\n\n",
359 mime_boundary_leader
, opt
->mime_boundary
,
361 opt
->no_inline
? "attachment" : "inline",
363 opt
->diffopt
.stat_sep
= buffer
;
364 strbuf_release(&filename
);
366 *subject_p
= subject
;
367 *extra_headers_p
= extra_headers
;
370 void show_log(struct rev_info
*opt
)
372 struct strbuf msgbuf
= STRBUF_INIT
;
373 struct log_info
*log
= opt
->loginfo
;
374 struct commit
*commit
= log
->commit
, *parent
= log
->parent
;
375 int abbrev_commit
= opt
->abbrev_commit
? opt
->abbrev
: 40;
376 const char *extra_headers
= opt
->extra_headers
;
377 struct pretty_print_context ctx
= {0};
380 ctx
.show_notes
= opt
->show_notes
;
381 if (!opt
->verbose_header
) {
382 graph_show_commit(opt
->graph
);
385 put_revision_mark(opt
, commit
);
386 fputs(find_unique_abbrev(commit
->object
.sha1
, abbrev_commit
), stdout
);
387 if (opt
->print_parents
)
388 show_parents(commit
, abbrev_commit
);
389 show_decorations(opt
, commit
);
390 if (opt
->graph
&& !graph_is_commit_finished(opt
->graph
)) {
392 graph_show_remainder(opt
->graph
);
394 putchar(opt
->diffopt
.line_termination
);
399 * If use_terminator is set, we already handled any record termination
400 * at the end of the last record.
401 * Otherwise, add a diffopt.line_termination character before all
402 * entries but the first. (IOW, as a separator between entries)
404 if (opt
->shown_one
&& !opt
->use_terminator
) {
406 * If entries are separated by a newline, the output
407 * should look human-readable. If the last entry ended
408 * with a newline, print the graph output before this
409 * newline. Otherwise it will end up as a completely blank
410 * line and will look like a gap in the graph.
412 * If the entry separator is not a newline, the output is
413 * primarily intended for programmatic consumption, and we
414 * never want the extra graph output before the entry
417 if (opt
->diffopt
.line_termination
== '\n' &&
418 !opt
->missing_newline
)
419 graph_show_padding(opt
->graph
);
420 putchar(opt
->diffopt
.line_termination
);
425 * If the history graph was requested,
426 * print the graph, up to this commit's line
428 graph_show_commit(opt
->graph
);
431 * Print header line of header..
434 if (opt
->commit_format
== CMIT_FMT_EMAIL
) {
435 log_write_email_headers(opt
, commit
, &ctx
.subject
, &extra_headers
,
437 } else if (opt
->commit_format
!= CMIT_FMT_USERFORMAT
) {
438 fputs(diff_get_color_opt(&opt
->diffopt
, DIFF_COMMIT
), stdout
);
439 if (opt
->commit_format
!= CMIT_FMT_ONELINE
)
440 fputs("commit ", stdout
);
443 put_revision_mark(opt
, commit
);
444 fputs(find_unique_abbrev(commit
->object
.sha1
, abbrev_commit
),
446 if (opt
->print_parents
)
447 show_parents(commit
, abbrev_commit
);
450 find_unique_abbrev(parent
->object
.sha1
,
452 show_decorations(opt
, commit
);
453 printf("%s", diff_get_color_opt(&opt
->diffopt
, DIFF_RESET
));
454 if (opt
->commit_format
== CMIT_FMT_ONELINE
) {
458 graph_show_oneline(opt
->graph
);
460 if (opt
->reflog_info
) {
462 * setup_revisions() ensures that opt->reflog_info
463 * and opt->graph cannot both be set,
464 * so we don't need to worry about printing the
467 show_reflog_message(opt
->reflog_info
,
468 opt
->commit_format
== CMIT_FMT_ONELINE
,
469 opt
->date_mode_explicit
?
472 if (opt
->commit_format
== CMIT_FMT_ONELINE
)
481 * And then the pretty-printed message itself
483 if (ctx
.need_8bit_cte
>= 0)
484 ctx
.need_8bit_cte
= has_non_ascii(opt
->add_signoff
);
485 ctx
.date_mode
= opt
->date_mode
;
486 ctx
.abbrev
= opt
->diffopt
.abbrev
;
487 ctx
.after_subject
= extra_headers
;
488 ctx
.preserve_subject
= opt
->preserve_subject
;
489 ctx
.reflog_info
= opt
->reflog_info
;
490 ctx
.fmt
= opt
->commit_format
;
491 pretty_print_commit(&ctx
, commit
, &msgbuf
);
493 if (opt
->add_signoff
)
494 append_signoff(&msgbuf
, opt
->add_signoff
);
495 if (opt
->show_log_size
) {
496 printf("log size %i\n", (int)msgbuf
.len
);
497 graph_show_oneline(opt
->graph
);
501 * Set opt->missing_newline if msgbuf doesn't
502 * end in a newline (including if it is empty)
504 if (!msgbuf
.len
|| msgbuf
.buf
[msgbuf
.len
- 1] != '\n')
505 opt
->missing_newline
= 1;
507 opt
->missing_newline
= 0;
510 graph_show_commit_msg(opt
->graph
, &msgbuf
);
512 fwrite(msgbuf
.buf
, sizeof(char), msgbuf
.len
, stdout
);
513 if (opt
->use_terminator
) {
514 if (!opt
->missing_newline
)
515 graph_show_padding(opt
->graph
);
519 strbuf_release(&msgbuf
);
522 int log_tree_diff_flush(struct rev_info
*opt
)
524 diffcore_std(&opt
->diffopt
);
526 if (diff_queue_is_empty()) {
527 int saved_fmt
= opt
->diffopt
.output_format
;
528 opt
->diffopt
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
529 diff_flush(&opt
->diffopt
);
530 opt
->diffopt
.output_format
= saved_fmt
;
534 if (opt
->loginfo
&& !opt
->no_commit_id
) {
535 /* When showing a verbose header (i.e. log message),
536 * and not in --pretty=oneline format, we would want
537 * an extra newline between the end of log and the
538 * output for readability.
541 if ((opt
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
) &&
542 opt
->verbose_header
&&
543 opt
->commit_format
!= CMIT_FMT_ONELINE
) {
544 int pch
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_PATCH
;
545 if ((pch
& opt
->diffopt
.output_format
) == pch
)
547 if (opt
->diffopt
.output_prefix
) {
548 struct strbuf
*msg
= NULL
;
549 msg
= opt
->diffopt
.output_prefix(&opt
->diffopt
,
550 opt
->diffopt
.output_prefix_data
);
551 fwrite(msg
->buf
, msg
->len
, 1, stdout
);
556 diff_flush(&opt
->diffopt
);
560 static int do_diff_combined(struct rev_info
*opt
, struct commit
*commit
)
562 unsigned const char *sha1
= commit
->object
.sha1
;
564 diff_tree_combined_merge(sha1
, opt
->dense_combined_merges
, opt
);
565 return !opt
->loginfo
;
569 * Show the diff of a commit.
571 * Return true if we printed any log info messages
573 static int log_tree_diff(struct rev_info
*opt
, struct commit
*commit
, struct log_info
*log
)
576 struct commit_list
*parents
;
577 unsigned const char *sha1
= commit
->object
.sha1
;
579 if (!opt
->diff
&& !DIFF_OPT_TST(&opt
->diffopt
, EXIT_WITH_STATUS
))
583 parents
= commit
->parents
;
585 if (opt
->show_root_diff
) {
586 diff_root_tree_sha1(sha1
, "", &opt
->diffopt
);
587 log_tree_diff_flush(opt
);
589 return !opt
->loginfo
;
592 /* More than one parent? */
593 if (parents
&& parents
->next
) {
594 if (opt
->ignore_merges
)
596 else if (opt
->combine_merges
)
597 return do_diff_combined(opt
, commit
);
598 else if (opt
->first_parent_only
) {
600 * Generate merge log entry only for the first
601 * parent, showing summary diff of the others
604 diff_tree_sha1(parents
->item
->object
.sha1
, sha1
, "", &opt
->diffopt
);
605 log_tree_diff_flush(opt
);
606 return !opt
->loginfo
;
609 /* If we show individual diffs, show the parent info */
610 log
->parent
= parents
->item
;
615 struct commit
*parent
= parents
->item
;
617 diff_tree_sha1(parent
->object
.sha1
, sha1
, "", &opt
->diffopt
);
618 log_tree_diff_flush(opt
);
620 showed_log
|= !opt
->loginfo
;
622 /* Set up the log info for the next parent, if any.. */
623 parents
= parents
->next
;
626 log
->parent
= parents
->item
;
632 int log_tree_commit(struct rev_info
*opt
, struct commit
*commit
)
641 shown
= log_tree_diff(opt
, commit
, &log
);
642 if (!shown
&& opt
->loginfo
&& opt
->always_show_header
) {
648 maybe_flush_or_die(stdout
, "stdout");