]> git.ipfire.org Git - thirdparty/git.git/blame - tree-diff.c
The sixth batch
[thirdparty/git.git] / tree-diff.c
CommitLineData
ac1b3d12
LT
1/*
2 * Helper functions for tree diff generation
3 */
4#include "cache.h"
5#include "diff.h"
750f7b66 6#include "diffcore.h"
8e440259 7#include "tree.h"
ac1b3d12 8
72441af7
KS
9/*
10 * internal mode marker, saying a tree entry != entry of tp[imin]
11 * (see ll_diff_tree_paths for what it means there)
12 *
13 * we will update/use/emit entry for diff only with it unset.
14 */
15#define S_IFXMIN_NEQ S_DIFFTREE_IFXMIN_NEQ
16
b8ba412b
JK
17#define FAST_ARRAY_ALLOC(x, nr) do { \
18 if ((nr) <= 2) \
19 (x) = xalloca((nr) * sizeof(*(x))); \
20 else \
21 ALLOC_ARRAY((x), nr); \
22} while(0)
23#define FAST_ARRAY_FREE(x, nr) do { \
24 if ((nr) > 2) \
25 free((x)); \
26} while(0)
b9081a65 27
72441af7 28static struct combine_diff_path *ll_diff_tree_paths(
fda94b41
BW
29 struct combine_diff_path *p, const struct object_id *oid,
30 const struct object_id **parents_oid, int nparent,
72441af7 31 struct strbuf *base, struct diff_options *opt);
fda94b41
BW
32static int ll_diff_tree_oid(const struct object_id *old_oid,
33 const struct object_id *new_oid,
34 struct strbuf *base, struct diff_options *opt);
b9081a65 35
9bc06196
KS
36/*
37 * Compare two tree entries, taking into account only path/S_ISDIR(mode),
38 * but not their sha1's.
39 *
40 * NOTE files and directories *always* compare differently, even when having
41 * the same name - thanks to base_name_compare().
6ca844e9
KS
42 *
43 * NOTE empty (=invalid) descriptor(s) take part in comparison as +infty,
44 * so that they sort *after* valid tree entries.
45 *
46 * Due to this convention, if trees are scanned in sorted order, all
47 * non-empty descriptors will be processed first.
9bc06196
KS
48 */
49static int tree_entry_pathcmp(struct tree_desc *t1, struct tree_desc *t2)
ac1b3d12 50{
1a27a154
KS
51 struct name_entry *e1, *e2;
52 int cmp;
ac1b3d12 53
6ca844e9
KS
54 /* empty descriptors sort after valid tree entries */
55 if (!t1->size)
56 return t2->size ? 1 : 0;
57 else if (!t2->size)
58 return -1;
59
1a27a154
KS
60 e1 = &t1->entry;
61 e2 = &t2->entry;
62 cmp = base_name_compare(e1->path, tree_entry_len(e1), e1->mode,
63 e2->path, tree_entry_len(e2), e2->mode);
903bba68 64 return cmp;
d00e980c
KS
65}
66
67
72441af7
KS
68/*
69 * convert path -> opt->diff_*() callbacks
70 *
71 * emits diff to first parent only, and tells diff tree-walker that we are done
72 * with p and it can be freed.
73 */
74static int emit_diff_first_parent_only(struct diff_options *opt, struct combine_diff_path *p)
d00e980c 75{
72441af7
KS
76 struct combine_diff_parent *p0 = &p->parent[0];
77 if (p->mode && p0->mode) {
94a0097a 78 opt->change(opt, p0->mode, p->mode, &p0->oid, &p->oid,
72441af7 79 1, 1, p->path, 0, 0);
d00e980c
KS
80 }
81 else {
c26022ea 82 const struct object_id *oid;
d00e980c
KS
83 unsigned int mode;
84 int addremove;
85
72441af7 86 if (p->mode) {
d00e980c 87 addremove = '+';
c26022ea 88 oid = &p->oid;
72441af7 89 mode = p->mode;
d00e980c
KS
90 } else {
91 addremove = '-';
c26022ea 92 oid = &p0->oid;
72441af7 93 mode = p0->mode;
fd55a19e 94 }
d00e980c 95
c26022ea 96 opt->add_remove(opt, addremove, mode, oid, 1, p->path, 0);
ac1b3d12 97 }
72441af7
KS
98
99 return 0; /* we are done with p */
ac1b3d12
LT
100}
101
d00e980c 102
72441af7
KS
103/*
104 * Make a new combine_diff_path from path/mode/sha1
105 * and append it to paths list tail.
106 *
107 * Memory for created elements could be reused:
108 *
109 * - if last->next == NULL, the memory is allocated;
110 *
111 * - if last->next != NULL, it is assumed that p=last->next was returned
112 * earlier by this function, and p->next was *not* modified.
113 * The memory is then reused from p.
114 *
115 * so for clients,
116 *
117 * - if you do need to keep the element
118 *
119 * p = path_appendnew(p, ...);
120 * process(p);
121 * p->next = NULL;
122 *
123 * - if you don't need to keep the element after processing
124 *
125 * pprev = p;
126 * p = path_appendnew(p, ...);
127 * process(p);
128 * p = pprev;
129 * ; don't forget to free tail->next in the end
130 *
131 * p->parent[] remains uninitialized.
132 */
133static struct combine_diff_path *path_appendnew(struct combine_diff_path *last,
134 int nparent, const struct strbuf *base, const char *path, int pathlen,
0e72462f 135 unsigned mode, const struct object_id *oid)
72441af7
KS
136{
137 struct combine_diff_path *p;
5b442c4f
JK
138 size_t len = st_add(base->len, pathlen);
139 size_t alloclen = combine_diff_path_size(nparent, len);
72441af7
KS
140
141 /* if last->next is !NULL - it is a pre-allocated memory, we can reuse */
142 p = last->next;
143 if (p && (alloclen > (intptr_t)p->next)) {
6a83d902 144 FREE_AND_NULL(p);
72441af7
KS
145 }
146
147 if (!p) {
148 p = xmalloc(alloclen);
149
150 /*
151 * until we go to it next round, .next holds how many bytes we
152 * allocated (for faster realloc - we don't need copying old data).
153 */
154 p->next = (struct combine_diff_path *)(intptr_t)alloclen;
155 }
156
157 last->next = p;
158
159 p->path = (char *)&(p->parent[nparent]);
160 memcpy(p->path, base->buf, base->len);
161 memcpy(p->path + base->len, path, pathlen);
162 p->path[len] = 0;
163 p->mode = mode;
0e72462f 164 oidcpy(&p->oid, oid ? oid : &null_oid);
72441af7
KS
165
166 return p;
167}
168
169/*
170 * new path should be added to combine diff
d00e980c
KS
171 *
172 * 3 cases on how/when it should be called and behaves:
173 *
72441af7
KS
174 * t, !tp -> path added, all parents lack it
175 * !t, tp -> path removed from all parents
176 * t, tp -> path modified/added
177 * (M for tp[i]=tp[imin], A otherwise)
d00e980c 178 */
72441af7
KS
179static struct combine_diff_path *emit_path(struct combine_diff_path *p,
180 struct strbuf *base, struct diff_options *opt, int nparent,
181 struct tree_desc *t, struct tree_desc *tp,
182 int imin)
ac1b3d12 183{
5ec1e728 184 unsigned short mode;
ac1b3d12 185 const char *path;
fda94b41 186 const struct object_id *oid;
d00e980c 187 int pathlen;
48932677 188 int old_baselen = base->len;
72441af7 189 int i, isdir, recurse = 0, emitthis = 1;
d00e980c
KS
190
191 /* at least something has to be valid */
72441af7 192 assert(t || tp);
d00e980c 193
72441af7 194 if (t) {
d00e980c 195 /* path present in resulting tree */
fda94b41 196 oid = tree_entry_extract(t, &path, &mode);
72441af7 197 pathlen = tree_entry_len(&t->entry);
d00e980c
KS
198 isdir = S_ISDIR(mode);
199 } else {
200 /*
72441af7
KS
201 * a path was removed - take path from imin parent. Also take
202 * mode from that parent, to decide on recursion(1).
203 *
204 * 1) all modes for tp[i]=tp[imin] should be the same wrt
205 * S_ISDIR, thanks to base_name_compare().
d00e980c 206 */
72441af7
KS
207 tree_entry_extract(&tp[imin], &path, &mode);
208 pathlen = tree_entry_len(&tp[imin].entry);
d00e980c
KS
209
210 isdir = S_ISDIR(mode);
fda94b41 211 oid = NULL;
d00e980c
KS
212 mode = 0;
213 }
214
0d1e0e78 215 if (opt->flags.recursive && isdir) {
d00e980c 216 recurse = 1;
0d1e0e78 217 emitthis = opt->flags.tree_in_recursive;
d00e980c 218 }
ac1b3d12 219
72441af7
KS
220 if (emitthis) {
221 int keep;
222 struct combine_diff_path *pprev = p;
0e72462f 223 p = path_appendnew(p, nparent, base, path, pathlen, mode, oid);
72441af7
KS
224
225 for (i = 0; i < nparent; ++i) {
226 /*
227 * tp[i] is valid, if present and if tp[i]==tp[imin] -
228 * otherwise, we should ignore it.
229 */
230 int tpi_valid = tp && !(tp[i].entry.mode & S_IFXMIN_NEQ);
231
fda94b41 232 const struct object_id *oid_i;
72441af7
KS
233 unsigned mode_i;
234
235 p->parent[i].status =
236 !t ? DIFF_STATUS_DELETED :
237 tpi_valid ?
238 DIFF_STATUS_MODIFIED :
239 DIFF_STATUS_ADDED;
240
241 if (tpi_valid) {
ea82b2a0 242 oid_i = &tp[i].entry.oid;
72441af7
KS
243 mode_i = tp[i].entry.mode;
244 }
245 else {
fda94b41 246 oid_i = &null_oid;
72441af7
KS
247 mode_i = 0;
248 }
249
250 p->parent[i].mode = mode_i;
fda94b41 251 oidcpy(&p->parent[i].oid, oid_i);
72441af7 252 }
df533f34 253
72441af7
KS
254 keep = 1;
255 if (opt->pathchange)
256 keep = opt->pathchange(opt, p);
257
258 /*
259 * If a path was filtered or consumed - we don't need to add it
260 * to the list and can reuse its memory, leaving it as
261 * pre-allocated element on the tail.
262 *
263 * On the other hand, if path needs to be kept, we need to
264 * correct its .next to NULL, as it was pre-initialized to how
265 * much memory was allocated.
266 *
267 * see path_appendnew() for details.
268 */
269 if (!keep)
270 p = pprev;
271 else
272 p->next = NULL;
273 }
d00e980c
KS
274
275 if (recurse) {
fda94b41 276 const struct object_id **parents_oid;
72441af7 277
fda94b41 278 FAST_ARRAY_ALLOC(parents_oid, nparent);
72441af7
KS
279 for (i = 0; i < nparent; ++i) {
280 /* same rule as in emitthis */
281 int tpi_valid = tp && !(tp[i].entry.mode & S_IFXMIN_NEQ);
282
ea82b2a0 283 parents_oid[i] = tpi_valid ? &tp[i].entry.oid : NULL;
72441af7
KS
284 }
285
286 strbuf_add(base, path, pathlen);
48932677 287 strbuf_addch(base, '/');
fda94b41
BW
288 p = ll_diff_tree_paths(p, oid, parents_oid, nparent, base, opt);
289 FAST_ARRAY_FREE(parents_oid, nparent);
d00e980c 290 }
48932677
NTND
291
292 strbuf_setlen(base, old_baselen);
72441af7 293 return p;
ac1b3d12
LT
294}
295
48932677 296static void skip_uninteresting(struct tree_desc *t, struct strbuf *base,
e9066121 297 struct diff_options *opt)
5d865017 298{
e9066121
KS
299 enum interesting match;
300
5d865017 301 while (t->size) {
67022e02
NTND
302 match = tree_entry_interesting(opt->repo->index, &t->entry,
303 base, 0, &opt->pathspec);
e9066121
KS
304 if (match) {
305 if (match == all_entries_not_interesting)
97d0b74a
NTND
306 t->size = 0;
307 break;
5d865017 308 }
97d0b74a 309 update_tree_entry(t);
5d865017
LT
310 }
311}
312
72441af7
KS
313
314/*
fda94b41 315 * generate paths for combined diff D(sha1,parents_oid[])
72441af7
KS
316 *
317 * Resulting paths are appended to combine_diff_path linked list, and also, are
318 * emitted on the go via opt->pathchange() callback, so it is possible to
319 * process the result as batch or incrementally.
320 *
321 * The paths are generated scanning new tree and all parents trees
322 * simultaneously, similarly to what diff_tree() was doing for 2 trees.
323 * The theory behind such scan is as follows:
324 *
325 *
326 * D(T,P1...Pn) calculation scheme
327 * -------------------------------
328 *
329 * D(T,P1...Pn) = D(T,P1) ^ ... ^ D(T,Pn) (regarding resulting paths set)
330 *
331 * D(T,Pj) - diff between T..Pj
332 * D(T,P1...Pn) - combined diff from T to parents P1,...,Pn
333 *
334 *
335 * We start from all trees, which are sorted, and compare their entries in
336 * lock-step:
337 *
338 * T P1 Pn
339 * - - -
340 * |t| |p1| |pn|
341 * |-| |--| ... |--| imin = argmin(p1...pn)
342 * | | | | | |
343 * |-| |--| |--|
344 * |.| |. | |. |
345 * . . .
346 * . . .
347 *
348 * at any time there could be 3 cases:
349 *
350 * 1) t < p[imin];
351 * 2) t > p[imin];
352 * 3) t = p[imin].
353 *
354 * Schematic deduction of what every case means, and what to do, follows:
355 *
356 * 1) t < p[imin] -> ∀j t ∉ Pj -> "+t" ∈ D(T,Pj) -> D += "+t"; t↓
357 *
358 * 2) t > p[imin]
359 *
360 * 2.1) ∃j: pj > p[imin] -> "-p[imin]" ∉ D(T,Pj) -> D += ø; ∀ pi=p[imin] pi↓
361 * 2.2) ∀i pi = p[imin] -> pi ∉ T -> "-pi" ∈ D(T,Pi) -> D += "-p[imin]"; ∀i pi↓
362 *
363 * 3) t = p[imin]
364 *
365 * 3.1) ∃j: pj > p[imin] -> "+t" ∈ D(T,Pj) -> only pi=p[imin] remains to investigate
366 * 3.2) pi = p[imin] -> investigate δ(t,pi)
367 * |
368 * |
369 * v
370 *
371 * 3.1+3.2) looking at δ(t,pi) ∀i: pi=p[imin] - if all != ø ->
372 *
373 * ⎧δ(t,pi) - if pi=p[imin]
374 * -> D += ⎨
375 * ⎩"+t" - if pi>p[imin]
376 *
377 *
378 * in any case t↓ ∀ pi=p[imin] pi↓
379 *
380 *
381 * ~~~~~~~~
382 *
383 * NOTE
384 *
385 * Usual diff D(A,B) is by definition the same as combined diff D(A,[B]),
386 * so this diff paths generator can, and is used, for plain diffs
387 * generation too.
388 *
389 * Please keep attention to the common D(A,[B]) case when working on the
390 * code, in order not to slow it down.
391 *
392 * NOTE
393 * nparent must be > 0.
394 */
395
396
397/* ∀ pi=p[imin] pi↓ */
398static inline void update_tp_entries(struct tree_desc *tp, int nparent)
ac1b3d12 399{
72441af7
KS
400 int i;
401 for (i = 0; i < nparent; ++i)
402 if (!(tp[i].entry.mode & S_IFXMIN_NEQ))
403 update_tree_entry(&tp[i]);
404}
304de2d2 405
72441af7 406static struct combine_diff_path *ll_diff_tree_paths(
fda94b41
BW
407 struct combine_diff_path *p, const struct object_id *oid,
408 const struct object_id **parents_oid, int nparent,
72441af7
KS
409 struct strbuf *base, struct diff_options *opt)
410{
411 struct tree_desc t, *tp;
412 void *ttree, **tptree;
413 int i;
414
b8ba412b
JK
415 FAST_ARRAY_ALLOC(tp, nparent);
416 FAST_ARRAY_ALLOC(tptree, nparent);
72441af7
KS
417
418 /*
419 * load parents first, as they are probably already cached.
420 *
421 * ( log_tree_diff() parses commit->parent before calling here via
66f414f8 422 * diff_tree_oid(parent, commit) )
72441af7
KS
423 */
424 for (i = 0; i < nparent; ++i)
5e575807
NTND
425 tptree[i] = fill_tree_descriptor(opt->repo, &tp[i], parents_oid[i]);
426 ttree = fill_tree_descriptor(opt->repo, &t, oid);
52894e70 427
bc96cc87 428 /* Enable recursion indefinitely */
0d1e0e78 429 opt->pathspec.recursive = opt->flags.recursive;
bc96cc87 430
5d865017 431 for (;;) {
72441af7 432 int imin, cmp;
903bba68 433
28b9264d 434 if (diff_can_quit_early(opt))
822cac01 435 break;
72441af7 436
e3696980
DS
437 if (opt->max_changes && opt->num_changes > opt->max_changes)
438 break;
439
66f13625 440 if (opt->pathspec.nr) {
72441af7
KS
441 skip_uninteresting(&t, base, opt);
442 for (i = 0; i < nparent; i++)
443 skip_uninteresting(&tp[i], base, opt);
444 }
445
446 /* comparing is finished when all trees are done */
447 if (!t.size) {
448 int done = 1;
449 for (i = 0; i < nparent; ++i)
450 if (tp[i].size) {
451 done = 0;
452 break;
453 }
454 if (done)
455 break;
456 }
457
458 /*
459 * lookup imin = argmin(p1...pn),
460 * mark entries whether they =p[imin] along the way
461 */
462 imin = 0;
463 tp[0].entry.mode &= ~S_IFXMIN_NEQ;
464
465 for (i = 1; i < nparent; ++i) {
466 cmp = tree_entry_pathcmp(&tp[i], &tp[imin]);
467 if (cmp < 0) {
468 imin = i;
469 tp[i].entry.mode &= ~S_IFXMIN_NEQ;
470 }
471 else if (cmp == 0) {
472 tp[i].entry.mode &= ~S_IFXMIN_NEQ;
473 }
474 else {
475 tp[i].entry.mode |= S_IFXMIN_NEQ;
476 }
ac1b3d12 477 }
5dfb2bbd 478
72441af7
KS
479 /* fixup markings for entries before imin */
480 for (i = 0; i < imin; ++i)
481 tp[i].entry.mode |= S_IFXMIN_NEQ; /* pi > p[imin] */
5dfb2bbd 482
903bba68 483
72441af7
KS
484
485 /* compare t vs p[imin] */
486 cmp = tree_entry_pathcmp(&t, &tp[imin]);
487
488 /* t = p[imin] */
489 if (cmp == 0) {
490 /* are either pi > p[imin] or diff(t,pi) != ø ? */
0d1e0e78 491 if (!opt->flags.find_copies_harder) {
72441af7
KS
492 for (i = 0; i < nparent; ++i) {
493 /* p[i] > p[imin] */
494 if (tp[i].entry.mode & S_IFXMIN_NEQ)
495 continue;
496
497 /* diff(t,pi) != ø */
ea82b2a0 498 if (!oideq(&t.entry.oid, &tp[i].entry.oid) ||
72441af7
KS
499 (t.entry.mode != tp[i].entry.mode))
500 continue;
501
502 goto skip_emit_t_tp;
503 }
504 }
505
506 /* D += {δ(t,pi) if pi=p[imin]; "+a" if pi > p[imin]} */
507 p = emit_path(p, base, opt, nparent,
508 &t, tp, imin);
509
510 skip_emit_t_tp:
511 /* t↓, ∀ pi=p[imin] pi↓ */
512 update_tree_entry(&t);
513 update_tp_entries(tp, nparent);
5dfb2bbd
KS
514 }
515
72441af7 516 /* t < p[imin] */
5dfb2bbd 517 else if (cmp < 0) {
72441af7
KS
518 /* D += "+t" */
519 p = emit_path(p, base, opt, nparent,
520 &t, /*tp=*/NULL, -1);
521
522 /* t↓ */
523 update_tree_entry(&t);
e3696980 524 opt->num_changes++;
5dfb2bbd
KS
525 }
526
72441af7 527 /* t > p[imin] */
5dfb2bbd 528 else {
72441af7 529 /* ∀i pi=p[imin] -> D += "-p[imin]" */
0d1e0e78 530 if (!opt->flags.find_copies_harder) {
72441af7
KS
531 for (i = 0; i < nparent; ++i)
532 if (tp[i].entry.mode & S_IFXMIN_NEQ)
533 goto skip_emit_tp;
534 }
535
536 p = emit_path(p, base, opt, nparent,
537 /*t=*/NULL, tp, imin);
538
539 skip_emit_tp:
540 /* ∀ pi=p[imin] pi↓ */
541 update_tp_entries(tp, nparent);
e3696980 542 opt->num_changes++;
ac1b3d12 543 }
ac1b3d12 544 }
48932677 545
72441af7
KS
546 free(ttree);
547 for (i = nparent-1; i >= 0; i--)
548 free(tptree[i]);
b8ba412b
JK
549 FAST_ARRAY_FREE(tptree, nparent);
550 FAST_ARRAY_FREE(tp, nparent);
72441af7
KS
551
552 return p;
553}
554
555struct combine_diff_path *diff_tree_paths(
fda94b41
BW
556 struct combine_diff_path *p, const struct object_id *oid,
557 const struct object_id **parents_oid, int nparent,
72441af7
KS
558 struct strbuf *base, struct diff_options *opt)
559{
e3696980 560 opt->num_changes = 0;
fda94b41 561 p = ll_diff_tree_paths(p, oid, parents_oid, nparent, base, opt);
72441af7
KS
562
563 /*
564 * free pre-allocated last element, if any
565 * (see path_appendnew() for details about why)
566 */
ce528de0 567 FREE_AND_NULL(p->next);
72441af7
KS
568
569 return p;
ac1b3d12
LT
570}
571
750f7b66
LT
572/*
573 * Does it look like the resulting diff might be due to a rename?
574 * - single entry
575 * - not a valid previous file
576 */
577static inline int diff_might_be_rename(void)
578{
579 return diff_queued_diff.nr == 1 &&
580 !DIFF_FILE_VALID(diff_queued_diff.queue[0]->one);
581}
582
128be876
BW
583static void try_to_follow_renames(const struct object_id *old_oid,
584 const struct object_id *new_oid,
585 struct strbuf *base, struct diff_options *opt)
750f7b66
LT
586{
587 struct diff_options diff_opts;
9f38e1ef
LT
588 struct diff_queue_struct *q = &diff_queued_diff;
589 struct diff_filepair *choice;
750f7b66
LT
590 int i;
591
8f4f8f45
NTND
592 /*
593 * follow-rename code is very specific, we need exactly one
594 * path. Magic that matches more than one path is not
595 * supported.
596 */
5c6933d2 597 GUARD_PATHSPEC(&opt->pathspec, PATHSPEC_FROMTOP | PATHSPEC_LITERAL);
8f4f8f45
NTND
598#if 0
599 /*
600 * We should reject wildcards as well. Unfortunately we
601 * haven't got a reliable way to detect that 'foo\*bar' in
602 * fact has no wildcards. nowildcard_len is merely a hint for
603 * optimization. Let it slip for now until wildmatch is taught
604 * about dry-run mode and returns wildcard info.
605 */
606 if (opt->pathspec.has_wildcard)
607 die("BUG:%s:%d: wildcards are not supported",
608 __FILE__, __LINE__);
609#endif
610
9f38e1ef
LT
611 /* Remove the file creation entry from the diff queue, and remember it */
612 choice = q->queue[0];
613 q->nr = 0;
614
dcf42869 615 repo_diff_setup(opt->repo, &diff_opts);
0d1e0e78
BW
616 diff_opts.flags.recursive = 1;
617 diff_opts.flags.find_copies_harder = 1;
750f7b66 618 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
61588ccf 619 diff_opts.single_follow = opt->pathspec.items[0].match;
6dd4b66f 620 diff_opts.break_opt = opt->break_opt;
dd98d88b 621 diff_opts.rename_score = opt->rename_score;
28452655 622 diff_setup_done(&diff_opts);
fda94b41 623 ll_diff_tree_oid(old_oid, new_oid, base, &diff_opts);
750f7b66 624 diffcore_std(&diff_opts);
ed6e8038 625 clear_pathspec(&diff_opts.pathspec);
750f7b66 626
9f38e1ef 627 /* Go through the new set of filepairing, and see if we find a more interesting one */
44c48a90 628 opt->found_follow = 0;
9f38e1ef
LT
629 for (i = 0; i < q->nr; i++) {
630 struct diff_filepair *p = q->queue[i];
750f7b66
LT
631
632 /*
633 * Found a source? Not only do we use that for the new
9f38e1ef 634 * diff_queued_diff, we will also use that as the path in
750f7b66
LT
635 * the future!
636 */
66f13625 637 if ((p->status == 'R' || p->status == 'C') &&
61588ccf 638 !strcmp(p->two->path, opt->pathspec.items[0].match)) {
9a087274
NTND
639 const char *path[2];
640
9f38e1ef
LT
641 /* Switch the file-pairs around */
642 q->queue[i] = choice;
643 choice = p;
644
645 /* Update the path we use from now on.. */
9a087274
NTND
646 path[0] = p->one->path;
647 path[1] = NULL;
ed6e8038 648 clear_pathspec(&opt->pathspec);
4a2d5ae2
NTND
649 parse_pathspec(&opt->pathspec,
650 PATHSPEC_ALL_MAGIC & ~PATHSPEC_LITERAL,
651 PATHSPEC_LITERAL_PATH, "", path);
44c48a90
JH
652
653 /*
654 * The caller expects us to return a set of vanilla
655 * filepairs to let a later call to diffcore_std()
656 * it makes to sort the renames out (among other
657 * things), but we already have found renames
658 * ourselves; signal diffcore_std() not to muck with
659 * rename information.
660 */
661 opt->found_follow = 1;
750f7b66
LT
662 break;
663 }
664 }
665
666 /*
3ea3c215 667 * Then, discard all the non-relevant file pairs...
9f38e1ef
LT
668 */
669 for (i = 0; i < q->nr; i++) {
670 struct diff_filepair *p = q->queue[i];
671 diff_free_filepair(p);
672 }
673
674 /*
675 * .. and re-instate the one we want (which might be either the
676 * original one, or the rename/copy we found)
750f7b66 677 */
9f38e1ef
LT
678 q->queue[0] = choice;
679 q->nr = 1;
750f7b66
LT
680}
681
fda94b41
BW
682static int ll_diff_tree_oid(const struct object_id *old_oid,
683 const struct object_id *new_oid,
684 struct strbuf *base, struct diff_options *opt)
72441af7
KS
685{
686 struct combine_diff_path phead, *p;
687 pathchange_fn_t pathchange_old = opt->pathchange;
688
689 phead.next = NULL;
690 opt->pathchange = emit_diff_first_parent_only;
fda94b41 691 diff_tree_paths(&phead, new_oid, &old_oid, 1, base, opt);
72441af7
KS
692
693 for (p = phead.next; p;) {
694 struct combine_diff_path *pprev = p;
695 p = p->next;
696 free(pprev);
697 }
698
699 opt->pathchange = pathchange_old;
700 return 0;
701}
702
66f414f8
BW
703int diff_tree_oid(const struct object_id *old_oid,
704 const struct object_id *new_oid,
705 const char *base_str, struct diff_options *opt)
ac1b3d12 706{
12cd8174 707 struct strbuf base;
ac1b3d12
LT
708 int retval;
709
12cd8174
KS
710 strbuf_init(&base, PATH_MAX);
711 strbuf_addstr(&base, base_str);
712
fda94b41 713 retval = ll_diff_tree_oid(old_oid, new_oid, &base, opt);
0d1e0e78 714 if (!*base_str && opt->flags.follow_renames && diff_might_be_rename())
128be876 715 try_to_follow_renames(old_oid, new_oid, &base, opt);
12cd8174
KS
716
717 strbuf_release(&base);
52894e70 718
ac1b3d12
LT
719 return retval;
720}
721
7b8dea0c 722int diff_root_tree_oid(const struct object_id *new_oid, const char *base, struct diff_options *opt)
2b60356d 723{
66f414f8 724 return diff_tree_oid(NULL, new_oid, base, opt);
2b60356d 725}