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