6 #include "interpolate.h"
10 int save_commit_buffer
= 1;
15 * the number of children of the associated commit
16 * that also occur in the list being sorted.
18 unsigned int indegree
;
21 * reference to original list item that we will re-use
24 struct commit_list
* list_item
;
28 const char *commit_type
= "commit";
30 static struct cmt_fmt_map
{
35 { "raw", 1, CMIT_FMT_RAW
},
36 { "medium", 1, CMIT_FMT_MEDIUM
},
37 { "short", 1, CMIT_FMT_SHORT
},
38 { "email", 1, CMIT_FMT_EMAIL
},
39 { "full", 5, CMIT_FMT_FULL
},
40 { "fuller", 5, CMIT_FMT_FULLER
},
41 { "oneline", 1, CMIT_FMT_ONELINE
},
42 { "format:", 7, CMIT_FMT_USERFORMAT
},
45 static char *user_format
;
47 enum cmit_fmt
get_commit_format(const char *arg
)
52 return CMIT_FMT_DEFAULT
;
55 if (!prefixcmp(arg
, "format:")) {
58 user_format
= xstrdup(arg
+ 7);
59 return CMIT_FMT_USERFORMAT
;
61 for (i
= 0; i
< ARRAY_SIZE(cmt_fmts
); i
++) {
62 if (!strncmp(arg
, cmt_fmts
[i
].n
, cmt_fmts
[i
].cmp_len
) &&
63 !strncmp(arg
, cmt_fmts
[i
].n
, strlen(arg
)))
67 die("invalid --pretty format: %s", arg
);
70 static struct commit
*check_commit(struct object
*obj
,
71 const unsigned char *sha1
,
74 if (obj
->type
!= OBJ_COMMIT
) {
76 error("Object %s is a %s, not a commit",
77 sha1_to_hex(sha1
), typename(obj
->type
));
80 return (struct commit
*) obj
;
83 struct commit
*lookup_commit_reference_gently(const unsigned char *sha1
,
86 struct object
*obj
= deref_tag(parse_object(sha1
), NULL
, 0);
90 return check_commit(obj
, sha1
, quiet
);
93 struct commit
*lookup_commit_reference(const unsigned char *sha1
)
95 return lookup_commit_reference_gently(sha1
, 0);
98 struct commit
*lookup_commit(const unsigned char *sha1
)
100 struct object
*obj
= lookup_object(sha1
);
102 return create_object(sha1
, OBJ_COMMIT
, alloc_commit_node());
104 obj
->type
= OBJ_COMMIT
;
105 return check_commit(obj
, sha1
, 0);
108 static unsigned long parse_commit_date(const char *buf
)
112 if (memcmp(buf
, "author", 6))
114 while (*buf
++ != '\n')
116 if (memcmp(buf
, "committer", 9))
118 while (*buf
++ != '>')
120 date
= strtoul(buf
, NULL
, 10);
121 if (date
== ULONG_MAX
)
126 static struct commit_graft
**commit_graft
;
127 static int commit_graft_alloc
, commit_graft_nr
;
129 static int commit_graft_pos(const unsigned char *sha1
)
133 hi
= commit_graft_nr
;
135 int mi
= (lo
+ hi
) / 2;
136 struct commit_graft
*graft
= commit_graft
[mi
];
137 int cmp
= hashcmp(sha1
, graft
->sha1
);
148 int register_commit_graft(struct commit_graft
*graft
, int ignore_dups
)
150 int pos
= commit_graft_pos(graft
->sha1
);
156 free(commit_graft
[pos
]);
157 commit_graft
[pos
] = graft
;
162 if (commit_graft_alloc
<= ++commit_graft_nr
) {
163 commit_graft_alloc
= alloc_nr(commit_graft_alloc
);
164 commit_graft
= xrealloc(commit_graft
,
165 sizeof(*commit_graft
) *
168 if (pos
< commit_graft_nr
)
169 memmove(commit_graft
+ pos
+ 1,
171 (commit_graft_nr
- pos
- 1) *
172 sizeof(*commit_graft
));
173 commit_graft
[pos
] = graft
;
177 struct commit_graft
*read_graft_line(char *buf
, int len
)
179 /* The format is just "Commit Parent1 Parent2 ...\n" */
181 struct commit_graft
*graft
= NULL
;
183 if (buf
[len
-1] == '\n')
185 if (buf
[0] == '#' || buf
[0] == '\0')
187 if ((len
+ 1) % 41) {
189 error("bad graft data: %s", buf
);
193 i
= (len
+ 1) / 41 - 1;
194 graft
= xmalloc(sizeof(*graft
) + 20 * i
);
195 graft
->nr_parent
= i
;
196 if (get_sha1_hex(buf
, graft
->sha1
))
198 for (i
= 40; i
< len
; i
+= 41) {
201 if (get_sha1_hex(buf
+ i
+ 1, graft
->parent
[i
/41]))
207 int read_graft_file(const char *graft_file
)
209 FILE *fp
= fopen(graft_file
, "r");
213 while (fgets(buf
, sizeof(buf
), fp
)) {
214 /* The format is just "Commit Parent1 Parent2 ...\n" */
215 int len
= strlen(buf
);
216 struct commit_graft
*graft
= read_graft_line(buf
, len
);
219 if (register_commit_graft(graft
, 1))
220 error("duplicate graft data: %s", buf
);
226 static void prepare_commit_graft(void)
228 static int commit_graft_prepared
;
231 if (commit_graft_prepared
)
233 graft_file
= get_graft_file();
234 read_graft_file(graft_file
);
235 /* make sure shallows are read */
236 is_repository_shallow();
237 commit_graft_prepared
= 1;
240 static struct commit_graft
*lookup_commit_graft(const unsigned char *sha1
)
243 prepare_commit_graft();
244 pos
= commit_graft_pos(sha1
);
247 return commit_graft
[pos
];
250 int write_shallow_commits(int fd
, int use_pack_protocol
)
253 for (i
= 0; i
< commit_graft_nr
; i
++)
254 if (commit_graft
[i
]->nr_parent
< 0) {
256 sha1_to_hex(commit_graft
[i
]->sha1
);
258 if (use_pack_protocol
)
259 packet_write(fd
, "shallow %s", hex
);
261 if (write_in_full(fd
, hex
, 40) != 40)
263 if (write_in_full(fd
, "\n", 1) != 1)
270 int unregister_shallow(const unsigned char *sha1
)
272 int pos
= commit_graft_pos(sha1
);
275 if (pos
+ 1 < commit_graft_nr
)
276 memcpy(commit_graft
+ pos
, commit_graft
+ pos
+ 1,
277 sizeof(struct commit_graft
*)
278 * (commit_graft_nr
- pos
- 1));
283 int parse_commit_buffer(struct commit
*item
, void *buffer
, unsigned long size
)
286 char *bufptr
= buffer
;
287 unsigned char parent
[20];
288 struct commit_list
**pptr
;
289 struct commit_graft
*graft
;
292 if (item
->object
.parsed
)
294 item
->object
.parsed
= 1;
296 if (tail
<= bufptr
+ 5 || memcmp(bufptr
, "tree ", 5))
297 return error("bogus commit object %s", sha1_to_hex(item
->object
.sha1
));
298 if (tail
<= bufptr
+ 45 || get_sha1_hex(bufptr
+ 5, parent
) < 0)
299 return error("bad tree pointer in commit %s",
300 sha1_to_hex(item
->object
.sha1
));
301 item
->tree
= lookup_tree(parent
);
304 bufptr
+= 46; /* "tree " + "hex sha1" + "\n" */
305 pptr
= &item
->parents
;
307 graft
= lookup_commit_graft(item
->object
.sha1
);
308 while (bufptr
+ 48 < tail
&& !memcmp(bufptr
, "parent ", 7)) {
309 struct commit
*new_parent
;
311 if (tail
<= bufptr
+ 48 ||
312 get_sha1_hex(bufptr
+ 7, parent
) ||
314 return error("bad parents in commit %s", sha1_to_hex(item
->object
.sha1
));
318 new_parent
= lookup_commit(parent
);
320 pptr
= &commit_list_insert(new_parent
, pptr
)->next
;
326 struct commit
*new_parent
;
327 for (i
= 0; i
< graft
->nr_parent
; i
++) {
328 new_parent
= lookup_commit(graft
->parent
[i
]);
331 pptr
= &commit_list_insert(new_parent
, pptr
)->next
;
335 item
->date
= parse_commit_date(bufptr
);
337 if (track_object_refs
) {
339 struct commit_list
*p
;
340 struct object_refs
*refs
= alloc_object_refs(n_refs
);
342 refs
->ref
[i
++] = &item
->tree
->object
;
343 for (p
= item
->parents
; p
; p
= p
->next
)
344 refs
->ref
[i
++] = &p
->item
->object
;
345 set_object_refs(&item
->object
, refs
);
351 int parse_commit(struct commit
*item
)
353 enum object_type type
;
358 if (item
->object
.parsed
)
360 buffer
= read_sha1_file(item
->object
.sha1
, &type
, &size
);
362 return error("Could not read %s",
363 sha1_to_hex(item
->object
.sha1
));
364 if (type
!= OBJ_COMMIT
) {
366 return error("Object %s not a commit",
367 sha1_to_hex(item
->object
.sha1
));
369 ret
= parse_commit_buffer(item
, buffer
, size
);
370 if (save_commit_buffer
&& !ret
) {
371 item
->buffer
= buffer
;
378 struct commit_list
*commit_list_insert(struct commit
*item
, struct commit_list
**list_p
)
380 struct commit_list
*new_list
= xmalloc(sizeof(struct commit_list
));
381 new_list
->item
= item
;
382 new_list
->next
= *list_p
;
387 void free_commit_list(struct commit_list
*list
)
390 struct commit_list
*temp
= list
;
396 struct commit_list
* insert_by_date(struct commit
*item
, struct commit_list
**list
)
398 struct commit_list
**pp
= list
;
399 struct commit_list
*p
;
400 while ((p
= *pp
) != NULL
) {
401 if (p
->item
->date
< item
->date
) {
406 return commit_list_insert(item
, pp
);
410 void sort_by_date(struct commit_list
**list
)
412 struct commit_list
*ret
= NULL
;
414 insert_by_date((*list
)->item
, &ret
);
415 *list
= (*list
)->next
;
420 struct commit
*pop_most_recent_commit(struct commit_list
**list
,
423 struct commit
*ret
= (*list
)->item
;
424 struct commit_list
*parents
= ret
->parents
;
425 struct commit_list
*old
= *list
;
427 *list
= (*list
)->next
;
431 struct commit
*commit
= parents
->item
;
432 parse_commit(commit
);
433 if (!(commit
->object
.flags
& mark
)) {
434 commit
->object
.flags
|= mark
;
435 insert_by_date(commit
, list
);
437 parents
= parents
->next
;
442 void clear_commit_marks(struct commit
*commit
, unsigned int mark
)
444 struct commit_list
*parents
;
446 commit
->object
.flags
&= ~mark
;
447 parents
= commit
->parents
;
449 struct commit
*parent
= parents
->item
;
451 /* Have we already cleared this? */
452 if (mark
& parent
->object
.flags
)
453 clear_commit_marks(parent
, mark
);
454 parents
= parents
->next
;
459 * Generic support for pretty-printing the header
461 static int get_one_line(const char *msg
, unsigned long len
)
476 /* High bit set, or ISO-2022-INT */
477 static int non_ascii(int ch
)
480 return ((ch
& 0x80) || (ch
== 0x1b));
483 static int is_rfc2047_special(char ch
)
485 return (non_ascii(ch
) || (ch
== '=') || (ch
== '?') || (ch
== '_'));
488 static int add_rfc2047(char *buf
, const char *line
, int len
,
489 const char *encoding
)
493 char q_encoding
[128];
494 const char *q_encoding_fmt
= "=?%s?q?";
496 for (i
= needquote
= 0; !needquote
&& i
< len
; i
++) {
501 (ch
== '=' && line
[i
+1] == '?'))
505 return sprintf(buf
, "%.*s", len
, line
);
507 i
= snprintf(q_encoding
, sizeof(q_encoding
), q_encoding_fmt
, encoding
);
508 if (sizeof(q_encoding
) < i
)
509 die("Insanely long encoding name %s", encoding
);
510 memcpy(bp
, q_encoding
, i
);
512 for (i
= 0; i
< len
; i
++) {
513 unsigned ch
= line
[i
] & 0xFF;
515 * We encode ' ' using '=20' even though rfc2047
516 * allows using '_' for readability. Unfortunately,
517 * many programs do not understand this and just
518 * leave the underscore in place.
520 if (is_rfc2047_special(ch
) || ch
== ' ') {
521 sprintf(bp
, "=%02X", ch
);
532 static int add_user_info(const char *what
, enum cmit_fmt fmt
, char *buf
,
533 const char *line
, enum date_mode dmode
,
534 const char *encoding
)
540 const char *filler
= " ";
542 if (fmt
== CMIT_FMT_ONELINE
)
544 date
= strchr(line
, '>');
547 namelen
= ++date
- line
;
548 time
= strtoul(date
, &date
, 10);
549 tz
= strtol(date
, NULL
, 10);
551 if (fmt
== CMIT_FMT_EMAIL
) {
552 char *name_tail
= strchr(line
, '<');
553 int display_name_length
;
556 while (line
< name_tail
&& isspace(name_tail
[-1]))
558 display_name_length
= name_tail
- line
;
560 strcpy(buf
, "From: ");
562 ret
+= add_rfc2047(buf
+ ret
, line
, display_name_length
,
564 memcpy(buf
+ ret
, name_tail
, namelen
- display_name_length
);
565 ret
+= namelen
- display_name_length
;
569 ret
= sprintf(buf
, "%s: %.*s%.*s\n", what
,
570 (fmt
== CMIT_FMT_FULLER
) ? 4 : 0,
571 filler
, namelen
, line
);
574 case CMIT_FMT_MEDIUM
:
575 ret
+= sprintf(buf
+ ret
, "Date: %s\n",
576 show_date(time
, tz
, dmode
));
579 ret
+= sprintf(buf
+ ret
, "Date: %s\n",
580 show_rfc2822_date(time
, tz
));
582 case CMIT_FMT_FULLER
:
583 ret
+= sprintf(buf
+ ret
, "%sDate: %s\n", what
,
584 show_date(time
, tz
, dmode
));
593 static int is_empty_line(const char *line
, int *len_p
)
596 while (len
&& isspace(line
[len
-1]))
602 static int add_merge_info(enum cmit_fmt fmt
, char *buf
, const struct commit
*commit
, int abbrev
)
604 struct commit_list
*parent
= commit
->parents
;
607 if ((fmt
== CMIT_FMT_ONELINE
) || (fmt
== CMIT_FMT_EMAIL
) ||
608 !parent
|| !parent
->next
)
611 offset
= sprintf(buf
, "Merge:");
614 struct commit
*p
= parent
->item
;
615 const char *hex
= NULL
;
618 hex
= find_unique_abbrev(p
->object
.sha1
, abbrev
);
620 hex
= sha1_to_hex(p
->object
.sha1
);
621 dots
= (abbrev
&& strlen(hex
) != 40) ? "..." : "";
622 parent
= parent
->next
;
624 offset
+= sprintf(buf
+ offset
, " %s%s", hex
, dots
);
626 buf
[offset
++] = '\n';
630 static char *get_header(const struct commit
*commit
, const char *key
)
632 int key_len
= strlen(key
);
633 const char *line
= commit
->buffer
;
636 const char *eol
= strchr(line
, '\n'), *next
;
641 eol
= line
+ strlen(line
);
645 if (eol
- line
> key_len
&&
646 !strncmp(line
, key
, key_len
) &&
647 line
[key_len
] == ' ') {
648 int len
= eol
- line
- key_len
;
649 char *ret
= xmalloc(len
);
650 memcpy(ret
, line
+ key_len
+ 1, len
- 1);
658 static char *replace_encoding_header(char *buf
, const char *encoding
)
660 char *encoding_header
= strstr(buf
, "\nencoding ");
661 char *header_end
= strstr(buf
, "\n\n");
662 char *end_of_encoding_header
;
663 int encoding_header_pos
;
664 int encoding_header_len
;
667 int buflen
= strlen(buf
) + 1;
670 header_end
= buf
+ buflen
;
671 if (!encoding_header
|| encoding_header
>= header_end
)
674 end_of_encoding_header
= strchr(encoding_header
, '\n');
675 if (!end_of_encoding_header
)
676 return buf
; /* should not happen but be defensive */
677 end_of_encoding_header
++;
679 encoding_header_len
= end_of_encoding_header
- encoding_header
;
680 encoding_header_pos
= encoding_header
- buf
;
682 if (is_encoding_utf8(encoding
)) {
683 /* we have re-coded to UTF-8; drop the header */
684 memmove(encoding_header
, end_of_encoding_header
,
685 buflen
- (encoding_header_pos
+ encoding_header_len
));
688 new_len
= strlen(encoding
);
689 need_len
= new_len
+ strlen("encoding \n");
690 if (encoding_header_len
< need_len
) {
691 buf
= xrealloc(buf
, buflen
+ (need_len
- encoding_header_len
));
692 encoding_header
= buf
+ encoding_header_pos
;
693 end_of_encoding_header
= encoding_header
+ encoding_header_len
;
695 memmove(end_of_encoding_header
+ (need_len
- encoding_header_len
),
696 end_of_encoding_header
,
697 buflen
- (encoding_header_pos
+ encoding_header_len
));
698 memcpy(encoding_header
+ 9, encoding
, strlen(encoding
));
699 encoding_header
[9 + new_len
] = '\n';
703 static char *logmsg_reencode(const struct commit
*commit
,
704 const char *output_encoding
)
706 static const char *utf8
= "utf-8";
707 const char *use_encoding
;
711 if (!*output_encoding
)
713 encoding
= get_header(commit
, "encoding");
714 use_encoding
= encoding
? encoding
: utf8
;
715 if (!strcmp(use_encoding
, output_encoding
))
716 out
= xstrdup(commit
->buffer
);
718 out
= reencode_string(commit
->buffer
,
719 output_encoding
, use_encoding
);
721 out
= replace_encoding_header(out
, output_encoding
);
727 static void fill_person(struct interp
*table
, const char *msg
, int len
)
729 int start
, end
, tz
= 0;
734 for (end
= 0; end
< len
&& msg
[end
] != '<'; end
++)
737 while (end
> 0 && isspace(msg
[end
- 1]))
739 table
[0].value
= xstrndup(msg
, end
);
745 for (end
= start
+ 1; end
< len
&& msg
[end
] != '>'; end
++)
751 table
[1].value
= xstrndup(msg
+ start
, end
- start
);
754 for (start
= end
+ 1; start
< len
&& isspace(msg
[start
]); start
++)
758 date
= strtoul(msg
+ start
, &ep
, 10);
759 if (msg
+ start
== ep
)
762 table
[5].value
= xstrndup(msg
+ start
, ep
- (msg
+ start
));
765 for (start
= ep
- msg
+ 1; start
< len
&& isspace(msg
[start
]); start
++)
767 if (start
+ 1 < len
) {
768 tz
= strtoul(msg
+ start
+ 1, NULL
, 10);
769 if (msg
[start
] == '-')
773 interp_set_entry(table
, 2, show_date(date
, tz
, 0));
774 interp_set_entry(table
, 3, show_rfc2822_date(date
, tz
));
775 interp_set_entry(table
, 4, show_date(date
, tz
, 1));
778 static long format_commit_message(const struct commit
*commit
,
779 const char *msg
, char *buf
, unsigned long space
)
781 struct interp table
[] = {
782 { "%H" }, /* commit hash */
783 { "%h" }, /* abbreviated commit hash */
784 { "%T" }, /* tree hash */
785 { "%t" }, /* abbreviated tree hash */
786 { "%P" }, /* parent hashes */
787 { "%p" }, /* abbreviated parent hashes */
788 { "%an" }, /* author name */
789 { "%ae" }, /* author email */
790 { "%ad" }, /* author date */
791 { "%aD" }, /* author date, RFC2822 style */
792 { "%ar" }, /* author date, relative */
793 { "%at" }, /* author date, UNIX timestamp */
794 { "%cn" }, /* committer name */
795 { "%ce" }, /* committer email */
796 { "%cd" }, /* committer date */
797 { "%cD" }, /* committer date, RFC2822 style */
798 { "%cr" }, /* committer date, relative */
799 { "%ct" }, /* committer date, UNIX timestamp */
800 { "%e" }, /* encoding */
801 { "%s" }, /* subject */
803 { "%Cred" }, /* red */
804 { "%Cgreen" }, /* green */
805 { "%Cblue" }, /* blue */
806 { "%Creset" }, /* reset color */
807 { "%n" }, /* newline */
808 { "%m" }, /* left/right/bottom */
811 IHASH
= 0, IHASH_ABBREV
,
813 IPARENTS
, IPARENTS_ABBREV
,
814 IAUTHOR_NAME
, IAUTHOR_EMAIL
,
815 IAUTHOR_DATE
, IAUTHOR_DATE_RFC2822
, IAUTHOR_DATE_RELATIVE
,
817 ICOMMITTER_NAME
, ICOMMITTER_EMAIL
,
818 ICOMMITTER_DATE
, ICOMMITTER_DATE_RFC2822
,
819 ICOMMITTER_DATE_RELATIVE
, ICOMMITTER_TIMESTAMP
,
823 IRED
, IGREEN
, IBLUE
, IRESET_COLOR
,
827 struct commit_list
*p
;
830 enum { HEADER
, SUBJECT
, BODY
} state
;
832 if (ILEFT_RIGHT
+ 1 != ARRAY_SIZE(table
))
833 die("invalid interp table!");
835 /* these are independent of the commit */
836 interp_set_entry(table
, IRED
, "\033[31m");
837 interp_set_entry(table
, IGREEN
, "\033[32m");
838 interp_set_entry(table
, IBLUE
, "\033[34m");
839 interp_set_entry(table
, IRESET_COLOR
, "\033[m");
840 interp_set_entry(table
, INEWLINE
, "\n");
842 /* these depend on the commit */
843 if (!commit
->object
.parsed
)
844 parse_object(commit
->object
.sha1
);
845 interp_set_entry(table
, IHASH
, sha1_to_hex(commit
->object
.sha1
));
846 interp_set_entry(table
, IHASH_ABBREV
,
847 find_unique_abbrev(commit
->object
.sha1
,
849 interp_set_entry(table
, ITREE
, sha1_to_hex(commit
->tree
->object
.sha1
));
850 interp_set_entry(table
, ITREE_ABBREV
,
851 find_unique_abbrev(commit
->tree
->object
.sha1
,
853 interp_set_entry(table
, ILEFT_RIGHT
,
854 (commit
->object
.flags
& BOUNDARY
)
856 : (commit
->object
.flags
& SYMMETRIC_LEFT
)
861 for (i
= 0, p
= commit
->parents
;
862 p
&& i
< sizeof(parents
) - 1;
864 i
+= snprintf(parents
+ i
, sizeof(parents
) - i
- 1, " %s",
865 sha1_to_hex(p
->item
->object
.sha1
));
866 interp_set_entry(table
, IPARENTS
, parents
+ 1);
869 for (i
= 0, p
= commit
->parents
;
870 p
&& i
< sizeof(parents
) - 1;
872 i
+= snprintf(parents
+ i
, sizeof(parents
) - i
- 1, " %s",
873 find_unique_abbrev(p
->item
->object
.sha1
,
875 interp_set_entry(table
, IPARENTS_ABBREV
, parents
+ 1);
877 for (i
= 0, state
= HEADER
; msg
[i
] && state
< BODY
; i
++) {
879 for (eol
= i
; msg
[eol
] && msg
[eol
] != '\n'; eol
++)
882 if (state
== SUBJECT
) {
883 table
[ISUBJECT
].value
= xstrndup(msg
+ i
, eol
- i
);
888 /* strip empty lines */
889 while (msg
[eol
+ 1] == '\n')
891 } else if (!prefixcmp(msg
+ i
, "author "))
892 fill_person(table
+ IAUTHOR_NAME
,
893 msg
+ i
+ 7, eol
- i
- 7);
894 else if (!prefixcmp(msg
+ i
, "committer "))
895 fill_person(table
+ ICOMMITTER_NAME
,
896 msg
+ i
+ 10, eol
- i
- 10);
897 else if (!prefixcmp(msg
+ i
, "encoding "))
898 table
[IENCODING
].value
=
899 xstrndup(msg
+ i
+ 9, eol
- i
- 9);
903 table
[IBODY
].value
= xstrdup(msg
+ i
);
904 for (i
= 0; i
< ARRAY_SIZE(table
); i
++)
906 interp_set_entry(table
, i
, "<unknown>");
908 interpolate(buf
, space
, user_format
, table
, ARRAY_SIZE(table
));
909 interp_clear_table(table
, ARRAY_SIZE(table
));
914 unsigned long pretty_print_commit(enum cmit_fmt fmt
,
915 const struct commit
*commit
,
917 char *buf
, unsigned long space
,
918 int abbrev
, const char *subject
,
919 const char *after_subject
,
920 enum date_mode dmode
)
922 int hdr
= 1, body
= 0, seen_title
= 0;
923 unsigned long offset
= 0;
925 int parents_shown
= 0;
926 const char *msg
= commit
->buffer
;
927 int plain_non_ascii
= 0;
929 const char *encoding
;
931 if (fmt
== CMIT_FMT_USERFORMAT
)
932 return format_commit_message(commit
, msg
, buf
, space
);
934 encoding
= (git_log_output_encoding
935 ? git_log_output_encoding
936 : git_commit_encoding
);
939 reencoded
= logmsg_reencode(commit
, encoding
);
943 if (fmt
== CMIT_FMT_ONELINE
|| fmt
== CMIT_FMT_EMAIL
)
946 /* After-subject is used to pass in Content-Type: multipart
947 * MIME header; in that case we do not have to do the
948 * plaintext content type even if the commit message has
949 * non 7-bit ASCII character. Otherwise, check if we need
950 * to say this is not a 7-bit ASCII.
952 if (fmt
== CMIT_FMT_EMAIL
&& !after_subject
) {
955 for (in_body
= i
= 0; (ch
= msg
[i
]) && i
< len
; i
++) {
957 /* author could be non 7-bit ASCII but
958 * the log may be so; skip over the
962 i
+ 1 < len
&& msg
[i
+1] == '\n')
965 else if (non_ascii(ch
)) {
973 const char *line
= msg
;
974 int linelen
= get_one_line(msg
, len
);
980 * We want some slop for indentation and a possible
981 * final "...". Thus the "+ 20".
983 if (offset
+ linelen
+ 20 > space
) {
984 memcpy(buf
+ offset
, " ...\n", 8);
994 if ((fmt
!= CMIT_FMT_ONELINE
) && !subject
)
995 buf
[offset
++] = '\n';
998 if (fmt
== CMIT_FMT_RAW
) {
999 memcpy(buf
+ offset
, line
, linelen
);
1003 if (!memcmp(line
, "parent ", 7)) {
1005 die("bad parent line in commit");
1009 if (!parents_shown
) {
1010 offset
+= add_merge_info(fmt
, buf
+ offset
,
1016 * MEDIUM == DEFAULT shows only author with dates.
1017 * FULL shows both authors but not dates.
1018 * FULLER shows both authors and dates.
1020 if (!memcmp(line
, "author ", 7))
1021 offset
+= add_user_info("Author", fmt
,
1026 if (!memcmp(line
, "committer ", 10) &&
1027 (fmt
== CMIT_FMT_FULL
|| fmt
== CMIT_FMT_FULLER
))
1028 offset
+= add_user_info("Commit", fmt
,
1039 if (is_empty_line(line
, &linelen
)) {
1046 if (fmt
== CMIT_FMT_SHORT
)
1052 int slen
= strlen(subject
);
1053 memcpy(buf
+ offset
, subject
, slen
);
1055 offset
+= add_rfc2047(buf
+ offset
, line
, linelen
,
1059 memset(buf
+ offset
, ' ', indent
);
1060 memcpy(buf
+ offset
+ indent
, line
, linelen
);
1061 offset
+= linelen
+ indent
;
1063 buf
[offset
++] = '\n';
1064 if (fmt
== CMIT_FMT_ONELINE
)
1066 if (subject
&& plain_non_ascii
) {
1069 const char *header_fmt
=
1070 "MIME-Version: 1.0\n"
1071 "Content-Type: text/plain; charset=%s\n"
1072 "Content-Transfer-Encoding: 8bit\n";
1073 sz
= snprintf(header
, sizeof(header
), header_fmt
,
1075 if (sizeof(header
) < sz
)
1076 die("Encoding name %s too long", encoding
);
1077 memcpy(buf
+ offset
, header
, sz
);
1080 if (after_subject
) {
1081 int slen
= strlen(after_subject
);
1082 if (slen
> space
- offset
- 1)
1083 slen
= space
- offset
- 1;
1084 memcpy(buf
+ offset
, after_subject
, slen
);
1086 after_subject
= NULL
;
1090 while (offset
&& isspace(buf
[offset
-1]))
1092 /* Make sure there is an EOLN for the non-oneline case */
1093 if (fmt
!= CMIT_FMT_ONELINE
)
1094 buf
[offset
++] = '\n';
1096 * make sure there is another EOLN to separate the headers from whatever
1097 * body the caller appends if we haven't already written a body
1099 if (fmt
== CMIT_FMT_EMAIL
&& !body
)
1100 buf
[offset
++] = '\n';
1107 struct commit
*pop_commit(struct commit_list
**stack
)
1109 struct commit_list
*top
= *stack
;
1110 struct commit
*item
= top
? top
->item
: NULL
;
1119 void topo_sort_default_setter(struct commit
*c
, void *data
)
1124 void *topo_sort_default_getter(struct commit
*c
)
1130 * Performs an in-place topological sort on the list supplied.
1132 void sort_in_topological_order(struct commit_list
** list
, int lifo
)
1134 sort_in_topological_order_fn(list
, lifo
, topo_sort_default_setter
,
1135 topo_sort_default_getter
);
1138 void sort_in_topological_order_fn(struct commit_list
** list
, int lifo
,
1139 topo_sort_set_fn_t setter
,
1140 topo_sort_get_fn_t getter
)
1142 struct commit_list
* next
= *list
;
1143 struct commit_list
* work
= NULL
, **insert
;
1144 struct commit_list
** pptr
= list
;
1145 struct sort_node
* nodes
;
1146 struct sort_node
* next_nodes
;
1149 /* determine the size of the list */
1157 /* allocate an array to help sort the list */
1158 nodes
= xcalloc(count
, sizeof(*nodes
));
1159 /* link the list to the array */
1163 next_nodes
->list_item
= next
;
1164 setter(next
->item
, next_nodes
);
1168 /* update the indegree */
1171 struct commit_list
* parents
= next
->item
->parents
;
1173 struct commit
* parent
=parents
->item
;
1174 struct sort_node
* pn
= (struct sort_node
*) getter(parent
);
1178 parents
=parents
->next
;
1185 * tips are nodes not reachable from any other node in the list
1187 * the tips serve as a starting set for the work queue.
1192 struct sort_node
* node
= (struct sort_node
*) getter(next
->item
);
1194 if (node
->indegree
== 0) {
1195 insert
= &commit_list_insert(next
->item
, insert
)->next
;
1200 /* process the list in topological order */
1202 sort_by_date(&work
);
1204 struct commit
* work_item
= pop_commit(&work
);
1205 struct sort_node
* work_node
= (struct sort_node
*) getter(work_item
);
1206 struct commit_list
* parents
= work_item
->parents
;
1209 struct commit
* parent
=parents
->item
;
1210 struct sort_node
* pn
= (struct sort_node
*) getter(parent
);
1214 * parents are only enqueued for emission
1215 * when all their children have been emitted thereby
1216 * guaranteeing topological order.
1219 if (!pn
->indegree
) {
1221 insert_by_date(parent
, &work
);
1223 commit_list_insert(parent
, &work
);
1226 parents
=parents
->next
;
1229 * work_item is a commit all of whose children
1230 * have already been emitted. we can emit it now.
1232 *pptr
= work_node
->list_item
;
1233 pptr
= &(*pptr
)->next
;
1235 setter(work_item
, NULL
);
1240 /* merge-base stuff */
1242 /* bits #0..15 in revision.h */
1243 #define PARENT1 (1u<<16)
1244 #define PARENT2 (1u<<17)
1245 #define STALE (1u<<18)
1246 #define RESULT (1u<<19)
1248 static const unsigned all_flags
= (PARENT1
| PARENT2
| STALE
| RESULT
);
1250 static struct commit
*interesting(struct commit_list
*list
)
1253 struct commit
*commit
= list
->item
;
1255 if (commit
->object
.flags
& STALE
)
1262 static struct commit_list
*merge_bases(struct commit
*one
, struct commit
*two
)
1264 struct commit_list
*list
= NULL
;
1265 struct commit_list
*result
= NULL
;
1268 /* We do not mark this even with RESULT so we do not
1269 * have to clean it up.
1271 return commit_list_insert(one
, &result
);
1276 one
->object
.flags
|= PARENT1
;
1277 two
->object
.flags
|= PARENT2
;
1278 insert_by_date(one
, &list
);
1279 insert_by_date(two
, &list
);
1281 while (interesting(list
)) {
1282 struct commit
*commit
;
1283 struct commit_list
*parents
;
1284 struct commit_list
*n
;
1287 commit
= list
->item
;
1292 flags
= commit
->object
.flags
& (PARENT1
| PARENT2
| STALE
);
1293 if (flags
== (PARENT1
| PARENT2
)) {
1294 if (!(commit
->object
.flags
& RESULT
)) {
1295 commit
->object
.flags
|= RESULT
;
1296 insert_by_date(commit
, &result
);
1298 /* Mark parents of a found merge stale */
1301 parents
= commit
->parents
;
1303 struct commit
*p
= parents
->item
;
1304 parents
= parents
->next
;
1305 if ((p
->object
.flags
& flags
) == flags
)
1308 p
->object
.flags
|= flags
;
1309 insert_by_date(p
, &list
);
1313 /* Clean up the result to remove stale ones */
1314 free_commit_list(list
);
1315 list
= result
; result
= NULL
;
1317 struct commit_list
*n
= list
->next
;
1318 if (!(list
->item
->object
.flags
& STALE
))
1319 insert_by_date(list
->item
, &result
);
1326 struct commit_list
*get_merge_bases(struct commit
*one
,
1330 struct commit_list
*list
;
1331 struct commit
**rslt
;
1332 struct commit_list
*result
;
1335 result
= merge_bases(one
, two
);
1338 if (!result
|| !result
->next
) {
1340 clear_commit_marks(one
, all_flags
);
1341 clear_commit_marks(two
, all_flags
);
1346 /* There are more than one */
1353 rslt
= xcalloc(cnt
, sizeof(*rslt
));
1354 for (list
= result
, i
= 0; list
; list
= list
->next
)
1355 rslt
[i
++] = list
->item
;
1356 free_commit_list(result
);
1358 clear_commit_marks(one
, all_flags
);
1359 clear_commit_marks(two
, all_flags
);
1360 for (i
= 0; i
< cnt
- 1; i
++) {
1361 for (j
= i
+1; j
< cnt
; j
++) {
1362 if (!rslt
[i
] || !rslt
[j
])
1364 result
= merge_bases(rslt
[i
], rslt
[j
]);
1365 clear_commit_marks(rslt
[i
], all_flags
);
1366 clear_commit_marks(rslt
[j
], all_flags
);
1367 for (list
= result
; list
; list
= list
->next
) {
1368 if (rslt
[i
] == list
->item
)
1370 if (rslt
[j
] == list
->item
)
1376 /* Surviving ones in rslt[] are the independent results */
1378 for (i
= 0; i
< cnt
; i
++) {
1380 insert_by_date(rslt
[i
], &result
);
1386 int in_merge_bases(struct commit
*commit
, struct commit
**reference
, int num
)
1388 struct commit_list
*bases
, *b
;
1392 bases
= get_merge_bases(commit
, *reference
, 1);
1395 for (b
= bases
; b
; b
= b
->next
) {
1396 if (!hashcmp(commit
->object
.sha1
, b
->item
->object
.sha1
)) {
1402 free_commit_list(bases
);