blob: 60d03676bbd0dba7be79c7098d7cae553962ca98 [file] [log] [blame]
Junio C Hamanoaf3feef2006-01-24 01:22:04 -08001#include "cache.h"
2#include "commit.h"
Peter Eriksen8e440252006-04-02 14:44:09 +02003#include "blob.h"
Junio C Hamanoaf3feef2006-01-24 01:22:04 -08004#include "diff.h"
5#include "diffcore.h"
6#include "quote.h"
Junio C Hamanod9ea73e2006-04-05 02:03:58 -07007#include "xdiff-interface.h"
Linus Torvalds91539832006-04-17 11:59:32 -07008#include "log-tree.h"
Junio C Hamano7dae8b22009-04-29 12:49:52 -07009#include "refs.h"
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080010
Junio C Hamanoea726d02006-01-28 00:03:38 -080011static struct combine_diff_path *intersect_paths(struct combine_diff_path *curr, int n, int num_parent)
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080012{
13 struct diff_queue_struct *q = &diff_queued_diff;
Junio C Hamanoea726d02006-01-28 00:03:38 -080014 struct combine_diff_path *p;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080015 int i;
16
17 if (!n) {
Junio C Hamanoea726d02006-01-28 00:03:38 -080018 struct combine_diff_path *list = NULL, **tail = &list;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080019 for (i = 0; i < q->nr; i++) {
20 int len;
21 const char *path;
Junio C Hamanoa976b0a2006-08-14 18:36:00 -070022 if (diff_unmodified_pair(q->queue[i]))
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080023 continue;
24 path = q->queue[i]->two->path;
25 len = strlen(path);
Junio C Hamano2454c962006-02-06 12:53:07 -080026 p = xmalloc(combine_diff_path_size(num_parent, len));
Felipe Contreras4b25d092009-05-01 12:06:36 +030027 p->path = (char *) &(p->parent[num_parent]);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080028 memcpy(p->path, path, len);
29 p->path[len] = 0;
30 p->len = len;
31 p->next = NULL;
Junio C Hamano2454c962006-02-06 12:53:07 -080032 memset(p->parent, 0,
33 sizeof(p->parent[0]) * num_parent);
34
Shawn Pearcee7024962006-08-23 02:49:00 -040035 hashcpy(p->sha1, q->queue[i]->two->sha1);
Junio C Hamano2454c962006-02-06 12:53:07 -080036 p->mode = q->queue[i]->two->mode;
Shawn Pearcee7024962006-08-23 02:49:00 -040037 hashcpy(p->parent[n].sha1, q->queue[i]->one->sha1);
Junio C Hamano2454c962006-02-06 12:53:07 -080038 p->parent[n].mode = q->queue[i]->one->mode;
Junio C Hamanod416df82006-02-10 02:30:52 -080039 p->parent[n].status = q->queue[i]->status;
Junio C Hamano5290a0f2006-01-25 03:34:10 -080040 *tail = p;
41 tail = &p->next;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080042 }
43 return list;
44 }
45
46 for (p = curr; p; p = p->next) {
47 int found = 0;
48 if (!p->len)
49 continue;
50 for (i = 0; i < q->nr; i++) {
51 const char *path;
52 int len;
53
Junio C Hamanoa976b0a2006-08-14 18:36:00 -070054 if (diff_unmodified_pair(q->queue[i]))
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080055 continue;
56 path = q->queue[i]->two->path;
57 len = strlen(path);
58 if (len == p->len && !memcmp(path, p->path, len)) {
59 found = 1;
Shawn Pearcee7024962006-08-23 02:49:00 -040060 hashcpy(p->parent[n].sha1, q->queue[i]->one->sha1);
Junio C Hamano2454c962006-02-06 12:53:07 -080061 p->parent[n].mode = q->queue[i]->one->mode;
Junio C Hamanod416df82006-02-10 02:30:52 -080062 p->parent[n].status = q->queue[i]->status;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080063 break;
64 }
65 }
66 if (!found)
67 p->len = 0;
68 }
69 return curr;
70}
71
Junio C Hamanob469d8b2006-01-30 16:34:29 -080072/* Lines lost from parent */
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080073struct lline {
74 struct lline *next;
75 int len;
76 unsigned long parent_map;
77 char line[FLEX_ARRAY];
78};
79
Junio C Hamanob469d8b2006-01-30 16:34:29 -080080/* Lines surviving in the merge result */
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080081struct sline {
82 struct lline *lost_head, **lost_tail;
83 char *bol;
84 int len;
Junio C Hamano46dc9412006-02-02 15:17:42 -080085 /* bit 0 up to (N-1) are on if the parent has this line (i.e.
86 * we did not change it).
Junio C Hamanob469d8b2006-01-30 16:34:29 -080087 * bit N is used for "interesting" lines, including context.
Junio C Hamanoc86fbe52008-06-18 23:59:41 -070088 * bit (N+1) is used for "do not show deletion before this".
Junio C Hamanob469d8b2006-01-30 16:34:29 -080089 */
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080090 unsigned long flag;
Junio C Hamanof16706c2006-01-30 22:33:15 -080091 unsigned long *p_lno;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080092};
93
Junio C Hamano7dae8b22009-04-29 12:49:52 -070094static char *grab_blob(const unsigned char *sha1, unsigned int mode, unsigned long *size)
Junio C Hamanoaf3feef2006-01-24 01:22:04 -080095{
96 char *blob;
Nicolas Pitre21666f12007-02-26 14:55:59 -050097 enum object_type type;
Junio C Hamano7dae8b22009-04-29 12:49:52 -070098
99 if (S_ISGITLINK(mode)) {
100 blob = xmalloc(100);
101 *size = snprintf(blob, 100,
102 "Subproject commit %s\n", sha1_to_hex(sha1));
103 } else if (is_null_sha1(sha1)) {
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800104 /* deleted blob */
105 *size = 0;
106 return xcalloc(1, 1);
Junio C Hamano7dae8b22009-04-29 12:49:52 -0700107 } else {
108 blob = read_sha1_file(sha1, &type, size);
109 if (type != OBJ_BLOB)
110 die("object '%s' is not a blob!", sha1_to_hex(sha1));
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800111 }
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800112 return blob;
113}
114
Junio C Hamanof23fc772006-04-03 18:53:15 -0700115static void append_lost(struct sline *sline, int n, const char *line, int len)
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800116{
117 struct lline *lline;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800118 unsigned long this_mask = (1UL<<n);
119 if (line[len-1] == '\n')
120 len--;
121
122 /* Check to see if we can squash things */
123 if (sline->lost_head) {
124 struct lline *last_one = NULL;
125 /* We cannot squash it with earlier one */
126 for (lline = sline->lost_head;
127 lline;
128 lline = lline->next)
129 if (lline->parent_map & this_mask)
130 last_one = lline;
131 lline = last_one ? last_one->next : sline->lost_head;
132 while (lline) {
133 if (lline->len == len &&
134 !memcmp(lline->line, line, len)) {
135 lline->parent_map |= this_mask;
136 return;
137 }
138 lline = lline->next;
139 }
140 }
141
142 lline = xmalloc(sizeof(*lline) + len + 1);
143 lline->len = len;
144 lline->next = NULL;
145 lline->parent_map = this_mask;
146 memcpy(lline->line, line, len);
147 lline->line[len] = 0;
Junio C Hamano5290a0f2006-01-25 03:34:10 -0800148 *sline->lost_tail = lline;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800149 sline->lost_tail = &lline->next;
150}
151
Junio C Hamanof23fc772006-04-03 18:53:15 -0700152struct combine_diff_state {
Junio C Hamanoa0fd3142006-04-06 22:29:55 -0700153 unsigned int lno;
154 int ob, on, nb, nn;
Junio C Hamanof23fc772006-04-03 18:53:15 -0700155 unsigned long nmask;
156 int num_parent;
157 int n;
158 struct sline *sline;
159 struct sline *lost_bucket;
160};
161
Junio C Hamanod9ea73e2006-04-05 02:03:58 -0700162static void consume_line(void *state_, char *line, unsigned long len)
Junio C Hamanof23fc772006-04-03 18:53:15 -0700163{
Junio C Hamanod9ea73e2006-04-05 02:03:58 -0700164 struct combine_diff_state *state = state_;
Junio C Hamanof23fc772006-04-03 18:53:15 -0700165 if (5 < len && !memcmp("@@ -", line, 4)) {
166 if (parse_hunk_header(line, len,
167 &state->ob, &state->on,
168 &state->nb, &state->nn))
169 return;
170 state->lno = state->nb;
171 if (!state->nb)
172 /* @@ -1,2 +0,0 @@ to remove the
173 * first two lines...
174 */
175 state->nb = 1;
176 if (state->nn == 0)
177 /* @@ -X,Y +N,0 @@ removed Y lines
178 * that would have come *after* line N
179 * in the result. Our lost buckets hang
180 * to the line after the removed lines,
181 */
182 state->lost_bucket = &state->sline[state->nb];
183 else
184 state->lost_bucket = &state->sline[state->nb-1];
185 if (!state->sline[state->nb-1].p_lno)
186 state->sline[state->nb-1].p_lno =
187 xcalloc(state->num_parent,
188 sizeof(unsigned long));
189 state->sline[state->nb-1].p_lno[state->n] = state->ob;
190 return;
191 }
192 if (!state->lost_bucket)
193 return; /* not in any hunk yet */
194 switch (line[0]) {
195 case '-':
196 append_lost(state->lost_bucket, state->n, line+1, len-1);
197 break;
198 case '+':
199 state->sline[state->lno-1].flag |= state->nmask;
200 state->lno++;
201 break;
202 }
203}
204
Junio C Hamano7dae8b22009-04-29 12:49:52 -0700205static void combine_diff(const unsigned char *parent, unsigned int mode,
206 mmfile_t *result_file,
Junio C Hamano2386c292006-06-28 01:38:19 -0700207 struct sline *sline, unsigned int cnt, int n,
208 int num_parent)
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800209{
Junio C Hamanof23fc772006-04-03 18:53:15 -0700210 unsigned int p_lno, lno;
Junio C Hamanof16706c2006-01-30 22:33:15 -0800211 unsigned long nmask = (1UL << n);
Junio C Hamanof23fc772006-04-03 18:53:15 -0700212 xpparam_t xpp;
213 xdemitconf_t xecfg;
214 mmfile_t parent_file;
215 xdemitcb_t ecb;
216 struct combine_diff_state state;
217 unsigned long sz;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800218
Junio C Hamano44627312006-02-06 18:54:08 -0800219 if (!cnt)
220 return; /* result deleted */
221
Junio C Hamano7dae8b22009-04-29 12:49:52 -0700222 parent_file.ptr = grab_blob(parent, mode, &sz);
Junio C Hamanof23fc772006-04-03 18:53:15 -0700223 parent_file.size = sz;
Brian Downing9ccd0a82008-10-25 15:30:37 +0200224 memset(&xpp, 0, sizeof(xpp));
Junio C Hamanof23fc772006-04-03 18:53:15 -0700225 xpp.flags = XDF_NEED_MINIMAL;
Johannes Schindelin30b25012007-07-04 19:05:46 +0100226 memset(&xecfg, 0, sizeof(xecfg));
Junio C Hamanof23fc772006-04-03 18:53:15 -0700227 memset(&state, 0, sizeof(state));
228 state.nmask = nmask;
229 state.sline = sline;
230 state.lno = 1;
231 state.num_parent = num_parent;
232 state.n = n;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800233
Junio C Hamano8a3f5242008-08-13 23:18:22 -0700234 xdi_diff_outf(&parent_file, result_file, consume_line, &state,
235 &xpp, &xecfg, &ecb);
Junio C Hamanof23fc772006-04-03 18:53:15 -0700236 free(parent_file.ptr);
Junio C Hamanof16706c2006-01-30 22:33:15 -0800237
238 /* Assign line numbers for this parent.
239 *
240 * sline[lno].p_lno[n] records the first line number
241 * (counting from 1) for parent N if the final hunk display
242 * started by showing sline[lno] (possibly showing the lost
243 * lines attached to it first).
244 */
Junio C Hamano8a470eb2006-04-11 03:13:29 -0700245 for (lno = 0, p_lno = 1; lno <= cnt; lno++) {
Junio C Hamanof16706c2006-01-30 22:33:15 -0800246 struct lline *ll;
247 sline[lno].p_lno[n] = p_lno;
248
249 /* How many lines would this sline advance the p_lno? */
250 ll = sline[lno].lost_head;
251 while (ll) {
252 if (ll->parent_map & nmask)
253 p_lno++; /* '-' means parent had it */
254 ll = ll->next;
255 }
Junio C Hamano8a470eb2006-04-11 03:13:29 -0700256 if (lno < cnt && !(sline[lno].flag & nmask))
Junio C Hamanof16706c2006-01-30 22:33:15 -0800257 p_lno++; /* no '+' means parent had it */
258 }
259 sline[lno].p_lno[n] = p_lno; /* trailer */
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800260}
261
262static unsigned long context = 3;
263static char combine_marker = '@';
264
265static int interesting(struct sline *sline, unsigned long all_mask)
266{
Junio C Hamano46dc9412006-02-02 15:17:42 -0800267 /* If some parents lost lines here, or if we have added to
268 * some parent, it is interesting.
269 */
270 return ((sline->flag & all_mask) || sline->lost_head);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800271}
272
Junio C Hamano3ec19092006-01-26 03:53:01 -0800273static unsigned long adjust_hunk_tail(struct sline *sline,
274 unsigned long all_mask,
275 unsigned long hunk_begin,
276 unsigned long i)
277{
Junio C Hamano46dc9412006-02-02 15:17:42 -0800278 /* i points at the first uninteresting line. If the last line
279 * of the hunk was interesting only because it has some
280 * deletion, then it is not all that interesting for the
281 * purpose of giving trailing context lines. This is because
282 * we output '-' line and then unmodified sline[i-1] itself in
283 * that case which gives us one extra context line.
Junio C Hamano3ec19092006-01-26 03:53:01 -0800284 */
Junio C Hamano46dc9412006-02-02 15:17:42 -0800285 if ((hunk_begin + 1 <= i) && !(sline[i-1].flag & all_mask))
Junio C Hamano3ec19092006-01-26 03:53:01 -0800286 i--;
287 return i;
288}
289
Junio C Hamano46dc9412006-02-02 15:17:42 -0800290static unsigned long find_next(struct sline *sline,
291 unsigned long mark,
292 unsigned long i,
293 unsigned long cnt,
Junio C Hamano2386c292006-06-28 01:38:19 -0700294 int look_for_uninteresting)
Junio C Hamano3ec19092006-01-26 03:53:01 -0800295{
Junio C Hamano46dc9412006-02-02 15:17:42 -0800296 /* We have examined up to i-1 and are about to look at i.
297 * Find next interesting or uninteresting line. Here,
298 * "interesting" does not mean interesting(), but marked by
299 * the give_context() function below (i.e. it includes context
300 * lines that are not interesting to interesting() function
301 * that are surrounded by interesting() ones.
302 */
Junio C Hamano74065952006-04-11 14:31:31 -0700303 while (i <= cnt)
Junio C Hamano2386c292006-06-28 01:38:19 -0700304 if (look_for_uninteresting
Junio C Hamano46dc9412006-02-02 15:17:42 -0800305 ? !(sline[i].flag & mark)
306 : (sline[i].flag & mark))
Junio C Hamano3ec19092006-01-26 03:53:01 -0800307 return i;
308 else
309 i++;
Junio C Hamano74065952006-04-11 14:31:31 -0700310 return i;
Junio C Hamano3ec19092006-01-26 03:53:01 -0800311}
312
313static int give_context(struct sline *sline, unsigned long cnt, int num_parent)
314{
315 unsigned long all_mask = (1UL<<num_parent) - 1;
316 unsigned long mark = (1UL<<num_parent);
Junio C Hamanoc86fbe52008-06-18 23:59:41 -0700317 unsigned long no_pre_delete = (2UL<<num_parent);
Junio C Hamano3ec19092006-01-26 03:53:01 -0800318 unsigned long i;
319
Junio C Hamano46dc9412006-02-02 15:17:42 -0800320 /* Two groups of interesting lines may have a short gap of
Pavel Roskin82e5a822006-07-10 01:50:18 -0400321 * uninteresting lines. Connect such groups to give them a
Junio C Hamano46dc9412006-02-02 15:17:42 -0800322 * bit of context.
323 *
324 * We first start from what the interesting() function says,
325 * and mark them with "mark", and paint context lines with the
326 * mark. So interesting() would still say false for such context
327 * lines but they are treated as "interesting" in the end.
328 */
329 i = find_next(sline, mark, 0, cnt, 0);
Junio C Hamano74065952006-04-11 14:31:31 -0700330 if (cnt < i)
Junio C Hamano3ec19092006-01-26 03:53:01 -0800331 return 0;
332
Junio C Hamano74065952006-04-11 14:31:31 -0700333 while (i <= cnt) {
Junio C Hamano3ec19092006-01-26 03:53:01 -0800334 unsigned long j = (context < i) ? (i - context) : 0;
335 unsigned long k;
Junio C Hamano46dc9412006-02-02 15:17:42 -0800336
337 /* Paint a few lines before the first interesting line. */
Junio C Hamano3ec19092006-01-26 03:53:01 -0800338 while (j < i)
Junio C Hamanoc86fbe52008-06-18 23:59:41 -0700339 sline[j++].flag |= mark | no_pre_delete;
Junio C Hamano3ec19092006-01-26 03:53:01 -0800340
341 again:
Junio C Hamano46dc9412006-02-02 15:17:42 -0800342 /* we know up to i is to be included. where does the
343 * next uninteresting one start?
344 */
345 j = find_next(sline, mark, i, cnt, 1);
Junio C Hamano74065952006-04-11 14:31:31 -0700346 if (cnt < j)
Junio C Hamano3ec19092006-01-26 03:53:01 -0800347 break; /* the rest are all interesting */
348
349 /* lookahead context lines */
Junio C Hamano46dc9412006-02-02 15:17:42 -0800350 k = find_next(sline, mark, j, cnt, 0);
Junio C Hamano3ec19092006-01-26 03:53:01 -0800351 j = adjust_hunk_tail(sline, all_mask, i, j);
352
353 if (k < j + context) {
354 /* k is interesting and [j,k) are not, but
355 * paint them interesting because the gap is small.
356 */
357 while (j < k)
358 sline[j++].flag |= mark;
359 i = k;
360 goto again;
361 }
362
363 /* j is the first uninteresting line and there is
Junio C Hamano46dc9412006-02-02 15:17:42 -0800364 * no overlap beyond it within context lines. Paint
365 * the trailing edge a bit.
Junio C Hamano3ec19092006-01-26 03:53:01 -0800366 */
367 i = k;
Junio C Hamano74065952006-04-11 14:31:31 -0700368 k = (j + context < cnt+1) ? j + context : cnt+1;
Junio C Hamano3ec19092006-01-26 03:53:01 -0800369 while (j < k)
370 sline[j++].flag |= mark;
371 }
372 return 1;
373}
374
Junio C Hamano8828cdc2006-01-25 14:26:22 -0800375static int make_hunks(struct sline *sline, unsigned long cnt,
Junio C Hamanod8f47902006-01-24 01:22:04 -0800376 int num_parent, int dense)
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800377{
378 unsigned long all_mask = (1UL<<num_parent) - 1;
379 unsigned long mark = (1UL<<num_parent);
380 unsigned long i;
Junio C Hamano8828cdc2006-01-25 14:26:22 -0800381 int has_interesting = 0;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800382
Junio C Hamano74065952006-04-11 14:31:31 -0700383 for (i = 0; i <= cnt; i++) {
Junio C Hamano3ec19092006-01-26 03:53:01 -0800384 if (interesting(&sline[i], all_mask))
385 sline[i].flag |= mark;
386 else
387 sline[i].flag &= ~mark;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800388 }
Junio C Hamanod8f47902006-01-24 01:22:04 -0800389 if (!dense)
Junio C Hamano3ec19092006-01-26 03:53:01 -0800390 return give_context(sline, cnt, num_parent);
Junio C Hamanod8f47902006-01-24 01:22:04 -0800391
Junio C Hamano263eee22006-01-25 13:11:38 -0800392 /* Look at each hunk, and if we have changes from only one
393 * parent, or the changes are the same from all but one
394 * parent, mark that uninteresting.
Junio C Hamanod8f47902006-01-24 01:22:04 -0800395 */
396 i = 0;
Junio C Hamano74065952006-04-11 14:31:31 -0700397 while (i <= cnt) {
Junio C Hamano3ec19092006-01-26 03:53:01 -0800398 unsigned long j, hunk_begin, hunk_end;
Junio C Hamanobf1c32b2006-02-02 00:12:55 -0800399 unsigned long same_diff;
Junio C Hamano74065952006-04-11 14:31:31 -0700400 while (i <= cnt && !(sline[i].flag & mark))
Junio C Hamanod8f47902006-01-24 01:22:04 -0800401 i++;
Junio C Hamano74065952006-04-11 14:31:31 -0700402 if (cnt < i)
Junio C Hamanod8f47902006-01-24 01:22:04 -0800403 break; /* No more interesting hunks */
Junio C Hamano3ec19092006-01-26 03:53:01 -0800404 hunk_begin = i;
Junio C Hamano74065952006-04-11 14:31:31 -0700405 for (j = i + 1; j <= cnt; j++) {
Junio C Hamano3ec19092006-01-26 03:53:01 -0800406 if (!(sline[j].flag & mark)) {
407 /* Look beyond the end to see if there
408 * is an interesting line after this
409 * hunk within context span.
410 */
411 unsigned long la; /* lookahead */
412 int contin = 0;
413 la = adjust_hunk_tail(sline, all_mask,
414 hunk_begin, j);
Junio C Hamano74065952006-04-11 14:31:31 -0700415 la = (la + context < cnt + 1) ?
416 (la + context) : cnt + 1;
Junio C Hamano3ec19092006-01-26 03:53:01 -0800417 while (j <= --la) {
418 if (sline[la].flag & mark) {
419 contin = 1;
420 break;
421 }
422 }
423 if (!contin)
424 break;
425 j = la;
426 }
427 }
428 hunk_end = j;
429
Junio C Hamanobf1c32b2006-02-02 00:12:55 -0800430 /* [i..hunk_end) are interesting. Now is it really
Junio C Hamanofd4b1d22006-02-02 01:28:08 -0800431 * interesting? We check if there are only two versions
432 * and the result matches one of them. That is, we look
433 * at:
434 * (+) line, which records lines added to which parents;
435 * this line appears in the result.
436 * (-) line, which records from what parents the line
437 * was removed; this line does not appear in the result.
438 * then check the set of parents the result has difference
439 * from, from all lines. If there are lines that has
440 * different set of parents that the result has differences
441 * from, that means we have more than two versions.
442 *
443 * Even when we have only two versions, if the result does
444 * not match any of the parents, the it should be considered
445 * interesting. In such a case, we would have all '+' line.
446 * After passing the above "two versions" test, that would
447 * appear as "the same set of parents" to be "all parents".
Junio C Hamanod8f47902006-01-24 01:22:04 -0800448 */
Junio C Hamanobf1c32b2006-02-02 00:12:55 -0800449 same_diff = 0;
450 has_interesting = 0;
451 for (j = i; j < hunk_end && !has_interesting; j++) {
Junio C Hamano46dc9412006-02-02 15:17:42 -0800452 unsigned long this_diff = sline[j].flag & all_mask;
Junio C Hamanobf1c32b2006-02-02 00:12:55 -0800453 struct lline *ll = sline[j].lost_head;
454 if (this_diff) {
455 /* This has some changes. Is it the
456 * same as others?
457 */
458 if (!same_diff)
459 same_diff = this_diff;
460 else if (same_diff != this_diff) {
461 has_interesting = 1;
462 break;
463 }
464 }
465 while (ll && !has_interesting) {
466 /* Lost this line from these parents;
467 * who are they? Are they the same?
468 */
469 this_diff = ll->parent_map;
470 if (!same_diff)
471 same_diff = this_diff;
472 else if (same_diff != this_diff) {
473 has_interesting = 1;
474 }
475 ll = ll->next;
476 }
Junio C Hamanod8f47902006-01-24 01:22:04 -0800477 }
Junio C Hamanobf1c32b2006-02-02 00:12:55 -0800478
Junio C Hamanofd4b1d22006-02-02 01:28:08 -0800479 if (!has_interesting && same_diff != all_mask) {
Junio C Hamanod8f47902006-01-24 01:22:04 -0800480 /* This hunk is not that interesting after all */
Junio C Hamano3ec19092006-01-26 03:53:01 -0800481 for (j = hunk_begin; j < hunk_end; j++)
Junio C Hamanod8f47902006-01-24 01:22:04 -0800482 sline[j].flag &= ~mark;
483 }
484 i = hunk_end;
485 }
Junio C Hamano3ec19092006-01-26 03:53:01 -0800486
487 has_interesting = give_context(sline, cnt, num_parent);
Junio C Hamano8828cdc2006-01-25 14:26:22 -0800488 return has_interesting;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800489}
490
Junio C Hamano3b0f5e82007-02-03 12:37:54 -0800491static void show_parent_lno(struct sline *sline, unsigned long l0, unsigned long l1, int n, unsigned long null_context)
Junio C Hamanof16706c2006-01-30 22:33:15 -0800492{
493 l0 = sline[l0].p_lno[n];
494 l1 = sline[l1].p_lno[n];
Junio C Hamano3b0f5e82007-02-03 12:37:54 -0800495 printf(" -%lu,%lu", l0, l1-l0-null_context);
Junio C Hamanof16706c2006-01-30 22:33:15 -0800496}
497
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700498static int hunk_comment_line(const char *bol)
499{
Junio C Hamano7a8ac592006-10-26 02:05:05 -0700500 int ch;
501
502 if (!bol)
503 return 0;
504 ch = *bol & 0xff;
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700505 return (isalpha(ch) || ch == '_' || ch == '$');
506}
507
Junio C Hamano39280972008-08-27 19:48:01 -0700508static void show_line_to_eol(const char *line, int len, const char *reset)
509{
510 int saw_cr_at_eol = 0;
511 if (len < 0)
512 len = strlen(line);
513 saw_cr_at_eol = (len && line[len-1] == '\r');
514
515 printf("%.*s%s%s\n", len - saw_cr_at_eol, line,
516 reset,
517 saw_cr_at_eol ? "\r" : "");
518}
519
Junio C Hamano567a03d2006-08-10 00:30:33 -0700520static void dump_sline(struct sline *sline, unsigned long cnt, int num_parent,
521 int use_color)
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800522{
523 unsigned long mark = (1UL<<num_parent);
Junio C Hamanoc86fbe52008-06-18 23:59:41 -0700524 unsigned long no_pre_delete = (2UL<<num_parent);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800525 int i;
Junio C Hamanof16706c2006-01-30 22:33:15 -0800526 unsigned long lno = 0;
Junio C Hamano567a03d2006-08-10 00:30:33 -0700527 const char *c_frag = diff_get_color(use_color, DIFF_FRAGINFO);
528 const char *c_new = diff_get_color(use_color, DIFF_FILE_NEW);
529 const char *c_old = diff_get_color(use_color, DIFF_FILE_OLD);
530 const char *c_plain = diff_get_color(use_color, DIFF_PLAIN);
531 const char *c_reset = diff_get_color(use_color, DIFF_RESET);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800532
Junio C Hamano44627312006-02-06 18:54:08 -0800533 if (!cnt)
534 return; /* result deleted */
535
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800536 while (1) {
Junio C Hamano8bc75742006-04-12 13:23:50 -0700537 unsigned long hunk_end;
538 unsigned long rlines;
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700539 const char *hunk_comment = NULL;
Junio C Hamano3b0f5e82007-02-03 12:37:54 -0800540 unsigned long null_context = 0;
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700541
542 while (lno <= cnt && !(sline[lno].flag & mark)) {
543 if (hunk_comment_line(sline[lno].bol))
544 hunk_comment = sline[lno].bol;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800545 lno++;
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700546 }
Junio C Hamano8a470eb2006-04-11 03:13:29 -0700547 if (cnt < lno)
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800548 break;
Junio C Hamano8a470eb2006-04-11 03:13:29 -0700549 else {
Junio C Hamano74065952006-04-11 14:31:31 -0700550 for (hunk_end = lno + 1; hunk_end <= cnt; hunk_end++)
Junio C Hamano8a470eb2006-04-11 03:13:29 -0700551 if (!(sline[hunk_end].flag & mark))
552 break;
553 }
Junio C Hamano74065952006-04-11 14:31:31 -0700554 rlines = hunk_end - lno;
555 if (cnt < hunk_end)
556 rlines--; /* pointing at the last delete hunk */
Junio C Hamano3b0f5e82007-02-03 12:37:54 -0800557
558 if (!context) {
559 /*
560 * Even when running with --unified=0, all
561 * lines in the hunk needs to be processed in
562 * the loop below in order to show the
563 * deletion recorded in lost_head. However,
564 * we do not want to show the resulting line
565 * with all blank context markers in such a
566 * case. Compensate.
567 */
568 unsigned long j;
569 for (j = lno; j < hunk_end; j++)
570 if (!(sline[j].flag & (mark-1)))
571 null_context++;
572 rlines -= null_context;
573 }
574
Junio C Hamano567a03d2006-08-10 00:30:33 -0700575 fputs(c_frag, stdout);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800576 for (i = 0; i <= num_parent; i++) putchar(combine_marker);
Junio C Hamanof16706c2006-01-30 22:33:15 -0800577 for (i = 0; i < num_parent; i++)
Junio C Hamano3b0f5e82007-02-03 12:37:54 -0800578 show_parent_lno(sline, lno, hunk_end, i, null_context);
Junio C Hamano74065952006-04-11 14:31:31 -0700579 printf(" +%lu,%lu ", lno+1, rlines);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800580 for (i = 0; i <= num_parent; i++) putchar(combine_marker);
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700581
582 if (hunk_comment) {
583 int comment_end = 0;
584 for (i = 0; i < 40; i++) {
585 int ch = hunk_comment[i] & 0xff;
586 if (!ch || ch == '\n')
587 break;
588 if (!isspace(ch))
589 comment_end = i;
590 }
591 if (comment_end)
592 putchar(' ');
593 for (i = 0; i < comment_end; i++)
594 putchar(hunk_comment[i]);
595 }
596
Junio C Hamano567a03d2006-08-10 00:30:33 -0700597 printf("%s\n", c_reset);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800598 while (lno < hunk_end) {
599 struct lline *ll;
600 int j;
Junio C Hamano46dc9412006-02-02 15:17:42 -0800601 unsigned long p_mask;
Benjamin Kramerfd13b212009-03-07 21:02:26 +0100602 struct sline *sl = &sline[lno++];
Junio C Hamanoc86fbe52008-06-18 23:59:41 -0700603 ll = (sl->flag & no_pre_delete) ? NULL : sl->lost_head;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800604 while (ll) {
Junio C Hamano567a03d2006-08-10 00:30:33 -0700605 fputs(c_old, stdout);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800606 for (j = 0; j < num_parent; j++) {
607 if (ll->parent_map & (1UL<<j))
608 putchar('-');
609 else
610 putchar(' ');
611 }
Junio C Hamano39280972008-08-27 19:48:01 -0700612 show_line_to_eol(ll->line, -1, c_reset);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800613 ll = ll->next;
614 }
Junio C Hamano74065952006-04-11 14:31:31 -0700615 if (cnt < lno)
Junio C Hamano8a470eb2006-04-11 03:13:29 -0700616 break;
Junio C Hamano46dc9412006-02-02 15:17:42 -0800617 p_mask = 1;
Junio C Hamano3b0f5e82007-02-03 12:37:54 -0800618 if (!(sl->flag & (mark-1))) {
619 /*
620 * This sline was here to hang the
621 * lost lines in front of it.
622 */
623 if (!context)
624 continue;
Junio C Hamano567a03d2006-08-10 00:30:33 -0700625 fputs(c_plain, stdout);
Junio C Hamano3b0f5e82007-02-03 12:37:54 -0800626 }
Junio C Hamano567a03d2006-08-10 00:30:33 -0700627 else
628 fputs(c_new, stdout);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800629 for (j = 0; j < num_parent; j++) {
Junio C Hamano46dc9412006-02-02 15:17:42 -0800630 if (p_mask & sl->flag)
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800631 putchar('+');
Junio C Hamano46dc9412006-02-02 15:17:42 -0800632 else
633 putchar(' ');
634 p_mask <<= 1;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800635 }
Junio C Hamano39280972008-08-27 19:48:01 -0700636 show_line_to_eol(sl->bol, sl->len, c_reset);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800637 }
638 }
639}
640
Junio C Hamano3c39e9b2006-02-01 23:29:03 -0800641static void reuse_combine_diff(struct sline *sline, unsigned long cnt,
642 int i, int j)
643{
644 /* We have already examined parent j and we know parent i
645 * and parent j are the same, so reuse the combined result
646 * of parent j for parent i.
647 */
648 unsigned long lno, imask, jmask;
649 imask = (1UL<<i);
650 jmask = (1UL<<j);
651
Junio C Hamano8a470eb2006-04-11 03:13:29 -0700652 for (lno = 0; lno <= cnt; lno++) {
Junio C Hamano3c39e9b2006-02-01 23:29:03 -0800653 struct lline *ll = sline->lost_head;
Junio C Hamanof16706c2006-01-30 22:33:15 -0800654 sline->p_lno[i] = sline->p_lno[j];
Junio C Hamano3c39e9b2006-02-01 23:29:03 -0800655 while (ll) {
656 if (ll->parent_map & jmask)
657 ll->parent_map |= imask;
658 ll = ll->next;
659 }
Junio C Hamano46dc9412006-02-02 15:17:42 -0800660 if (sline->flag & jmask)
661 sline->flag |= imask;
Junio C Hamano3c39e9b2006-02-01 23:29:03 -0800662 sline++;
663 }
Junio C Hamano44627312006-02-06 18:54:08 -0800664 /* the overall size of the file (sline[cnt]) */
665 sline->p_lno[i] = sline->p_lno[j];
Junio C Hamano3c39e9b2006-02-01 23:29:03 -0800666}
667
Junio C Hamano462a15b2007-12-26 16:51:19 -0800668static void dump_quoted_path(const char *head,
669 const char *prefix,
670 const char *path,
Junio C Hamano567a03d2006-08-10 00:30:33 -0700671 const char *c_meta, const char *c_reset)
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800672{
Junio C Hamano462a15b2007-12-26 16:51:19 -0800673 static struct strbuf buf = STRBUF_INIT;
674
675 strbuf_reset(&buf);
676 strbuf_addstr(&buf, c_meta);
677 strbuf_addstr(&buf, head);
Junio C Hamanod5625092007-12-26 17:13:36 -0800678 quote_two_c_style(&buf, prefix, path, 0);
Junio C Hamano462a15b2007-12-26 16:51:19 -0800679 strbuf_addstr(&buf, c_reset);
680 puts(buf.buf);
Linus Torvaldseab144a2006-04-17 16:59:42 -0700681}
682
Junio C Hamano89b0c4b2006-08-13 19:19:34 -0700683static void show_patch_diff(struct combine_diff_path *elem, int num_parent,
684 int dense, struct rev_info *rev)
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800685{
Linus Torvalds91539832006-04-17 11:59:32 -0700686 struct diff_options *opt = &rev->diffopt;
Junio C Hamanof23fc772006-04-03 18:53:15 -0700687 unsigned long result_size, cnt, lno;
Serge E. Hallyn310f8b52006-04-17 10:14:47 -0500688 char *result, *cp;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800689 struct sline *sline; /* survived lines */
Junio C Hamano2454c962006-02-06 12:53:07 -0800690 int mode_differs = 0;
Junio C Hamano89b0c4b2006-08-13 19:19:34 -0700691 int i, show_hunks;
David Rientjes0bef57e2006-08-15 13:37:19 -0700692 int working_tree_file = is_null_sha1(elem->sha1);
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100693 int abbrev = DIFF_OPT_TST(opt, FULL_INDEX) ? 40 : DEFAULT_ABBREV;
Junio C Hamanoa5a818e2008-08-18 20:08:09 -0700694 const char *a_prefix, *b_prefix;
Junio C Hamanof23fc772006-04-03 18:53:15 -0700695 mmfile_t result_file;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800696
Linus Torvaldsee1e5412006-05-13 13:23:48 -0700697 context = opt->context;
Junio C Hamanoa5a818e2008-08-18 20:08:09 -0700698 a_prefix = opt->a_prefix ? opt->a_prefix : "a/";
699 b_prefix = opt->b_prefix ? opt->b_prefix : "b/";
700
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800701 /* Read the result of merge first */
Junio C Hamanof23fc772006-04-03 18:53:15 -0700702 if (!working_tree_file)
Junio C Hamano7dae8b22009-04-29 12:49:52 -0700703 result = grab_blob(elem->sha1, elem->mode, &result_size);
Junio C Hamanoea726d02006-01-28 00:03:38 -0800704 else {
Junio C Hamano9843a1f2006-02-06 12:30:00 -0800705 /* Used by diff-tree to read from the working tree */
Junio C Hamanoea726d02006-01-28 00:03:38 -0800706 struct stat st;
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800707 int fd = -1;
708
709 if (lstat(elem->path, &st) < 0)
710 goto deleted_file;
711
712 if (S_ISLNK(st.st_mode)) {
Junio C Hamano912342d2008-12-17 12:37:58 -0800713 struct strbuf buf = STRBUF_INIT;
714
715 if (strbuf_readlink(&buf, elem->path, st.st_size) < 0) {
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800716 error("readlink(%s): %s", elem->path,
717 strerror(errno));
718 return;
719 }
Junio C Hamano912342d2008-12-17 12:37:58 -0800720 result_size = buf.len;
721 result = strbuf_detach(&buf, NULL);
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800722 elem->mode = canon_mode(st.st_mode);
Junio C Hamano7dae8b22009-04-29 12:49:52 -0700723 } else if (S_ISDIR(st.st_mode)) {
724 unsigned char sha1[20];
725 if (resolve_gitlink_ref(elem->path, "HEAD", sha1) < 0)
726 result = grab_blob(elem->sha1, elem->mode, &result_size);
727 else
728 result = grab_blob(sha1, elem->mode, &result_size);
Kjetil Barvik91fcbcb2009-02-09 21:54:52 +0100729 } else if (0 <= (fd = open(elem->path, O_RDONLY))) {
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -0500730 size_t len = xsize_t(st.st_size);
Heikki Orsilac697ad12008-05-03 16:27:26 +0300731 ssize_t done;
Johannes Sixta249a9b2007-03-03 20:38:00 +0100732 int is_file, i;
Junio C Hamanoea726d02006-01-28 00:03:38 -0800733
Junio C Hamano1b0c7172006-03-29 22:55:43 -0800734 elem->mode = canon_mode(st.st_mode);
Johannes Sixta249a9b2007-03-03 20:38:00 +0100735 /* if symlinks don't work, assume symlink if all parents
736 * are symlinks
737 */
738 is_file = has_symlinks;
739 for (i = 0; !is_file && i < num_parent; i++)
740 is_file = !S_ISLNK(elem->parent[i].mode);
741 if (!is_file)
742 elem->mode = canon_mode(S_IFLNK);
743
Junio C Hamanof23fc772006-04-03 18:53:15 -0700744 result_size = len;
Junio C Hamanoea726d02006-01-28 00:03:38 -0800745 result = xmalloc(len + 1);
Heikki Orsilac697ad12008-05-03 16:27:26 +0300746
747 done = read_in_full(fd, result, len);
748 if (done < 0)
749 die("read error '%s'", elem->path);
750 else if (done < len)
751 die("early EOF '%s'", elem->path);
752
Junio C Hamanoea726d02006-01-28 00:03:38 -0800753 result[len] = 0;
Alexander Gavrilov5e568f92008-08-23 23:21:21 +0400754
755 /* If not a fake symlink, apply filters, e.g. autocrlf */
756 if (is_file) {
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500757 struct strbuf buf = STRBUF_INIT;
Alexander Gavrilov5e568f92008-08-23 23:21:21 +0400758
Alexander Gavrilov5e568f92008-08-23 23:21:21 +0400759 if (convert_to_git(elem->path, result, len, &buf, safe_crlf)) {
760 free(result);
761 result = strbuf_detach(&buf, &len);
762 result_size = len;
763 }
764 }
Junio C Hamanoea726d02006-01-28 00:03:38 -0800765 }
766 else {
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800767 deleted_file:
Junio C Hamanof23fc772006-04-03 18:53:15 -0700768 result_size = 0;
Junio C Hamano713a11f2006-02-13 23:07:04 -0800769 elem->mode = 0;
Peter Eriksen28f75812006-07-25 09:30:18 +0200770 result = xcalloc(1, 1);
Junio C Hamanoea726d02006-01-28 00:03:38 -0800771 }
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800772
Junio C Hamanoea726d02006-01-28 00:03:38 -0800773 if (0 <= fd)
774 close(fd);
775 }
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800776
Junio C Hamano2386c292006-06-28 01:38:19 -0700777 for (cnt = 0, cp = result; cp < result + result_size; cp++) {
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800778 if (*cp == '\n')
779 cnt++;
780 }
Junio C Hamanof23fc772006-04-03 18:53:15 -0700781 if (result_size && result[result_size-1] != '\n')
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800782 cnt++; /* incomplete line */
783
Junio C Hamano8a470eb2006-04-11 03:13:29 -0700784 sline = xcalloc(cnt+2, sizeof(*sline));
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800785 sline[0].bol = result;
Junio C Hamano8a470eb2006-04-11 03:13:29 -0700786 for (lno = 0; lno <= cnt + 1; lno++) {
Junio C Hamano44627312006-02-06 18:54:08 -0800787 sline[lno].lost_tail = &sline[lno].lost_head;
788 sline[lno].flag = 0;
789 }
Junio C Hamano2386c292006-06-28 01:38:19 -0700790 for (lno = 0, cp = result; cp < result + result_size; cp++) {
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800791 if (*cp == '\n') {
792 sline[lno].len = cp - sline[lno].bol;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800793 lno++;
794 if (lno < cnt)
795 sline[lno].bol = cp + 1;
796 }
797 }
Junio C Hamanof23fc772006-04-03 18:53:15 -0700798 if (result_size && result[result_size-1] != '\n')
799 sline[cnt-1].len = result_size - (sline[cnt-1].bol - result);
800
801 result_file.ptr = result;
802 result_file.size = result_size;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800803
Junio C Hamano8a470eb2006-04-11 03:13:29 -0700804 /* Even p_lno[cnt+1] is valid -- that is for the end line number
805 * for deletion hunk at the end.
806 */
807 sline[0].p_lno = xcalloc((cnt+2) * num_parent, sizeof(unsigned long));
808 for (lno = 0; lno <= cnt; lno++)
Junio C Hamanof16706c2006-01-30 22:33:15 -0800809 sline[lno+1].p_lno = sline[lno].p_lno + num_parent;
810
Junio C Hamano3c39e9b2006-02-01 23:29:03 -0800811 for (i = 0; i < num_parent; i++) {
812 int j;
813 for (j = 0; j < i; j++) {
David Rientjesa89fccd2006-08-17 11:54:57 -0700814 if (!hashcmp(elem->parent[i].sha1,
815 elem->parent[j].sha1)) {
Junio C Hamano3c39e9b2006-02-01 23:29:03 -0800816 reuse_combine_diff(sline, cnt, i, j);
817 break;
818 }
819 }
820 if (i <= j)
Junio C Hamano7dae8b22009-04-29 12:49:52 -0700821 combine_diff(elem->parent[i].sha1,
822 elem->parent[i].mode,
823 &result_file, sline,
Junio C Hamanof16706c2006-01-30 22:33:15 -0800824 cnt, i, num_parent);
Junio C Hamano2454c962006-02-06 12:53:07 -0800825 if (elem->parent[i].mode != elem->mode)
826 mode_differs = 1;
Junio C Hamano3c39e9b2006-02-01 23:29:03 -0800827 }
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800828
Junio C Hamano8828cdc2006-01-25 14:26:22 -0800829 show_hunks = make_hunks(sline, cnt, num_parent, dense);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800830
Junio C Hamano713a11f2006-02-13 23:07:04 -0800831 if (show_hunks || mode_differs || working_tree_file) {
Junio C Hamano9843a1f2006-02-06 12:30:00 -0800832 const char *abb;
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100833 int use_color = DIFF_OPT_TST(opt, COLOR_DIFF);
Junio C Hamano567a03d2006-08-10 00:30:33 -0700834 const char *c_meta = diff_get_color(use_color, DIFF_METAINFO);
835 const char *c_reset = diff_get_color(use_color, DIFF_RESET);
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700836 int added = 0;
837 int deleted = 0;
Junio C Hamano9843a1f2006-02-06 12:30:00 -0800838
Junio C Hamano44152782006-10-26 02:05:59 -0700839 if (rev->loginfo && !rev->no_commit_id)
Adam Simpkins02865652008-04-29 01:32:59 -0700840 show_log(rev);
Junio C Hamano567a03d2006-08-10 00:30:33 -0700841 dump_quoted_path(dense ? "diff --cc " : "diff --combined ",
Junio C Hamano462a15b2007-12-26 16:51:19 -0800842 "", elem->path, c_meta, c_reset);
Junio C Hamano567a03d2006-08-10 00:30:33 -0700843 printf("%sindex ", c_meta);
Junio C Hamano823bcd62006-02-02 05:21:14 -0800844 for (i = 0; i < num_parent; i++) {
Junio C Hamano297a1aa2006-02-10 01:51:12 -0800845 abb = find_unique_abbrev(elem->parent[i].sha1,
Mark Woodinge70c6b32006-02-27 12:52:50 +0000846 abbrev);
Junio C Hamano9843a1f2006-02-06 12:30:00 -0800847 printf("%s%s", i ? "," : "", abb);
Junio C Hamano823bcd62006-02-02 05:21:14 -0800848 }
Mark Woodinge70c6b32006-02-27 12:52:50 +0000849 abb = find_unique_abbrev(elem->sha1, abbrev);
Junio C Hamano567a03d2006-08-10 00:30:33 -0700850 printf("..%s%s\n", abb, c_reset);
Junio C Hamano2454c962006-02-06 12:53:07 -0800851
852 if (mode_differs) {
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700853 deleted = !elem->mode;
854
855 /* We say it was added if nobody had it */
856 added = !deleted;
Junio C Hamanod416df82006-02-10 02:30:52 -0800857 for (i = 0; added && i < num_parent; i++)
858 if (elem->parent[i].status !=
859 DIFF_STATUS_ADDED)
860 added = 0;
861 if (added)
Junio C Hamano567a03d2006-08-10 00:30:33 -0700862 printf("%snew file mode %06o",
863 c_meta, elem->mode);
Junio C Hamanod416df82006-02-10 02:30:52 -0800864 else {
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700865 if (deleted)
Junio C Hamano567a03d2006-08-10 00:30:33 -0700866 printf("%sdeleted file ", c_meta);
Junio C Hamanod416df82006-02-10 02:30:52 -0800867 printf("mode ");
868 for (i = 0; i < num_parent; i++) {
869 printf("%s%06o", i ? "," : "",
870 elem->parent[i].mode);
871 }
872 if (elem->mode)
873 printf("..%06o", elem->mode);
Junio C Hamano2454c962006-02-06 12:53:07 -0800874 }
Junio C Hamano567a03d2006-08-10 00:30:33 -0700875 printf("%s\n", c_reset);
Junio C Hamano2454c962006-02-06 12:53:07 -0800876 }
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700877 if (added)
Junio C Hamano462a15b2007-12-26 16:51:19 -0800878 dump_quoted_path("--- ", "", "/dev/null",
879 c_meta, c_reset);
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700880 else
Junio C Hamanoa5a818e2008-08-18 20:08:09 -0700881 dump_quoted_path("--- ", a_prefix, elem->path,
Junio C Hamano462a15b2007-12-26 16:51:19 -0800882 c_meta, c_reset);
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700883 if (deleted)
Junio C Hamano462a15b2007-12-26 16:51:19 -0800884 dump_quoted_path("+++ ", "", "/dev/null",
885 c_meta, c_reset);
Junio C Hamanod5f6a012006-10-26 00:05:04 -0700886 else
Junio C Hamanoa5a818e2008-08-18 20:08:09 -0700887 dump_quoted_path("+++ ", b_prefix, elem->path,
Junio C Hamano462a15b2007-12-26 16:51:19 -0800888 c_meta, c_reset);
889 dump_sline(sline, cnt, num_parent,
890 DIFF_OPT_TST(opt, COLOR_DIFF));
Junio C Hamano8828cdc2006-01-25 14:26:22 -0800891 }
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800892 free(result);
893
Junio C Hamano2386c292006-06-28 01:38:19 -0700894 for (lno = 0; lno < cnt; lno++) {
895 if (sline[lno].lost_head) {
896 struct lline *ll = sline[lno].lost_head;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800897 while (ll) {
898 struct lline *tmp = ll;
899 ll = ll->next;
900 free(tmp);
901 }
902 }
903 }
Junio C Hamano46dc9412006-02-02 15:17:42 -0800904 free(sline[0].p_lno);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800905 free(sline);
906}
907
Linus Torvaldsee638022006-02-09 10:30:28 -0800908#define COLONS "::::::::::::::::::::::::::::::::"
909
Linus Torvalds91539832006-04-17 11:59:32 -0700910static void show_raw_diff(struct combine_diff_path *p, int num_parent, struct rev_info *rev)
Linus Torvaldsee638022006-02-09 10:30:28 -0800911{
Linus Torvalds91539832006-04-17 11:59:32 -0700912 struct diff_options *opt = &rev->diffopt;
Serge E. Hallyn310f8b52006-04-17 10:14:47 -0500913 int i, offset;
Linus Torvaldsee638022006-02-09 10:30:28 -0800914 const char *prefix;
915 int line_termination, inter_name_termination;
916
917 line_termination = opt->line_termination;
918 inter_name_termination = '\t';
919 if (!line_termination)
920 inter_name_termination = 0;
921
Junio C Hamano44152782006-10-26 02:05:59 -0700922 if (rev->loginfo && !rev->no_commit_id)
Adam Simpkins02865652008-04-29 01:32:59 -0700923 show_log(rev);
Linus Torvaldsee638022006-02-09 10:30:28 -0800924
Timo Hirvonenc6744342006-06-24 20:21:53 +0300925 if (opt->output_format & DIFF_FORMAT_RAW) {
Junio C Hamano0a798072006-02-09 15:23:06 -0800926 offset = strlen(COLONS) - num_parent;
927 if (offset < 0)
928 offset = 0;
929 prefix = COLONS + offset;
Linus Torvaldsee638022006-02-09 10:30:28 -0800930
Junio C Hamano0a798072006-02-09 15:23:06 -0800931 /* Show the modes */
932 for (i = 0; i < num_parent; i++) {
933 printf("%s%06o", prefix, p->parent[i].mode);
934 prefix = " ";
935 }
936 printf("%s%06o", prefix, p->mode);
937
938 /* Show sha1's */
939 for (i = 0; i < num_parent; i++)
940 printf(" %s", diff_unique_abbrev(p->parent[i].sha1,
941 opt->abbrev));
942 printf(" %s ", diff_unique_abbrev(p->sha1, opt->abbrev));
943 }
944
Timo Hirvonenc6744342006-06-24 20:21:53 +0300945 if (opt->output_format & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS)) {
Junio C Hamanod416df82006-02-10 02:30:52 -0800946 for (i = 0; i < num_parent; i++)
947 putchar(p->parent[i].status);
948 putchar(inter_name_termination);
949 }
Junio C Hamano0a798072006-02-09 15:23:06 -0800950
Pierre Habouzit663af342007-09-20 00:42:15 +0200951 write_name_quoted(p->path, stdout, line_termination);
Junio C Hamano0a798072006-02-09 15:23:06 -0800952}
953
Linus Torvalds91539832006-04-17 11:59:32 -0700954void show_combined_diff(struct combine_diff_path *p,
Junio C Hamano0a798072006-02-09 15:23:06 -0800955 int num_parent,
956 int dense,
Linus Torvalds91539832006-04-17 11:59:32 -0700957 struct rev_info *rev)
Junio C Hamano0a798072006-02-09 15:23:06 -0800958{
Linus Torvalds91539832006-04-17 11:59:32 -0700959 struct diff_options *opt = &rev->diffopt;
Junio C Hamano0a798072006-02-09 15:23:06 -0800960 if (!p->len)
Linus Torvalds91539832006-04-17 11:59:32 -0700961 return;
Timo Hirvonenc6744342006-06-24 20:21:53 +0300962 if (opt->output_format & (DIFF_FORMAT_RAW |
963 DIFF_FORMAT_NAME |
Junio C Hamano89b0c4b2006-08-13 19:19:34 -0700964 DIFF_FORMAT_NAME_STATUS))
Linus Torvalds91539832006-04-17 11:59:32 -0700965 show_raw_diff(p, num_parent, rev);
Junio C Hamano89b0c4b2006-08-13 19:19:34 -0700966 else if (opt->output_format & DIFF_FORMAT_PATCH)
Linus Torvalds91539832006-04-17 11:59:32 -0700967 show_patch_diff(p, num_parent, dense, rev);
Linus Torvaldsee638022006-02-09 10:30:28 -0800968}
969
Junio C Hamano0fe7c1d2006-04-29 01:24:49 -0700970void diff_tree_combined(const unsigned char *sha1,
971 const unsigned char parent[][20],
972 int num_parent,
973 int dense,
974 struct rev_info *rev)
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800975{
Linus Torvalds91539832006-04-17 11:59:32 -0700976 struct diff_options *opt = &rev->diffopt;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800977 struct diff_options diffopts;
Junio C Hamanoea726d02006-01-28 00:03:38 -0800978 struct combine_diff_path *p, *paths = NULL;
Junio C Hamano3969cf72006-06-27 15:08:19 -0700979 int i, num_paths, needsep, show_log_first;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800980
Junio C Hamano5b236832006-02-09 14:35:19 -0800981 diffopts = *opt;
Junio C Hamano3969cf72006-06-27 15:08:19 -0700982 diffopts.output_format = DIFF_FORMAT_NO_OUTPUT;
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100983 DIFF_OPT_SET(&diffopts, RECURSIVE);
984 DIFF_OPT_CLR(&diffopts, ALLOW_EXTERNAL);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800985
Junio C Hamano44152782006-10-26 02:05:59 -0700986 show_log_first = !!rev->loginfo && !rev->no_commit_id;
Junio C Hamano3969cf72006-06-27 15:08:19 -0700987 needsep = 0;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -0800988 /* find set of paths that everybody touches */
Junio C Hamano0fe7c1d2006-04-29 01:24:49 -0700989 for (i = 0; i < num_parent; i++) {
Junio C Hamano965f8032006-04-17 22:53:03 -0700990 /* show stat against the first parent even
991 * when doing combined diff.
992 */
Junio C Hamano74e2abe2006-10-12 03:01:00 -0700993 int stat_opt = (opt->output_format &
994 (DIFF_FORMAT_NUMSTAT|DIFF_FORMAT_DIFFSTAT));
995 if (i == 0 && stat_opt)
996 diffopts.output_format = stat_opt;
Junio C Hamano965f8032006-04-17 22:53:03 -0700997 else
998 diffopts.output_format = DIFF_FORMAT_NO_OUTPUT;
Junio C Hamano0fe7c1d2006-04-29 01:24:49 -0700999 diff_tree_sha1(parent[i], sha1, "", &diffopts);
Junio C Hamano5b236832006-02-09 14:35:19 -08001000 diffcore_std(&diffopts);
Junio C Hamanoaf3feef2006-01-24 01:22:04 -08001001 paths = intersect_paths(paths, i, num_parent);
Linus Torvaldseab144a2006-04-17 16:59:42 -07001002
Junio C Hamano3969cf72006-06-27 15:08:19 -07001003 if (show_log_first && i == 0) {
Adam Simpkins02865652008-04-29 01:32:59 -07001004 show_log(rev);
Junio C Hamano3969cf72006-06-27 15:08:19 -07001005 if (rev->verbose_header && opt->output_format)
1006 putchar(opt->line_termination);
1007 }
Junio C Hamanoaf3feef2006-01-24 01:22:04 -08001008 diff_flush(&diffopts);
1009 }
1010
1011 /* find out surviving paths */
1012 for (num_paths = 0, p = paths; p; p = p->next) {
1013 if (p->len)
1014 num_paths++;
1015 }
Junio C Hamanoe3c3a552006-02-05 22:25:00 -08001016 if (num_paths) {
Timo Hirvonenc6744342006-06-24 20:21:53 +03001017 if (opt->output_format & (DIFF_FORMAT_RAW |
1018 DIFF_FORMAT_NAME |
1019 DIFF_FORMAT_NAME_STATUS)) {
Junio C Hamano86ff1d22006-04-10 17:36:53 -07001020 for (p = paths; p; p = p->next) {
Timo Hirvonenc6744342006-06-24 20:21:53 +03001021 if (p->len)
1022 show_raw_diff(p, num_parent, rev);
Junio C Hamano86ff1d22006-04-10 17:36:53 -07001023 }
Junio C Hamano3969cf72006-06-27 15:08:19 -07001024 needsep = 1;
Junio C Hamano86ff1d22006-04-10 17:36:53 -07001025 }
Junio C Hamano74e2abe2006-10-12 03:01:00 -07001026 else if (opt->output_format &
1027 (DIFF_FORMAT_NUMSTAT|DIFF_FORMAT_DIFFSTAT))
Junio C Hamano3969cf72006-06-27 15:08:19 -07001028 needsep = 1;
Timo Hirvonenc6744342006-06-24 20:21:53 +03001029 if (opt->output_format & DIFF_FORMAT_PATCH) {
Junio C Hamano3969cf72006-06-27 15:08:19 -07001030 if (needsep)
1031 putchar(opt->line_termination);
Timo Hirvonenc6744342006-06-24 20:21:53 +03001032 for (p = paths; p; p = p->next) {
1033 if (p->len)
1034 show_patch_diff(p, num_parent, dense,
1035 rev);
1036 }
Junio C Hamanoaf3feef2006-01-24 01:22:04 -08001037 }
1038 }
1039
1040 /* Clean things up */
1041 while (paths) {
Junio C Hamanoea726d02006-01-28 00:03:38 -08001042 struct combine_diff_path *tmp = paths;
Junio C Hamanoaf3feef2006-01-24 01:22:04 -08001043 paths = paths->next;
1044 free(tmp);
1045 }
Junio C Hamanoaf3feef2006-01-24 01:22:04 -08001046}
Junio C Hamano0fe7c1d2006-04-29 01:24:49 -07001047
1048void diff_tree_combined_merge(const unsigned char *sha1,
1049 int dense, struct rev_info *rev)
1050{
1051 int num_parent;
1052 const unsigned char (*parent)[20];
1053 struct commit *commit = lookup_commit(sha1);
1054 struct commit_list *parents;
1055
1056 /* count parents */
1057 for (parents = commit->parents, num_parent = 0;
1058 parents;
1059 parents = parents->next, num_parent++)
1060 ; /* nothing */
1061
1062 parent = xmalloc(num_parent * sizeof(*parent));
1063 for (parents = commit->parents, num_parent = 0;
1064 parents;
1065 parents = parents->next, num_parent++)
Felipe Contreras4b25d092009-05-01 12:06:36 +03001066 hashcpy((unsigned char *)(parent + num_parent),
Shawn Pearcee7024962006-08-23 02:49:00 -04001067 parents->item->object.sha1);
Junio C Hamano0fe7c1d2006-04-29 01:24:49 -07001068 diff_tree_combined(sha1, parent, num_parent, dense, rev);
1069}