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