]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/fmt-merge-msg.c
replace {pre,suf}fixcmp() with {starts,ends}_with()
[thirdparty/git.git] / builtin / fmt-merge-msg.c
CommitLineData
25f38f06 1#include "builtin.h"
00449f99
JS
2#include "cache.h"
3#include "commit.h"
4#include "diff.h"
5#include "revision.h"
6#include "tag.h"
fcb243f7 7#include "string-list.h"
898eacd8
JH
8#include "branch.h"
9#include "fmt-merge-msg.h"
895680f0 10#include "gpg-interface.h"
00449f99 11
c8ef0383 12static const char * const fmt_merge_msg_usage[] = {
93eced6c 13 N_("git fmt-merge-msg [-m <message>] [--log[=<n>]|--no-log] [--file <file>]"),
c8ef0383
PH
14 NULL
15};
00449f99 16
898eacd8 17static int use_branch_desc;
00449f99 18
898eacd8 19int fmt_merge_msg_config(const char *key, const char *value, void *cb)
00449f99 20{
bda3b8ff
RR
21 if (!strcmp(key, "merge.log") || !strcmp(key, "merge.summary")) {
22 int is_bool;
898eacd8
JH
23 merge_log_config = git_config_bool_or_int(key, value, &is_bool);
24 if (!is_bool && merge_log_config < 0)
bda3b8ff 25 return error("%s: negative length %s", key, value);
898eacd8
JH
26 if (is_bool && merge_log_config)
27 merge_log_config = DEFAULT_MERGE_LOG_LEN;
28 } else if (!strcmp(key, "merge.branchdesc")) {
29 use_branch_desc = git_config_bool(key, value);
418a1435
JH
30 } else {
31 return git_default_config(key, value, cb);
6cd9cfef 32 }
00449f99
JS
33 return 0;
34}
35
4c0ea82d 36/* merge data per repository where the merged tips came from */
fcb243f7
SB
37struct src_data {
38 struct string_list branch, tag, r_branch, generic;
39 int head_status;
00449f99
JS
40};
41
898eacd8
JH
42struct origin_data {
43 unsigned char sha1[20];
90a321c0 44 unsigned is_local_branch:1;
898eacd8
JH
45};
46
c2e86add 47static void init_src_data(struct src_data *data)
00449f99 48{
fcb243f7
SB
49 data->branch.strdup_strings = 1;
50 data->tag.strdup_strings = 1;
51 data->r_branch.strdup_strings = 1;
52 data->generic.strdup_strings = 1;
00449f99
JS
53}
54
183113a5
TF
55static struct string_list srcs = STRING_LIST_INIT_DUP;
56static struct string_list origins = STRING_LIST_INIT_DUP;
00449f99 57
5802f81b
JH
58struct merge_parents {
59 int alloc, nr;
60 struct merge_parent {
61 unsigned char given[20];
62 unsigned char commit[20];
63 unsigned char used;
64 } *item;
65};
66
67/*
68 * I know, I know, this is inefficient, but you won't be pulling and merging
69 * hundreds of heads at a time anyway.
70 */
71static struct merge_parent *find_merge_parent(struct merge_parents *table,
72 unsigned char *given,
73 unsigned char *commit)
74{
75 int i;
76 for (i = 0; i < table->nr; i++) {
77 if (given && hashcmp(table->item[i].given, given))
78 continue;
79 if (commit && hashcmp(table->item[i].commit, commit))
80 continue;
81 return &table->item[i];
82 }
83 return NULL;
84}
85
86static void add_merge_parent(struct merge_parents *table,
87 unsigned char *given,
88 unsigned char *commit)
89{
90 if (table->nr && find_merge_parent(table, given, commit))
91 return;
92 ALLOC_GROW(table->item, table->nr + 1, table->alloc);
93 hashcpy(table->item[table->nr].given, given);
94 hashcpy(table->item[table->nr].commit, commit);
95 table->item[table->nr].used = 0;
96 table->nr++;
97}
98
99static int handle_line(char *line, struct merge_parents *merge_parents)
00449f99
JS
100{
101 int i, len = strlen(line);
898eacd8 102 struct origin_data *origin_data;
00449f99
JS
103 char *src, *origin;
104 struct src_data *src_data;
fcb243f7 105 struct string_list_item *item;
e918c6ab 106 int pulling_head = 0;
5802f81b 107 unsigned char sha1[20];
00449f99
JS
108
109 if (len < 43 || line[40] != '\t')
110 return 1;
111
59556548 112 if (starts_with(line + 41, "not-for-merge"))
00449f99
JS
113 return 0;
114
115 if (line[41] != '\t')
116 return 2;
117
5802f81b
JH
118 i = get_sha1_hex(line, sha1);
119 if (i)
00449f99 120 return 3;
5802f81b
JH
121
122 if (!find_merge_parent(merge_parents, sha1, NULL))
123 return 0; /* subsumed by other parents */
124
125 origin_data = xcalloc(1, sizeof(struct origin_data));
126 hashcpy(origin_data->sha1, sha1);
00449f99
JS
127
128 if (line[len - 1] == '\n')
129 line[len - 1] = 0;
130 line += 42;
131
4c0ea82d
JH
132 /*
133 * At this point, line points at the beginning of comment e.g.
134 * "branch 'frotz' of git://that/repository.git".
135 * Find the repository name and point it with src.
136 */
00449f99
JS
137 src = strstr(line, " of ");
138 if (src) {
139 *src = 0;
140 src += 4;
e918c6ab
JH
141 pulling_head = 0;
142 } else {
143 src = line;
144 pulling_head = 1;
145 }
00449f99 146
fcb243f7
SB
147 item = unsorted_string_list_lookup(&srcs, src);
148 if (!item) {
1d2f80fa 149 item = string_list_append(&srcs, src);
fcb243f7
SB
150 item->util = xcalloc(1, sizeof(struct src_data));
151 init_src_data(item->util);
00449f99 152 }
fcb243f7 153 src_data = item->util;
00449f99 154
e918c6ab 155 if (pulling_head) {
fcb243f7 156 origin = src;
e918c6ab 157 src_data->head_status |= 1;
59556548 158 } else if (starts_with(line, "branch ")) {
898eacd8 159 origin_data->is_local_branch = 1;
fcb243f7 160 origin = line + 7;
1d2f80fa 161 string_list_append(&src_data->branch, origin);
00449f99 162 src_data->head_status |= 2;
59556548 163 } else if (starts_with(line, "tag ")) {
00449f99 164 origin = line;
1d2f80fa 165 string_list_append(&src_data->tag, origin + 4);
00449f99 166 src_data->head_status |= 2;
59556548 167 } else if (starts_with(line, "remote-tracking branch ")) {
13931236 168 origin = line + strlen("remote-tracking branch ");
1d2f80fa 169 string_list_append(&src_data->r_branch, origin);
00449f99 170 src_data->head_status |= 2;
00449f99 171 } else {
fcb243f7 172 origin = src;
1d2f80fa 173 string_list_append(&src_data->generic, line);
00449f99
JS
174 src_data->head_status |= 2;
175 }
176
177 if (!strcmp(".", src) || !strcmp(src, origin)) {
178 int len = strlen(origin);
fcb243f7 179 if (origin[0] == '\'' && origin[len - 1] == '\'')
182af834 180 origin = xmemdupz(origin + 1, len - 2);
00449f99 181 } else {
2d7320d0 182 char *new_origin = xmalloc(strlen(origin) + strlen(src) + 5);
00449f99
JS
183 sprintf(new_origin, "%s of %s", origin, src);
184 origin = new_origin;
185 }
898eacd8
JH
186 if (strcmp(".", src))
187 origin_data->is_local_branch = 0;
188 string_list_append(&origins, origin)->util = origin_data;
00449f99
JS
189 return 0;
190}
191
192static void print_joined(const char *singular, const char *plural,
fcb243f7 193 struct string_list *list, struct strbuf *out)
00449f99
JS
194{
195 if (list->nr == 0)
196 return;
197 if (list->nr == 1) {
fcb243f7 198 strbuf_addf(out, "%s%s", singular, list->items[0].string);
00449f99
JS
199 } else {
200 int i;
0b9a969e 201 strbuf_addstr(out, plural);
00449f99 202 for (i = 0; i < list->nr - 1; i++)
fcb243f7
SB
203 strbuf_addf(out, "%s%s", i > 0 ? ", " : "",
204 list->items[i].string);
205 strbuf_addf(out, " and %s", list->items[list->nr - 1].string);
00449f99
JS
206 }
207}
208
898eacd8
JH
209static void add_branch_desc(struct strbuf *out, const char *name)
210{
211 struct strbuf desc = STRBUF_INIT;
212
213 if (!read_branch_desc(&desc, name)) {
214 const char *bp = desc.buf;
215 while (*bp) {
216 const char *ep = strchrnul(bp, '\n');
217 if (*ep)
218 ep++;
219 strbuf_addf(out, " : %.*s", (int)(ep - bp), bp);
220 bp = ep;
221 }
222 if (out->buf[out->len - 1] != '\n')
223 strbuf_addch(out, '\n');
224 }
225 strbuf_release(&desc);
226}
227
418a1435
JH
228#define util_as_integral(elem) ((intptr_t)((elem)->util))
229
230static void record_person(int which, struct string_list *people,
231 struct commit *commit)
232{
e21ab134 233 char *name_buf, *name, *name_end;
418a1435 234 struct string_list_item *elem;
9bcbb1c2 235 const char *field;
418a1435 236
9bcbb1c2 237 field = (which == 'a') ? "\nauthor " : "\ncommitter ";
418a1435
JH
238 name = strstr(commit->buffer, field);
239 if (!name)
240 return;
241 name += strlen(field);
242 name_end = strchrnul(name, '<');
243 if (*name_end)
244 name_end--;
245 while (isspace(*name_end) && name <= name_end)
246 name_end--;
e21ab134 247 if (name_end < name)
418a1435 248 return;
e21ab134 249 name_buf = xmemdupz(name, name_end - name + 1);
418a1435
JH
250
251 elem = string_list_lookup(people, name_buf);
252 if (!elem) {
253 elem = string_list_insert(people, name_buf);
254 elem->util = (void *)0;
255 }
256 elem->util = (void*)(util_as_integral(elem) + 1);
e21ab134 257 free(name_buf);
418a1435
JH
258}
259
260static int cmp_string_list_util_as_integral(const void *a_, const void *b_)
261{
262 const struct string_list_item *a = a_, *b = b_;
263 return util_as_integral(b) - util_as_integral(a);
264}
265
266static void add_people_count(struct strbuf *out, struct string_list *people)
267{
268 if (people->nr == 1)
269 strbuf_addf(out, "%s", 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]));
276 else if (people->nr)
277 strbuf_addf(out, "%s (%d) and others",
278 people->items[0].string,
279 (int)util_as_integral(&people->items[0]));
280}
281
282static void credit_people(struct strbuf *out,
283 struct string_list *them,
284 int kind)
285{
286 const char *label;
287 const char *me;
288
289 if (kind == 'a') {
9927ebed 290 label = "By";
418a1435
JH
291 me = git_author_info(IDENT_NO_DATE);
292 } else {
9927ebed 293 label = "Via";
418a1435
JH
294 me = git_committer_info(IDENT_NO_DATE);
295 }
296
297 if (!them->nr ||
298 (them->nr == 1 &&
299 me &&
300 (me = skip_prefix(me, them->items->string)) != NULL &&
301 skip_prefix(me, " <")))
302 return;
9927ebed 303 strbuf_addf(out, "\n%c %s ", comment_line_char, label);
418a1435
JH
304 add_people_count(out, them);
305}
306
307static void add_people_info(struct strbuf *out,
308 struct string_list *authors,
309 struct string_list *committers)
310{
311 if (authors->nr)
312 qsort(authors->items,
313 authors->nr, sizeof(authors->items[0]),
314 cmp_string_list_util_as_integral);
315 if (committers->nr)
316 qsort(committers->items,
317 committers->nr, sizeof(committers->items[0]),
318 cmp_string_list_util_as_integral);
319
320 credit_people(out, authors, 'a');
321 credit_people(out, committers, 'c');
322}
323
898eacd8
JH
324static void shortlog(const char *name,
325 struct origin_data *origin_data,
326 struct commit *head,
9bcbb1c2
JH
327 struct rev_info *rev,
328 struct fmt_merge_msg_opts *opts,
898eacd8 329 struct strbuf *out)
00449f99
JS
330{
331 int i, count = 0;
332 struct commit *commit;
333 struct object *branch;
183113a5 334 struct string_list subjects = STRING_LIST_INIT_DUP;
418a1435
JH
335 struct string_list authors = STRING_LIST_INIT_DUP;
336 struct string_list committers = STRING_LIST_INIT_DUP;
7dc0fe3b 337 int flags = UNINTERESTING | TREESAME | SEEN | SHOWN | ADDED;
15cb5007 338 struct strbuf sb = STRBUF_INIT;
898eacd8 339 const unsigned char *sha1 = origin_data->sha1;
9bcbb1c2 340 int limit = opts->shortlog_len;
00449f99
JS
341
342 branch = deref_tag(parse_object(sha1), sha1_to_hex(sha1), 40);
1974632c 343 if (!branch || branch->type != OBJ_COMMIT)
00449f99
JS
344 return;
345
346 setup_revisions(0, NULL, rev, NULL);
00449f99
JS
347 add_pending_object(rev, branch, name);
348 add_pending_object(rev, &head->object, "^HEAD");
349 head->object.flags |= UNINTERESTING;
3d51e1b5
MK
350 if (prepare_revision_walk(rev))
351 die("revision walk setup failed");
00449f99 352 while ((commit = get_revision(rev)) != NULL) {
15cb5007 353 struct pretty_print_context ctx = {0};
00449f99 354
418a1435
JH
355 if (commit->parents && commit->parents->next) {
356 /* do not list a merge but count committer */
9bcbb1c2
JH
357 if (opts->credit_people)
358 record_person('c', &committers, commit);
00449f99 359 continue;
418a1435 360 }
9bcbb1c2 361 if (!count && opts->credit_people)
418a1435
JH
362 /* the 'tip' committer */
363 record_person('c', &committers, commit);
9bcbb1c2
JH
364 if (opts->credit_people)
365 record_person('a', &authors, commit);
00449f99
JS
366 count++;
367 if (subjects.nr > limit)
368 continue;
369
15cb5007
SB
370 format_commit_message(commit, "%s", &sb, &ctx);
371 strbuf_ltrim(&sb);
6a28518a 372
15cb5007 373 if (!sb.len)
1d2f80fa
JP
374 string_list_append(&subjects,
375 sha1_to_hex(commit->object.sha1));
15cb5007 376 else
1d2f80fa 377 string_list_append(&subjects, strbuf_detach(&sb, NULL));
00449f99
JS
378 }
379
9bcbb1c2
JH
380 if (opts->credit_people)
381 add_people_info(out, &authors, &committers);
00449f99 382 if (count > limit)
0b9a969e 383 strbuf_addf(out, "\n* %s: (%d commits)\n", name, count);
00449f99 384 else
0b9a969e 385 strbuf_addf(out, "\n* %s:\n", name);
00449f99 386
898eacd8
JH
387 if (origin_data->is_local_branch && use_branch_desc)
388 add_branch_desc(out, name);
389
00449f99
JS
390 for (i = 0; i < subjects.nr; i++)
391 if (i >= limit)
0b9a969e 392 strbuf_addf(out, " ...\n");
00449f99 393 else
fcb243f7 394 strbuf_addf(out, " %s\n", subjects.items[i].string);
00449f99
JS
395
396 clear_commit_marks((struct commit *)branch, flags);
397 clear_commit_marks(head, flags);
398 free_commit_list(rev->commits);
399 rev->commits = NULL;
400 rev->pending.nr = 0;
401
418a1435
JH
402 string_list_clear(&authors, 0);
403 string_list_clear(&committers, 0);
fcb243f7 404 string_list_clear(&subjects, 0);
00449f99
JS
405}
406
cbda121c 407static void fmt_merge_msg_title(struct strbuf *out,
403994e8
TRC
408 const char *current_branch) {
409 int i = 0;
fd13b21f 410 char *sep = "";
419fe5bc 411
0b9a969e 412 strbuf_addstr(out, "Merge ");
00449f99 413 for (i = 0; i < srcs.nr; i++) {
fcb243f7 414 struct src_data *src_data = srcs.items[i].util;
00449f99
JS
415 const char *subsep = "";
416
0b9a969e 417 strbuf_addstr(out, sep);
00449f99
JS
418 sep = "; ";
419
420 if (src_data->head_status == 1) {
fcb243f7 421 strbuf_addstr(out, srcs.items[i].string);
00449f99
JS
422 continue;
423 }
424 if (src_data->head_status == 3) {
425 subsep = ", ";
0b9a969e 426 strbuf_addstr(out, "HEAD");
00449f99
JS
427 }
428 if (src_data->branch.nr) {
0b9a969e 429 strbuf_addstr(out, subsep);
00449f99 430 subsep = ", ";
0b9a969e
MV
431 print_joined("branch ", "branches ", &src_data->branch,
432 out);
00449f99
JS
433 }
434 if (src_data->r_branch.nr) {
0b9a969e 435 strbuf_addstr(out, subsep);
00449f99 436 subsep = ", ";
13931236 437 print_joined("remote-tracking branch ", "remote-tracking branches ",
0b9a969e 438 &src_data->r_branch, out);
00449f99
JS
439 }
440 if (src_data->tag.nr) {
0b9a969e 441 strbuf_addstr(out, subsep);
00449f99 442 subsep = ", ";
0b9a969e 443 print_joined("tag ", "tags ", &src_data->tag, out);
00449f99
JS
444 }
445 if (src_data->generic.nr) {
0b9a969e
MV
446 strbuf_addstr(out, subsep);
447 print_joined("commit ", "commits ", &src_data->generic,
448 out);
00449f99 449 }
fcb243f7
SB
450 if (strcmp(".", srcs.items[i].string))
451 strbuf_addf(out, " of %s", srcs.items[i].string);
00449f99
JS
452 }
453
454 if (!strcmp("master", current_branch))
0b9a969e 455 strbuf_addch(out, '\n');
00449f99 456 else
0b9a969e 457 strbuf_addf(out, " into %s\n", current_branch);
403994e8
TRC
458}
459
895680f0
JH
460static void fmt_tag_signature(struct strbuf *tagbuf,
461 struct strbuf *sig,
462 const char *buf,
463 unsigned long len)
464{
465 const char *tag_body = strstr(buf, "\n\n");
466 if (tag_body) {
467 tag_body += 2;
468 strbuf_add(tagbuf, tag_body, buf + len - tag_body);
469 }
470 strbuf_complete_line(tagbuf);
a3347b98
LT
471 if (sig->len) {
472 strbuf_addch(tagbuf, '\n');
eff80a9f 473 strbuf_add_commented_lines(tagbuf, sig->buf, sig->len);
a3347b98 474 }
895680f0
JH
475}
476
477static void fmt_merge_msg_sigs(struct strbuf *out)
478{
479 int i, tag_number = 0, first_tag = 0;
480 struct strbuf tagbuf = STRBUF_INIT;
481
482 for (i = 0; i < origins.nr; i++) {
483 unsigned char *sha1 = origins.items[i].util;
484 enum object_type type;
485 unsigned long size, len;
486 char *buf = read_sha1_file(sha1, &type, &size);
487 struct strbuf sig = STRBUF_INIT;
488
489 if (!buf || type != OBJ_TAG)
490 goto next;
491 len = parse_signature(buf, size);
492
493 if (size == len)
494 ; /* merely annotated */
9cc4ac8f 495 else if (verify_signed_buffer(buf, len, buf + len, size - len, &sig, NULL)) {
895680f0
JH
496 if (!sig.len)
497 strbuf_addstr(&sig, "gpg verification failed.\n");
498 }
499
500 if (!tag_number++) {
501 fmt_tag_signature(&tagbuf, &sig, buf, len);
502 first_tag = i;
503 } else {
504 if (tag_number == 2) {
505 struct strbuf tagline = STRBUF_INIT;
89c3bbd8
RT
506 strbuf_addch(&tagline, '\n');
507 strbuf_add_commented_lines(&tagline,
508 origins.items[first_tag].string,
509 strlen(origins.items[first_tag].string));
895680f0
JH
510 strbuf_insert(&tagbuf, 0, tagline.buf,
511 tagline.len);
512 strbuf_release(&tagline);
513 }
89c3bbd8
RT
514 strbuf_addch(&tagbuf, '\n');
515 strbuf_add_commented_lines(&tagbuf,
516 origins.items[i].string,
517 strlen(origins.items[i].string));
895680f0
JH
518 fmt_tag_signature(&tagbuf, &sig, buf, len);
519 }
520 strbuf_release(&sig);
521 next:
522 free(buf);
523 }
524 if (tagbuf.len) {
525 strbuf_addch(out, '\n');
526 strbuf_addbuf(out, &tagbuf);
527 }
528 strbuf_release(&tagbuf);
529}
530
5802f81b
JH
531static void find_merge_parents(struct merge_parents *result,
532 struct strbuf *in, unsigned char *head)
533{
534 struct commit_list *parents, *next;
535 struct commit *head_commit;
536 int pos = 0, i, j;
537
538 parents = NULL;
539 while (pos < in->len) {
540 int len;
541 char *p = in->buf + pos;
542 char *newline = strchr(p, '\n');
543 unsigned char sha1[20];
544 struct commit *parent;
545 struct object *obj;
546
547 len = newline ? newline - p : strlen(p);
548 pos += len + !!newline;
549
550 if (len < 43 ||
551 get_sha1_hex(p, sha1) ||
552 p[40] != '\t' ||
553 p[41] != '\t')
554 continue; /* skip not-for-merge */
555 /*
556 * Do not use get_merge_parent() here; we do not have
557 * "name" here and we do not want to contaminate its
558 * util field yet.
559 */
560 obj = parse_object(sha1);
561 parent = (struct commit *)peel_to_type(NULL, 0, obj, OBJ_COMMIT);
562 if (!parent)
563 continue;
564 commit_list_insert(parent, &parents);
565 add_merge_parent(result, obj->sha1, parent->object.sha1);
566 }
567 head_commit = lookup_commit(head);
568 if (head_commit)
569 commit_list_insert(head_commit, &parents);
570 parents = reduce_heads(parents);
571
572 while (parents) {
573 for (i = 0; i < result->nr; i++)
574 if (!hashcmp(result->item[i].commit,
575 parents->item->object.sha1))
576 result->item[i].used = 1;
577 next = parents->next;
578 free(parents);
579 parents = next;
580 }
581
582 for (i = j = 0; i < result->nr; i++) {
583 if (result->item[i].used) {
584 if (i != j)
585 result->item[j] = result->item[i];
586 j++;
587 }
588 }
589 result->nr = j;
590}
591
cbda121c
JH
592int fmt_merge_msg(struct strbuf *in, struct strbuf *out,
593 struct fmt_merge_msg_opts *opts)
594{
1876166a 595 int i = 0, pos = 0;
403994e8
TRC
596 unsigned char head_sha1[20];
597 const char *current_branch;
96ec7b1e 598 void *current_branch_to_free;
5802f81b
JH
599 struct merge_parents merge_parents;
600
601 memset(&merge_parents, 0, sizeof(merge_parents));
403994e8
TRC
602
603 /* get current branch */
96ec7b1e
NTND
604 current_branch = current_branch_to_free =
605 resolve_refdup("HEAD", head_sha1, 1, NULL);
403994e8
TRC
606 if (!current_branch)
607 die("No current branch");
59556548 608 if (starts_with(current_branch, "refs/heads/"))
403994e8
TRC
609 current_branch += 11;
610
5802f81b
JH
611 find_merge_parents(&merge_parents, in, head_sha1);
612
403994e8
TRC
613 /* get a line */
614 while (pos < in->len) {
615 int len;
616 char *newline, *p = in->buf + pos;
617
618 newline = strchr(p, '\n');
619 len = newline ? newline - p : strlen(p);
620 pos += len + !!newline;
621 i++;
622 p[len] = 0;
5802f81b 623 if (handle_line(p, &merge_parents))
403994e8
TRC
624 die ("Error in line %d: %.*s", i, len, p);
625 }
626
cbda121c
JH
627 if (opts->add_title && srcs.nr)
628 fmt_merge_msg_title(out, current_branch);
403994e8 629
895680f0
JH
630 if (origins.nr)
631 fmt_merge_msg_sigs(out);
00449f99 632
cbda121c 633 if (opts->shortlog_len) {
00449f99
JS
634 struct commit *head;
635 struct rev_info rev;
636
baf18fc2 637 head = lookup_commit_or_die(head_sha1, "HEAD");
0b9a969e 638 init_revisions(&rev, NULL);
00449f99
JS
639 rev.commit_format = CMIT_FMT_ONELINE;
640 rev.ignore_merges = 1;
641 rev.limited = 1;
642
a3347b98 643 strbuf_complete_line(out);
f0ecac2b 644
00449f99 645 for (i = 0; i < origins.nr; i++)
898eacd8
JH
646 shortlog(origins.items[i].string,
647 origins.items[i].util,
9bcbb1c2 648 head, &rev, opts, out);
00449f99 649 }
0b9a969e 650
895680f0 651 strbuf_complete_line(out);
96ec7b1e 652 free(current_branch_to_free);
5802f81b 653 free(merge_parents.item);
0b9a969e 654 return 0;
2234ec54
TRC
655}
656
0b9a969e
MV
657int cmd_fmt_merge_msg(int argc, const char **argv, const char *prefix)
658{
c8ef0383 659 const char *inpath = NULL;
2102440c 660 const char *message = NULL;
898eacd8 661 int shortlog_len = -1;
c8ef0383 662 struct option options[] = {
93eced6c
NTND
663 { OPTION_INTEGER, 0, "log", &shortlog_len, N_("n"),
664 N_("populate log with at most <n> entries from shortlog"),
96e9420c 665 PARSE_OPT_OPTARG, NULL, DEFAULT_MERGE_LOG_LEN },
93eced6c
NTND
666 { OPTION_INTEGER, 0, "summary", &shortlog_len, N_("n"),
667 N_("alias for --log (deprecated)"),
96e9420c
RR
668 PARSE_OPT_OPTARG | PARSE_OPT_HIDDEN, NULL,
669 DEFAULT_MERGE_LOG_LEN },
93eced6c
NTND
670 OPT_STRING('m', "message", &message, N_("text"),
671 N_("use <text> as start of message")),
672 OPT_FILENAME('F', "file", &inpath, N_("file to read from")),
c8ef0383
PH
673 OPT_END()
674 };
675
0b9a969e 676 FILE *in = stdin;
f285a2d7 677 struct strbuf input = STRBUF_INIT, output = STRBUF_INIT;
0b9a969e 678 int ret;
cbda121c 679 struct fmt_merge_msg_opts opts;
0b9a969e
MV
680
681 git_config(fmt_merge_msg_config, NULL);
37782920
SB
682 argc = parse_options(argc, argv, prefix, options, fmt_merge_msg_usage,
683 0);
c8ef0383
PH
684 if (argc > 0)
685 usage_with_options(fmt_merge_msg_usage, options);
898eacd8
JH
686 if (shortlog_len < 0)
687 shortlog_len = (merge_log_config > 0) ? merge_log_config : 0;
c8ef0383
PH
688
689 if (inpath && strcmp(inpath, "-")) {
690 in = fopen(inpath, "r");
691 if (!in)
0721c314 692 die_errno("cannot open '%s'", inpath);
0b9a969e
MV
693 }
694
0b9a969e 695 if (strbuf_read(&input, fileno(in), 0) < 0)
d824cbba 696 die_errno("could not read input file");
1876166a
RR
697
698 if (message)
2102440c 699 strbuf_addstr(&output, message);
1876166a 700
cbda121c
JH
701 memset(&opts, 0, sizeof(opts));
702 opts.add_title = !message;
9bcbb1c2 703 opts.credit_people = 1;
cbda121c
JH
704 opts.shortlog_len = shortlog_len;
705
706 ret = fmt_merge_msg(&input, &output, &opts);
0b9a969e
MV
707 if (ret)
708 return ret;
c8ef0383 709 write_in_full(STDOUT_FILENO, output.buf, output.len);
00449f99
JS
710 return 0;
711}