8 static int uninteresting(struct diff_filepair
*p
)
10 if (diff_unmodified_pair(p
))
15 static struct combine_diff_path
*intersect_paths(struct combine_diff_path
*curr
, int n
, int num_parent
)
17 struct diff_queue_struct
*q
= &diff_queued_diff
;
18 struct combine_diff_path
*p
;
22 struct combine_diff_path
*list
= NULL
, **tail
= &list
;
23 for (i
= 0; i
< q
->nr
; i
++) {
26 if (uninteresting(q
->queue
[i
]))
28 path
= q
->queue
[i
]->two
->path
;
30 p
= xmalloc(combine_diff_path_size(num_parent
, len
));
31 p
->path
= (char*) &(p
->parent
[num_parent
]);
32 memcpy(p
->path
, path
, len
);
37 sizeof(p
->parent
[0]) * num_parent
);
39 memcpy(p
->sha1
, q
->queue
[i
]->two
->sha1
, 20);
40 p
->mode
= q
->queue
[i
]->two
->mode
;
41 memcpy(p
->parent
[n
].sha1
, q
->queue
[i
]->one
->sha1
, 20);
42 p
->parent
[n
].mode
= q
->queue
[i
]->one
->mode
;
43 p
->parent
[n
].status
= q
->queue
[i
]->status
;
50 for (p
= curr
; p
; p
= p
->next
) {
54 for (i
= 0; i
< q
->nr
; i
++) {
58 if (uninteresting(q
->queue
[i
]))
60 path
= q
->queue
[i
]->two
->path
;
62 if (len
== p
->len
&& !memcmp(path
, p
->path
, len
)) {
64 memcpy(p
->parent
[n
].sha1
,
65 q
->queue
[i
]->one
->sha1
, 20);
66 p
->parent
[n
].mode
= q
->queue
[i
]->one
->mode
;
67 p
->parent
[n
].status
= q
->queue
[i
]->status
;
77 /* Lines lost from parent */
81 unsigned long parent_map
;
82 char line
[FLEX_ARRAY
];
85 /* Lines surviving in the merge result */
87 struct lline
*lost_head
, **lost_tail
;
90 /* bit 0 up to (N-1) are on if the parent has this line (i.e.
91 * we did not change it).
92 * bit N is used for "interesting" lines, including context.
98 static char *grab_blob(const unsigned char *sha1
, unsigned long *size
)
102 if (!memcmp(sha1
, null_sha1
, 20)) {
105 return xcalloc(1, 1);
107 blob
= read_sha1_file(sha1
, type
, size
);
108 if (strcmp(type
, blob_type
))
109 die("object '%s' is not a blob!", sha1_to_hex(sha1
));
113 #define TMPPATHLEN 50
114 #define MAXLINELEN 10240
116 static void write_to_temp_file(char *tmpfile
, void *blob
, unsigned long size
)
118 int fd
= git_mkstemp(tmpfile
, TMPPATHLEN
, ".diff_XXXXXX");
120 die("unable to create temp-file");
121 if (write(fd
, blob
, size
) != size
)
122 die("unable to write temp-file");
126 static void write_temp_blob(char *tmpfile
, const unsigned char *sha1
)
130 blob
= grab_blob(sha1
, &size
);
131 write_to_temp_file(tmpfile
, blob
, size
);
135 static int parse_num(char **cp_p
, unsigned int *num_p
)
138 unsigned int num
= 0;
141 while ('0' <= *cp
&& *cp
<= '9')
142 num
= num
* 10 + *cp
++ - '0';
143 if (!(read_some
= cp
- *cp_p
))
150 static int parse_hunk_header(char *line
, int len
,
151 unsigned int *ob
, unsigned int *on
,
152 unsigned int *nb
, unsigned int *nn
)
156 if (parse_num(&cp
, ob
)) {
158 return error("malformed diff output: %s", line
);
162 if (parse_num(&cp
, on
))
167 if (*cp
++ != ' ' || *cp
++ != '+')
169 if (parse_num(&cp
, nb
))
173 if (parse_num(&cp
, nn
))
178 return -!!memcmp(cp
, " @@", 3);
181 static void append_lost(struct sline
*sline
, int n
, const char *line
)
184 int len
= strlen(line
);
185 unsigned long this_mask
= (1UL<<n
);
186 if (line
[len
-1] == '\n')
189 /* Check to see if we can squash things */
190 if (sline
->lost_head
) {
191 struct lline
*last_one
= NULL
;
192 /* We cannot squash it with earlier one */
193 for (lline
= sline
->lost_head
;
196 if (lline
->parent_map
& this_mask
)
198 lline
= last_one
? last_one
->next
: sline
->lost_head
;
200 if (lline
->len
== len
&&
201 !memcmp(lline
->line
, line
, len
)) {
202 lline
->parent_map
|= this_mask
;
209 lline
= xmalloc(sizeof(*lline
) + len
+ 1);
212 lline
->parent_map
= this_mask
;
213 memcpy(lline
->line
, line
, len
);
214 lline
->line
[len
] = 0;
215 *sline
->lost_tail
= lline
;
216 sline
->lost_tail
= &lline
->next
;
219 static void combine_diff(const unsigned char *parent
, const char *ourtmp
,
220 struct sline
*sline
, int cnt
, int n
, int num_parent
)
223 char parent_tmp
[TMPPATHLEN
];
224 char cmd
[TMPPATHLEN
* 2 + 1024];
225 char line
[MAXLINELEN
];
226 unsigned int lno
, ob
, on
, nb
, nn
, p_lno
;
227 unsigned long nmask
= (1UL << n
);
228 struct sline
*lost_bucket
= NULL
;
231 return; /* result deleted */
233 write_temp_blob(parent_tmp
, parent
);
234 sprintf(cmd
, "diff --unified=0 -La/x -Lb/x '%s' '%s'",
236 in
= popen(cmd
, "r");
238 die("cannot spawn %s", cmd
);
241 while (fgets(line
, sizeof(line
), in
) != NULL
) {
242 int len
= strlen(line
);
243 if (5 < len
&& !memcmp("@@ -", line
, 4)) {
244 if (parse_hunk_header(line
, len
,
249 /* @@ -1,2 +0,0 @@ to remove the
254 /* @@ -X,Y +N,0 @@ removed Y lines
255 * that would have come *after* line N
256 * in the result. Our lost buckets hang
257 * to the line after the removed lines,
259 lost_bucket
= &sline
[nb
];
261 lost_bucket
= &sline
[nb
-1];
262 if (!sline
[nb
-1].p_lno
)
265 sizeof(unsigned long));
266 sline
[nb
-1].p_lno
[n
] = ob
;
270 continue; /* not in any hunk yet */
273 append_lost(lost_bucket
, n
, line
+1);
276 sline
[lno
-1].flag
|= nmask
;
284 /* Assign line numbers for this parent.
286 * sline[lno].p_lno[n] records the first line number
287 * (counting from 1) for parent N if the final hunk display
288 * started by showing sline[lno] (possibly showing the lost
289 * lines attached to it first).
291 for (lno
= 0, p_lno
= 1; lno
< cnt
; lno
++) {
293 sline
[lno
].p_lno
[n
] = p_lno
;
295 /* How many lines would this sline advance the p_lno? */
296 ll
= sline
[lno
].lost_head
;
298 if (ll
->parent_map
& nmask
)
299 p_lno
++; /* '-' means parent had it */
302 if (!(sline
[lno
].flag
& nmask
))
303 p_lno
++; /* no '+' means parent had it */
305 sline
[lno
].p_lno
[n
] = p_lno
; /* trailer */
308 static unsigned long context
= 3;
309 static char combine_marker
= '@';
311 static int interesting(struct sline
*sline
, unsigned long all_mask
)
313 /* If some parents lost lines here, or if we have added to
314 * some parent, it is interesting.
316 return ((sline
->flag
& all_mask
) || sline
->lost_head
);
319 static unsigned long adjust_hunk_tail(struct sline
*sline
,
320 unsigned long all_mask
,
321 unsigned long hunk_begin
,
324 /* i points at the first uninteresting line. If the last line
325 * of the hunk was interesting only because it has some
326 * deletion, then it is not all that interesting for the
327 * purpose of giving trailing context lines. This is because
328 * we output '-' line and then unmodified sline[i-1] itself in
329 * that case which gives us one extra context line.
331 if ((hunk_begin
+ 1 <= i
) && !(sline
[i
-1].flag
& all_mask
))
336 static unsigned long find_next(struct sline
*sline
,
342 /* We have examined up to i-1 and are about to look at i.
343 * Find next interesting or uninteresting line. Here,
344 * "interesting" does not mean interesting(), but marked by
345 * the give_context() function below (i.e. it includes context
346 * lines that are not interesting to interesting() function
347 * that are surrounded by interesting() ones.
351 ? !(sline
[i
].flag
& mark
)
352 : (sline
[i
].flag
& mark
))
359 static int give_context(struct sline
*sline
, unsigned long cnt
, int num_parent
)
361 unsigned long all_mask
= (1UL<<num_parent
) - 1;
362 unsigned long mark
= (1UL<<num_parent
);
365 /* Two groups of interesting lines may have a short gap of
366 * unintersting lines. Connect such groups to give them a
369 * We first start from what the interesting() function says,
370 * and mark them with "mark", and paint context lines with the
371 * mark. So interesting() would still say false for such context
372 * lines but they are treated as "interesting" in the end.
374 i
= find_next(sline
, mark
, 0, cnt
, 0);
379 unsigned long j
= (context
< i
) ? (i
- context
) : 0;
382 /* Paint a few lines before the first interesting line. */
384 sline
[j
++].flag
|= mark
;
387 /* we know up to i is to be included. where does the
388 * next uninteresting one start?
390 j
= find_next(sline
, mark
, i
, cnt
, 1);
392 break; /* the rest are all interesting */
394 /* lookahead context lines */
395 k
= find_next(sline
, mark
, j
, cnt
, 0);
396 j
= adjust_hunk_tail(sline
, all_mask
, i
, j
);
398 if (k
< j
+ context
) {
399 /* k is interesting and [j,k) are not, but
400 * paint them interesting because the gap is small.
403 sline
[j
++].flag
|= mark
;
408 /* j is the first uninteresting line and there is
409 * no overlap beyond it within context lines. Paint
410 * the trailing edge a bit.
413 k
= (j
+ context
< cnt
) ? j
+ context
: cnt
;
415 sline
[j
++].flag
|= mark
;
420 static int make_hunks(struct sline
*sline
, unsigned long cnt
,
421 int num_parent
, int dense
)
423 unsigned long all_mask
= (1UL<<num_parent
) - 1;
424 unsigned long mark
= (1UL<<num_parent
);
426 int has_interesting
= 0;
428 for (i
= 0; i
< cnt
; i
++) {
429 if (interesting(&sline
[i
], all_mask
))
430 sline
[i
].flag
|= mark
;
432 sline
[i
].flag
&= ~mark
;
435 return give_context(sline
, cnt
, num_parent
);
437 /* Look at each hunk, and if we have changes from only one
438 * parent, or the changes are the same from all but one
439 * parent, mark that uninteresting.
443 unsigned long j
, hunk_begin
, hunk_end
;
444 unsigned long same_diff
;
445 while (i
< cnt
&& !(sline
[i
].flag
& mark
))
448 break; /* No more interesting hunks */
450 for (j
= i
+ 1; j
< cnt
; j
++) {
451 if (!(sline
[j
].flag
& mark
)) {
452 /* Look beyond the end to see if there
453 * is an interesting line after this
454 * hunk within context span.
456 unsigned long la
; /* lookahead */
458 la
= adjust_hunk_tail(sline
, all_mask
,
460 la
= (la
+ context
< cnt
) ?
461 (la
+ context
) : cnt
;
463 if (sline
[la
].flag
& mark
) {
475 /* [i..hunk_end) are interesting. Now is it really
476 * interesting? We check if there are only two versions
477 * and the result matches one of them. That is, we look
479 * (+) line, which records lines added to which parents;
480 * this line appears in the result.
481 * (-) line, which records from what parents the line
482 * was removed; this line does not appear in the result.
483 * then check the set of parents the result has difference
484 * from, from all lines. If there are lines that has
485 * different set of parents that the result has differences
486 * from, that means we have more than two versions.
488 * Even when we have only two versions, if the result does
489 * not match any of the parents, the it should be considered
490 * interesting. In such a case, we would have all '+' line.
491 * After passing the above "two versions" test, that would
492 * appear as "the same set of parents" to be "all parents".
496 for (j
= i
; j
< hunk_end
&& !has_interesting
; j
++) {
497 unsigned long this_diff
= sline
[j
].flag
& all_mask
;
498 struct lline
*ll
= sline
[j
].lost_head
;
500 /* This has some changes. Is it the
504 same_diff
= this_diff
;
505 else if (same_diff
!= this_diff
) {
510 while (ll
&& !has_interesting
) {
511 /* Lost this line from these parents;
512 * who are they? Are they the same?
514 this_diff
= ll
->parent_map
;
516 same_diff
= this_diff
;
517 else if (same_diff
!= this_diff
) {
524 if (!has_interesting
&& same_diff
!= all_mask
) {
525 /* This hunk is not that interesting after all */
526 for (j
= hunk_begin
; j
< hunk_end
; j
++)
527 sline
[j
].flag
&= ~mark
;
532 has_interesting
= give_context(sline
, cnt
, num_parent
);
533 return has_interesting
;
536 static void show_parent_lno(struct sline
*sline
, unsigned long l0
, unsigned long l1
, unsigned long cnt
, int n
)
538 l0
= sline
[l0
].p_lno
[n
];
539 l1
= sline
[l1
].p_lno
[n
];
540 printf(" -%lu,%lu", l0
, l1
-l0
);
543 static void dump_sline(struct sline
*sline
, unsigned long cnt
, int num_parent
)
545 unsigned long mark
= (1UL<<num_parent
);
547 unsigned long lno
= 0;
550 return; /* result deleted */
553 struct sline
*sl
= &sline
[lno
];
555 while (lno
< cnt
&& !(sline
[lno
].flag
& mark
))
559 for (hunk_end
= lno
+ 1; hunk_end
< cnt
; hunk_end
++)
560 if (!(sline
[hunk_end
].flag
& mark
))
562 for (i
= 0; i
<= num_parent
; i
++) putchar(combine_marker
);
563 for (i
= 0; i
< num_parent
; i
++)
564 show_parent_lno(sline
, lno
, hunk_end
, cnt
, i
);
565 printf(" +%lu,%lu ", lno
+1, hunk_end
-lno
);
566 for (i
= 0; i
<= num_parent
; i
++) putchar(combine_marker
);
568 while (lno
< hunk_end
) {
571 unsigned long p_mask
;
575 for (j
= 0; j
< num_parent
; j
++) {
576 if (ll
->parent_map
& (1UL<<j
))
585 for (j
= 0; j
< num_parent
; j
++) {
586 if (p_mask
& sl
->flag
)
592 printf("%.*s\n", sl
->len
, sl
->bol
);
597 static void reuse_combine_diff(struct sline
*sline
, unsigned long cnt
,
600 /* We have already examined parent j and we know parent i
601 * and parent j are the same, so reuse the combined result
602 * of parent j for parent i.
604 unsigned long lno
, imask
, jmask
;
608 for (lno
= 0; lno
< cnt
; lno
++) {
609 struct lline
*ll
= sline
->lost_head
;
610 sline
->p_lno
[i
] = sline
->p_lno
[j
];
612 if (ll
->parent_map
& jmask
)
613 ll
->parent_map
|= imask
;
616 if (sline
->flag
& jmask
)
617 sline
->flag
|= imask
;
620 /* the overall size of the file (sline[cnt]) */
621 sline
->p_lno
[i
] = sline
->p_lno
[j
];
624 static int show_patch_diff(struct combine_diff_path
*elem
, int num_parent
,
625 int dense
, const char *header
,
626 struct diff_options
*opt
)
628 unsigned long size
, cnt
, lno
;
629 char *result
, *cp
, *ep
;
630 struct sline
*sline
; /* survived lines */
631 int mode_differs
= 0;
632 int i
, show_hunks
, shown_header
= 0;
633 char ourtmp_buf
[TMPPATHLEN
];
634 char *ourtmp
= ourtmp_buf
;
635 int working_tree_file
= !memcmp(elem
->sha1
, null_sha1
, 20);
636 int abbrev
= opt
->full_index
? 40 : DEFAULT_ABBREV
;
638 /* Read the result of merge first */
639 if (!working_tree_file
) {
640 result
= grab_blob(elem
->sha1
, &size
);
641 write_to_temp_file(ourtmp
, result
, size
);
644 /* Used by diff-tree to read from the working tree */
648 if (0 <= (fd
= open(ourtmp
, O_RDONLY
)) &&
650 int len
= st
.st_size
;
653 elem
->mode
= canon_mode(st
.st_mode
);
655 result
= xmalloc(len
+ 1);
657 int done
= xread(fd
, result
+cnt
, len
-cnt
);
661 die("read error '%s'", ourtmp
);
672 ourtmp
= "/dev/null";
678 for (cnt
= 0, cp
= result
; cp
- result
< size
; cp
++) {
682 if (size
&& result
[size
-1] != '\n')
683 cnt
++; /* incomplete line */
685 sline
= xcalloc(cnt
+1, sizeof(*sline
));
687 sline
[0].bol
= result
;
688 for (lno
= 0; lno
<= cnt
; lno
++) {
689 sline
[lno
].lost_tail
= &sline
[lno
].lost_head
;
692 for (lno
= 0, cp
= result
; cp
- result
< size
; cp
++) {
694 sline
[lno
].len
= cp
- sline
[lno
].bol
;
697 sline
[lno
].bol
= cp
+ 1;
700 if (size
&& result
[size
-1] != '\n')
701 sline
[cnt
-1].len
= size
- (sline
[cnt
-1].bol
- result
);
703 sline
[0].p_lno
= xcalloc((cnt
+1) * num_parent
, sizeof(unsigned long));
704 for (lno
= 0; lno
< cnt
; lno
++)
705 sline
[lno
+1].p_lno
= sline
[lno
].p_lno
+ num_parent
;
707 for (i
= 0; i
< num_parent
; i
++) {
709 for (j
= 0; j
< i
; j
++) {
710 if (!memcmp(elem
->parent
[i
].sha1
,
711 elem
->parent
[j
].sha1
, 20)) {
712 reuse_combine_diff(sline
, cnt
, i
, j
);
717 combine_diff(elem
->parent
[i
].sha1
, ourtmp
, sline
,
719 if (elem
->parent
[i
].mode
!= elem
->mode
)
723 show_hunks
= make_hunks(sline
, cnt
, num_parent
, dense
);
725 if (show_hunks
|| mode_differs
|| working_tree_file
) {
730 printf("%s%c", header
, opt
->line_termination
);
732 printf("diff --%s ", dense
? "cc" : "combined");
733 if (quote_c_style(elem
->path
, NULL
, NULL
, 0))
734 quote_c_style(elem
->path
, NULL
, stdout
, 0);
736 printf("%s", elem
->path
);
739 for (i
= 0; i
< num_parent
; i
++) {
740 abb
= find_unique_abbrev(elem
->parent
[i
].sha1
,
742 printf("%s%s", i
? "," : "", abb
);
744 abb
= find_unique_abbrev(elem
->sha1
, abbrev
);
745 printf("..%s\n", abb
);
748 int added
= !!elem
->mode
;
749 for (i
= 0; added
&& i
< num_parent
; i
++)
750 if (elem
->parent
[i
].status
!=
754 printf("new file mode %06o", elem
->mode
);
757 printf("deleted file ");
759 for (i
= 0; i
< num_parent
; i
++) {
760 printf("%s%06o", i
? "," : "",
761 elem
->parent
[i
].mode
);
764 printf("..%06o", elem
->mode
);
768 dump_sline(sline
, cnt
, num_parent
);
770 if (ourtmp
== ourtmp_buf
)
774 for (i
= 0; i
< cnt
; i
++) {
775 if (sline
[i
].lost_head
) {
776 struct lline
*ll
= sline
[i
].lost_head
;
778 struct lline
*tmp
= ll
;
784 free(sline
[0].p_lno
);
789 #define COLONS "::::::::::::::::::::::::::::::::"
791 static void show_raw_diff(struct combine_diff_path
*p
, int num_parent
, const char *header
, struct diff_options
*opt
)
793 int i
, offset
, mod_type
= 'A';
795 int line_termination
, inter_name_termination
;
797 line_termination
= opt
->line_termination
;
798 inter_name_termination
= '\t';
799 if (!line_termination
)
800 inter_name_termination
= 0;
803 printf("%s%c", header
, line_termination
);
805 for (i
= 0; i
< num_parent
; i
++) {
806 if (p
->parent
[i
].mode
)
812 if (opt
->output_format
== DIFF_FORMAT_RAW
) {
813 offset
= strlen(COLONS
) - num_parent
;
816 prefix
= COLONS
+ offset
;
819 for (i
= 0; i
< num_parent
; i
++) {
820 printf("%s%06o", prefix
, p
->parent
[i
].mode
);
823 printf("%s%06o", prefix
, p
->mode
);
826 for (i
= 0; i
< num_parent
; i
++)
827 printf(" %s", diff_unique_abbrev(p
->parent
[i
].sha1
,
829 printf(" %s ", diff_unique_abbrev(p
->sha1
, opt
->abbrev
));
832 if (opt
->output_format
== DIFF_FORMAT_RAW
||
833 opt
->output_format
== DIFF_FORMAT_NAME_STATUS
) {
834 for (i
= 0; i
< num_parent
; i
++)
835 putchar(p
->parent
[i
].status
);
836 putchar(inter_name_termination
);
839 if (line_termination
) {
840 if (quote_c_style(p
->path
, NULL
, NULL
, 0))
841 quote_c_style(p
->path
, NULL
, stdout
, 0);
843 printf("%s", p
->path
);
844 putchar(line_termination
);
847 printf("%s%c", p
->path
, line_termination
);
851 int show_combined_diff(struct combine_diff_path
*p
,
855 struct diff_options
*opt
)
859 switch (opt
->output_format
) {
860 case DIFF_FORMAT_RAW
:
861 case DIFF_FORMAT_NAME_STATUS
:
862 case DIFF_FORMAT_NAME
:
863 show_raw_diff(p
, num_parent
, header
, opt
);
867 case DIFF_FORMAT_PATCH
:
868 return show_patch_diff(p
, num_parent
, dense
, header
, opt
);
872 const char *diff_tree_combined_merge(const unsigned char *sha1
,
873 const char *header
, int dense
,
874 struct diff_options
*opt
)
876 struct commit
*commit
= lookup_commit(sha1
);
877 struct diff_options diffopts
;
878 struct commit_list
*parents
;
879 struct combine_diff_path
*p
, *paths
= NULL
;
880 int num_parent
, i
, num_paths
;
883 diffopts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
884 diffopts
.recursive
= 1;
887 for (parents
= commit
->parents
, num_parent
= 0;
889 parents
= parents
->next
, num_parent
++)
892 /* find set of paths that everybody touches */
893 for (parents
= commit
->parents
, i
= 0;
895 parents
= parents
->next
, i
++) {
896 struct commit
*parent
= parents
->item
;
897 diff_tree_sha1(parent
->object
.sha1
, commit
->object
.sha1
, "",
899 diffcore_std(&diffopts
);
900 paths
= intersect_paths(paths
, i
, num_parent
);
901 diff_flush(&diffopts
);
904 /* find out surviving paths */
905 for (num_paths
= 0, p
= paths
; p
; p
= p
->next
) {
910 for (p
= paths
; p
; p
= p
->next
) {
911 if (show_combined_diff(p
, num_parent
, dense
,
917 /* Clean things up */
919 struct combine_diff_path
*tmp
= paths
;