7 #include "xdiff-interface.h"
10 static struct combine_diff_path
*intersect_paths(struct combine_diff_path
*curr
, int n
, int num_parent
)
12 struct diff_queue_struct
*q
= &diff_queued_diff
;
13 struct combine_diff_path
*p
;
17 struct combine_diff_path
*list
= NULL
, **tail
= &list
;
18 for (i
= 0; i
< q
->nr
; i
++) {
21 if (diff_unmodified_pair(q
->queue
[i
]))
23 path
= q
->queue
[i
]->two
->path
;
25 p
= xmalloc(combine_diff_path_size(num_parent
, len
));
26 p
->path
= (char*) &(p
->parent
[num_parent
]);
27 memcpy(p
->path
, path
, len
);
32 sizeof(p
->parent
[0]) * num_parent
);
34 hashcpy(p
->sha1
, q
->queue
[i
]->two
->sha1
);
35 p
->mode
= q
->queue
[i
]->two
->mode
;
36 hashcpy(p
->parent
[n
].sha1
, q
->queue
[i
]->one
->sha1
);
37 p
->parent
[n
].mode
= q
->queue
[i
]->one
->mode
;
38 p
->parent
[n
].status
= q
->queue
[i
]->status
;
45 for (p
= curr
; p
; p
= p
->next
) {
49 for (i
= 0; i
< q
->nr
; i
++) {
53 if (diff_unmodified_pair(q
->queue
[i
]))
55 path
= q
->queue
[i
]->two
->path
;
57 if (len
== p
->len
&& !memcmp(path
, p
->path
, len
)) {
59 hashcpy(p
->parent
[n
].sha1
, q
->queue
[i
]->one
->sha1
);
60 p
->parent
[n
].mode
= q
->queue
[i
]->one
->mode
;
61 p
->parent
[n
].status
= q
->queue
[i
]->status
;
71 /* Lines lost from parent */
75 unsigned long parent_map
;
76 char line
[FLEX_ARRAY
];
79 /* Lines surviving in the merge result */
81 struct lline
*lost_head
, **lost_tail
;
84 /* bit 0 up to (N-1) are on if the parent has this line (i.e.
85 * we did not change it).
86 * bit N is used for "interesting" lines, including context.
92 static char *grab_blob(const unsigned char *sha1
, unsigned long *size
)
95 enum object_type type
;
96 if (is_null_sha1(sha1
)) {
101 blob
= read_sha1_file(sha1
, &type
, size
);
102 if (type
!= OBJ_BLOB
)
103 die("object '%s' is not a blob!", sha1_to_hex(sha1
));
107 static void append_lost(struct sline
*sline
, int n
, const char *line
, int len
)
110 unsigned long this_mask
= (1UL<<n
);
111 if (line
[len
-1] == '\n')
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
;
121 if (lline
->parent_map
& this_mask
)
123 lline
= last_one
? last_one
->next
: sline
->lost_head
;
125 if (lline
->len
== len
&&
126 !memcmp(lline
->line
, line
, len
)) {
127 lline
->parent_map
|= this_mask
;
134 lline
= xmalloc(sizeof(*lline
) + len
+ 1);
137 lline
->parent_map
= this_mask
;
138 memcpy(lline
->line
, line
, len
);
139 lline
->line
[len
] = 0;
140 *sline
->lost_tail
= lline
;
141 sline
->lost_tail
= &lline
->next
;
144 struct combine_diff_state
{
145 struct xdiff_emit_state xm
;
153 struct sline
*lost_bucket
;
156 static void consume_line(void *state_
, char *line
, unsigned long len
)
158 struct combine_diff_state
*state
= state_
;
159 if (5 < len
&& !memcmp("@@ -", line
, 4)) {
160 if (parse_hunk_header(line
, len
,
161 &state
->ob
, &state
->on
,
162 &state
->nb
, &state
->nn
))
164 state
->lno
= state
->nb
;
166 /* @@ -1,2 +0,0 @@ to remove the
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,
176 state
->lost_bucket
= &state
->sline
[state
->nb
];
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
;
186 if (!state
->lost_bucket
)
187 return; /* not in any hunk yet */
190 append_lost(state
->lost_bucket
, state
->n
, line
+1, len
-1);
193 state
->sline
[state
->lno
-1].flag
|= state
->nmask
;
199 static void combine_diff(const unsigned char *parent
, mmfile_t
*result_file
,
200 struct sline
*sline
, unsigned int cnt
, int n
,
203 unsigned int p_lno
, lno
;
204 unsigned long nmask
= (1UL << n
);
207 mmfile_t parent_file
;
209 struct combine_diff_state state
;
213 return; /* result deleted */
215 parent_file
.ptr
= grab_blob(parent
, &sz
);
216 parent_file
.size
= sz
;
217 xpp
.flags
= XDF_NEED_MINIMAL
;
218 memset(&xecfg
, 0, sizeof(xecfg
));
219 ecb
.outf
= xdiff_outf
;
221 memset(&state
, 0, sizeof(state
));
222 state
.xm
.consume
= consume_line
;
226 state
.num_parent
= num_parent
;
229 xdi_diff(&parent_file
, result_file
, &xpp
, &xecfg
, &ecb
);
230 free(parent_file
.ptr
);
232 /* Assign line numbers for this parent.
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).
239 for (lno
= 0, p_lno
= 1; lno
<= cnt
; lno
++) {
241 sline
[lno
].p_lno
[n
] = p_lno
;
243 /* How many lines would this sline advance the p_lno? */
244 ll
= sline
[lno
].lost_head
;
246 if (ll
->parent_map
& nmask
)
247 p_lno
++; /* '-' means parent had it */
250 if (lno
< cnt
&& !(sline
[lno
].flag
& nmask
))
251 p_lno
++; /* no '+' means parent had it */
253 sline
[lno
].p_lno
[n
] = p_lno
; /* trailer */
256 static unsigned long context
= 3;
257 static char combine_marker
= '@';
259 static int interesting(struct sline
*sline
, unsigned long all_mask
)
261 /* If some parents lost lines here, or if we have added to
262 * some parent, it is interesting.
264 return ((sline
->flag
& all_mask
) || sline
->lost_head
);
267 static unsigned long adjust_hunk_tail(struct sline
*sline
,
268 unsigned long all_mask
,
269 unsigned long hunk_begin
,
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.
279 if ((hunk_begin
+ 1 <= i
) && !(sline
[i
-1].flag
& all_mask
))
284 static unsigned long find_next(struct sline
*sline
,
288 int look_for_uninteresting
)
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.
298 if (look_for_uninteresting
299 ? !(sline
[i
].flag
& mark
)
300 : (sline
[i
].flag
& mark
))
307 static int give_context(struct sline
*sline
, unsigned long cnt
, int num_parent
)
309 unsigned long all_mask
= (1UL<<num_parent
) - 1;
310 unsigned long mark
= (1UL<<num_parent
);
313 /* Two groups of interesting lines may have a short gap of
314 * uninteresting lines. Connect such groups to give them a
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.
322 i
= find_next(sline
, mark
, 0, cnt
, 0);
327 unsigned long j
= (context
< i
) ? (i
- context
) : 0;
330 /* Paint a few lines before the first interesting line. */
332 sline
[j
++].flag
|= mark
;
335 /* we know up to i is to be included. where does the
336 * next uninteresting one start?
338 j
= find_next(sline
, mark
, i
, cnt
, 1);
340 break; /* the rest are all interesting */
342 /* lookahead context lines */
343 k
= find_next(sline
, mark
, j
, cnt
, 0);
344 j
= adjust_hunk_tail(sline
, all_mask
, i
, j
);
346 if (k
< j
+ context
) {
347 /* k is interesting and [j,k) are not, but
348 * paint them interesting because the gap is small.
351 sline
[j
++].flag
|= mark
;
356 /* j is the first uninteresting line and there is
357 * no overlap beyond it within context lines. Paint
358 * the trailing edge a bit.
361 k
= (j
+ context
< cnt
+1) ? j
+ context
: cnt
+1;
363 sline
[j
++].flag
|= mark
;
368 static int make_hunks(struct sline
*sline
, unsigned long cnt
,
369 int num_parent
, int dense
)
371 unsigned long all_mask
= (1UL<<num_parent
) - 1;
372 unsigned long mark
= (1UL<<num_parent
);
374 int has_interesting
= 0;
376 for (i
= 0; i
<= cnt
; i
++) {
377 if (interesting(&sline
[i
], all_mask
))
378 sline
[i
].flag
|= mark
;
380 sline
[i
].flag
&= ~mark
;
383 return give_context(sline
, cnt
, num_parent
);
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.
391 unsigned long j
, hunk_begin
, hunk_end
;
392 unsigned long same_diff
;
393 while (i
<= cnt
&& !(sline
[i
].flag
& mark
))
396 break; /* No more interesting hunks */
398 for (j
= i
+ 1; j
<= cnt
; j
++) {
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.
404 unsigned long la
; /* lookahead */
406 la
= adjust_hunk_tail(sline
, all_mask
,
408 la
= (la
+ context
< cnt
+ 1) ?
409 (la
+ context
) : cnt
+ 1;
411 if (sline
[la
].flag
& mark
) {
423 /* [i..hunk_end) are interesting. Now is it really
424 * interesting? We check if there are only two versions
425 * and the result matches one of them. That is, we look
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.
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".
444 for (j
= i
; j
< hunk_end
&& !has_interesting
; j
++) {
445 unsigned long this_diff
= sline
[j
].flag
& all_mask
;
446 struct lline
*ll
= sline
[j
].lost_head
;
448 /* This has some changes. Is it the
452 same_diff
= this_diff
;
453 else if (same_diff
!= this_diff
) {
458 while (ll
&& !has_interesting
) {
459 /* Lost this line from these parents;
460 * who are they? Are they the same?
462 this_diff
= ll
->parent_map
;
464 same_diff
= this_diff
;
465 else if (same_diff
!= this_diff
) {
472 if (!has_interesting
&& same_diff
!= all_mask
) {
473 /* This hunk is not that interesting after all */
474 for (j
= hunk_begin
; j
< hunk_end
; j
++)
475 sline
[j
].flag
&= ~mark
;
480 has_interesting
= give_context(sline
, cnt
, num_parent
);
481 return has_interesting
;
484 static void show_parent_lno(struct sline
*sline
, unsigned long l0
, unsigned long l1
, int n
, unsigned long null_context
)
486 l0
= sline
[l0
].p_lno
[n
];
487 l1
= sline
[l1
].p_lno
[n
];
488 printf(" -%lu,%lu", l0
, l1
-l0
-null_context
);
491 static int hunk_comment_line(const char *bol
)
498 return (isalpha(ch
) || ch
== '_' || ch
== '$');
501 static void dump_sline(struct sline
*sline
, unsigned long cnt
, int num_parent
,
504 unsigned long mark
= (1UL<<num_parent
);
506 unsigned long lno
= 0;
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
);
514 return; /* result deleted */
517 struct sline
*sl
= &sline
[lno
];
518 unsigned long hunk_end
;
519 unsigned long rlines
;
520 const char *hunk_comment
= NULL
;
521 unsigned long null_context
= 0;
523 while (lno
<= cnt
&& !(sline
[lno
].flag
& mark
)) {
524 if (hunk_comment_line(sline
[lno
].bol
))
525 hunk_comment
= sline
[lno
].bol
;
531 for (hunk_end
= lno
+ 1; hunk_end
<= cnt
; hunk_end
++)
532 if (!(sline
[hunk_end
].flag
& mark
))
535 rlines
= hunk_end
- lno
;
537 rlines
--; /* pointing at the last delete hunk */
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
550 for (j
= lno
; j
< hunk_end
; j
++)
551 if (!(sline
[j
].flag
& (mark
-1)))
553 rlines
-= null_context
;
556 fputs(c_frag
, stdout
);
557 for (i
= 0; i
<= num_parent
; i
++) putchar(combine_marker
);
558 for (i
= 0; i
< num_parent
; i
++)
559 show_parent_lno(sline
, lno
, hunk_end
, i
, null_context
);
560 printf(" +%lu,%lu ", lno
+1, rlines
);
561 for (i
= 0; i
<= num_parent
; i
++) putchar(combine_marker
);
565 for (i
= 0; i
< 40; i
++) {
566 int ch
= hunk_comment
[i
] & 0xff;
567 if (!ch
|| ch
== '\n')
574 for (i
= 0; i
< comment_end
; i
++)
575 putchar(hunk_comment
[i
]);
578 printf("%s\n", c_reset
);
579 while (lno
< hunk_end
) {
582 unsigned long p_mask
;
586 fputs(c_old
, stdout
);
587 for (j
= 0; j
< num_parent
; j
++) {
588 if (ll
->parent_map
& (1UL<<j
))
593 printf("%s%s\n", ll
->line
, c_reset
);
599 if (!(sl
->flag
& (mark
-1))) {
601 * This sline was here to hang the
602 * lost lines in front of it.
606 fputs(c_plain
, stdout
);
609 fputs(c_new
, stdout
);
610 for (j
= 0; j
< num_parent
; j
++) {
611 if (p_mask
& sl
->flag
)
617 printf("%.*s%s\n", sl
->len
, sl
->bol
, c_reset
);
622 static void reuse_combine_diff(struct sline
*sline
, unsigned long cnt
,
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.
629 unsigned long lno
, imask
, jmask
;
633 for (lno
= 0; lno
<= cnt
; lno
++) {
634 struct lline
*ll
= sline
->lost_head
;
635 sline
->p_lno
[i
] = sline
->p_lno
[j
];
637 if (ll
->parent_map
& jmask
)
638 ll
->parent_map
|= imask
;
641 if (sline
->flag
& jmask
)
642 sline
->flag
|= imask
;
645 /* the overall size of the file (sline[cnt]) */
646 sline
->p_lno
[i
] = sline
->p_lno
[j
];
649 static void dump_quoted_path(const char *prefix
, const char *path
,
650 const char *c_meta
, const char *c_reset
)
652 printf("%s%s", c_meta
, prefix
);
653 quote_c_style(path
, NULL
, stdout
, 0);
654 printf("%s\n", c_reset
);
657 static void show_patch_diff(struct combine_diff_path
*elem
, int num_parent
,
658 int dense
, struct rev_info
*rev
)
660 struct diff_options
*opt
= &rev
->diffopt
;
661 unsigned long result_size
, cnt
, lno
;
663 struct sline
*sline
; /* survived lines */
664 int mode_differs
= 0;
666 int working_tree_file
= is_null_sha1(elem
->sha1
);
667 int abbrev
= DIFF_OPT_TST(opt
, FULL_INDEX
) ? 40 : DEFAULT_ABBREV
;
668 mmfile_t result_file
;
670 context
= opt
->context
;
671 /* Read the result of merge first */
672 if (!working_tree_file
)
673 result
= grab_blob(elem
->sha1
, &result_size
);
675 /* Used by diff-tree to read from the working tree */
679 if (lstat(elem
->path
, &st
) < 0)
682 if (S_ISLNK(st
.st_mode
)) {
683 size_t len
= xsize_t(st
.st_size
);
685 result
= xmalloc(len
+ 1);
686 if (result_size
!= readlink(elem
->path
, result
, len
)) {
687 error("readlink(%s): %s", elem
->path
,
692 elem
->mode
= canon_mode(st
.st_mode
);
694 else if (0 <= (fd
= open(elem
->path
, O_RDONLY
)) &&
696 size_t len
= xsize_t(st
.st_size
);
700 elem
->mode
= canon_mode(st
.st_mode
);
701 /* if symlinks don't work, assume symlink if all parents
704 is_file
= has_symlinks
;
705 for (i
= 0; !is_file
&& i
< num_parent
; i
++)
706 is_file
= !S_ISLNK(elem
->parent
[i
].mode
);
708 elem
->mode
= canon_mode(S_IFLNK
);
711 result
= xmalloc(len
+ 1);
713 ssize_t done
= xread(fd
, result
+sz
, len
-sz
);
717 die("read error '%s'", elem
->path
);
726 result
= xcalloc(1, 1);
733 for (cnt
= 0, cp
= result
; cp
< result
+ result_size
; cp
++) {
737 if (result_size
&& result
[result_size
-1] != '\n')
738 cnt
++; /* incomplete line */
740 sline
= xcalloc(cnt
+2, sizeof(*sline
));
741 sline
[0].bol
= result
;
742 for (lno
= 0; lno
<= cnt
+ 1; lno
++) {
743 sline
[lno
].lost_tail
= &sline
[lno
].lost_head
;
746 for (lno
= 0, cp
= result
; cp
< result
+ result_size
; cp
++) {
748 sline
[lno
].len
= cp
- sline
[lno
].bol
;
751 sline
[lno
].bol
= cp
+ 1;
754 if (result_size
&& result
[result_size
-1] != '\n')
755 sline
[cnt
-1].len
= result_size
- (sline
[cnt
-1].bol
- result
);
757 result_file
.ptr
= result
;
758 result_file
.size
= result_size
;
760 /* Even p_lno[cnt+1] is valid -- that is for the end line number
761 * for deletion hunk at the end.
763 sline
[0].p_lno
= xcalloc((cnt
+2) * num_parent
, sizeof(unsigned long));
764 for (lno
= 0; lno
<= cnt
; lno
++)
765 sline
[lno
+1].p_lno
= sline
[lno
].p_lno
+ num_parent
;
767 for (i
= 0; i
< num_parent
; i
++) {
769 for (j
= 0; j
< i
; j
++) {
770 if (!hashcmp(elem
->parent
[i
].sha1
,
771 elem
->parent
[j
].sha1
)) {
772 reuse_combine_diff(sline
, cnt
, i
, j
);
777 combine_diff(elem
->parent
[i
].sha1
, &result_file
, sline
,
779 if (elem
->parent
[i
].mode
!= elem
->mode
)
783 show_hunks
= make_hunks(sline
, cnt
, num_parent
, dense
);
785 if (show_hunks
|| mode_differs
|| working_tree_file
) {
787 int use_color
= DIFF_OPT_TST(opt
, COLOR_DIFF
);
788 const char *c_meta
= diff_get_color(use_color
, DIFF_METAINFO
);
789 const char *c_reset
= diff_get_color(use_color
, DIFF_RESET
);
793 if (rev
->loginfo
&& !rev
->no_commit_id
)
794 show_log(rev
, opt
->msg_sep
);
795 dump_quoted_path(dense
? "diff --cc " : "diff --combined ",
796 elem
->path
, c_meta
, c_reset
);
797 printf("%sindex ", c_meta
);
798 for (i
= 0; i
< num_parent
; i
++) {
799 abb
= find_unique_abbrev(elem
->parent
[i
].sha1
,
801 printf("%s%s", i
? "," : "", abb
);
803 abb
= find_unique_abbrev(elem
->sha1
, abbrev
);
804 printf("..%s%s\n", abb
, c_reset
);
807 deleted
= !elem
->mode
;
809 /* We say it was added if nobody had it */
811 for (i
= 0; added
&& i
< num_parent
; i
++)
812 if (elem
->parent
[i
].status
!=
816 printf("%snew file mode %06o",
820 printf("%sdeleted file ", c_meta
);
822 for (i
= 0; i
< num_parent
; i
++) {
823 printf("%s%06o", i
? "," : "",
824 elem
->parent
[i
].mode
);
827 printf("..%06o", elem
->mode
);
829 printf("%s\n", c_reset
);
832 dump_quoted_path("--- /dev/", "null", c_meta
, c_reset
);
834 dump_quoted_path("--- a/", elem
->path
, c_meta
, c_reset
);
836 dump_quoted_path("+++ /dev/", "null", c_meta
, c_reset
);
838 dump_quoted_path("+++ b/", elem
->path
, c_meta
, c_reset
);
839 dump_sline(sline
, cnt
, num_parent
, DIFF_OPT_TST(opt
, COLOR_DIFF
));
843 for (lno
= 0; lno
< cnt
; lno
++) {
844 if (sline
[lno
].lost_head
) {
845 struct lline
*ll
= sline
[lno
].lost_head
;
847 struct lline
*tmp
= ll
;
853 free(sline
[0].p_lno
);
857 #define COLONS "::::::::::::::::::::::::::::::::"
859 static void show_raw_diff(struct combine_diff_path
*p
, int num_parent
, struct rev_info
*rev
)
861 struct diff_options
*opt
= &rev
->diffopt
;
864 int line_termination
, inter_name_termination
;
866 line_termination
= opt
->line_termination
;
867 inter_name_termination
= '\t';
868 if (!line_termination
)
869 inter_name_termination
= 0;
871 if (rev
->loginfo
&& !rev
->no_commit_id
)
872 show_log(rev
, opt
->msg_sep
);
874 if (opt
->output_format
& DIFF_FORMAT_RAW
) {
875 offset
= strlen(COLONS
) - num_parent
;
878 prefix
= COLONS
+ offset
;
881 for (i
= 0; i
< num_parent
; i
++) {
882 printf("%s%06o", prefix
, p
->parent
[i
].mode
);
885 printf("%s%06o", prefix
, p
->mode
);
888 for (i
= 0; i
< num_parent
; i
++)
889 printf(" %s", diff_unique_abbrev(p
->parent
[i
].sha1
,
891 printf(" %s ", diff_unique_abbrev(p
->sha1
, opt
->abbrev
));
894 if (opt
->output_format
& (DIFF_FORMAT_RAW
| DIFF_FORMAT_NAME_STATUS
)) {
895 for (i
= 0; i
< num_parent
; i
++)
896 putchar(p
->parent
[i
].status
);
897 putchar(inter_name_termination
);
900 write_name_quoted(p
->path
, stdout
, line_termination
);
903 void show_combined_diff(struct combine_diff_path
*p
,
906 struct rev_info
*rev
)
908 struct diff_options
*opt
= &rev
->diffopt
;
911 if (opt
->output_format
& (DIFF_FORMAT_RAW
|
913 DIFF_FORMAT_NAME_STATUS
))
914 show_raw_diff(p
, num_parent
, rev
);
915 else if (opt
->output_format
& DIFF_FORMAT_PATCH
)
916 show_patch_diff(p
, num_parent
, dense
, rev
);
919 void diff_tree_combined(const unsigned char *sha1
,
920 const unsigned char parent
[][20],
923 struct rev_info
*rev
)
925 struct diff_options
*opt
= &rev
->diffopt
;
926 struct diff_options diffopts
;
927 struct combine_diff_path
*p
, *paths
= NULL
;
928 int i
, num_paths
, needsep
, show_log_first
;
931 diffopts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
932 DIFF_OPT_SET(&diffopts
, RECURSIVE
);
933 DIFF_OPT_CLR(&diffopts
, ALLOW_EXTERNAL
);
935 show_log_first
= !!rev
->loginfo
&& !rev
->no_commit_id
;
937 /* find set of paths that everybody touches */
938 for (i
= 0; i
< num_parent
; i
++) {
939 /* show stat against the first parent even
940 * when doing combined diff.
942 int stat_opt
= (opt
->output_format
&
943 (DIFF_FORMAT_NUMSTAT
|DIFF_FORMAT_DIFFSTAT
));
944 if (i
== 0 && stat_opt
)
945 diffopts
.output_format
= stat_opt
;
947 diffopts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
948 diff_tree_sha1(parent
[i
], sha1
, "", &diffopts
);
949 diffcore_std(&diffopts
);
950 paths
= intersect_paths(paths
, i
, num_parent
);
952 if (show_log_first
&& i
== 0) {
953 show_log(rev
, opt
->msg_sep
);
954 if (rev
->verbose_header
&& opt
->output_format
)
955 putchar(opt
->line_termination
);
957 diff_flush(&diffopts
);
960 /* find out surviving paths */
961 for (num_paths
= 0, p
= paths
; p
; p
= p
->next
) {
966 if (opt
->output_format
& (DIFF_FORMAT_RAW
|
968 DIFF_FORMAT_NAME_STATUS
)) {
969 for (p
= paths
; p
; p
= p
->next
) {
971 show_raw_diff(p
, num_parent
, rev
);
975 else if (opt
->output_format
&
976 (DIFF_FORMAT_NUMSTAT
|DIFF_FORMAT_DIFFSTAT
))
978 if (opt
->output_format
& DIFF_FORMAT_PATCH
) {
980 putchar(opt
->line_termination
);
981 for (p
= paths
; p
; p
= p
->next
) {
983 show_patch_diff(p
, num_parent
, dense
,
989 /* Clean things up */
991 struct combine_diff_path
*tmp
= paths
;
997 void diff_tree_combined_merge(const unsigned char *sha1
,
998 int dense
, struct rev_info
*rev
)
1001 const unsigned char (*parent
)[20];
1002 struct commit
*commit
= lookup_commit(sha1
);
1003 struct commit_list
*parents
;
1006 for (parents
= commit
->parents
, num_parent
= 0;
1008 parents
= parents
->next
, num_parent
++)
1011 parent
= xmalloc(num_parent
* sizeof(*parent
));
1012 for (parents
= commit
->parents
, num_parent
= 0;
1014 parents
= parents
->next
, num_parent
++)
1015 hashcpy((unsigned char*)(parent
+ num_parent
),
1016 parents
->item
->object
.sha1
);
1017 diff_tree_combined(sha1
, parent
, num_parent
, dense
, rev
);