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