diffcore-rename: avoid processing duplicate destinations
[git] / diffcore-rename.c
1 /*
2  * Copyright (C) 2005 Junio C Hamano
3  */
4 #include "cache.h"
5 #include "diff.h"
6 #include "diffcore.h"
7 #include "hashmap.h"
8 #include "progress.h"
9
10 /* Table of rename/copy destinations */
11
12 static struct diff_rename_dst {
13         struct diff_filespec *two;
14         struct diff_filepair *pair;
15 } *rename_dst;
16 static int rename_dst_nr, rename_dst_alloc;
17
18 static int find_rename_dst(struct diff_filespec *two)
19 {
20         int first, last;
21
22         first = 0;
23         last = rename_dst_nr;
24         while (last > first) {
25                 int next = (last + first) >> 1;
26                 struct diff_rename_dst *dst = &(rename_dst[next]);
27                 int cmp = strcmp(two->path, dst->two->path);
28                 if (!cmp)
29                         return next;
30                 if (cmp < 0) {
31                         last = next;
32                         continue;
33                 }
34                 first = next+1;
35         }
36         return -first - 1;
37 }
38
39 static struct diff_rename_dst *locate_rename_dst(struct diff_filespec *two)
40 {
41         int ofs = find_rename_dst(two);
42         return ofs < 0 ? NULL : &rename_dst[ofs];
43 }
44
45 /*
46  * Returns 0 on success, -1 if we found a duplicate.
47  */
48 static int add_rename_dst(struct diff_filespec *two)
49 {
50         int first = find_rename_dst(two);
51
52         if (first >= 0)
53                 return -1;
54         first = -first - 1;
55
56         /* insert to make it at "first" */
57         ALLOC_GROW(rename_dst, rename_dst_nr + 1, rename_dst_alloc);
58         rename_dst_nr++;
59         if (first < rename_dst_nr)
60                 memmove(rename_dst + first + 1, rename_dst + first,
61                         (rename_dst_nr - first - 1) * sizeof(*rename_dst));
62         rename_dst[first].two = alloc_filespec(two->path);
63         fill_filespec(rename_dst[first].two, two->sha1, two->sha1_valid, two->mode);
64         rename_dst[first].pair = NULL;
65         return 0;
66 }
67
68 /* Table of rename/copy src files */
69 static struct diff_rename_src {
70         struct diff_filepair *p;
71         unsigned short score; /* to remember the break score */
72 } *rename_src;
73 static int rename_src_nr, rename_src_alloc;
74
75 static struct diff_rename_src *register_rename_src(struct diff_filepair *p)
76 {
77         int first, last;
78         struct diff_filespec *one = p->one;
79         unsigned short score = p->score;
80
81         first = 0;
82         last = rename_src_nr;
83         while (last > first) {
84                 int next = (last + first) >> 1;
85                 struct diff_rename_src *src = &(rename_src[next]);
86                 int cmp = strcmp(one->path, src->p->one->path);
87                 if (!cmp)
88                         return src;
89                 if (cmp < 0) {
90                         last = next;
91                         continue;
92                 }
93                 first = next+1;
94         }
95
96         /* insert to make it at "first" */
97         ALLOC_GROW(rename_src, rename_src_nr + 1, rename_src_alloc);
98         rename_src_nr++;
99         if (first < rename_src_nr)
100                 memmove(rename_src + first + 1, rename_src + first,
101                         (rename_src_nr - first - 1) * sizeof(*rename_src));
102         rename_src[first].p = p;
103         rename_src[first].score = score;
104         return &(rename_src[first]);
105 }
106
107 static int basename_same(struct diff_filespec *src, struct diff_filespec *dst)
108 {
109         int src_len = strlen(src->path), dst_len = strlen(dst->path);
110         while (src_len && dst_len) {
111                 char c1 = src->path[--src_len];
112                 char c2 = dst->path[--dst_len];
113                 if (c1 != c2)
114                         return 0;
115                 if (c1 == '/')
116                         return 1;
117         }
118         return (!src_len || src->path[src_len - 1] == '/') &&
119                 (!dst_len || dst->path[dst_len - 1] == '/');
120 }
121
122 struct diff_score {
123         int src; /* index in rename_src */
124         int dst; /* index in rename_dst */
125         unsigned short score;
126         short name_score;
127 };
128
129 static int estimate_similarity(struct diff_filespec *src,
130                                struct diff_filespec *dst,
131                                int minimum_score)
132 {
133         /* src points at a file that existed in the original tree (or
134          * optionally a file in the destination tree) and dst points
135          * at a newly created file.  They may be quite similar, in which
136          * case we want to say src is renamed to dst or src is copied into
137          * dst, and then some edit has been applied to dst.
138          *
139          * Compare them and return how similar they are, representing
140          * the score as an integer between 0 and MAX_SCORE.
141          *
142          * When there is an exact match, it is considered a better
143          * match than anything else; the destination does not even
144          * call into this function in that case.
145          */
146         unsigned long max_size, delta_size, base_size, src_copied, literal_added;
147         unsigned long delta_limit;
148         int score;
149
150         /* We deal only with regular files.  Symlink renames are handled
151          * only when they are exact matches --- in other words, no edits
152          * after renaming.
153          */
154         if (!S_ISREG(src->mode) || !S_ISREG(dst->mode))
155                 return 0;
156
157         /*
158          * Need to check that source and destination sizes are
159          * filled in before comparing them.
160          *
161          * If we already have "cnt_data" filled in, we know it's
162          * all good (avoid checking the size for zero, as that
163          * is a possible size - we really should have a flag to
164          * say whether the size is valid or not!)
165          */
166         if (!src->cnt_data && diff_populate_filespec(src, 1))
167                 return 0;
168         if (!dst->cnt_data && diff_populate_filespec(dst, 1))
169                 return 0;
170
171         max_size = ((src->size > dst->size) ? src->size : dst->size);
172         base_size = ((src->size < dst->size) ? src->size : dst->size);
173         delta_size = max_size - base_size;
174
175         /* We would not consider edits that change the file size so
176          * drastically.  delta_size must be smaller than
177          * (MAX_SCORE-minimum_score)/MAX_SCORE * min(src->size, dst->size).
178          *
179          * Note that base_size == 0 case is handled here already
180          * and the final score computation below would not have a
181          * divide-by-zero issue.
182          */
183         if (max_size * (MAX_SCORE-minimum_score) < delta_size * MAX_SCORE)
184                 return 0;
185
186         if (!src->cnt_data && diff_populate_filespec(src, 0))
187                 return 0;
188         if (!dst->cnt_data && diff_populate_filespec(dst, 0))
189                 return 0;
190
191         delta_limit = (unsigned long)
192                 (base_size * (MAX_SCORE-minimum_score) / MAX_SCORE);
193         if (diffcore_count_changes(src, dst,
194                                    &src->cnt_data, &dst->cnt_data,
195                                    delta_limit,
196                                    &src_copied, &literal_added))
197                 return 0;
198
199         /* How similar are they?
200          * what percentage of material in dst are from source?
201          */
202         if (!dst->size)
203                 score = 0; /* should not happen */
204         else
205                 score = (int)(src_copied * MAX_SCORE / max_size);
206         return score;
207 }
208
209 static void record_rename_pair(int dst_index, int src_index, int score)
210 {
211         struct diff_filespec *src, *dst;
212         struct diff_filepair *dp;
213
214         if (rename_dst[dst_index].pair)
215                 die("internal error: dst already matched.");
216
217         src = rename_src[src_index].p->one;
218         src->rename_used++;
219         src->count++;
220
221         dst = rename_dst[dst_index].two;
222         dst->count++;
223
224         dp = diff_queue(NULL, src, dst);
225         dp->renamed_pair = 1;
226         if (!strcmp(src->path, dst->path))
227                 dp->score = rename_src[src_index].score;
228         else
229                 dp->score = score;
230         rename_dst[dst_index].pair = dp;
231 }
232
233 /*
234  * We sort the rename similarity matrix with the score, in descending
235  * order (the most similar first).
236  */
237 static int score_compare(const void *a_, const void *b_)
238 {
239         const struct diff_score *a = a_, *b = b_;
240
241         /* sink the unused ones to the bottom */
242         if (a->dst < 0)
243                 return (0 <= b->dst);
244         else if (b->dst < 0)
245                 return -1;
246
247         if (a->score == b->score)
248                 return b->name_score - a->name_score;
249
250         return b->score - a->score;
251 }
252
253 struct file_similarity {
254         struct hashmap_entry entry;
255         int index;
256         struct diff_filespec *filespec;
257 };
258
259 static unsigned int hash_filespec(struct diff_filespec *filespec)
260 {
261         unsigned int hash;
262         if (!filespec->sha1_valid) {
263                 if (diff_populate_filespec(filespec, 0))
264                         return 0;
265                 hash_sha1_file(filespec->data, filespec->size, "blob", filespec->sha1);
266         }
267         memcpy(&hash, filespec->sha1, sizeof(hash));
268         return hash;
269 }
270
271 static int find_identical_files(struct hashmap *srcs,
272                                 int dst_index,
273                                 struct diff_options *options)
274 {
275         int renames = 0;
276
277         struct diff_filespec *target = rename_dst[dst_index].two;
278         struct file_similarity *p, *best, dst;
279         int i = 100, best_score = -1;
280
281         /*
282          * Find the best source match for specified destination.
283          */
284         best = NULL;
285         hashmap_entry_init(&dst, hash_filespec(target));
286         for (p = hashmap_get(srcs, &dst, NULL); p; p = hashmap_get_next(srcs, p)) {
287                 int score;
288                 struct diff_filespec *source = p->filespec;
289
290                 /* False hash collision? */
291                 if (hashcmp(source->sha1, target->sha1))
292                         continue;
293                 /* Non-regular files? If so, the modes must match! */
294                 if (!S_ISREG(source->mode) || !S_ISREG(target->mode)) {
295                         if (source->mode != target->mode)
296                                 continue;
297                 }
298                 /* Give higher scores to sources that haven't been used already */
299                 score = !source->rename_used;
300                 if (source->rename_used && options->detect_rename != DIFF_DETECT_COPY)
301                         continue;
302                 score += basename_same(source, target);
303                 if (score > best_score) {
304                         best = p;
305                         best_score = score;
306                         if (score == 2)
307                                 break;
308                 }
309
310                 /* Too many identical alternatives? Pick one */
311                 if (!--i)
312                         break;
313         }
314         if (best) {
315                 record_rename_pair(dst_index, best->index, MAX_SCORE);
316                 renames++;
317         }
318         return renames;
319 }
320
321 static void insert_file_table(struct hashmap *table, int index, struct diff_filespec *filespec)
322 {
323         struct file_similarity *entry = xmalloc(sizeof(*entry));
324
325         entry->index = index;
326         entry->filespec = filespec;
327
328         hashmap_entry_init(entry, hash_filespec(filespec));
329         hashmap_add(table, entry);
330 }
331
332 /*
333  * Find exact renames first.
334  *
335  * The first round matches up the up-to-date entries,
336  * and then during the second round we try to match
337  * cache-dirty entries as well.
338  */
339 static int find_exact_renames(struct diff_options *options)
340 {
341         int i, renames = 0;
342         struct hashmap file_table;
343
344         /* Add all sources to the hash table */
345         hashmap_init(&file_table, NULL, rename_src_nr);
346         for (i = 0; i < rename_src_nr; i++)
347                 insert_file_table(&file_table, i, rename_src[i].p->one);
348
349         /* Walk the destinations and find best source match */
350         for (i = 0; i < rename_dst_nr; i++)
351                 renames += find_identical_files(&file_table, i, options);
352
353         /* Free the hash data structure and entries */
354         hashmap_free(&file_table, 1);
355
356         return renames;
357 }
358
359 #define NUM_CANDIDATE_PER_DST 4
360 static void record_if_better(struct diff_score m[], struct diff_score *o)
361 {
362         int i, worst;
363
364         /* find the worst one */
365         worst = 0;
366         for (i = 1; i < NUM_CANDIDATE_PER_DST; i++)
367                 if (score_compare(&m[i], &m[worst]) > 0)
368                         worst = i;
369
370         /* is it better than the worst one? */
371         if (score_compare(&m[worst], o) > 0)
372                 m[worst] = *o;
373 }
374
375 /*
376  * Returns:
377  * 0 if we are under the limit;
378  * 1 if we need to disable inexact rename detection;
379  * 2 if we would be under the limit if we were given -C instead of -C -C.
380  */
381 static int too_many_rename_candidates(int num_create,
382                                       struct diff_options *options)
383 {
384         int rename_limit = options->rename_limit;
385         int num_src = rename_src_nr;
386         int i;
387
388         options->needed_rename_limit = 0;
389
390         /*
391          * This basically does a test for the rename matrix not
392          * growing larger than a "rename_limit" square matrix, ie:
393          *
394          *    num_create * num_src > rename_limit * rename_limit
395          *
396          * but handles the potential overflow case specially (and we
397          * assume at least 32-bit integers)
398          */
399         if (rename_limit <= 0 || rename_limit > 32767)
400                 rename_limit = 32767;
401         if ((num_create <= rename_limit || num_src <= rename_limit) &&
402             (num_create * num_src <= rename_limit * rename_limit))
403                 return 0;
404
405         options->needed_rename_limit =
406                 num_src > num_create ? num_src : num_create;
407
408         /* Are we running under -C -C? */
409         if (!DIFF_OPT_TST(options, FIND_COPIES_HARDER))
410                 return 1;
411
412         /* Would we bust the limit if we were running under -C? */
413         for (num_src = i = 0; i < rename_src_nr; i++) {
414                 if (diff_unmodified_pair(rename_src[i].p))
415                         continue;
416                 num_src++;
417         }
418         if ((num_create <= rename_limit || num_src <= rename_limit) &&
419             (num_create * num_src <= rename_limit * rename_limit))
420                 return 2;
421         return 1;
422 }
423
424 static int find_renames(struct diff_score *mx, int dst_cnt, int minimum_score, int copies)
425 {
426         int count = 0, i;
427
428         for (i = 0; i < dst_cnt * NUM_CANDIDATE_PER_DST; i++) {
429                 struct diff_rename_dst *dst;
430
431                 if ((mx[i].dst < 0) ||
432                     (mx[i].score < minimum_score))
433                         break; /* there is no more usable pair. */
434                 dst = &rename_dst[mx[i].dst];
435                 if (dst->pair)
436                         continue; /* already done, either exact or fuzzy. */
437                 if (!copies && rename_src[mx[i].src].p->one->rename_used)
438                         continue;
439                 record_rename_pair(mx[i].dst, mx[i].src, mx[i].score);
440                 count++;
441         }
442         return count;
443 }
444
445 void diffcore_rename(struct diff_options *options)
446 {
447         int detect_rename = options->detect_rename;
448         int minimum_score = options->rename_score;
449         struct diff_queue_struct *q = &diff_queued_diff;
450         struct diff_queue_struct outq;
451         struct diff_score *mx;
452         int i, j, rename_count, skip_unmodified = 0;
453         int num_create, dst_cnt;
454         struct progress *progress = NULL;
455
456         if (!minimum_score)
457                 minimum_score = DEFAULT_RENAME_SCORE;
458
459         for (i = 0; i < q->nr; i++) {
460                 struct diff_filepair *p = q->queue[i];
461                 if (!DIFF_FILE_VALID(p->one)) {
462                         if (!DIFF_FILE_VALID(p->two))
463                                 continue; /* unmerged */
464                         else if (options->single_follow &&
465                                  strcmp(options->single_follow, p->two->path))
466                                 continue; /* not interested */
467                         else if (!DIFF_OPT_TST(options, RENAME_EMPTY) &&
468                                  is_empty_blob_sha1(p->two->sha1))
469                                 continue;
470                         else if (add_rename_dst(p->two) < 0) {
471                                 warning("skipping rename detection, detected"
472                                         " duplicate destination '%s'",
473                                         p->two->path);
474                                 goto cleanup;
475                         }
476                 }
477                 else if (!DIFF_OPT_TST(options, RENAME_EMPTY) &&
478                          is_empty_blob_sha1(p->one->sha1))
479                         continue;
480                 else if (!DIFF_PAIR_UNMERGED(p) && !DIFF_FILE_VALID(p->two)) {
481                         /*
482                          * If the source is a broken "delete", and
483                          * they did not really want to get broken,
484                          * that means the source actually stays.
485                          * So we increment the "rename_used" score
486                          * by one, to indicate ourselves as a user
487                          */
488                         if (p->broken_pair && !p->score)
489                                 p->one->rename_used++;
490                         register_rename_src(p);
491                 }
492                 else if (detect_rename == DIFF_DETECT_COPY) {
493                         /*
494                          * Increment the "rename_used" score by
495                          * one, to indicate ourselves as a user.
496                          */
497                         p->one->rename_used++;
498                         register_rename_src(p);
499                 }
500         }
501         if (rename_dst_nr == 0 || rename_src_nr == 0)
502                 goto cleanup; /* nothing to do */
503
504         /*
505          * We really want to cull the candidates list early
506          * with cheap tests in order to avoid doing deltas.
507          */
508         rename_count = find_exact_renames(options);
509
510         /* Did we only want exact renames? */
511         if (minimum_score == MAX_SCORE)
512                 goto cleanup;
513
514         /*
515          * Calculate how many renames are left (but all the source
516          * files still remain as options for rename/copies!)
517          */
518         num_create = (rename_dst_nr - rename_count);
519
520         /* All done? */
521         if (!num_create)
522                 goto cleanup;
523
524         switch (too_many_rename_candidates(num_create, options)) {
525         case 1:
526                 goto cleanup;
527         case 2:
528                 options->degraded_cc_to_c = 1;
529                 skip_unmodified = 1;
530                 break;
531         default:
532                 break;
533         }
534
535         if (options->show_rename_progress) {
536                 progress = start_progress_delay(
537                                 _("Performing inexact rename detection"),
538                                 rename_dst_nr * rename_src_nr, 50, 1);
539         }
540
541         mx = xcalloc(num_create * NUM_CANDIDATE_PER_DST, sizeof(*mx));
542         for (dst_cnt = i = 0; i < rename_dst_nr; i++) {
543                 struct diff_filespec *two = rename_dst[i].two;
544                 struct diff_score *m;
545
546                 if (rename_dst[i].pair)
547                         continue; /* dealt with exact match already. */
548
549                 m = &mx[dst_cnt * NUM_CANDIDATE_PER_DST];
550                 for (j = 0; j < NUM_CANDIDATE_PER_DST; j++)
551                         m[j].dst = -1;
552
553                 for (j = 0; j < rename_src_nr; j++) {
554                         struct diff_filespec *one = rename_src[j].p->one;
555                         struct diff_score this_src;
556
557                         if (skip_unmodified &&
558                             diff_unmodified_pair(rename_src[j].p))
559                                 continue;
560
561                         this_src.score = estimate_similarity(one, two,
562                                                              minimum_score);
563                         this_src.name_score = basename_same(one, two);
564                         this_src.dst = i;
565                         this_src.src = j;
566                         record_if_better(m, &this_src);
567                         /*
568                          * Once we run estimate_similarity,
569                          * We do not need the text anymore.
570                          */
571                         diff_free_filespec_blob(one);
572                         diff_free_filespec_blob(two);
573                 }
574                 dst_cnt++;
575                 display_progress(progress, (i+1)*rename_src_nr);
576         }
577         stop_progress(&progress);
578
579         /* cost matrix sorted by most to least similar pair */
580         qsort(mx, dst_cnt * NUM_CANDIDATE_PER_DST, sizeof(*mx), score_compare);
581
582         rename_count += find_renames(mx, dst_cnt, minimum_score, 0);
583         if (detect_rename == DIFF_DETECT_COPY)
584                 rename_count += find_renames(mx, dst_cnt, minimum_score, 1);
585         free(mx);
586
587  cleanup:
588         /* At this point, we have found some renames and copies and they
589          * are recorded in rename_dst.  The original list is still in *q.
590          */
591         DIFF_QUEUE_CLEAR(&outq);
592         for (i = 0; i < q->nr; i++) {
593                 struct diff_filepair *p = q->queue[i];
594                 struct diff_filepair *pair_to_free = NULL;
595
596                 if (DIFF_PAIR_UNMERGED(p)) {
597                         diff_q(&outq, p);
598                 }
599                 else if (!DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
600                         /*
601                          * Creation
602                          *
603                          * We would output this create record if it has
604                          * not been turned into a rename/copy already.
605                          */
606                         struct diff_rename_dst *dst = locate_rename_dst(p->two);
607                         if (dst && dst->pair) {
608                                 diff_q(&outq, dst->pair);
609                                 pair_to_free = p;
610                         }
611                         else
612                                 /* no matching rename/copy source, so
613                                  * record this as a creation.
614                                  */
615                                 diff_q(&outq, p);
616                 }
617                 else if (DIFF_FILE_VALID(p->one) && !DIFF_FILE_VALID(p->two)) {
618                         /*
619                          * Deletion
620                          *
621                          * We would output this delete record if:
622                          *
623                          * (1) this is a broken delete and the counterpart
624                          *     broken create remains in the output; or
625                          * (2) this is not a broken delete, and rename_dst
626                          *     does not have a rename/copy to move p->one->path
627                          *     out of existence.
628                          *
629                          * Otherwise, the counterpart broken create
630                          * has been turned into a rename-edit; or
631                          * delete did not have a matching create to
632                          * begin with.
633                          */
634                         if (DIFF_PAIR_BROKEN(p)) {
635                                 /* broken delete */
636                                 struct diff_rename_dst *dst = locate_rename_dst(p->one);
637                                 if (dst && dst->pair)
638                                         /* counterpart is now rename/copy */
639                                         pair_to_free = p;
640                         }
641                         else {
642                                 if (p->one->rename_used)
643                                         /* this path remains */
644                                         pair_to_free = p;
645                         }
646
647                         if (pair_to_free)
648                                 ;
649                         else
650                                 diff_q(&outq, p);
651                 }
652                 else if (!diff_unmodified_pair(p))
653                         /* all the usual ones need to be kept */
654                         diff_q(&outq, p);
655                 else
656                         /* no need to keep unmodified pairs */
657                         pair_to_free = p;
658
659                 if (pair_to_free)
660                         diff_free_filepair(pair_to_free);
661         }
662         diff_debug_queue("done copying original", &outq);
663
664         free(q->queue);
665         *q = outq;
666         diff_debug_queue("done collapsing", q);
667
668         for (i = 0; i < rename_dst_nr; i++)
669                 free_filespec(rename_dst[i].two);
670
671         free(rename_dst);
672         rename_dst = NULL;
673         rename_dst_nr = rename_dst_alloc = 0;
674         free(rename_src);
675         rename_src = NULL;
676         rename_src_nr = rename_src_alloc = 0;
677         return;
678 }