]> git.ipfire.org Git - thirdparty/git.git/blame - combine-diff.c
Rework unquote_c_style to work on a strbuf.
[thirdparty/git.git] / combine-diff.c
CommitLineData
af3feefa
JH
1#include "cache.h"
2#include "commit.h"
8e440259 3#include "blob.h"
af3feefa
JH
4#include "diff.h"
5#include "diffcore.h"
6#include "quote.h"
d9ea73e0 7#include "xdiff-interface.h"
91539833 8#include "log-tree.h"
af3feefa 9
ea726d02 10static struct combine_diff_path *intersect_paths(struct combine_diff_path *curr, int n, int num_parent)
af3feefa
JH
11{
12 struct diff_queue_struct *q = &diff_queued_diff;
ea726d02 13 struct combine_diff_path *p;
af3feefa
JH
14 int i;
15
16 if (!n) {
ea726d02 17 struct combine_diff_path *list = NULL, **tail = &list;
af3feefa
JH
18 for (i = 0; i < q->nr; i++) {
19 int len;
20 const char *path;
a976b0a5 21 if (diff_unmodified_pair(q->queue[i]))
af3feefa
JH
22 continue;
23 path = q->queue[i]->two->path;
24 len = strlen(path);
2454c962
JH
25 p = xmalloc(combine_diff_path_size(num_parent, len));
26 p->path = (char*) &(p->parent[num_parent]);
af3feefa
JH
27 memcpy(p->path, path, len);
28 p->path[len] = 0;
29 p->len = len;
30 p->next = NULL;
2454c962
JH
31 memset(p->parent, 0,
32 sizeof(p->parent[0]) * num_parent);
33
e702496e 34 hashcpy(p->sha1, q->queue[i]->two->sha1);
2454c962 35 p->mode = q->queue[i]->two->mode;
e702496e 36 hashcpy(p->parent[n].sha1, q->queue[i]->one->sha1);
2454c962 37 p->parent[n].mode = q->queue[i]->one->mode;
d416df88 38 p->parent[n].status = q->queue[i]->status;
5290a0f8
JH
39 *tail = p;
40 tail = &p->next;
af3feefa
JH
41 }
42 return list;
43 }
44
45 for (p = curr; p; p = p->next) {
46 int found = 0;
47 if (!p->len)
48 continue;
49 for (i = 0; i < q->nr; i++) {
50 const char *path;
51 int len;
52
a976b0a5 53 if (diff_unmodified_pair(q->queue[i]))
af3feefa
JH
54 continue;
55 path = q->queue[i]->two->path;
56 len = strlen(path);
57 if (len == p->len && !memcmp(path, p->path, len)) {
58 found = 1;
e702496e 59 hashcpy(p->parent[n].sha1, q->queue[i]->one->sha1);
2454c962 60 p->parent[n].mode = q->queue[i]->one->mode;
d416df88 61 p->parent[n].status = q->queue[i]->status;
af3feefa
JH
62 break;
63 }
64 }
65 if (!found)
66 p->len = 0;
67 }
68 return curr;
69}
70
b469d8b6 71/* Lines lost from parent */
af3feefa
JH
72struct lline {
73 struct lline *next;
74 int len;
75 unsigned long parent_map;
76 char line[FLEX_ARRAY];
77};
78
b469d8b6 79/* Lines surviving in the merge result */
af3feefa
JH
80struct sline {
81 struct lline *lost_head, **lost_tail;
82 char *bol;
83 int len;
46dc9412
JH
84 /* bit 0 up to (N-1) are on if the parent has this line (i.e.
85 * we did not change it).
b469d8b6
JH
86 * bit N is used for "interesting" lines, including context.
87 */
af3feefa 88 unsigned long flag;
f16706cc 89 unsigned long *p_lno;
af3feefa
JH
90};
91
92static char *grab_blob(const unsigned char *sha1, unsigned long *size)
93{
94 char *blob;
21666f1a 95 enum object_type type;
0bef57ee 96 if (is_null_sha1(sha1)) {
af3feefa
JH
97 /* deleted blob */
98 *size = 0;
99 return xcalloc(1, 1);
100 }
21666f1a
NP
101 blob = read_sha1_file(sha1, &type, size);
102 if (type != OBJ_BLOB)
af3feefa
JH
103 die("object '%s' is not a blob!", sha1_to_hex(sha1));
104 return blob;
105}
106
f23fc773 107static void append_lost(struct sline *sline, int n, const char *line, int len)
af3feefa
JH
108{
109 struct lline *lline;
af3feefa
JH
110 unsigned long this_mask = (1UL<<n);
111 if (line[len-1] == '\n')
112 len--;
113
114 /* Check to see if we can squash things */
115 if (sline->lost_head) {
116 struct lline *last_one = NULL;
117 /* We cannot squash it with earlier one */
118 for (lline = sline->lost_head;
119 lline;
120 lline = lline->next)
121 if (lline->parent_map & this_mask)
122 last_one = lline;
123 lline = last_one ? last_one->next : sline->lost_head;
124 while (lline) {
125 if (lline->len == len &&
126 !memcmp(lline->line, line, len)) {
127 lline->parent_map |= this_mask;
128 return;
129 }
130 lline = lline->next;
131 }
132 }
133
134 lline = xmalloc(sizeof(*lline) + len + 1);
135 lline->len = len;
136 lline->next = NULL;
137 lline->parent_map = this_mask;
138 memcpy(lline->line, line, len);
139 lline->line[len] = 0;
5290a0f8 140 *sline->lost_tail = lline;
af3feefa
JH
141 sline->lost_tail = &lline->next;
142}
143
f23fc773 144struct combine_diff_state {
d9ea73e0
JH
145 struct xdiff_emit_state xm;
146
a0fd3146
JH
147 unsigned int lno;
148 int ob, on, nb, nn;
f23fc773
JH
149 unsigned long nmask;
150 int num_parent;
151 int n;
152 struct sline *sline;
153 struct sline *lost_bucket;
154};
155
d9ea73e0 156static void consume_line(void *state_, char *line, unsigned long len)
f23fc773 157{
d9ea73e0 158 struct combine_diff_state *state = state_;
f23fc773
JH
159 if (5 < len && !memcmp("@@ -", line, 4)) {
160 if (parse_hunk_header(line, len,
161 &state->ob, &state->on,
162 &state->nb, &state->nn))
163 return;
164 state->lno = state->nb;
165 if (!state->nb)
166 /* @@ -1,2 +0,0 @@ to remove the
167 * first two lines...
168 */
169 state->nb = 1;
170 if (state->nn == 0)
171 /* @@ -X,Y +N,0 @@ removed Y lines
172 * that would have come *after* line N
173 * in the result. Our lost buckets hang
174 * to the line after the removed lines,
175 */
176 state->lost_bucket = &state->sline[state->nb];
177 else
178 state->lost_bucket = &state->sline[state->nb-1];
179 if (!state->sline[state->nb-1].p_lno)
180 state->sline[state->nb-1].p_lno =
181 xcalloc(state->num_parent,
182 sizeof(unsigned long));
183 state->sline[state->nb-1].p_lno[state->n] = state->ob;
184 return;
185 }
186 if (!state->lost_bucket)
187 return; /* not in any hunk yet */
188 switch (line[0]) {
189 case '-':
190 append_lost(state->lost_bucket, state->n, line+1, len-1);
191 break;
192 case '+':
193 state->sline[state->lno-1].flag |= state->nmask;
194 state->lno++;
195 break;
196 }
197}
198
f23fc773 199static void combine_diff(const unsigned char *parent, mmfile_t *result_file,
2386c297
JH
200 struct sline *sline, unsigned int cnt, int n,
201 int num_parent)
af3feefa 202{
f23fc773 203 unsigned int p_lno, lno;
f16706cc 204 unsigned long nmask = (1UL << n);
f23fc773
JH
205 xpparam_t xpp;
206 xdemitconf_t xecfg;
207 mmfile_t parent_file;
208 xdemitcb_t ecb;
209 struct combine_diff_state state;
210 unsigned long sz;
af3feefa 211
4462731e
JH
212 if (!cnt)
213 return; /* result deleted */
214
f23fc773
JH
215 parent_file.ptr = grab_blob(parent, &sz);
216 parent_file.size = sz;
217 xpp.flags = XDF_NEED_MINIMAL;
30b25010 218 memset(&xecfg, 0, sizeof(xecfg));
d9ea73e0 219 ecb.outf = xdiff_outf;
f23fc773
JH
220 ecb.priv = &state;
221 memset(&state, 0, sizeof(state));
d9ea73e0 222 state.xm.consume = consume_line;
f23fc773
JH
223 state.nmask = nmask;
224 state.sline = sline;
225 state.lno = 1;
226 state.num_parent = num_parent;
227 state.n = n;
228
229 xdl_diff(&parent_file, result_file, &xpp, &xecfg, &ecb);
f23fc773 230 free(parent_file.ptr);
f16706cc
JH
231
232 /* Assign line numbers for this parent.
233 *
234 * sline[lno].p_lno[n] records the first line number
235 * (counting from 1) for parent N if the final hunk display
236 * started by showing sline[lno] (possibly showing the lost
237 * lines attached to it first).
238 */
8a470ebf 239 for (lno = 0, p_lno = 1; lno <= cnt; lno++) {
f16706cc
JH
240 struct lline *ll;
241 sline[lno].p_lno[n] = p_lno;
242
243 /* How many lines would this sline advance the p_lno? */
244 ll = sline[lno].lost_head;
245 while (ll) {
246 if (ll->parent_map & nmask)
247 p_lno++; /* '-' means parent had it */
248 ll = ll->next;
249 }
8a470ebf 250 if (lno < cnt && !(sline[lno].flag & nmask))
f16706cc
JH
251 p_lno++; /* no '+' means parent had it */
252 }
253 sline[lno].p_lno[n] = p_lno; /* trailer */
af3feefa
JH
254}
255
256static unsigned long context = 3;
257static char combine_marker = '@';
258
259static int interesting(struct sline *sline, unsigned long all_mask)
260{
46dc9412
JH
261 /* If some parents lost lines here, or if we have added to
262 * some parent, it is interesting.
263 */
264 return ((sline->flag & all_mask) || sline->lost_head);
af3feefa
JH
265}
266
3ec1909f
JH
267static unsigned long adjust_hunk_tail(struct sline *sline,
268 unsigned long all_mask,
269 unsigned long hunk_begin,
270 unsigned long i)
271{
46dc9412
JH
272 /* i points at the first uninteresting line. If the last line
273 * of the hunk was interesting only because it has some
274 * deletion, then it is not all that interesting for the
275 * purpose of giving trailing context lines. This is because
276 * we output '-' line and then unmodified sline[i-1] itself in
277 * that case which gives us one extra context line.
3ec1909f 278 */
46dc9412 279 if ((hunk_begin + 1 <= i) && !(sline[i-1].flag & all_mask))
3ec1909f
JH
280 i--;
281 return i;
282}
283
46dc9412
JH
284static unsigned long find_next(struct sline *sline,
285 unsigned long mark,
286 unsigned long i,
287 unsigned long cnt,
2386c297 288 int look_for_uninteresting)
3ec1909f 289{
46dc9412
JH
290 /* We have examined up to i-1 and are about to look at i.
291 * Find next interesting or uninteresting line. Here,
292 * "interesting" does not mean interesting(), but marked by
293 * the give_context() function below (i.e. it includes context
294 * lines that are not interesting to interesting() function
295 * that are surrounded by interesting() ones.
296 */
74065951 297 while (i <= cnt)
2386c297 298 if (look_for_uninteresting
46dc9412
JH
299 ? !(sline[i].flag & mark)
300 : (sline[i].flag & mark))
3ec1909f
JH
301 return i;
302 else
303 i++;
74065951 304 return i;
3ec1909f
JH
305}
306
307static int give_context(struct sline *sline, unsigned long cnt, int num_parent)
af3feefa
JH
308{
309 unsigned long all_mask = (1UL<<num_parent) - 1;
310 unsigned long mark = (1UL<<num_parent);
311 unsigned long i;
312
46dc9412 313 /* Two groups of interesting lines may have a short gap of
82e5a82f 314 * uninteresting lines. Connect such groups to give them a
46dc9412
JH
315 * bit of context.
316 *
317 * We first start from what the interesting() function says,
318 * and mark them with "mark", and paint context lines with the
319 * mark. So interesting() would still say false for such context
320 * lines but they are treated as "interesting" in the end.
321 */
322 i = find_next(sline, mark, 0, cnt, 0);
74065951 323 if (cnt < i)
3ec1909f
JH
324 return 0;
325
74065951 326 while (i <= cnt) {
3ec1909f
JH
327 unsigned long j = (context < i) ? (i - context) : 0;
328 unsigned long k;
46dc9412
JH
329
330 /* Paint a few lines before the first interesting line. */
3ec1909f
JH
331 while (j < i)
332 sline[j++].flag |= mark;
333
334 again:
46dc9412
JH
335 /* we know up to i is to be included. where does the
336 * next uninteresting one start?
337 */
338 j = find_next(sline, mark, i, cnt, 1);
74065951 339 if (cnt < j)
3ec1909f
JH
340 break; /* the rest are all interesting */
341
342 /* lookahead context lines */
46dc9412 343 k = find_next(sline, mark, j, cnt, 0);
3ec1909f
JH
344 j = adjust_hunk_tail(sline, all_mask, i, j);
345
346 if (k < j + context) {
347 /* k is interesting and [j,k) are not, but
348 * paint them interesting because the gap is small.
349 */
350 while (j < k)
af3feefa 351 sline[j++].flag |= mark;
3ec1909f
JH
352 i = k;
353 goto again;
af3feefa 354 }
3ec1909f
JH
355
356 /* j is the first uninteresting line and there is
46dc9412
JH
357 * no overlap beyond it within context lines. Paint
358 * the trailing edge a bit.
3ec1909f
JH
359 */
360 i = k;
74065951 361 k = (j + context < cnt+1) ? j + context : cnt+1;
3ec1909f
JH
362 while (j < k)
363 sline[j++].flag |= mark;
364 }
365 return 1;
366}
367
368static int make_hunks(struct sline *sline, unsigned long cnt,
369 int num_parent, int dense)
370{
371 unsigned long all_mask = (1UL<<num_parent) - 1;
372 unsigned long mark = (1UL<<num_parent);
373 unsigned long i;
374 int has_interesting = 0;
375
74065951 376 for (i = 0; i <= cnt; i++) {
3ec1909f
JH
377 if (interesting(&sline[i], all_mask))
378 sline[i].flag |= mark;
379 else
380 sline[i].flag &= ~mark;
af3feefa 381 }
d8f4790e 382 if (!dense)
3ec1909f 383 return give_context(sline, cnt, num_parent);
d8f4790e 384
263eee29
JH
385 /* Look at each hunk, and if we have changes from only one
386 * parent, or the changes are the same from all but one
387 * parent, mark that uninteresting.
d8f4790e
JH
388 */
389 i = 0;
74065951 390 while (i <= cnt) {
3ec1909f 391 unsigned long j, hunk_begin, hunk_end;
bf1c32bd 392 unsigned long same_diff;
74065951 393 while (i <= cnt && !(sline[i].flag & mark))
d8f4790e 394 i++;
74065951 395 if (cnt < i)
d8f4790e 396 break; /* No more interesting hunks */
3ec1909f 397 hunk_begin = i;
74065951 398 for (j = i + 1; j <= cnt; j++) {
3ec1909f
JH
399 if (!(sline[j].flag & mark)) {
400 /* Look beyond the end to see if there
401 * is an interesting line after this
402 * hunk within context span.
403 */
404 unsigned long la; /* lookahead */
405 int contin = 0;
406 la = adjust_hunk_tail(sline, all_mask,
407 hunk_begin, j);
74065951
JH
408 la = (la + context < cnt + 1) ?
409 (la + context) : cnt + 1;
3ec1909f
JH
410 while (j <= --la) {
411 if (sline[la].flag & mark) {
412 contin = 1;
413 break;
414 }
415 }
416 if (!contin)
417 break;
418 j = la;
419 }
420 }
421 hunk_end = j;
422
bf1c32bd 423 /* [i..hunk_end) are interesting. Now is it really
fd4b1d21
JH
424 * interesting? We check if there are only two versions
425 * and the result matches one of them. That is, we look
426 * at:
427 * (+) line, which records lines added to which parents;
428 * this line appears in the result.
429 * (-) line, which records from what parents the line
430 * was removed; this line does not appear in the result.
431 * then check the set of parents the result has difference
432 * from, from all lines. If there are lines that has
433 * different set of parents that the result has differences
434 * from, that means we have more than two versions.
435 *
436 * Even when we have only two versions, if the result does
437 * not match any of the parents, the it should be considered
438 * interesting. In such a case, we would have all '+' line.
439 * After passing the above "two versions" test, that would
440 * appear as "the same set of parents" to be "all parents".
d8f4790e 441 */
bf1c32bd
JH
442 same_diff = 0;
443 has_interesting = 0;
444 for (j = i; j < hunk_end && !has_interesting; j++) {
46dc9412 445 unsigned long this_diff = sline[j].flag & all_mask;
bf1c32bd
JH
446 struct lline *ll = sline[j].lost_head;
447 if (this_diff) {
448 /* This has some changes. Is it the
449 * same as others?
450 */
451 if (!same_diff)
452 same_diff = this_diff;
453 else if (same_diff != this_diff) {
454 has_interesting = 1;
455 break;
456 }
457 }
458 while (ll && !has_interesting) {
459 /* Lost this line from these parents;
460 * who are they? Are they the same?
461 */
462 this_diff = ll->parent_map;
463 if (!same_diff)
464 same_diff = this_diff;
465 else if (same_diff != this_diff) {
466 has_interesting = 1;
467 }
468 ll = ll->next;
469 }
d8f4790e 470 }
bf1c32bd 471
fd4b1d21 472 if (!has_interesting && same_diff != all_mask) {
d8f4790e 473 /* This hunk is not that interesting after all */
3ec1909f 474 for (j = hunk_begin; j < hunk_end; j++)
d8f4790e
JH
475 sline[j].flag &= ~mark;
476 }
477 i = hunk_end;
478 }
3ec1909f
JH
479
480 has_interesting = give_context(sline, cnt, num_parent);
8828cdcb 481 return has_interesting;
af3feefa
JH
482}
483
3b0f5e88 484static void show_parent_lno(struct sline *sline, unsigned long l0, unsigned long l1, int n, unsigned long null_context)
f16706cc
JH
485{
486 l0 = sline[l0].p_lno[n];
487 l1 = sline[l1].p_lno[n];
3b0f5e88 488 printf(" -%lu,%lu", l0, l1-l0-null_context);
f16706cc
JH
489}
490
d5f6a01a
JH
491static int hunk_comment_line(const char *bol)
492{
7a8ac59f
JH
493 int ch;
494
495 if (!bol)
496 return 0;
497 ch = *bol & 0xff;
d5f6a01a
JH
498 return (isalpha(ch) || ch == '_' || ch == '$');
499}
500
567a03d1
JH
501static void dump_sline(struct sline *sline, unsigned long cnt, int num_parent,
502 int use_color)
af3feefa
JH
503{
504 unsigned long mark = (1UL<<num_parent);
505 int i;
f16706cc 506 unsigned long lno = 0;
567a03d1
JH
507 const char *c_frag = diff_get_color(use_color, DIFF_FRAGINFO);
508 const char *c_new = diff_get_color(use_color, DIFF_FILE_NEW);
509 const char *c_old = diff_get_color(use_color, DIFF_FILE_OLD);
510 const char *c_plain = diff_get_color(use_color, DIFF_PLAIN);
511 const char *c_reset = diff_get_color(use_color, DIFF_RESET);
af3feefa 512
4462731e
JH
513 if (!cnt)
514 return; /* result deleted */
515
af3feefa
JH
516 while (1) {
517 struct sline *sl = &sline[lno];
8bc7574b
JH
518 unsigned long hunk_end;
519 unsigned long rlines;
d5f6a01a 520 const char *hunk_comment = NULL;
3b0f5e88 521 unsigned long null_context = 0;
d5f6a01a
JH
522
523 while (lno <= cnt && !(sline[lno].flag & mark)) {
524 if (hunk_comment_line(sline[lno].bol))
525 hunk_comment = sline[lno].bol;
af3feefa 526 lno++;
d5f6a01a 527 }
8a470ebf 528 if (cnt < lno)
af3feefa 529 break;
8a470ebf 530 else {
74065951 531 for (hunk_end = lno + 1; hunk_end <= cnt; hunk_end++)
8a470ebf
JH
532 if (!(sline[hunk_end].flag & mark))
533 break;
534 }
74065951
JH
535 rlines = hunk_end - lno;
536 if (cnt < hunk_end)
537 rlines--; /* pointing at the last delete hunk */
3b0f5e88
JH
538
539 if (!context) {
540 /*
541 * Even when running with --unified=0, all
542 * lines in the hunk needs to be processed in
543 * the loop below in order to show the
544 * deletion recorded in lost_head. However,
545 * we do not want to show the resulting line
546 * with all blank context markers in such a
547 * case. Compensate.
548 */
549 unsigned long j;
550 for (j = lno; j < hunk_end; j++)
551 if (!(sline[j].flag & (mark-1)))
552 null_context++;
553 rlines -= null_context;
554 }
555
567a03d1 556 fputs(c_frag, stdout);
af3feefa 557 for (i = 0; i <= num_parent; i++) putchar(combine_marker);
f16706cc 558 for (i = 0; i < num_parent; i++)
3b0f5e88 559 show_parent_lno(sline, lno, hunk_end, i, null_context);
74065951 560 printf(" +%lu,%lu ", lno+1, rlines);
af3feefa 561 for (i = 0; i <= num_parent; i++) putchar(combine_marker);
d5f6a01a
JH
562
563 if (hunk_comment) {
564 int comment_end = 0;
565 for (i = 0; i < 40; i++) {
566 int ch = hunk_comment[i] & 0xff;
567 if (!ch || ch == '\n')
568 break;
569 if (!isspace(ch))
570 comment_end = i;
571 }
572 if (comment_end)
573 putchar(' ');
574 for (i = 0; i < comment_end; i++)
575 putchar(hunk_comment[i]);
576 }
577
567a03d1 578 printf("%s\n", c_reset);
af3feefa
JH
579 while (lno < hunk_end) {
580 struct lline *ll;
581 int j;
46dc9412 582 unsigned long p_mask;
af3feefa
JH
583 sl = &sline[lno++];
584 ll = sl->lost_head;
585 while (ll) {
567a03d1 586 fputs(c_old, stdout);
af3feefa
JH
587 for (j = 0; j < num_parent; j++) {
588 if (ll->parent_map & (1UL<<j))
589 putchar('-');
590 else
591 putchar(' ');
592 }
567a03d1 593 printf("%s%s\n", ll->line, c_reset);
af3feefa
JH
594 ll = ll->next;
595 }
74065951 596 if (cnt < lno)
8a470ebf 597 break;
46dc9412 598 p_mask = 1;
3b0f5e88
JH
599 if (!(sl->flag & (mark-1))) {
600 /*
601 * This sline was here to hang the
602 * lost lines in front of it.
603 */
604 if (!context)
605 continue;
567a03d1 606 fputs(c_plain, stdout);
3b0f5e88 607 }
567a03d1
JH
608 else
609 fputs(c_new, stdout);
af3feefa 610 for (j = 0; j < num_parent; j++) {
46dc9412 611 if (p_mask & sl->flag)
af3feefa 612 putchar('+');
46dc9412
JH
613 else
614 putchar(' ');
615 p_mask <<= 1;
af3feefa 616 }
567a03d1 617 printf("%.*s%s\n", sl->len, sl->bol, c_reset);
af3feefa
JH
618 }
619 }
620}
621
3c39e9bd
JH
622static void reuse_combine_diff(struct sline *sline, unsigned long cnt,
623 int i, int j)
624{
625 /* We have already examined parent j and we know parent i
626 * and parent j are the same, so reuse the combined result
627 * of parent j for parent i.
628 */
629 unsigned long lno, imask, jmask;
630 imask = (1UL<<i);
631 jmask = (1UL<<j);
632
8a470ebf 633 for (lno = 0; lno <= cnt; lno++) {
3c39e9bd 634 struct lline *ll = sline->lost_head;
f16706cc 635 sline->p_lno[i] = sline->p_lno[j];
3c39e9bd
JH
636 while (ll) {
637 if (ll->parent_map & jmask)
638 ll->parent_map |= imask;
639 ll = ll->next;
640 }
46dc9412
JH
641 if (sline->flag & jmask)
642 sline->flag |= imask;
3c39e9bd
JH
643 sline++;
644 }
4462731e
JH
645 /* the overall size of the file (sline[cnt]) */
646 sline->p_lno[i] = sline->p_lno[j];
3c39e9bd
JH
647}
648
567a03d1
JH
649static void dump_quoted_path(const char *prefix, const char *path,
650 const char *c_meta, const char *c_reset)
eab144ac 651{
567a03d1 652 printf("%s%s", c_meta, prefix);
eab144ac
LT
653 if (quote_c_style(path, NULL, NULL, 0))
654 quote_c_style(path, NULL, stdout, 0);
655 else
656 printf("%s", path);
567a03d1 657 printf("%s\n", c_reset);
eab144ac
LT
658}
659
89b0c4b5
JH
660static void show_patch_diff(struct combine_diff_path *elem, int num_parent,
661 int dense, struct rev_info *rev)
af3feefa 662{
91539833 663 struct diff_options *opt = &rev->diffopt;
f23fc773 664 unsigned long result_size, cnt, lno;
310f8b5b 665 char *result, *cp;
af3feefa 666 struct sline *sline; /* survived lines */
2454c962 667 int mode_differs = 0;
89b0c4b5 668 int i, show_hunks;
0bef57ee 669 int working_tree_file = is_null_sha1(elem->sha1);
e70c6b35 670 int abbrev = opt->full_index ? 40 : DEFAULT_ABBREV;
f23fc773 671 mmfile_t result_file;
af3feefa 672
ee1e5412 673 context = opt->context;
af3feefa 674 /* Read the result of merge first */
f23fc773
JH
675 if (!working_tree_file)
676 result = grab_blob(elem->sha1, &result_size);
ea726d02 677 else {
9843a1f6 678 /* Used by diff-tree to read from the working tree */
ea726d02 679 struct stat st;
4fc970c4
JH
680 int fd = -1;
681
682 if (lstat(elem->path, &st) < 0)
683 goto deleted_file;
684
685 if (S_ISLNK(st.st_mode)) {
dc49cd76 686 size_t len = xsize_t(st.st_size);
4fc970c4
JH
687 result_size = len;
688 result = xmalloc(len + 1);
689 if (result_size != readlink(elem->path, result, len)) {
690 error("readlink(%s): %s", elem->path,
691 strerror(errno));
692 return;
693 }
694 result[len] = 0;
695 elem->mode = canon_mode(st.st_mode);
696 }
697 else if (0 <= (fd = open(elem->path, O_RDONLY)) &&
698 !fstat(fd, &st)) {
dc49cd76 699 size_t len = xsize_t(st.st_size);
ee24ee55 700 size_t sz = 0;
a249a9b5 701 int is_file, i;
ea726d02 702
1b0c7174 703 elem->mode = canon_mode(st.st_mode);
a249a9b5
JS
704 /* if symlinks don't work, assume symlink if all parents
705 * are symlinks
706 */
707 is_file = has_symlinks;
708 for (i = 0; !is_file && i < num_parent; i++)
709 is_file = !S_ISLNK(elem->parent[i].mode);
710 if (!is_file)
711 elem->mode = canon_mode(S_IFLNK);
712
f23fc773 713 result_size = len;
ea726d02 714 result = xmalloc(len + 1);
2386c297 715 while (sz < len) {
8a912bcb 716 ssize_t done = xread(fd, result+sz, len-sz);
ea726d02
JH
717 if (done == 0)
718 break;
719 if (done < 0)
f23fc773 720 die("read error '%s'", elem->path);
2386c297 721 sz += done;
ea726d02
JH
722 }
723 result[len] = 0;
724 }
725 else {
4fc970c4 726 deleted_file:
f23fc773 727 result_size = 0;
713a11fc 728 elem->mode = 0;
28f75818 729 result = xcalloc(1, 1);
ea726d02 730 }
4fc970c4 731
ea726d02
JH
732 if (0 <= fd)
733 close(fd);
734 }
af3feefa 735
2386c297 736 for (cnt = 0, cp = result; cp < result + result_size; cp++) {
af3feefa
JH
737 if (*cp == '\n')
738 cnt++;
739 }
f23fc773 740 if (result_size && result[result_size-1] != '\n')
af3feefa
JH
741 cnt++; /* incomplete line */
742
8a470ebf 743 sline = xcalloc(cnt+2, sizeof(*sline));
af3feefa 744 sline[0].bol = result;
8a470ebf 745 for (lno = 0; lno <= cnt + 1; lno++) {
4462731e
JH
746 sline[lno].lost_tail = &sline[lno].lost_head;
747 sline[lno].flag = 0;
748 }
2386c297 749 for (lno = 0, cp = result; cp < result + result_size; cp++) {
af3feefa
JH
750 if (*cp == '\n') {
751 sline[lno].len = cp - sline[lno].bol;
af3feefa
JH
752 lno++;
753 if (lno < cnt)
754 sline[lno].bol = cp + 1;
755 }
756 }
f23fc773
JH
757 if (result_size && result[result_size-1] != '\n')
758 sline[cnt-1].len = result_size - (sline[cnt-1].bol - result);
759
760 result_file.ptr = result;
761 result_file.size = result_size;
af3feefa 762
8a470ebf
JH
763 /* Even p_lno[cnt+1] is valid -- that is for the end line number
764 * for deletion hunk at the end.
765 */
766 sline[0].p_lno = xcalloc((cnt+2) * num_parent, sizeof(unsigned long));
767 for (lno = 0; lno <= cnt; lno++)
f16706cc
JH
768 sline[lno+1].p_lno = sline[lno].p_lno + num_parent;
769
3c39e9bd
JH
770 for (i = 0; i < num_parent; i++) {
771 int j;
772 for (j = 0; j < i; j++) {
a89fccd2
DR
773 if (!hashcmp(elem->parent[i].sha1,
774 elem->parent[j].sha1)) {
3c39e9bd
JH
775 reuse_combine_diff(sline, cnt, i, j);
776 break;
777 }
778 }
779 if (i <= j)
f23fc773 780 combine_diff(elem->parent[i].sha1, &result_file, sline,
f16706cc 781 cnt, i, num_parent);
2454c962
JH
782 if (elem->parent[i].mode != elem->mode)
783 mode_differs = 1;
3c39e9bd 784 }
af3feefa 785
8828cdcb 786 show_hunks = make_hunks(sline, cnt, num_parent, dense);
af3feefa 787
713a11fc 788 if (show_hunks || mode_differs || working_tree_file) {
9843a1f6 789 const char *abb;
567a03d1
JH
790 int use_color = opt->color_diff;
791 const char *c_meta = diff_get_color(use_color, DIFF_METAINFO);
792 const char *c_reset = diff_get_color(use_color, DIFF_RESET);
d5f6a01a
JH
793 int added = 0;
794 int deleted = 0;
9843a1f6 795
44152787 796 if (rev->loginfo && !rev->no_commit_id)
39bc9a6c 797 show_log(rev, opt->msg_sep);
567a03d1
JH
798 dump_quoted_path(dense ? "diff --cc " : "diff --combined ",
799 elem->path, c_meta, c_reset);
800 printf("%sindex ", c_meta);
823bcd6e 801 for (i = 0; i < num_parent; i++) {
297a1aad 802 abb = find_unique_abbrev(elem->parent[i].sha1,
e70c6b35 803 abbrev);
9843a1f6 804 printf("%s%s", i ? "," : "", abb);
823bcd6e 805 }
e70c6b35 806 abb = find_unique_abbrev(elem->sha1, abbrev);
567a03d1 807 printf("..%s%s\n", abb, c_reset);
2454c962
JH
808
809 if (mode_differs) {
d5f6a01a
JH
810 deleted = !elem->mode;
811
812 /* We say it was added if nobody had it */
813 added = !deleted;
d416df88
JH
814 for (i = 0; added && i < num_parent; i++)
815 if (elem->parent[i].status !=
816 DIFF_STATUS_ADDED)
817 added = 0;
818 if (added)
567a03d1
JH
819 printf("%snew file mode %06o",
820 c_meta, elem->mode);
d416df88 821 else {
d5f6a01a 822 if (deleted)
567a03d1 823 printf("%sdeleted file ", c_meta);
d416df88
JH
824 printf("mode ");
825 for (i = 0; i < num_parent; i++) {
826 printf("%s%06o", i ? "," : "",
827 elem->parent[i].mode);
828 }
829 if (elem->mode)
830 printf("..%06o", elem->mode);
2454c962 831 }
567a03d1 832 printf("%s\n", c_reset);
2454c962 833 }
d5f6a01a
JH
834 if (added)
835 dump_quoted_path("--- /dev/", "null", c_meta, c_reset);
836 else
837 dump_quoted_path("--- a/", elem->path, c_meta, c_reset);
838 if (deleted)
839 dump_quoted_path("+++ /dev/", "null", c_meta, c_reset);
840 else
841 dump_quoted_path("+++ b/", elem->path, c_meta, c_reset);
567a03d1 842 dump_sline(sline, cnt, num_parent, opt->color_diff);
8828cdcb 843 }
af3feefa
JH
844 free(result);
845
2386c297
JH
846 for (lno = 0; lno < cnt; lno++) {
847 if (sline[lno].lost_head) {
848 struct lline *ll = sline[lno].lost_head;
af3feefa
JH
849 while (ll) {
850 struct lline *tmp = ll;
851 ll = ll->next;
852 free(tmp);
853 }
854 }
855 }
46dc9412 856 free(sline[0].p_lno);
af3feefa
JH
857 free(sline);
858}
859
ee638024
LT
860#define COLONS "::::::::::::::::::::::::::::::::"
861
91539833 862static void show_raw_diff(struct combine_diff_path *p, int num_parent, struct rev_info *rev)
ee638024 863{
91539833 864 struct diff_options *opt = &rev->diffopt;
310f8b5b 865 int i, offset;
ee638024
LT
866 const char *prefix;
867 int line_termination, inter_name_termination;
868
869 line_termination = opt->line_termination;
870 inter_name_termination = '\t';
871 if (!line_termination)
872 inter_name_termination = 0;
873
44152787 874 if (rev->loginfo && !rev->no_commit_id)
39bc9a6c 875 show_log(rev, opt->msg_sep);
ee638024 876
c6744349 877 if (opt->output_format & DIFF_FORMAT_RAW) {
0a798076
JH
878 offset = strlen(COLONS) - num_parent;
879 if (offset < 0)
880 offset = 0;
881 prefix = COLONS + offset;
882
883 /* Show the modes */
884 for (i = 0; i < num_parent; i++) {
885 printf("%s%06o", prefix, p->parent[i].mode);
886 prefix = " ";
887 }
888 printf("%s%06o", prefix, p->mode);
889
890 /* Show sha1's */
891 for (i = 0; i < num_parent; i++)
892 printf(" %s", diff_unique_abbrev(p->parent[i].sha1,
893 opt->abbrev));
894 printf(" %s ", diff_unique_abbrev(p->sha1, opt->abbrev));
895 }
896
c6744349 897 if (opt->output_format & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS)) {
d416df88
JH
898 for (i = 0; i < num_parent; i++)
899 putchar(p->parent[i].status);
900 putchar(inter_name_termination);
901 }
0a798076
JH
902
903 if (line_termination) {
904 if (quote_c_style(p->path, NULL, NULL, 0))
905 quote_c_style(p->path, NULL, stdout, 0);
906 else
907 printf("%s", p->path);
908 putchar(line_termination);
909 }
910 else {
911 printf("%s%c", p->path, line_termination);
ee638024 912 }
0a798076
JH
913}
914
91539833 915void show_combined_diff(struct combine_diff_path *p,
0a798076
JH
916 int num_parent,
917 int dense,
91539833 918 struct rev_info *rev)
0a798076 919{
91539833 920 struct diff_options *opt = &rev->diffopt;
0a798076 921 if (!p->len)
91539833 922 return;
c6744349
TH
923 if (opt->output_format & (DIFF_FORMAT_RAW |
924 DIFF_FORMAT_NAME |
89b0c4b5 925 DIFF_FORMAT_NAME_STATUS))
91539833 926 show_raw_diff(p, num_parent, rev);
89b0c4b5 927 else if (opt->output_format & DIFF_FORMAT_PATCH)
91539833 928 show_patch_diff(p, num_parent, dense, rev);
ee638024
LT
929}
930
0fe7c1de
JH
931void diff_tree_combined(const unsigned char *sha1,
932 const unsigned char parent[][20],
933 int num_parent,
934 int dense,
935 struct rev_info *rev)
af3feefa 936{
91539833 937 struct diff_options *opt = &rev->diffopt;
af3feefa 938 struct diff_options diffopts;
ea726d02 939 struct combine_diff_path *p, *paths = NULL;
3969cf7d 940 int i, num_paths, needsep, show_log_first;
af3feefa 941
5b236832 942 diffopts = *opt;
3969cf7d 943 diffopts.output_format = DIFF_FORMAT_NO_OUTPUT;
af3feefa 944 diffopts.recursive = 1;
f1af60bd 945 diffopts.allow_external = 0;
af3feefa 946
44152787 947 show_log_first = !!rev->loginfo && !rev->no_commit_id;
3969cf7d 948 needsep = 0;
af3feefa 949 /* find set of paths that everybody touches */
0fe7c1de 950 for (i = 0; i < num_parent; i++) {
965f803c
JH
951 /* show stat against the first parent even
952 * when doing combined diff.
953 */
74e2abe5
JH
954 int stat_opt = (opt->output_format &
955 (DIFF_FORMAT_NUMSTAT|DIFF_FORMAT_DIFFSTAT));
956 if (i == 0 && stat_opt)
957 diffopts.output_format = stat_opt;
965f803c
JH
958 else
959 diffopts.output_format = DIFF_FORMAT_NO_OUTPUT;
0fe7c1de 960 diff_tree_sha1(parent[i], sha1, "", &diffopts);
5b236832 961 diffcore_std(&diffopts);
af3feefa 962 paths = intersect_paths(paths, i, num_parent);
eab144ac 963
3969cf7d 964 if (show_log_first && i == 0) {
39bc9a6c 965 show_log(rev, opt->msg_sep);
3969cf7d
JH
966 if (rev->verbose_header && opt->output_format)
967 putchar(opt->line_termination);
968 }
af3feefa
JH
969 diff_flush(&diffopts);
970 }
971
972 /* find out surviving paths */
973 for (num_paths = 0, p = paths; p; p = p->next) {
974 if (p->len)
975 num_paths++;
976 }
e3c3a550 977 if (num_paths) {
c6744349
TH
978 if (opt->output_format & (DIFF_FORMAT_RAW |
979 DIFF_FORMAT_NAME |
980 DIFF_FORMAT_NAME_STATUS)) {
86ff1d20 981 for (p = paths; p; p = p->next) {
c6744349
TH
982 if (p->len)
983 show_raw_diff(p, num_parent, rev);
86ff1d20 984 }
3969cf7d 985 needsep = 1;
86ff1d20 986 }
74e2abe5
JH
987 else if (opt->output_format &
988 (DIFF_FORMAT_NUMSTAT|DIFF_FORMAT_DIFFSTAT))
3969cf7d 989 needsep = 1;
c6744349 990 if (opt->output_format & DIFF_FORMAT_PATCH) {
3969cf7d
JH
991 if (needsep)
992 putchar(opt->line_termination);
c6744349
TH
993 for (p = paths; p; p = p->next) {
994 if (p->len)
995 show_patch_diff(p, num_parent, dense,
996 rev);
997 }
af3feefa
JH
998 }
999 }
1000
1001 /* Clean things up */
1002 while (paths) {
ea726d02 1003 struct combine_diff_path *tmp = paths;
af3feefa
JH
1004 paths = paths->next;
1005 free(tmp);
1006 }
af3feefa 1007}
0fe7c1de
JH
1008
1009void diff_tree_combined_merge(const unsigned char *sha1,
1010 int dense, struct rev_info *rev)
1011{
1012 int num_parent;
1013 const unsigned char (*parent)[20];
1014 struct commit *commit = lookup_commit(sha1);
1015 struct commit_list *parents;
1016
1017 /* count parents */
1018 for (parents = commit->parents, num_parent = 0;
1019 parents;
1020 parents = parents->next, num_parent++)
1021 ; /* nothing */
1022
1023 parent = xmalloc(num_parent * sizeof(*parent));
1024 for (parents = commit->parents, num_parent = 0;
1025 parents;
1026 parents = parents->next, num_parent++)
e702496e
SP
1027 hashcpy((unsigned char*)(parent + num_parent),
1028 parents->item->object.sha1);
0fe7c1de
JH
1029 diff_tree_combined(sha1, parent, num_parent, dense, rev);
1030}