3 #include "object-store.h"
7 #include "string-list.h"
9 #include "fmt-merge-msg.h"
10 #include "commit-reach.h"
12 static int use_branch_desc
;
14 int fmt_merge_msg_config(const char *key
, const char *value
, void *cb
)
16 if (!strcmp(key
, "merge.log") || !strcmp(key
, "merge.summary")) {
18 merge_log_config
= git_config_bool_or_int(key
, value
, &is_bool
);
19 if (!is_bool
&& merge_log_config
< 0)
20 return error("%s: negative length %s", key
, value
);
21 if (is_bool
&& merge_log_config
)
22 merge_log_config
= DEFAULT_MERGE_LOG_LEN
;
23 } else if (!strcmp(key
, "merge.branchdesc")) {
24 use_branch_desc
= git_config_bool(key
, value
);
26 return git_default_config(key
, value
, cb
);
31 /* merge data per repository where the merged tips came from */
33 struct string_list branch
, tag
, r_branch
, generic
;
39 unsigned is_local_branch
:1;
42 static void init_src_data(struct src_data
*data
)
44 data
->branch
.strdup_strings
= 1;
45 data
->tag
.strdup_strings
= 1;
46 data
->r_branch
.strdup_strings
= 1;
47 data
->generic
.strdup_strings
= 1;
50 static struct string_list srcs
= STRING_LIST_INIT_DUP
;
51 static struct string_list origins
= STRING_LIST_INIT_DUP
;
53 struct merge_parents
{
56 struct object_id given
;
57 struct object_id commit
;
63 * I know, I know, this is inefficient, but you won't be pulling and merging
64 * hundreds of heads at a time anyway.
66 static struct merge_parent
*find_merge_parent(struct merge_parents
*table
,
67 struct object_id
*given
,
68 struct object_id
*commit
)
71 for (i
= 0; i
< table
->nr
; i
++) {
72 if (given
&& !oideq(&table
->item
[i
].given
, given
))
74 if (commit
&& !oideq(&table
->item
[i
].commit
, commit
))
76 return &table
->item
[i
];
81 static void add_merge_parent(struct merge_parents
*table
,
82 struct object_id
*given
,
83 struct object_id
*commit
)
85 if (table
->nr
&& find_merge_parent(table
, given
, commit
))
87 ALLOC_GROW(table
->item
, table
->nr
+ 1, table
->alloc
);
88 oidcpy(&table
->item
[table
->nr
].given
, given
);
89 oidcpy(&table
->item
[table
->nr
].commit
, commit
);
90 table
->item
[table
->nr
].used
= 0;
94 static int handle_line(char *line
, struct merge_parents
*merge_parents
)
96 int i
, len
= strlen(line
);
97 struct origin_data
*origin_data
;
99 const char *origin
, *tag_name
;
100 struct src_data
*src_data
;
101 struct string_list_item
*item
;
102 int pulling_head
= 0;
103 struct object_id oid
;
104 const unsigned hexsz
= the_hash_algo
->hexsz
;
106 if (len
< hexsz
+ 3 || line
[hexsz
] != '\t')
109 if (starts_with(line
+ hexsz
+ 1, "not-for-merge"))
112 if (line
[hexsz
+ 1] != '\t')
115 i
= get_oid_hex(line
, &oid
);
119 if (!find_merge_parent(merge_parents
, &oid
, NULL
))
120 return 0; /* subsumed by other parents */
122 origin_data
= xcalloc(1, sizeof(struct origin_data
));
123 oidcpy(&origin_data
->oid
, &oid
);
125 if (line
[len
- 1] == '\n')
130 * At this point, line points at the beginning of comment e.g.
131 * "branch 'frotz' of git://that/repository.git".
132 * Find the repository name and point it with src.
134 src
= strstr(line
, " of ");
144 item
= unsorted_string_list_lookup(&srcs
, src
);
146 item
= string_list_append(&srcs
, src
);
147 item
->util
= xcalloc(1, sizeof(struct src_data
));
148 init_src_data(item
->util
);
150 src_data
= item
->util
;
154 src_data
->head_status
|= 1;
155 } else if (skip_prefix(line
, "branch ", &origin
)) {
156 origin_data
->is_local_branch
= 1;
157 string_list_append(&src_data
->branch
, origin
);
158 src_data
->head_status
|= 2;
159 } else if (skip_prefix(line
, "tag ", &tag_name
)) {
161 string_list_append(&src_data
->tag
, tag_name
);
162 src_data
->head_status
|= 2;
163 } else if (skip_prefix(line
, "remote-tracking branch ", &origin
)) {
164 string_list_append(&src_data
->r_branch
, origin
);
165 src_data
->head_status
|= 2;
168 string_list_append(&src_data
->generic
, line
);
169 src_data
->head_status
|= 2;
172 if (!strcmp(".", src
) || !strcmp(src
, origin
)) {
173 int len
= strlen(origin
);
174 if (origin
[0] == '\'' && origin
[len
- 1] == '\'')
175 origin
= xmemdupz(origin
+ 1, len
- 2);
177 origin
= xstrfmt("%s of %s", origin
, src
);
178 if (strcmp(".", src
))
179 origin_data
->is_local_branch
= 0;
180 string_list_append(&origins
, origin
)->util
= origin_data
;
184 static void print_joined(const char *singular
, const char *plural
,
185 struct string_list
*list
, struct strbuf
*out
)
190 strbuf_addf(out
, "%s%s", singular
, list
->items
[0].string
);
193 strbuf_addstr(out
, plural
);
194 for (i
= 0; i
< list
->nr
- 1; i
++)
195 strbuf_addf(out
, "%s%s", i
> 0 ? ", " : "",
196 list
->items
[i
].string
);
197 strbuf_addf(out
, " and %s", list
->items
[list
->nr
- 1].string
);
201 static void add_branch_desc(struct strbuf
*out
, const char *name
)
203 struct strbuf desc
= STRBUF_INIT
;
205 if (!read_branch_desc(&desc
, name
)) {
206 const char *bp
= desc
.buf
;
208 const char *ep
= strchrnul(bp
, '\n');
211 strbuf_addf(out
, " : %.*s", (int)(ep
- bp
), bp
);
214 strbuf_complete_line(out
);
216 strbuf_release(&desc
);
219 #define util_as_integral(elem) ((intptr_t)((elem)->util))
221 static void record_person_from_buf(int which
, struct string_list
*people
,
224 char *name_buf
, *name
, *name_end
;
225 struct string_list_item
*elem
;
228 field
= (which
== 'a') ? "\nauthor " : "\ncommitter ";
229 name
= strstr(buffer
, field
);
232 name
+= strlen(field
);
233 name_end
= strchrnul(name
, '<');
236 while (isspace(*name_end
) && name
<= name_end
)
240 name_buf
= xmemdupz(name
, name_end
- name
+ 1);
242 elem
= string_list_lookup(people
, name_buf
);
244 elem
= string_list_insert(people
, name_buf
);
245 elem
->util
= (void *)0;
247 elem
->util
= (void*)(util_as_integral(elem
) + 1);
252 static void record_person(int which
, struct string_list
*people
,
253 struct commit
*commit
)
255 const char *buffer
= get_commit_buffer(commit
, NULL
);
256 record_person_from_buf(which
, people
, buffer
);
257 unuse_commit_buffer(commit
, buffer
);
260 static int cmp_string_list_util_as_integral(const void *a_
, const void *b_
)
262 const struct string_list_item
*a
= a_
, *b
= b_
;
263 return util_as_integral(b
) - util_as_integral(a
);
266 static void add_people_count(struct strbuf
*out
, struct string_list
*people
)
269 strbuf_addstr(out
, people
->items
[0].string
);
270 else if (people
->nr
== 2)
271 strbuf_addf(out
, "%s (%d) and %s (%d)",
272 people
->items
[0].string
,
273 (int)util_as_integral(&people
->items
[0]),
274 people
->items
[1].string
,
275 (int)util_as_integral(&people
->items
[1]));
277 strbuf_addf(out
, "%s (%d) and others",
278 people
->items
[0].string
,
279 (int)util_as_integral(&people
->items
[0]));
282 static void credit_people(struct strbuf
*out
,
283 struct string_list
*them
,
291 me
= git_author_info(IDENT_NO_DATE
);
294 me
= git_committer_info(IDENT_NO_DATE
);
300 skip_prefix(me
, them
->items
->string
, &me
) &&
301 starts_with(me
, " <")))
303 strbuf_addf(out
, "\n%c %s ", comment_line_char
, label
);
304 add_people_count(out
, them
);
307 static void add_people_info(struct strbuf
*out
,
308 struct string_list
*authors
,
309 struct string_list
*committers
)
311 QSORT(authors
->items
, authors
->nr
,
312 cmp_string_list_util_as_integral
);
313 QSORT(committers
->items
, committers
->nr
,
314 cmp_string_list_util_as_integral
);
316 credit_people(out
, authors
, 'a');
317 credit_people(out
, committers
, 'c');
320 static void shortlog(const char *name
,
321 struct origin_data
*origin_data
,
323 struct rev_info
*rev
,
324 struct fmt_merge_msg_opts
*opts
,
328 struct commit
*commit
;
329 struct object
*branch
;
330 struct string_list subjects
= STRING_LIST_INIT_DUP
;
331 struct string_list authors
= STRING_LIST_INIT_DUP
;
332 struct string_list committers
= STRING_LIST_INIT_DUP
;
333 int flags
= UNINTERESTING
| TREESAME
| SEEN
| SHOWN
| ADDED
;
334 struct strbuf sb
= STRBUF_INIT
;
335 const struct object_id
*oid
= &origin_data
->oid
;
336 int limit
= opts
->shortlog_len
;
338 branch
= deref_tag(the_repository
, parse_object(the_repository
, oid
),
340 the_hash_algo
->hexsz
);
341 if (!branch
|| branch
->type
!= OBJ_COMMIT
)
344 setup_revisions(0, NULL
, rev
, NULL
);
345 add_pending_object(rev
, branch
, name
);
346 add_pending_object(rev
, &head
->object
, "^HEAD");
347 head
->object
.flags
|= UNINTERESTING
;
348 if (prepare_revision_walk(rev
))
349 die("revision walk setup failed");
350 while ((commit
= get_revision(rev
)) != NULL
) {
351 struct pretty_print_context ctx
= {0};
353 if (commit
->parents
&& commit
->parents
->next
) {
354 /* do not list a merge but count committer */
355 if (opts
->credit_people
)
356 record_person('c', &committers
, commit
);
359 if (!count
&& opts
->credit_people
)
360 /* the 'tip' committer */
361 record_person('c', &committers
, commit
);
362 if (opts
->credit_people
)
363 record_person('a', &authors
, commit
);
365 if (subjects
.nr
> limit
)
368 format_commit_message(commit
, "%s", &sb
, &ctx
);
372 string_list_append(&subjects
,
373 oid_to_hex(&commit
->object
.oid
));
375 string_list_append_nodup(&subjects
,
376 strbuf_detach(&sb
, NULL
));
379 if (opts
->credit_people
)
380 add_people_info(out
, &authors
, &committers
);
382 strbuf_addf(out
, "\n* %s: (%d commits)\n", name
, count
);
384 strbuf_addf(out
, "\n* %s:\n", name
);
386 if (origin_data
->is_local_branch
&& use_branch_desc
)
387 add_branch_desc(out
, name
);
389 for (i
= 0; i
< subjects
.nr
; i
++)
391 strbuf_addstr(out
, " ...\n");
393 strbuf_addf(out
, " %s\n", subjects
.items
[i
].string
);
395 clear_commit_marks((struct commit
*)branch
, flags
);
396 clear_commit_marks(head
, flags
);
397 free_commit_list(rev
->commits
);
401 string_list_clear(&authors
, 0);
402 string_list_clear(&committers
, 0);
403 string_list_clear(&subjects
, 0);
406 static void fmt_merge_msg_title(struct strbuf
*out
,
407 const char *current_branch
)
412 strbuf_addstr(out
, "Merge ");
413 for (i
= 0; i
< srcs
.nr
; i
++) {
414 struct src_data
*src_data
= srcs
.items
[i
].util
;
415 const char *subsep
= "";
417 strbuf_addstr(out
, sep
);
420 if (src_data
->head_status
== 1) {
421 strbuf_addstr(out
, srcs
.items
[i
].string
);
424 if (src_data
->head_status
== 3) {
426 strbuf_addstr(out
, "HEAD");
428 if (src_data
->branch
.nr
) {
429 strbuf_addstr(out
, subsep
);
431 print_joined("branch ", "branches ", &src_data
->branch
,
434 if (src_data
->r_branch
.nr
) {
435 strbuf_addstr(out
, subsep
);
437 print_joined("remote-tracking branch ", "remote-tracking branches ",
438 &src_data
->r_branch
, out
);
440 if (src_data
->tag
.nr
) {
441 strbuf_addstr(out
, subsep
);
443 print_joined("tag ", "tags ", &src_data
->tag
, out
);
445 if (src_data
->generic
.nr
) {
446 strbuf_addstr(out
, subsep
);
447 print_joined("commit ", "commits ", &src_data
->generic
,
450 if (strcmp(".", srcs
.items
[i
].string
))
451 strbuf_addf(out
, " of %s", srcs
.items
[i
].string
);
454 strbuf_addf(out
, " into %s\n", current_branch
);
457 static void fmt_tag_signature(struct strbuf
*tagbuf
,
462 const char *tag_body
= strstr(buf
, "\n\n");
465 strbuf_add(tagbuf
, tag_body
, buf
+ len
- tag_body
);
467 strbuf_complete_line(tagbuf
);
469 strbuf_addch(tagbuf
, '\n');
470 strbuf_add_commented_lines(tagbuf
, sig
->buf
, sig
->len
);
474 static void fmt_merge_msg_sigs(struct strbuf
*out
)
476 int i
, tag_number
= 0, first_tag
= 0;
477 struct strbuf tagbuf
= STRBUF_INIT
;
479 for (i
= 0; i
< origins
.nr
; i
++) {
480 struct object_id
*oid
= origins
.items
[i
].util
;
481 enum object_type type
;
482 unsigned long size
, len
;
483 char *buf
= read_object_file(oid
, &type
, &size
);
484 struct signature_check sigc
= { NULL
};
485 struct strbuf sig
= STRBUF_INIT
;
487 if (!buf
|| type
!= OBJ_TAG
)
489 len
= parse_signature(buf
, size
);
492 ; /* merely annotated */
493 else if (check_signature(buf
, len
, buf
+ len
, size
- len
, &sigc
) &&
495 strbuf_addstr(&sig
, "gpg verification failed.\n");
497 strbuf_addstr(&sig
, sigc
.gpg_output
);
498 signature_check_clear(&sigc
);
501 fmt_tag_signature(&tagbuf
, &sig
, buf
, len
);
504 if (tag_number
== 2) {
505 struct strbuf tagline
= STRBUF_INIT
;
506 strbuf_addch(&tagline
, '\n');
507 strbuf_add_commented_lines(&tagline
,
508 origins
.items
[first_tag
].string
,
509 strlen(origins
.items
[first_tag
].string
));
510 strbuf_insert(&tagbuf
, 0, tagline
.buf
,
512 strbuf_release(&tagline
);
514 strbuf_addch(&tagbuf
, '\n');
515 strbuf_add_commented_lines(&tagbuf
,
516 origins
.items
[i
].string
,
517 strlen(origins
.items
[i
].string
));
518 fmt_tag_signature(&tagbuf
, &sig
, buf
, len
);
520 strbuf_release(&sig
);
525 strbuf_addch(out
, '\n');
526 strbuf_addbuf(out
, &tagbuf
);
528 strbuf_release(&tagbuf
);
531 static void find_merge_parents(struct merge_parents
*result
,
532 struct strbuf
*in
, struct object_id
*head
)
534 struct commit_list
*parents
;
535 struct commit
*head_commit
;
539 while (pos
< in
->len
) {
541 char *p
= in
->buf
+ pos
;
542 char *newline
= strchr(p
, '\n');
544 struct object_id oid
;
545 struct commit
*parent
;
548 len
= newline
? newline
- p
: strlen(p
);
549 pos
+= len
+ !!newline
;
551 if (parse_oid_hex(p
, &oid
, &q
) ||
554 continue; /* skip not-for-merge */
556 * Do not use get_merge_parent() here; we do not have
557 * "name" here and we do not want to contaminate its
560 obj
= parse_object(the_repository
, &oid
);
561 parent
= (struct commit
*)peel_to_type(NULL
, 0, obj
, OBJ_COMMIT
);
564 commit_list_insert(parent
, &parents
);
565 add_merge_parent(result
, &obj
->oid
, &parent
->object
.oid
);
567 head_commit
= lookup_commit(the_repository
, head
);
569 commit_list_insert(head_commit
, &parents
);
570 reduce_heads_replace(&parents
);
573 struct commit
*cmit
= pop_commit(&parents
);
574 for (i
= 0; i
< result
->nr
; i
++)
575 if (oideq(&result
->item
[i
].commit
, &cmit
->object
.oid
))
576 result
->item
[i
].used
= 1;
579 for (i
= j
= 0; i
< result
->nr
; i
++) {
580 if (result
->item
[i
].used
) {
582 result
->item
[j
] = result
->item
[i
];
590 int fmt_merge_msg(struct strbuf
*in
, struct strbuf
*out
,
591 struct fmt_merge_msg_opts
*opts
)
594 struct object_id head_oid
;
595 const char *current_branch
;
596 void *current_branch_to_free
;
597 struct merge_parents merge_parents
;
599 memset(&merge_parents
, 0, sizeof(merge_parents
));
601 /* get current branch */
602 current_branch
= current_branch_to_free
=
603 resolve_refdup("HEAD", RESOLVE_REF_READING
, &head_oid
, NULL
);
605 die("No current branch");
606 if (starts_with(current_branch
, "refs/heads/"))
607 current_branch
+= 11;
609 find_merge_parents(&merge_parents
, in
, &head_oid
);
612 while (pos
< in
->len
) {
614 char *newline
, *p
= in
->buf
+ pos
;
616 newline
= strchr(p
, '\n');
617 len
= newline
? newline
- p
: strlen(p
);
618 pos
+= len
+ !!newline
;
621 if (handle_line(p
, &merge_parents
))
622 die("error in line %d: %.*s", i
, len
, p
);
625 if (opts
->add_title
&& srcs
.nr
)
626 fmt_merge_msg_title(out
, current_branch
);
629 fmt_merge_msg_sigs(out
);
631 if (opts
->shortlog_len
) {
635 head
= lookup_commit_or_die(&head_oid
, "HEAD");
636 repo_init_revisions(the_repository
, &rev
, NULL
);
637 rev
.commit_format
= CMIT_FMT_ONELINE
;
638 rev
.ignore_merges
= 1;
641 strbuf_complete_line(out
);
643 for (i
= 0; i
< origins
.nr
; i
++)
644 shortlog(origins
.items
[i
].string
,
645 origins
.items
[i
].util
,
646 head
, &rev
, opts
, out
);
649 strbuf_complete_line(out
);
650 free(current_branch_to_free
);
651 free(merge_parents
.item
);