Code

Merge branch 'maint-1.5.4' into maint
[git.git] / builtin-fmt-merge-msg.c
1 #include "builtin.h"
2 #include "cache.h"
3 #include "commit.h"
4 #include "diff.h"
5 #include "revision.h"
6 #include "tag.h"
8 static const char *fmt_merge_msg_usage =
9         "git-fmt-merge-msg [--summary] [--no-summary] [--file <file>]";
11 static int merge_summary;
13 static int fmt_merge_msg_config(const char *key, const char *value)
14 {
15         if (!strcmp("merge.summary", key))
16                 merge_summary = git_config_bool(key, value);
17         return 0;
18 }
20 struct list {
21         char **list;
22         void **payload;
23         unsigned nr, alloc;
24 };
26 static void append_to_list(struct list *list, char *value, void *payload)
27 {
28         if (list->nr == list->alloc) {
29                 list->alloc += 32;
30                 list->list = xrealloc(list->list, sizeof(char *) * list->alloc);
31                 list->payload = xrealloc(list->payload,
32                                 sizeof(char *) * list->alloc);
33         }
34         list->payload[list->nr] = payload;
35         list->list[list->nr++] = value;
36 }
38 static int find_in_list(struct list *list, char *value)
39 {
40         int i;
42         for (i = 0; i < list->nr; i++)
43                 if (!strcmp(list->list[i], value))
44                         return i;
46         return -1;
47 }
49 static void free_list(struct list *list)
50 {
51         int i;
53         if (list->alloc == 0)
54                 return;
56         for (i = 0; i < list->nr; i++) {
57                 free(list->list[i]);
58                 free(list->payload[i]);
59         }
60         free(list->list);
61         free(list->payload);
62         list->nr = list->alloc = 0;
63 }
65 struct src_data {
66         struct list branch, tag, r_branch, generic;
67         int head_status;
68 };
70 static struct list srcs = { NULL, NULL, 0, 0};
71 static struct list origins = { NULL, NULL, 0, 0};
73 static int handle_line(char *line)
74 {
75         int i, len = strlen(line);
76         unsigned char *sha1;
77         char *src, *origin;
78         struct src_data *src_data;
79         int pulling_head = 0;
81         if (len < 43 || line[40] != '\t')
82                 return 1;
84         if (!prefixcmp(line + 41, "not-for-merge"))
85                 return 0;
87         if (line[41] != '\t')
88                 return 2;
90         line[40] = 0;
91         sha1 = xmalloc(20);
92         i = get_sha1(line, sha1);
93         line[40] = '\t';
94         if (i)
95                 return 3;
97         if (line[len - 1] == '\n')
98                 line[len - 1] = 0;
99         line += 42;
101         src = strstr(line, " of ");
102         if (src) {
103                 *src = 0;
104                 src += 4;
105                 pulling_head = 0;
106         } else {
107                 src = line;
108                 pulling_head = 1;
109         }
111         i = find_in_list(&srcs, src);
112         if (i < 0) {
113                 i = srcs.nr;
114                 append_to_list(&srcs, xstrdup(src),
115                                 xcalloc(1, sizeof(struct src_data)));
116         }
117         src_data = srcs.payload[i];
119         if (pulling_head) {
120                 origin = xstrdup(src);
121                 src_data->head_status |= 1;
122         } else if (!prefixcmp(line, "branch ")) {
123                 origin = xstrdup(line + 7);
124                 append_to_list(&src_data->branch, origin, NULL);
125                 src_data->head_status |= 2;
126         } else if (!prefixcmp(line, "tag ")) {
127                 origin = line;
128                 append_to_list(&src_data->tag, xstrdup(origin + 4), NULL);
129                 src_data->head_status |= 2;
130         } else if (!prefixcmp(line, "remote branch ")) {
131                 origin = xstrdup(line + 14);
132                 append_to_list(&src_data->r_branch, origin, NULL);
133                 src_data->head_status |= 2;
134         } else {
135                 origin = xstrdup(src);
136                 append_to_list(&src_data->generic, xstrdup(line), NULL);
137                 src_data->head_status |= 2;
138         }
140         if (!strcmp(".", src) || !strcmp(src, origin)) {
141                 int len = strlen(origin);
142                 if (origin[0] == '\'' && origin[len - 1] == '\'') {
143                         origin = xmemdupz(origin + 1, len - 2);
144                 } else {
145                         origin = xstrdup(origin);
146                 }
147         } else {
148                 char *new_origin = xmalloc(strlen(origin) + strlen(src) + 5);
149                 sprintf(new_origin, "%s of %s", origin, src);
150                 origin = new_origin;
151         }
152         append_to_list(&origins, origin, sha1);
153         return 0;
156 static void print_joined(const char *singular, const char *plural,
157                 struct list *list)
159         if (list->nr == 0)
160                 return;
161         if (list->nr == 1) {
162                 printf("%s%s", singular, list->list[0]);
163         } else {
164                 int i;
165                 printf("%s", plural);
166                 for (i = 0; i < list->nr - 1; i++)
167                         printf("%s%s", i > 0 ? ", " : "", list->list[i]);
168                 printf(" and %s", list->list[list->nr - 1]);
169         }
172 static void shortlog(const char *name, unsigned char *sha1,
173                 struct commit *head, struct rev_info *rev, int limit)
175         int i, count = 0;
176         struct commit *commit;
177         struct object *branch;
178         struct list subjects = { NULL, NULL, 0, 0 };
179         int flags = UNINTERESTING | TREESAME | SEEN | SHOWN | ADDED;
181         branch = deref_tag(parse_object(sha1), sha1_to_hex(sha1), 40);
182         if (!branch || branch->type != OBJ_COMMIT)
183                 return;
185         setup_revisions(0, NULL, rev, NULL);
186         rev->ignore_merges = 1;
187         add_pending_object(rev, branch, name);
188         add_pending_object(rev, &head->object, "^HEAD");
189         head->object.flags |= UNINTERESTING;
190         if (prepare_revision_walk(rev))
191                 die("revision walk setup failed");
192         while ((commit = get_revision(rev)) != NULL) {
193                 char *oneline, *bol, *eol;
195                 /* ignore merges */
196                 if (commit->parents && commit->parents->next)
197                         continue;
199                 count++;
200                 if (subjects.nr > limit)
201                         continue;
203                 bol = strstr(commit->buffer, "\n\n");
204                 if (bol) {
205                         unsigned char c;
206                         do {
207                                 c = *++bol;
208                         } while (isspace(c));
209                         if (!c)
210                                 bol = NULL;
211                 }
213                 if (!bol) {
214                         append_to_list(&subjects, xstrdup(sha1_to_hex(
215                                                         commit->object.sha1)),
216                                         NULL);
217                         continue;
218                 }
220                 eol = strchr(bol, '\n');
221                 if (eol) {
222                         oneline = xmemdupz(bol, eol - bol);
223                 } else {
224                         oneline = xstrdup(bol);
225                 }
226                 append_to_list(&subjects, oneline, NULL);
227         }
229         if (count > limit)
230                 printf("\n* %s: (%d commits)\n", name, count);
231         else
232                 printf("\n* %s:\n", name);
234         for (i = 0; i < subjects.nr; i++)
235                 if (i >= limit)
236                         printf("  ...\n");
237                 else
238                         printf("  %s\n", subjects.list[i]);
240         clear_commit_marks((struct commit *)branch, flags);
241         clear_commit_marks(head, flags);
242         free_commit_list(rev->commits);
243         rev->commits = NULL;
244         rev->pending.nr = 0;
246         free_list(&subjects);
249 int cmd_fmt_merge_msg(int argc, const char **argv, const char *prefix)
251         int limit = 20, i = 0;
252         char line[1024];
253         FILE *in = stdin;
254         const char *sep = "";
255         unsigned char head_sha1[20];
256         const char *current_branch;
258         git_config(fmt_merge_msg_config);
260         while (argc > 1) {
261                 if (!strcmp(argv[1], "--summary"))
262                         merge_summary = 1;
263                 else if (!strcmp(argv[1], "--no-summary"))
264                         merge_summary = 0;
265                 else if (!strcmp(argv[1], "-F") || !strcmp(argv[1], "--file")) {
266                         if (argc < 3)
267                                 die ("Which file?");
268                         if (!strcmp(argv[2], "-"))
269                                 in = stdin;
270                         else {
271                                 fclose(in);
272                                 in = fopen(argv[2], "r");
273                                 if (!in)
274                                         die("cannot open %s", argv[2]);
275                         }
276                         argc--; argv++;
277                 } else
278                         break;
279                 argc--; argv++;
280         }
282         if (argc > 1)
283                 usage(fmt_merge_msg_usage);
285         /* get current branch */
286         current_branch = resolve_ref("HEAD", head_sha1, 1, NULL);
287         if (!current_branch)
288                 die("No current branch");
289         if (!prefixcmp(current_branch, "refs/heads/"))
290                 current_branch += 11;
292         while (fgets(line, sizeof(line), in)) {
293                 i++;
294                 if (line[0] == 0)
295                         continue;
296                 if (handle_line(line))
297                         die ("Error in line %d: %s", i, line);
298         }
300         printf("Merge ");
301         for (i = 0; i < srcs.nr; i++) {
302                 struct src_data *src_data = srcs.payload[i];
303                 const char *subsep = "";
305                 printf(sep);
306                 sep = "; ";
308                 if (src_data->head_status == 1) {
309                         printf(srcs.list[i]);
310                         continue;
311                 }
312                 if (src_data->head_status == 3) {
313                         subsep = ", ";
314                         printf("HEAD");
315                 }
316                 if (src_data->branch.nr) {
317                         printf(subsep);
318                         subsep = ", ";
319                         print_joined("branch ", "branches ", &src_data->branch);
320                 }
321                 if (src_data->r_branch.nr) {
322                         printf(subsep);
323                         subsep = ", ";
324                         print_joined("remote branch ", "remote branches ",
325                                         &src_data->r_branch);
326                 }
327                 if (src_data->tag.nr) {
328                         printf(subsep);
329                         subsep = ", ";
330                         print_joined("tag ", "tags ", &src_data->tag);
331                 }
332                 if (src_data->generic.nr) {
333                         printf(subsep);
334                         print_joined("commit ", "commits ", &src_data->generic);
335                 }
336                 if (strcmp(".", srcs.list[i]))
337                         printf(" of %s", srcs.list[i]);
338         }
340         if (!strcmp("master", current_branch))
341                 putchar('\n');
342         else
343                 printf(" into %s\n", current_branch);
345         if (merge_summary) {
346                 struct commit *head;
347                 struct rev_info rev;
349                 head = lookup_commit(head_sha1);
350                 init_revisions(&rev, prefix);
351                 rev.commit_format = CMIT_FMT_ONELINE;
352                 rev.ignore_merges = 1;
353                 rev.limited = 1;
355                 for (i = 0; i < origins.nr; i++)
356                         shortlog(origins.list[i], origins.payload[i],
357                                         head, &rev, limit);
358         }
360         /* No cleanup yet; is standalone anyway */
362         return 0;