]> git.ipfire.org Git - thirdparty/git.git/blame - combine-diff.c
rerere.c: remove implicit dependency on the_index
[thirdparty/git.git] / combine-diff.c
CommitLineData
af3feefa 1#include "cache.h"
cbd53a21 2#include "object-store.h"
af3feefa 3#include "commit.h"
8e440259 4#include "blob.h"
af3feefa
JH
5#include "diff.h"
6#include "diffcore.h"
7#include "quote.h"
d9ea73e0 8#include "xdiff-interface.h"
fa04ae0b 9#include "xdiff/xmacros.h"
91539833 10#include "log-tree.h"
7dae8b21 11#include "refs.h"
4d5f3471 12#include "userdiff.h"
0041f09d 13#include "sha1-array.h"
53d00b39 14#include "revision.h"
af3feefa 15
e09867f0
JK
16static int compare_paths(const struct combine_diff_path *one,
17 const struct diff_filespec *two)
18{
19 if (!S_ISDIR(one->mode) && !S_ISDIR(two->mode))
20 return strcmp(one->path, two->path);
21
22 return base_name_compare(one->path, strlen(one->path), one->mode,
23 two->path, strlen(two->path), two->mode);
24}
25
ea726d02 26static struct combine_diff_path *intersect_paths(struct combine_diff_path *curr, int n, int num_parent)
af3feefa
JH
27{
28 struct diff_queue_struct *q = &diff_queued_diff;
7b1004b0 29 struct combine_diff_path *p, **tail = &curr;
8518ff8f 30 int i, cmp;
af3feefa
JH
31
32 if (!n) {
af3feefa
JH
33 for (i = 0; i < q->nr; i++) {
34 int len;
35 const char *path;
a976b0a5 36 if (diff_unmodified_pair(q->queue[i]))
af3feefa
JH
37 continue;
38 path = q->queue[i]->two->path;
39 len = strlen(path);
2454c962 40 p = xmalloc(combine_diff_path_size(num_parent, len));
4b25d091 41 p->path = (char *) &(p->parent[num_parent]);
af3feefa
JH
42 memcpy(p->path, path, len);
43 p->path[len] = 0;
af3feefa 44 p->next = NULL;
2454c962
JH
45 memset(p->parent, 0,
46 sizeof(p->parent[0]) * num_parent);
47
a0d12c44 48 oidcpy(&p->oid, &q->queue[i]->two->oid);
2454c962 49 p->mode = q->queue[i]->two->mode;
a0d12c44 50 oidcpy(&p->parent[n].oid, &q->queue[i]->one->oid);
2454c962 51 p->parent[n].mode = q->queue[i]->one->mode;
d416df88 52 p->parent[n].status = q->queue[i]->status;
5290a0f8
JH
53 *tail = p;
54 tail = &p->next;
af3feefa 55 }
7b1004b0 56 return curr;
af3feefa
JH
57 }
58
8518ff8f 59 /*
7b1004b0
JH
60 * paths in curr (linked list) and q->queue[] (array) are
61 * both sorted in the tree order.
8518ff8f 62 */
8518ff8f 63 i = 0;
7b1004b0
JH
64 while ((p = *tail) != NULL) {
65 cmp = ((i >= q->nr)
e09867f0 66 ? -1 : compare_paths(p, q->queue[i]->two));
8518ff8f 67
8518ff8f 68 if (cmp < 0) {
7b1004b0
JH
69 /* p->path not in q->queue[]; drop it */
70 *tail = p->next;
71 free(p);
af3feefa 72 continue;
8518ff8f 73 }
af3feefa 74
8518ff8f 75 if (cmp > 0) {
7b1004b0 76 /* q->queue[i] not in p->path; skip it */
8518ff8f
KS
77 i++;
78 continue;
af3feefa 79 }
8518ff8f 80
a0d12c44 81 oidcpy(&p->parent[n].oid, &q->queue[i]->one->oid);
8518ff8f
KS
82 p->parent[n].mode = q->queue[i]->one->mode;
83 p->parent[n].status = q->queue[i]->status;
84
7b1004b0 85 tail = &p->next;
8518ff8f 86 i++;
af3feefa
JH
87 }
88 return curr;
89}
90
b469d8b6 91/* Lines lost from parent */
af3feefa 92struct lline {
99d32060 93 struct lline *next, *prev;
af3feefa
JH
94 int len;
95 unsigned long parent_map;
96 char line[FLEX_ARRAY];
97};
98
99d32060
AP
99/* Lines lost from current parent (before coalescing) */
100struct plost {
101 struct lline *lost_head, *lost_tail;
102 int len;
103};
104
b469d8b6 105/* Lines surviving in the merge result */
af3feefa 106struct sline {
99d32060
AP
107 /* Accumulated and coalesced lost lines */
108 struct lline *lost;
109 int lenlost;
110 struct plost plost;
af3feefa
JH
111 char *bol;
112 int len;
46dc9412
JH
113 /* bit 0 up to (N-1) are on if the parent has this line (i.e.
114 * we did not change it).
b469d8b6 115 * bit N is used for "interesting" lines, including context.
c86fbe53 116 * bit (N+1) is used for "do not show deletion before this".
b469d8b6 117 */
af3feefa 118 unsigned long flag;
f16706cc 119 unsigned long *p_lno;
af3feefa
JH
120};
121
fa04ae0b
AP
122static int match_string_spaces(const char *line1, int len1,
123 const char *line2, int len2,
124 long flags)
125{
126 if (flags & XDF_WHITESPACE_FLAGS) {
127 for (; len1 > 0 && XDL_ISSPACE(line1[len1 - 1]); len1--);
128 for (; len2 > 0 && XDL_ISSPACE(line2[len2 - 1]); len2--);
129 }
130
131 if (!(flags & (XDF_IGNORE_WHITESPACE | XDF_IGNORE_WHITESPACE_CHANGE)))
132 return (len1 == len2 && !memcmp(line1, line2, len1));
133
134 while (len1 > 0 && len2 > 0) {
135 len1--;
136 len2--;
137 if (XDL_ISSPACE(line1[len1]) || XDL_ISSPACE(line2[len2])) {
138 if ((flags & XDF_IGNORE_WHITESPACE_CHANGE) &&
139 (!XDL_ISSPACE(line1[len1]) || !XDL_ISSPACE(line2[len2])))
140 return 0;
141
142 for (; len1 > 0 && XDL_ISSPACE(line1[len1]); len1--);
143 for (; len2 > 0 && XDL_ISSPACE(line2[len2]); len2--);
144 }
145 if (line1[len1] != line2[len2])
146 return 0;
147 }
148
149 if (flags & XDF_IGNORE_WHITESPACE) {
150 /* Consume remaining spaces */
151 for (; len1 > 0 && XDL_ISSPACE(line1[len1 - 1]); len1--);
152 for (; len2 > 0 && XDL_ISSPACE(line2[len2 - 1]); len2--);
153 }
154
155 /* We matched full line1 and line2 */
156 if (!len1 && !len2)
157 return 1;
158
159 return 0;
160}
161
99d32060
AP
162enum coalesce_direction { MATCH, BASE, NEW };
163
164/* Coalesce new lines into base by finding LCS */
165static struct lline *coalesce_lines(struct lline *base, int *lenbase,
06fffa00 166 struct lline *newline, int lennew,
99d32060 167 unsigned long parent, long flags)
af3feefa 168{
99d32060
AP
169 int **lcs;
170 enum coalesce_direction **directions;
171 struct lline *baseend, *newend = NULL;
172 int i, j, origbaselen = *lenbase;
af3feefa 173
06fffa00 174 if (newline == NULL)
99d32060
AP
175 return base;
176
177 if (base == NULL) {
178 *lenbase = lennew;
06fffa00 179 return newline;
99d32060
AP
180 }
181
182 /*
183 * Coalesce new lines into base by finding the LCS
98e023de 184 * - Create the table to run dynamic programming
99d32060
AP
185 * - Compute the LCS
186 * - Then reverse read the direction structure:
187 * - If we have MATCH, assign parent to base flag, and consume
188 * both baseend and newend
189 * - Else if we have BASE, consume baseend
190 * - Else if we have NEW, insert newend lline into base and
191 * consume newend
192 */
50a6c8ef
JK
193 lcs = xcalloc(st_add(origbaselen, 1), sizeof(int*));
194 directions = xcalloc(st_add(origbaselen, 1), sizeof(enum coalesce_direction*));
99d32060 195 for (i = 0; i < origbaselen + 1; i++) {
50a6c8ef
JK
196 lcs[i] = xcalloc(st_add(lennew, 1), sizeof(int));
197 directions[i] = xcalloc(st_add(lennew, 1), sizeof(enum coalesce_direction));
99d32060
AP
198 directions[i][0] = BASE;
199 }
200 for (j = 1; j < lennew + 1; j++)
201 directions[0][j] = NEW;
202
203 for (i = 1, baseend = base; i < origbaselen + 1; i++) {
06fffa00 204 for (j = 1, newend = newline; j < lennew + 1; j++) {
99d32060
AP
205 if (match_string_spaces(baseend->line, baseend->len,
206 newend->line, newend->len, flags)) {
207 lcs[i][j] = lcs[i - 1][j - 1] + 1;
208 directions[i][j] = MATCH;
209 } else if (lcs[i][j - 1] >= lcs[i - 1][j]) {
210 lcs[i][j] = lcs[i][j - 1];
211 directions[i][j] = NEW;
212 } else {
213 lcs[i][j] = lcs[i - 1][j];
214 directions[i][j] = BASE;
215 }
216 if (newend->next)
217 newend = newend->next;
218 }
219 if (baseend->next)
220 baseend = baseend->next;
221 }
222
223 for (i = 0; i < origbaselen + 1; i++)
224 free(lcs[i]);
225 free(lcs);
226
227 /* At this point, baseend and newend point to the end of each lists */
228 i--;
229 j--;
230 while (i != 0 || j != 0) {
231 if (directions[i][j] == MATCH) {
232 baseend->parent_map |= 1<<parent;
233 baseend = baseend->prev;
234 newend = newend->prev;
235 i--;
236 j--;
237 } else if (directions[i][j] == NEW) {
238 struct lline *lline;
239
240 lline = newend;
241 /* Remove lline from new list and update newend */
242 if (lline->prev)
243 lline->prev->next = lline->next;
244 else
06fffa00 245 newline = lline->next;
99d32060
AP
246 if (lline->next)
247 lline->next->prev = lline->prev;
248
249 newend = lline->prev;
250 j--;
251
252 /* Add lline to base list */
253 if (baseend) {
254 lline->next = baseend->next;
255 lline->prev = baseend;
256 if (lline->prev)
257 lline->prev->next = lline;
af3feefa 258 }
99d32060
AP
259 else {
260 lline->next = base;
261 base = lline;
262 }
263 (*lenbase)++;
264
265 if (lline->next)
266 lline->next->prev = lline;
267
268 } else {
269 baseend = baseend->prev;
270 i--;
af3feefa
JH
271 }
272 }
273
06fffa00 274 newend = newline;
99d32060
AP
275 while (newend) {
276 struct lline *lline = newend;
277 newend = newend->next;
278 free(lline);
279 }
280
281 for (i = 0; i < origbaselen + 1; i++)
282 free(directions[i]);
283 free(directions);
284
285 return base;
286}
287
6afaf807
NTND
288static char *grab_blob(struct repository *r,
289 const struct object_id *oid, unsigned int mode,
99d32060
AP
290 unsigned long *size, struct userdiff_driver *textconv,
291 const char *path)
292{
293 char *blob;
294 enum object_type type;
295
296 if (S_ISGITLINK(mode)) {
0dc3b035
JK
297 struct strbuf buf = STRBUF_INIT;
298 strbuf_addf(&buf, "Subproject commit %s\n", oid_to_hex(oid));
299 *size = buf.len;
300 blob = strbuf_detach(&buf, NULL);
1ff57c13 301 } else if (is_null_oid(oid)) {
99d32060
AP
302 /* deleted blob */
303 *size = 0;
304 return xcalloc(1, 1);
305 } else if (textconv) {
306 struct diff_filespec *df = alloc_filespec(path);
f9704c2d 307 fill_filespec(df, oid, 1, mode);
6afaf807 308 *size = fill_textconv(r, textconv, df, &blob);
99d32060
AP
309 free_filespec(df);
310 } else {
b4f5aca4 311 blob = read_object_file(oid, &type, size);
99d32060 312 if (type != OBJ_BLOB)
1ff57c13 313 die("object '%s' is not a blob!", oid_to_hex(oid));
99d32060
AP
314 }
315 return blob;
316}
317
318static void append_lost(struct sline *sline, int n, const char *line, int len)
319{
320 struct lline *lline;
321 unsigned long this_mask = (1UL<<n);
322 if (line[len-1] == '\n')
323 len--;
324
96ffc06f 325 FLEX_ALLOC_MEM(lline, line, line, len);
af3feefa
JH
326 lline->len = len;
327 lline->next = NULL;
99d32060
AP
328 lline->prev = sline->plost.lost_tail;
329 if (lline->prev)
330 lline->prev->next = lline;
331 else
332 sline->plost.lost_head = lline;
333 sline->plost.lost_tail = lline;
334 sline->plost.len++;
af3feefa 335 lline->parent_map = this_mask;
af3feefa
JH
336}
337
f23fc773 338struct combine_diff_state {
a0fd3146
JH
339 unsigned int lno;
340 int ob, on, nb, nn;
f23fc773
JH
341 unsigned long nmask;
342 int num_parent;
343 int n;
344 struct sline *sline;
345 struct sline *lost_bucket;
346};
347
d9ea73e0 348static void consume_line(void *state_, char *line, unsigned long len)
f23fc773 349{
d9ea73e0 350 struct combine_diff_state *state = state_;
f23fc773
JH
351 if (5 < len && !memcmp("@@ -", line, 4)) {
352 if (parse_hunk_header(line, len,
353 &state->ob, &state->on,
354 &state->nb, &state->nn))
355 return;
356 state->lno = state->nb;
b810cbbd 357 if (state->nn == 0) {
f23fc773
JH
358 /* @@ -X,Y +N,0 @@ removed Y lines
359 * that would have come *after* line N
360 * in the result. Our lost buckets hang
361 * to the line after the removed lines,
b810cbbd
JH
362 *
363 * Note that this is correct even when N == 0,
364 * in which case the hunk removes the first
365 * line in the file.
f23fc773
JH
366 */
367 state->lost_bucket = &state->sline[state->nb];
b810cbbd
JH
368 if (!state->nb)
369 state->nb = 1;
370 } else {
f23fc773 371 state->lost_bucket = &state->sline[state->nb-1];
b810cbbd 372 }
f23fc773
JH
373 if (!state->sline[state->nb-1].p_lno)
374 state->sline[state->nb-1].p_lno =
375 xcalloc(state->num_parent,
376 sizeof(unsigned long));
377 state->sline[state->nb-1].p_lno[state->n] = state->ob;
378 return;
379 }
380 if (!state->lost_bucket)
381 return; /* not in any hunk yet */
382 switch (line[0]) {
383 case '-':
99d32060 384 append_lost(state->lost_bucket, state->n, line+1, len-1);
f23fc773
JH
385 break;
386 case '+':
387 state->sline[state->lno-1].flag |= state->nmask;
388 state->lno++;
389 break;
390 }
391}
392
6afaf807
NTND
393static void combine_diff(struct repository *r,
394 const struct object_id *parent, unsigned int mode,
7dae8b21 395 mmfile_t *result_file,
2386c297 396 struct sline *sline, unsigned int cnt, int n,
0508fe53
JK
397 int num_parent, int result_deleted,
398 struct userdiff_driver *textconv,
fa04ae0b 399 const char *path, long flags)
af3feefa 400{
f23fc773 401 unsigned int p_lno, lno;
f16706cc 402 unsigned long nmask = (1UL << n);
f23fc773
JH
403 xpparam_t xpp;
404 xdemitconf_t xecfg;
405 mmfile_t parent_file;
f23fc773
JH
406 struct combine_diff_state state;
407 unsigned long sz;
af3feefa 408
21798708 409 if (result_deleted)
4462731e
JH
410 return; /* result deleted */
411
6afaf807 412 parent_file.ptr = grab_blob(r, parent, mode, &sz, textconv, path);
f23fc773 413 parent_file.size = sz;
9ccd0a88 414 memset(&xpp, 0, sizeof(xpp));
fa04ae0b 415 xpp.flags = flags;
30b25010 416 memset(&xecfg, 0, sizeof(xecfg));
f23fc773
JH
417 memset(&state, 0, sizeof(state));
418 state.nmask = nmask;
419 state.sline = sline;
420 state.lno = 1;
421 state.num_parent = num_parent;
422 state.n = n;
423
3efb9880
JK
424 if (xdi_diff_outf(&parent_file, result_file, consume_line, &state,
425 &xpp, &xecfg))
426 die("unable to generate combined diff for %s",
11a458be 427 oid_to_hex(parent));
f23fc773 428 free(parent_file.ptr);
f16706cc
JH
429
430 /* Assign line numbers for this parent.
431 *
432 * sline[lno].p_lno[n] records the first line number
433 * (counting from 1) for parent N if the final hunk display
434 * started by showing sline[lno] (possibly showing the lost
435 * lines attached to it first).
436 */
8a470ebf 437 for (lno = 0, p_lno = 1; lno <= cnt; lno++) {
f16706cc
JH
438 struct lline *ll;
439 sline[lno].p_lno[n] = p_lno;
440
99d32060
AP
441 /* Coalesce new lines */
442 if (sline[lno].plost.lost_head) {
443 struct sline *sl = &sline[lno];
444 sl->lost = coalesce_lines(sl->lost, &sl->lenlost,
445 sl->plost.lost_head,
446 sl->plost.len, n, flags);
447 sl->plost.lost_head = sl->plost.lost_tail = NULL;
448 sl->plost.len = 0;
449 }
450
f16706cc 451 /* How many lines would this sline advance the p_lno? */
99d32060 452 ll = sline[lno].lost;
f16706cc
JH
453 while (ll) {
454 if (ll->parent_map & nmask)
455 p_lno++; /* '-' means parent had it */
456 ll = ll->next;
457 }
8a470ebf 458 if (lno < cnt && !(sline[lno].flag & nmask))
f16706cc
JH
459 p_lno++; /* no '+' means parent had it */
460 }
461 sline[lno].p_lno[n] = p_lno; /* trailer */
af3feefa
JH
462}
463
464static unsigned long context = 3;
465static char combine_marker = '@';
466
467static int interesting(struct sline *sline, unsigned long all_mask)
468{
46dc9412
JH
469 /* If some parents lost lines here, or if we have added to
470 * some parent, it is interesting.
471 */
99d32060 472 return ((sline->flag & all_mask) || sline->lost);
af3feefa
JH
473}
474
3ec1909f
JH
475static unsigned long adjust_hunk_tail(struct sline *sline,
476 unsigned long all_mask,
477 unsigned long hunk_begin,
478 unsigned long i)
479{
46dc9412
JH
480 /* i points at the first uninteresting line. If the last line
481 * of the hunk was interesting only because it has some
482 * deletion, then it is not all that interesting for the
483 * purpose of giving trailing context lines. This is because
484 * we output '-' line and then unmodified sline[i-1] itself in
485 * that case which gives us one extra context line.
3ec1909f 486 */
46dc9412 487 if ((hunk_begin + 1 <= i) && !(sline[i-1].flag & all_mask))
3ec1909f
JH
488 i--;
489 return i;
490}
491
46dc9412
JH
492static unsigned long find_next(struct sline *sline,
493 unsigned long mark,
494 unsigned long i,
495 unsigned long cnt,
2386c297 496 int look_for_uninteresting)
3ec1909f 497{
46dc9412
JH
498 /* We have examined up to i-1 and are about to look at i.
499 * Find next interesting or uninteresting line. Here,
500 * "interesting" does not mean interesting(), but marked by
501 * the give_context() function below (i.e. it includes context
502 * lines that are not interesting to interesting() function
503 * that are surrounded by interesting() ones.
504 */
74065951 505 while (i <= cnt)
2386c297 506 if (look_for_uninteresting
46dc9412
JH
507 ? !(sline[i].flag & mark)
508 : (sline[i].flag & mark))
3ec1909f
JH
509 return i;
510 else
511 i++;
74065951 512 return i;
3ec1909f
JH
513}
514
515static int give_context(struct sline *sline, unsigned long cnt, int num_parent)
af3feefa
JH
516{
517 unsigned long all_mask = (1UL<<num_parent) - 1;
518 unsigned long mark = (1UL<<num_parent);
c86fbe53 519 unsigned long no_pre_delete = (2UL<<num_parent);
af3feefa
JH
520 unsigned long i;
521
46dc9412 522 /* Two groups of interesting lines may have a short gap of
82e5a82f 523 * uninteresting lines. Connect such groups to give them a
46dc9412
JH
524 * bit of context.
525 *
526 * We first start from what the interesting() function says,
527 * and mark them with "mark", and paint context lines with the
528 * mark. So interesting() would still say false for such context
529 * lines but they are treated as "interesting" in the end.
530 */
531 i = find_next(sline, mark, 0, cnt, 0);
74065951 532 if (cnt < i)
3ec1909f
JH
533 return 0;
534
74065951 535 while (i <= cnt) {
3ec1909f
JH
536 unsigned long j = (context < i) ? (i - context) : 0;
537 unsigned long k;
46dc9412
JH
538
539 /* Paint a few lines before the first interesting line. */
aac38571
MK
540 while (j < i) {
541 if (!(sline[j].flag & mark))
542 sline[j].flag |= no_pre_delete;
543 sline[j++].flag |= mark;
544 }
3ec1909f
JH
545
546 again:
46dc9412
JH
547 /* we know up to i is to be included. where does the
548 * next uninteresting one start?
549 */
550 j = find_next(sline, mark, i, cnt, 1);
74065951 551 if (cnt < j)
3ec1909f
JH
552 break; /* the rest are all interesting */
553
554 /* lookahead context lines */
46dc9412 555 k = find_next(sline, mark, j, cnt, 0);
3ec1909f
JH
556 j = adjust_hunk_tail(sline, all_mask, i, j);
557
558 if (k < j + context) {
559 /* k is interesting and [j,k) are not, but
560 * paint them interesting because the gap is small.
561 */
562 while (j < k)
af3feefa 563 sline[j++].flag |= mark;
3ec1909f
JH
564 i = k;
565 goto again;
af3feefa 566 }
3ec1909f
JH
567
568 /* j is the first uninteresting line and there is
46dc9412
JH
569 * no overlap beyond it within context lines. Paint
570 * the trailing edge a bit.
3ec1909f
JH
571 */
572 i = k;
74065951 573 k = (j + context < cnt+1) ? j + context : cnt+1;
3ec1909f
JH
574 while (j < k)
575 sline[j++].flag |= mark;
576 }
577 return 1;
578}
579
580static int make_hunks(struct sline *sline, unsigned long cnt,
581 int num_parent, int dense)
582{
583 unsigned long all_mask = (1UL<<num_parent) - 1;
584 unsigned long mark = (1UL<<num_parent);
585 unsigned long i;
586 int has_interesting = 0;
587
74065951 588 for (i = 0; i <= cnt; i++) {
3ec1909f
JH
589 if (interesting(&sline[i], all_mask))
590 sline[i].flag |= mark;
591 else
592 sline[i].flag &= ~mark;
af3feefa 593 }
d8f4790e 594 if (!dense)
3ec1909f 595 return give_context(sline, cnt, num_parent);
d8f4790e 596
263eee29
JH
597 /* Look at each hunk, and if we have changes from only one
598 * parent, or the changes are the same from all but one
599 * parent, mark that uninteresting.
d8f4790e
JH
600 */
601 i = 0;
74065951 602 while (i <= cnt) {
3ec1909f 603 unsigned long j, hunk_begin, hunk_end;
bf1c32bd 604 unsigned long same_diff;
74065951 605 while (i <= cnt && !(sline[i].flag & mark))
d8f4790e 606 i++;
74065951 607 if (cnt < i)
d8f4790e 608 break; /* No more interesting hunks */
3ec1909f 609 hunk_begin = i;
74065951 610 for (j = i + 1; j <= cnt; j++) {
3ec1909f
JH
611 if (!(sline[j].flag & mark)) {
612 /* Look beyond the end to see if there
613 * is an interesting line after this
614 * hunk within context span.
615 */
616 unsigned long la; /* lookahead */
617 int contin = 0;
618 la = adjust_hunk_tail(sline, all_mask,
619 hunk_begin, j);
74065951
JH
620 la = (la + context < cnt + 1) ?
621 (la + context) : cnt + 1;
e5e9b565 622 while (la && j <= --la) {
3ec1909f
JH
623 if (sline[la].flag & mark) {
624 contin = 1;
625 break;
626 }
627 }
628 if (!contin)
629 break;
630 j = la;
631 }
632 }
633 hunk_end = j;
634
bf1c32bd 635 /* [i..hunk_end) are interesting. Now is it really
fd4b1d21
JH
636 * interesting? We check if there are only two versions
637 * and the result matches one of them. That is, we look
638 * at:
639 * (+) line, which records lines added to which parents;
640 * this line appears in the result.
641 * (-) line, which records from what parents the line
642 * was removed; this line does not appear in the result.
643 * then check the set of parents the result has difference
644 * from, from all lines. If there are lines that has
645 * different set of parents that the result has differences
646 * from, that means we have more than two versions.
647 *
648 * Even when we have only two versions, if the result does
649 * not match any of the parents, the it should be considered
650 * interesting. In such a case, we would have all '+' line.
651 * After passing the above "two versions" test, that would
652 * appear as "the same set of parents" to be "all parents".
d8f4790e 653 */
bf1c32bd
JH
654 same_diff = 0;
655 has_interesting = 0;
656 for (j = i; j < hunk_end && !has_interesting; j++) {
46dc9412 657 unsigned long this_diff = sline[j].flag & all_mask;
99d32060 658 struct lline *ll = sline[j].lost;
bf1c32bd
JH
659 if (this_diff) {
660 /* This has some changes. Is it the
661 * same as others?
662 */
663 if (!same_diff)
664 same_diff = this_diff;
665 else if (same_diff != this_diff) {
666 has_interesting = 1;
667 break;
668 }
669 }
670 while (ll && !has_interesting) {
671 /* Lost this line from these parents;
672 * who are they? Are they the same?
673 */
674 this_diff = ll->parent_map;
675 if (!same_diff)
676 same_diff = this_diff;
677 else if (same_diff != this_diff) {
678 has_interesting = 1;
679 }
680 ll = ll->next;
681 }
d8f4790e 682 }
bf1c32bd 683
fd4b1d21 684 if (!has_interesting && same_diff != all_mask) {
d8f4790e 685 /* This hunk is not that interesting after all */
3ec1909f 686 for (j = hunk_begin; j < hunk_end; j++)
d8f4790e
JH
687 sline[j].flag &= ~mark;
688 }
689 i = hunk_end;
690 }
3ec1909f
JH
691
692 has_interesting = give_context(sline, cnt, num_parent);
8828cdcb 693 return has_interesting;
af3feefa
JH
694}
695
3b0f5e88 696static void show_parent_lno(struct sline *sline, unsigned long l0, unsigned long l1, int n, unsigned long null_context)
f16706cc
JH
697{
698 l0 = sline[l0].p_lno[n];
699 l1 = sline[l1].p_lno[n];
3b0f5e88 700 printf(" -%lu,%lu", l0, l1-l0-null_context);
f16706cc
JH
701}
702
d5f6a01a
JH
703static int hunk_comment_line(const char *bol)
704{
7a8ac59f
JH
705 int ch;
706
707 if (!bol)
708 return 0;
709 ch = *bol & 0xff;
d5f6a01a
JH
710 return (isalpha(ch) || ch == '_' || ch == '$');
711}
712
39280970
JH
713static void show_line_to_eol(const char *line, int len, const char *reset)
714{
715 int saw_cr_at_eol = 0;
716 if (len < 0)
717 len = strlen(line);
718 saw_cr_at_eol = (len && line[len-1] == '\r');
719
720 printf("%.*s%s%s\n", len - saw_cr_at_eol, line,
721 reset,
722 saw_cr_at_eol ? "\r" : "");
723}
724
41ee2ad6
JK
725static void dump_sline(struct sline *sline, const char *line_prefix,
726 unsigned long cnt, int num_parent,
21798708 727 int use_color, int result_deleted)
af3feefa
JH
728{
729 unsigned long mark = (1UL<<num_parent);
c86fbe53 730 unsigned long no_pre_delete = (2UL<<num_parent);
af3feefa 731 int i;
f16706cc 732 unsigned long lno = 0;
567a03d1 733 const char *c_frag = diff_get_color(use_color, DIFF_FRAGINFO);
89cb73a1 734 const char *c_func = diff_get_color(use_color, DIFF_FUNCINFO);
567a03d1
JH
735 const char *c_new = diff_get_color(use_color, DIFF_FILE_NEW);
736 const char *c_old = diff_get_color(use_color, DIFF_FILE_OLD);
8dbf3eb6 737 const char *c_context = diff_get_color(use_color, DIFF_CONTEXT);
567a03d1 738 const char *c_reset = diff_get_color(use_color, DIFF_RESET);
af3feefa 739
21798708 740 if (result_deleted)
4462731e
JH
741 return; /* result deleted */
742
af3feefa 743 while (1) {
8bc7574b
JH
744 unsigned long hunk_end;
745 unsigned long rlines;
d5f6a01a 746 const char *hunk_comment = NULL;
3b0f5e88 747 unsigned long null_context = 0;
d5f6a01a
JH
748
749 while (lno <= cnt && !(sline[lno].flag & mark)) {
750 if (hunk_comment_line(sline[lno].bol))
751 hunk_comment = sline[lno].bol;
af3feefa 752 lno++;
d5f6a01a 753 }
8a470ebf 754 if (cnt < lno)
af3feefa 755 break;
8a470ebf 756 else {
74065951 757 for (hunk_end = lno + 1; hunk_end <= cnt; hunk_end++)
8a470ebf
JH
758 if (!(sline[hunk_end].flag & mark))
759 break;
760 }
74065951
JH
761 rlines = hunk_end - lno;
762 if (cnt < hunk_end)
763 rlines--; /* pointing at the last delete hunk */
3b0f5e88
JH
764
765 if (!context) {
766 /*
767 * Even when running with --unified=0, all
768 * lines in the hunk needs to be processed in
769 * the loop below in order to show the
770 * deletion recorded in lost_head. However,
771 * we do not want to show the resulting line
772 * with all blank context markers in such a
773 * case. Compensate.
774 */
775 unsigned long j;
776 for (j = lno; j < hunk_end; j++)
777 if (!(sline[j].flag & (mark-1)))
778 null_context++;
779 rlines -= null_context;
780 }
781
41ee2ad6 782 printf("%s%s", line_prefix, c_frag);
af3feefa 783 for (i = 0; i <= num_parent; i++) putchar(combine_marker);
f16706cc 784 for (i = 0; i < num_parent; i++)
3b0f5e88 785 show_parent_lno(sline, lno, hunk_end, i, null_context);
74065951 786 printf(" +%lu,%lu ", lno+1, rlines);
af3feefa 787 for (i = 0; i <= num_parent; i++) putchar(combine_marker);
d5f6a01a
JH
788
789 if (hunk_comment) {
790 int comment_end = 0;
791 for (i = 0; i < 40; i++) {
792 int ch = hunk_comment[i] & 0xff;
793 if (!ch || ch == '\n')
794 break;
795 if (!isspace(ch))
796 comment_end = i;
797 }
798 if (comment_end)
89cb73a1 799 printf("%s%s %s%s", c_reset,
8dbf3eb6 800 c_context, c_reset,
89cb73a1 801 c_func);
d5f6a01a
JH
802 for (i = 0; i < comment_end; i++)
803 putchar(hunk_comment[i]);
804 }
805
567a03d1 806 printf("%s\n", c_reset);
af3feefa
JH
807 while (lno < hunk_end) {
808 struct lline *ll;
809 int j;
46dc9412 810 unsigned long p_mask;
fd13b21f 811 struct sline *sl = &sline[lno++];
99d32060 812 ll = (sl->flag & no_pre_delete) ? NULL : sl->lost;
af3feefa 813 while (ll) {
41ee2ad6 814 printf("%s%s", line_prefix, c_old);
af3feefa
JH
815 for (j = 0; j < num_parent; j++) {
816 if (ll->parent_map & (1UL<<j))
817 putchar('-');
818 else
819 putchar(' ');
820 }
39280970 821 show_line_to_eol(ll->line, -1, c_reset);
af3feefa
JH
822 ll = ll->next;
823 }
74065951 824 if (cnt < lno)
8a470ebf 825 break;
46dc9412 826 p_mask = 1;
41ee2ad6 827 fputs(line_prefix, stdout);
3b0f5e88
JH
828 if (!(sl->flag & (mark-1))) {
829 /*
830 * This sline was here to hang the
831 * lost lines in front of it.
832 */
833 if (!context)
834 continue;
8dbf3eb6 835 fputs(c_context, stdout);
3b0f5e88 836 }
567a03d1
JH
837 else
838 fputs(c_new, stdout);
af3feefa 839 for (j = 0; j < num_parent; j++) {
46dc9412 840 if (p_mask & sl->flag)
af3feefa 841 putchar('+');
46dc9412
JH
842 else
843 putchar(' ');
844 p_mask <<= 1;
af3feefa 845 }
39280970 846 show_line_to_eol(sl->bol, sl->len, c_reset);
af3feefa
JH
847 }
848 }
849}
850
3c39e9bd
JH
851static void reuse_combine_diff(struct sline *sline, unsigned long cnt,
852 int i, int j)
853{
854 /* We have already examined parent j and we know parent i
855 * and parent j are the same, so reuse the combined result
856 * of parent j for parent i.
857 */
858 unsigned long lno, imask, jmask;
859 imask = (1UL<<i);
860 jmask = (1UL<<j);
861
8a470ebf 862 for (lno = 0; lno <= cnt; lno++) {
99d32060 863 struct lline *ll = sline->lost;
f16706cc 864 sline->p_lno[i] = sline->p_lno[j];
3c39e9bd
JH
865 while (ll) {
866 if (ll->parent_map & jmask)
867 ll->parent_map |= imask;
868 ll = ll->next;
869 }
46dc9412
JH
870 if (sline->flag & jmask)
871 sline->flag |= imask;
3c39e9bd
JH
872 sline++;
873 }
4462731e
JH
874 /* the overall size of the file (sline[cnt]) */
875 sline->p_lno[i] = sline->p_lno[j];
3c39e9bd
JH
876}
877
462a15bc
JH
878static void dump_quoted_path(const char *head,
879 const char *prefix,
880 const char *path,
41ee2ad6 881 const char *line_prefix,
567a03d1 882 const char *c_meta, const char *c_reset)
eab144ac 883{
462a15bc
JH
884 static struct strbuf buf = STRBUF_INIT;
885
886 strbuf_reset(&buf);
41ee2ad6 887 strbuf_addstr(&buf, line_prefix);
462a15bc
JH
888 strbuf_addstr(&buf, c_meta);
889 strbuf_addstr(&buf, head);
d5625091 890 quote_two_c_style(&buf, prefix, path, 0);
462a15bc
JH
891 strbuf_addstr(&buf, c_reset);
892 puts(buf.buf);
eab144ac
LT
893}
894
7c978a06
JK
895static void show_combined_header(struct combine_diff_path *elem,
896 int num_parent,
897 int dense,
898 struct rev_info *rev,
41ee2ad6 899 const char *line_prefix,
4d5f3471
JK
900 int mode_differs,
901 int show_file_header)
7c978a06
JK
902{
903 struct diff_options *opt = &rev->diffopt;
0d1e0e78 904 int abbrev = opt->flags.full_index ? GIT_SHA1_HEXSZ : DEFAULT_ABBREV;
7c978a06
JK
905 const char *a_prefix = opt->a_prefix ? opt->a_prefix : "a/";
906 const char *b_prefix = opt->b_prefix ? opt->b_prefix : "b/";
f1c96261
JK
907 const char *c_meta = diff_get_color_opt(opt, DIFF_METAINFO);
908 const char *c_reset = diff_get_color_opt(opt, DIFF_RESET);
7c978a06
JK
909 const char *abb;
910 int added = 0;
911 int deleted = 0;
912 int i;
913
914 if (rev->loginfo && !rev->no_commit_id)
915 show_log(rev);
916
917 dump_quoted_path(dense ? "diff --cc " : "diff --combined ",
41ee2ad6
JK
918 "", elem->path, line_prefix, c_meta, c_reset);
919 printf("%s%sindex ", line_prefix, c_meta);
7c978a06 920 for (i = 0; i < num_parent; i++) {
aab9583f 921 abb = find_unique_abbrev(&elem->parent[i].oid,
7c978a06
JK
922 abbrev);
923 printf("%s%s", i ? "," : "", abb);
924 }
aab9583f 925 abb = find_unique_abbrev(&elem->oid, abbrev);
7c978a06
JK
926 printf("..%s%s\n", abb, c_reset);
927
928 if (mode_differs) {
929 deleted = !elem->mode;
930
931 /* We say it was added if nobody had it */
932 added = !deleted;
933 for (i = 0; added && i < num_parent; i++)
934 if (elem->parent[i].status !=
935 DIFF_STATUS_ADDED)
936 added = 0;
937 if (added)
41ee2ad6
JK
938 printf("%s%snew file mode %06o",
939 line_prefix, c_meta, elem->mode);
7c978a06
JK
940 else {
941 if (deleted)
41ee2ad6
JK
942 printf("%s%sdeleted file ",
943 line_prefix, c_meta);
7c978a06
JK
944 printf("mode ");
945 for (i = 0; i < num_parent; i++) {
946 printf("%s%06o", i ? "," : "",
947 elem->parent[i].mode);
948 }
949 if (elem->mode)
950 printf("..%06o", elem->mode);
951 }
952 printf("%s\n", c_reset);
953 }
954
4d5f3471
JK
955 if (!show_file_header)
956 return;
957
7c978a06
JK
958 if (added)
959 dump_quoted_path("--- ", "", "/dev/null",
41ee2ad6 960 line_prefix, c_meta, c_reset);
7c978a06
JK
961 else
962 dump_quoted_path("--- ", a_prefix, elem->path,
41ee2ad6 963 line_prefix, c_meta, c_reset);
7c978a06
JK
964 if (deleted)
965 dump_quoted_path("+++ ", "", "/dev/null",
41ee2ad6 966 line_prefix, c_meta, c_reset);
7c978a06
JK
967 else
968 dump_quoted_path("+++ ", b_prefix, elem->path,
41ee2ad6 969 line_prefix, c_meta, c_reset);
7c978a06
JK
970}
971
89b0c4b5 972static void show_patch_diff(struct combine_diff_path *elem, int num_parent,
99694544
JH
973 int dense, int working_tree_file,
974 struct rev_info *rev)
af3feefa 975{
91539833 976 struct diff_options *opt = &rev->diffopt;
f23fc773 977 unsigned long result_size, cnt, lno;
21798708 978 int result_deleted = 0;
310f8b5b 979 char *result, *cp;
af3feefa 980 struct sline *sline; /* survived lines */
2454c962 981 int mode_differs = 0;
89b0c4b5 982 int i, show_hunks;
f23fc773 983 mmfile_t result_file;
4d5f3471 984 struct userdiff_driver *userdiff;
0508fe53 985 struct userdiff_driver *textconv = NULL;
4d5f3471 986 int is_binary;
41ee2ad6 987 const char *line_prefix = diff_line_prefix(opt);
af3feefa 988
ee1e5412 989 context = opt->context;
4d5f3471
JK
990 userdiff = userdiff_find_by_path(elem->path);
991 if (!userdiff)
992 userdiff = userdiff_find_by_name("default");
0d1e0e78 993 if (opt->flags.allow_textconv)
0508fe53 994 textconv = userdiff_get_textconv(userdiff);
a5a818ee 995
af3feefa 996 /* Read the result of merge first */
f23fc773 997 if (!working_tree_file)
6afaf807 998 result = grab_blob(opt->repo, &elem->oid, elem->mode, &result_size,
0508fe53 999 textconv, elem->path);
ea726d02 1000 else {
9843a1f6 1001 /* Used by diff-tree to read from the working tree */
ea726d02 1002 struct stat st;
4fc970c4
JH
1003 int fd = -1;
1004
1005 if (lstat(elem->path, &st) < 0)
1006 goto deleted_file;
1007
1008 if (S_ISLNK(st.st_mode)) {
912342d9
JH
1009 struct strbuf buf = STRBUF_INIT;
1010
1011 if (strbuf_readlink(&buf, elem->path, st.st_size) < 0) {
4b94ec9b 1012 error_errno("readlink(%s)", elem->path);
4fc970c4
JH
1013 return;
1014 }
912342d9
JH
1015 result_size = buf.len;
1016 result = strbuf_detach(&buf, NULL);
4fc970c4 1017 elem->mode = canon_mode(st.st_mode);
7dae8b21 1018 } else if (S_ISDIR(st.st_mode)) {
1ff57c13 1019 struct object_id oid;
a98e6101 1020 if (resolve_gitlink_ref(elem->path, "HEAD", &oid) < 0)
6afaf807
NTND
1021 result = grab_blob(opt->repo, &elem->oid,
1022 elem->mode, &result_size,
1023 NULL, NULL);
7dae8b21 1024 else
6afaf807 1025 result = grab_blob(opt->repo, &oid, elem->mode,
0508fe53
JK
1026 &result_size, NULL, NULL);
1027 } else if (textconv) {
1028 struct diff_filespec *df = alloc_filespec(elem->path);
f9704c2d 1029 fill_filespec(df, &null_oid, 0, st.st_mode);
6afaf807 1030 result_size = fill_textconv(opt->repo, textconv, df, &result);
0508fe53 1031 free_filespec(df);
91fcbcbd 1032 } else if (0 <= (fd = open(elem->path, O_RDONLY))) {
dc49cd76 1033 size_t len = xsize_t(st.st_size);
c697ad14 1034 ssize_t done;
a249a9b5 1035 int is_file, i;
ea726d02 1036
1b0c7174 1037 elem->mode = canon_mode(st.st_mode);
a249a9b5
JS
1038 /* if symlinks don't work, assume symlink if all parents
1039 * are symlinks
1040 */
1041 is_file = has_symlinks;
1042 for (i = 0; !is_file && i < num_parent; i++)
1043 is_file = !S_ISLNK(elem->parent[i].mode);
1044 if (!is_file)
1045 elem->mode = canon_mode(S_IFLNK);
1046
f23fc773 1047 result_size = len;
3733e694 1048 result = xmallocz(len);
c697ad14
HO
1049
1050 done = read_in_full(fd, result, len);
1051 if (done < 0)
0721c314 1052 die_errno("read error '%s'", elem->path);
c697ad14
HO
1053 else if (done < len)
1054 die("early EOF '%s'", elem->path);
1055
5e568f9e
AG
1056 /* If not a fake symlink, apply filters, e.g. autocrlf */
1057 if (is_file) {
f285a2d7 1058 struct strbuf buf = STRBUF_INIT;
5e568f9e 1059
0734f209
NTND
1060 if (convert_to_git(rev->diffopt.repo->index,
1061 elem->path, result, len, &buf, global_conv_flags_eol)) {
5e568f9e
AG
1062 free(result);
1063 result = strbuf_detach(&buf, &len);
1064 result_size = len;
1065 }
1066 }
ea726d02
JH
1067 }
1068 else {
4fc970c4 1069 deleted_file:
21798708 1070 result_deleted = 1;
f23fc773 1071 result_size = 0;
713a11fc 1072 elem->mode = 0;
28f75818 1073 result = xcalloc(1, 1);
ea726d02 1074 }
4fc970c4 1075
ea726d02
JH
1076 if (0 <= fd)
1077 close(fd);
1078 }
af3feefa 1079
c95b99bb
JK
1080 for (i = 0; i < num_parent; i++) {
1081 if (elem->parent[i].mode != elem->mode) {
1082 mode_differs = 1;
1083 break;
1084 }
1085 }
1086
0508fe53
JK
1087 if (textconv)
1088 is_binary = 0;
1089 else if (userdiff->binary != -1)
4d5f3471
JK
1090 is_binary = userdiff->binary;
1091 else {
1092 is_binary = buffer_is_binary(result, result_size);
1093 for (i = 0; !is_binary && i < num_parent; i++) {
1094 char *buf;
1095 unsigned long size;
6afaf807
NTND
1096 buf = grab_blob(opt->repo,
1097 &elem->parent[i].oid,
4d5f3471 1098 elem->parent[i].mode,
0508fe53 1099 &size, NULL, NULL);
4d5f3471
JK
1100 if (buffer_is_binary(buf, size))
1101 is_binary = 1;
1102 free(buf);
1103 }
1104 }
1105 if (is_binary) {
1106 show_combined_header(elem, num_parent, dense, rev,
41ee2ad6 1107 line_prefix, mode_differs, 0);
4d5f3471
JK
1108 printf("Binary files differ\n");
1109 free(result);
1110 return;
1111 }
1112
2386c297 1113 for (cnt = 0, cp = result; cp < result + result_size; cp++) {
af3feefa
JH
1114 if (*cp == '\n')
1115 cnt++;
1116 }
f23fc773 1117 if (result_size && result[result_size-1] != '\n')
af3feefa
JH
1118 cnt++; /* incomplete line */
1119
50a6c8ef 1120 sline = xcalloc(st_add(cnt, 2), sizeof(*sline));
af3feefa 1121 sline[0].bol = result;
2386c297 1122 for (lno = 0, cp = result; cp < result + result_size; cp++) {
af3feefa
JH
1123 if (*cp == '\n') {
1124 sline[lno].len = cp - sline[lno].bol;
af3feefa
JH
1125 lno++;
1126 if (lno < cnt)
1127 sline[lno].bol = cp + 1;
1128 }
1129 }
f23fc773
JH
1130 if (result_size && result[result_size-1] != '\n')
1131 sline[cnt-1].len = result_size - (sline[cnt-1].bol - result);
1132
1133 result_file.ptr = result;
1134 result_file.size = result_size;
af3feefa 1135
8a470ebf
JH
1136 /* Even p_lno[cnt+1] is valid -- that is for the end line number
1137 * for deletion hunk at the end.
1138 */
50a6c8ef 1139 sline[0].p_lno = xcalloc(st_mult(st_add(cnt, 2), num_parent), sizeof(unsigned long));
8a470ebf 1140 for (lno = 0; lno <= cnt; lno++)
f16706cc
JH
1141 sline[lno+1].p_lno = sline[lno].p_lno + num_parent;
1142
3c39e9bd
JH
1143 for (i = 0; i < num_parent; i++) {
1144 int j;
1145 for (j = 0; j < i; j++) {
1ff57c13 1146 if (!oidcmp(&elem->parent[i].oid,
1147 &elem->parent[j].oid)) {
3c39e9bd
JH
1148 reuse_combine_diff(sline, cnt, i, j);
1149 break;
1150 }
1151 }
1152 if (i <= j)
6afaf807
NTND
1153 combine_diff(opt->repo,
1154 &elem->parent[i].oid,
7dae8b21
JH
1155 elem->parent[i].mode,
1156 &result_file, sline,
0508fe53 1157 cnt, i, num_parent, result_deleted,
fa04ae0b 1158 textconv, elem->path, opt->xdl_opts);
3c39e9bd 1159 }
af3feefa 1160
8828cdcb 1161 show_hunks = make_hunks(sline, cnt, num_parent, dense);
af3feefa 1162
713a11fc 1163 if (show_hunks || mode_differs || working_tree_file) {
7c978a06 1164 show_combined_header(elem, num_parent, dense, rev,
41ee2ad6
JK
1165 line_prefix, mode_differs, 1);
1166 dump_sline(sline, line_prefix, cnt, num_parent,
f1c96261 1167 opt->use_color, result_deleted);
8828cdcb 1168 }
af3feefa
JH
1169 free(result);
1170
2386c297 1171 for (lno = 0; lno < cnt; lno++) {
99d32060
AP
1172 if (sline[lno].lost) {
1173 struct lline *ll = sline[lno].lost;
af3feefa
JH
1174 while (ll) {
1175 struct lline *tmp = ll;
1176 ll = ll->next;
1177 free(tmp);
1178 }
1179 }
1180 }
46dc9412 1181 free(sline[0].p_lno);
af3feefa
JH
1182 free(sline);
1183}
1184
91539833 1185static void show_raw_diff(struct combine_diff_path *p, int num_parent, struct rev_info *rev)
ee638024 1186{
91539833 1187 struct diff_options *opt = &rev->diffopt;
77667051 1188 int line_termination, inter_name_termination, i;
41ee2ad6 1189 const char *line_prefix = diff_line_prefix(opt);
ee638024
LT
1190
1191 line_termination = opt->line_termination;
1192 inter_name_termination = '\t';
1193 if (!line_termination)
1194 inter_name_termination = 0;
1195
44152787 1196 if (rev->loginfo && !rev->no_commit_id)
02865655 1197 show_log(rev);
ee638024 1198
a1d68bea 1199
c6744349 1200 if (opt->output_format & DIFF_FORMAT_RAW) {
41ee2ad6 1201 printf("%s", line_prefix);
a1d68bea 1202
77667051
JH
1203 /* As many colons as there are parents */
1204 for (i = 0; i < num_parent; i++)
1205 putchar(':');
0a798076
JH
1206
1207 /* Show the modes */
77667051
JH
1208 for (i = 0; i < num_parent; i++)
1209 printf("%06o ", p->parent[i].mode);
1210 printf("%06o", p->mode);
0a798076
JH
1211
1212 /* Show sha1's */
1213 for (i = 0; i < num_parent; i++)
d6cece51 1214 printf(" %s", diff_aligned_abbrev(&p->parent[i].oid,
d5e3b01e 1215 opt->abbrev));
d6cece51 1216 printf(" %s ", diff_aligned_abbrev(&p->oid, opt->abbrev));
0a798076
JH
1217 }
1218
c6744349 1219 if (opt->output_format & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS)) {
d416df88
JH
1220 for (i = 0; i < num_parent; i++)
1221 putchar(p->parent[i].status);
1222 putchar(inter_name_termination);
1223 }
0a798076 1224
663af342 1225 write_name_quoted(p->path, stdout, line_termination);
0a798076
JH
1226}
1227
99694544
JH
1228/*
1229 * The result (p->elem) is from the working tree and their
1230 * parents are typically from multiple stages during a merge
1231 * (i.e. diff-files) or the state in HEAD and in the index
1232 * (i.e. diff-index).
1233 */
91539833 1234void show_combined_diff(struct combine_diff_path *p,
0a798076
JH
1235 int num_parent,
1236 int dense,
91539833 1237 struct rev_info *rev)
0a798076 1238{
91539833 1239 struct diff_options *opt = &rev->diffopt;
41ee2ad6 1240
c6744349
TH
1241 if (opt->output_format & (DIFF_FORMAT_RAW |
1242 DIFF_FORMAT_NAME |
89b0c4b5 1243 DIFF_FORMAT_NAME_STATUS))
91539833 1244 show_raw_diff(p, num_parent, rev);
89b0c4b5 1245 else if (opt->output_format & DIFF_FORMAT_PATCH)
99694544 1246 show_patch_diff(p, num_parent, dense, 1, rev);
ee638024
LT
1247}
1248
25e5e2bf
JH
1249static void free_combined_pair(struct diff_filepair *pair)
1250{
1251 free(pair->two);
1252 free(pair);
1253}
1254
1255/*
1256 * A combine_diff_path expresses N parents on the LHS against 1 merge
1257 * result. Synthesize a diff_filepair that has N entries on the "one"
1258 * side and 1 entry on the "two" side.
1259 *
1260 * In the future, we might want to add more data to combine_diff_path
1261 * so that we can fill fields we are ignoring (most notably, size) here,
1262 * but currently nobody uses it, so this should suffice for now.
1263 */
1264static struct diff_filepair *combined_pair(struct combine_diff_path *p,
1265 int num_parent)
1266{
1267 int i;
1268 struct diff_filepair *pair;
1269 struct diff_filespec *pool;
1270
1271 pair = xmalloc(sizeof(*pair));
50a6c8ef 1272 pool = xcalloc(st_add(num_parent, 1), sizeof(struct diff_filespec));
25e5e2bf
JH
1273 pair->one = pool + 1;
1274 pair->two = pool;
1275
1276 for (i = 0; i < num_parent; i++) {
1277 pair->one[i].path = p->path;
1278 pair->one[i].mode = p->parent[i].mode;
a0d12c44 1279 oidcpy(&pair->one[i].oid, &p->parent[i].oid);
41c9560e 1280 pair->one[i].oid_valid = !is_null_oid(&p->parent[i].oid);
25e5e2bf
JH
1281 pair->one[i].has_more_entries = 1;
1282 }
1283 pair->one[num_parent - 1].has_more_entries = 0;
1284
1285 pair->two->path = p->path;
1286 pair->two->mode = p->mode;
a0d12c44 1287 oidcpy(&pair->two->oid, &p->oid);
41c9560e 1288 pair->two->oid_valid = !is_null_oid(&p->oid);
25e5e2bf
JH
1289 return pair;
1290}
1291
1292static void handle_combined_callback(struct diff_options *opt,
1293 struct combine_diff_path *paths,
1294 int num_parent,
1295 int num_paths)
1296{
1297 struct combine_diff_path *p;
1298 struct diff_queue_struct q;
1299 int i;
1300
1301 q.queue = xcalloc(num_paths, sizeof(struct diff_filepair *));
1302 q.alloc = num_paths;
1303 q.nr = num_paths;
af82c788 1304 for (i = 0, p = paths; p; p = p->next)
25e5e2bf 1305 q.queue[i++] = combined_pair(p, num_parent);
25e5e2bf
JH
1306 opt->format_callback(&q, opt, opt->format_callback_data);
1307 for (i = 0; i < num_paths; i++)
1308 free_combined_pair(q.queue[i]);
1309 free(q.queue);
1310}
1311
8518ff8f
KS
1312static const char *path_path(void *obj)
1313{
1314 struct combine_diff_path *path = (struct combine_diff_path *)obj;
1315
1316 return path->path;
1317}
1318
eeb3f328
KS
1319
1320/* find set of paths that every parent touches */
09fae19a 1321static struct combine_diff_path *find_paths_generic(const struct object_id *oid,
910650d2 1322 const struct oid_array *parents, struct diff_options *opt)
eeb3f328
KS
1323{
1324 struct combine_diff_path *paths = NULL;
1325 int i, num_parent = parents->nr;
1326
1327 int output_format = opt->output_format;
1328 const char *orderfile = opt->orderfile;
1329
1330 opt->output_format = DIFF_FORMAT_NO_OUTPUT;
1331 /* tell diff_tree to emit paths in sorted (=tree) order */
1332 opt->orderfile = NULL;
1333
7195fbfa 1334 /* D(A,P1...Pn) = D(A,P1) ^ ... ^ D(A,Pn) (wrt paths) */
eeb3f328
KS
1335 for (i = 0; i < num_parent; i++) {
1336 /*
1337 * show stat against the first parent even when doing
1338 * combined diff.
1339 */
1340 int stat_opt = (output_format &
1341 (DIFF_FORMAT_NUMSTAT|DIFF_FORMAT_DIFFSTAT));
1342 if (i == 0 && stat_opt)
1343 opt->output_format = stat_opt;
1344 else
1345 opt->output_format = DIFF_FORMAT_NO_OUTPUT;
66f414f8 1346 diff_tree_oid(&parents->oid[i], oid, "", opt);
eeb3f328
KS
1347 diffcore_std(opt);
1348 paths = intersect_paths(paths, i, num_parent);
1349
1350 /* if showing diff, show it in requested order */
1351 if (opt->output_format != DIFF_FORMAT_NO_OUTPUT &&
1352 orderfile) {
1353 diffcore_order(orderfile);
1354 }
1355
1356 diff_flush(opt);
1357 }
1358
1359 opt->output_format = output_format;
1360 opt->orderfile = orderfile;
1361 return paths;
1362}
1363
1364
7195fbfa
KS
1365/*
1366 * find set of paths that everybody touches, assuming diff is run without
1367 * rename/copy detection, etc, comparing all trees simultaneously (= faster).
1368 */
1369static struct combine_diff_path *find_paths_multitree(
09fae19a 1370 const struct object_id *oid, const struct oid_array *parents,
7195fbfa
KS
1371 struct diff_options *opt)
1372{
1373 int i, nparent = parents->nr;
fda94b41 1374 const struct object_id **parents_oid;
7195fbfa
KS
1375 struct combine_diff_path paths_head;
1376 struct strbuf base;
1377
fda94b41 1378 ALLOC_ARRAY(parents_oid, nparent);
7195fbfa 1379 for (i = 0; i < nparent; i++)
fda94b41 1380 parents_oid[i] = &parents->oid[i];
7195fbfa
KS
1381
1382 /* fake list head, so worker can assume it is non-NULL */
1383 paths_head.next = NULL;
1384
1385 strbuf_init(&base, PATH_MAX);
fda94b41 1386 diff_tree_paths(&paths_head, oid, parents_oid, nparent, &base, opt);
7195fbfa
KS
1387
1388 strbuf_release(&base);
fda94b41 1389 free(parents_oid);
7195fbfa
KS
1390 return paths_head.next;
1391}
1392
1393
b9acf54d 1394void diff_tree_combined(const struct object_id *oid,
910650d2 1395 const struct oid_array *parents,
0fe7c1de
JH
1396 int dense,
1397 struct rev_info *rev)
af3feefa 1398{
91539833 1399 struct diff_options *opt = &rev->diffopt;
af3feefa 1400 struct diff_options diffopts;
eeb3f328 1401 struct combine_diff_path *p, *paths;
0041f09d 1402 int i, num_paths, needsep, show_log_first, num_parent = parents->nr;
7195fbfa 1403 int need_generic_pathscan;
af3feefa 1404
51af1886
KS
1405 /* nothing to do, if no parents */
1406 if (!num_parent)
1407 return;
1408
1409 show_log_first = !!rev->loginfo && !rev->no_commit_id;
1410 needsep = 0;
1411 if (show_log_first) {
1412 show_log(rev);
1413
e7cc0ede 1414 if (rev->verbose_header && opt->output_format &&
b9c7d6e4
JK
1415 opt->output_format != DIFF_FORMAT_NO_OUTPUT &&
1416 !commit_format_is_empty(rev->commit_format))
51af1886
KS
1417 printf("%s%c", diff_line_prefix(opt),
1418 opt->line_termination);
1419 }
1420
5b236832 1421 diffopts = *opt;
bd1928df 1422 copy_pathspec(&diffopts.pathspec, &opt->pathspec);
0d1e0e78
BW
1423 diffopts.flags.recursive = 1;
1424 diffopts.flags.allow_external = 0;
af3feefa 1425
eeb3f328
KS
1426 /* find set of paths that everybody touches
1427 *
7195fbfa
KS
1428 * NOTE
1429 *
1430 * Diffcore transformations are bound to diff_filespec and logic
1431 * comparing two entries - i.e. they do not apply directly to combine
1432 * diff.
1433 *
1434 * If some of such transformations is requested - we launch generic
1435 * path scanning, which works significantly slower compared to
1436 * simultaneous all-trees-in-one-go scan in find_paths_multitree().
1437 *
1438 * TODO some of the filters could be ported to work on
1439 * combine_diff_paths - i.e. all functionality that skips paths, so in
1440 * theory, we could end up having only multitree path scanning.
1441 *
1442 * NOTE please keep this semantically in sync with diffcore_std()
eeb3f328 1443 */
7195fbfa 1444 need_generic_pathscan = opt->skip_stat_unmatch ||
0d1e0e78 1445 opt->flags.follow_renames ||
7195fbfa
KS
1446 opt->break_opt != -1 ||
1447 opt->detect_rename ||
cf63051a 1448 (opt->pickaxe_opts & DIFF_PICKAXE_KINDS_MASK) ||
7195fbfa
KS
1449 opt->filter;
1450
1451
1452 if (need_generic_pathscan) {
1453 /*
1454 * NOTE generic case also handles --stat, as it computes
1455 * diff(sha1,parent_i) for all i to do the job, specifically
1456 * for parent0.
1457 */
09fae19a 1458 paths = find_paths_generic(oid, parents, &diffopts);
7195fbfa
KS
1459 }
1460 else {
1461 int stat_opt;
09fae19a 1462 paths = find_paths_multitree(oid, parents, &diffopts);
7195fbfa
KS
1463
1464 /*
1465 * show stat against the first parent even
1466 * when doing combined diff.
1467 */
1468 stat_opt = (opt->output_format &
1469 (DIFF_FORMAT_NUMSTAT|DIFF_FORMAT_DIFFSTAT));
1470 if (stat_opt) {
1471 diffopts.output_format = stat_opt;
1472
66f414f8 1473 diff_tree_oid(&parents->oid[0], oid, "", &diffopts);
7195fbfa
KS
1474 diffcore_std(&diffopts);
1475 if (opt->orderfile)
1476 diffcore_order(opt->orderfile);
1477 diff_flush(&diffopts);
1478 }
1479 }
af3feefa 1480
af82c788
KS
1481 /* find out number of surviving paths */
1482 for (num_paths = 0, p = paths; p; p = p->next)
1483 num_paths++;
8518ff8f
KS
1484
1485 /* order paths according to diffcore_order */
1486 if (opt->orderfile && num_paths) {
1487 struct obj_order *o;
1488
b32fa95f 1489 ALLOC_ARRAY(o, num_paths);
8518ff8f
KS
1490 for (i = 0, p = paths; p; p = p->next, i++)
1491 o[i].obj = p;
1492 order_objects(opt->orderfile, path_path, o, num_paths);
1493 for (i = 0; i < num_paths - 1; i++) {
1494 p = o[i].obj;
1495 p->next = o[i+1].obj;
1496 }
1497
1498 p = o[num_paths-1].obj;
1499 p->next = NULL;
1500 paths = o[0].obj;
1501 free(o);
1502 }
1503
1504
e3c3a550 1505 if (num_paths) {
c6744349
TH
1506 if (opt->output_format & (DIFF_FORMAT_RAW |
1507 DIFF_FORMAT_NAME |
1508 DIFF_FORMAT_NAME_STATUS)) {
af82c788
KS
1509 for (p = paths; p; p = p->next)
1510 show_raw_diff(p, num_parent, rev);
3969cf7d 1511 needsep = 1;
86ff1d20 1512 }
74e2abe5
JH
1513 else if (opt->output_format &
1514 (DIFF_FORMAT_NUMSTAT|DIFF_FORMAT_DIFFSTAT))
3969cf7d 1515 needsep = 1;
25e5e2bf
JH
1516 else if (opt->output_format & DIFF_FORMAT_CALLBACK)
1517 handle_combined_callback(opt, paths, num_parent, num_paths);
1518
c6744349 1519 if (opt->output_format & DIFF_FORMAT_PATCH) {
3969cf7d 1520 if (needsep)
41ee2ad6
JK
1521 printf("%s%c", diff_line_prefix(opt),
1522 opt->line_termination);
af82c788
KS
1523 for (p = paths; p; p = p->next)
1524 show_patch_diff(p, num_parent, dense,
1525 0, rev);
af3feefa
JH
1526 }
1527 }
1528
1529 /* Clean things up */
1530 while (paths) {
ea726d02 1531 struct combine_diff_path *tmp = paths;
af3feefa
JH
1532 paths = paths->next;
1533 free(tmp);
1534 }
46ec510a 1535
ed6e8038 1536 clear_pathspec(&diffopts.pathspec);
af3feefa 1537}
0fe7c1de 1538
82889295
RS
1539void diff_tree_combined_merge(const struct commit *commit, int dense,
1540 struct rev_info *rev)
0fe7c1de 1541{
53d00b39 1542 struct commit_list *parent = get_saved_parents(rev, commit);
910650d2 1543 struct oid_array parents = OID_ARRAY_INIT;
0041f09d
RS
1544
1545 while (parent) {
910650d2 1546 oid_array_append(&parents, &parent->item->object.oid);
0041f09d
RS
1547 parent = parent->next;
1548 }
b9acf54d 1549 diff_tree_combined(&commit->object.oid, &parents, dense, rev);
910650d2 1550 oid_array_clear(&parents);
0fe7c1de 1551}