diffcore-rename: split locate_rename_dst into two functions
[git.git] / diffcore-rename.c
blob0afe903de9d300f36f12242ef89ea0d7c46aecbf
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"
10 /* Table of rename/copy destinations */
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;
18 static int find_rename_dst(struct diff_filespec *two)
20 int first, last;
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;
34 first = next+1;
36 return -first - 1;
39 static struct diff_rename_dst *locate_rename_dst(struct diff_filespec *two)
41 int ofs = find_rename_dst(two);
42 return ofs < 0 ? NULL : &rename_dst[ofs];
46 * Returns 0 on success, -1 if we found a duplicate.
48 static int add_rename_dst(struct diff_filespec *two)
50 int first = find_rename_dst(two);
52 if (first >= 0)
53 return -1;
54 first = -first - 1;
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;
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;
75 static struct diff_rename_src *register_rename_src(struct diff_filepair *p)
77 int first, last;
78 struct diff_filespec *one = p->one;
79 unsigned short score = p->score;
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;
93 first = next+1;
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]);
107 static int basename_same(struct diff_filespec *src, struct diff_filespec *dst)
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;
118 return (!src_len || src->path[src_len - 1] == '/') &&
119 (!dst_len || dst->path[dst_len - 1] == '/');
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;
129 static int estimate_similarity(struct diff_filespec *src,
130 struct diff_filespec *dst,
131 int minimum_score)
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.
139 * Compare them and return how similar they are, representing
140 * the score as an integer between 0 and MAX_SCORE.
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.
146 unsigned long max_size, delta_size, base_size, src_copied, literal_added;
147 unsigned long delta_limit;
148 int score;
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.
154 if (!S_ISREG(src->mode) || !S_ISREG(dst->mode))
155 return 0;
158 * Need to check that source and destination sizes are
159 * filled in before comparing them.
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!)
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;
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;
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).
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.
183 if (max_size * (MAX_SCORE-minimum_score) < delta_size * MAX_SCORE)
184 return 0;
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;
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;
199 /* How similar are they?
200 * what percentage of material in dst are from source?
202 if (!dst->size)
203 score = 0; /* should not happen */
204 else
205 score = (int)(src_copied * MAX_SCORE / max_size);
206 return score;
209 static void record_rename_pair(int dst_index, int src_index, int score)
211 struct diff_filespec *src, *dst;
212 struct diff_filepair *dp;
214 if (rename_dst[dst_index].pair)
215 die("internal error: dst already matched.");
217 src = rename_src[src_index].p->one;
218 src->rename_used++;
219 src->count++;
221 dst = rename_dst[dst_index].two;
222 dst->count++;
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;
234 * We sort the rename similarity matrix with the score, in descending
235 * order (the most similar first).
237 static int score_compare(const void *a_, const void *b_)
239 const struct diff_score *a = a_, *b = b_;
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;
247 if (a->score == b->score)
248 return b->name_score - a->name_score;
250 return b->score - a->score;
253 struct file_similarity {
254 struct hashmap_entry entry;
255 int index;
256 struct diff_filespec *filespec;
259 static unsigned int hash_filespec(struct diff_filespec *filespec)
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);
267 memcpy(&hash, filespec->sha1, sizeof(hash));
268 return hash;
271 static int find_identical_files(struct hashmap *srcs,
272 int dst_index,
273 struct diff_options *options)
275 int renames = 0;
277 struct diff_filespec *target = rename_dst[dst_index].two;
278 struct file_similarity *p, *best, dst;
279 int i = 100, best_score = -1;
282 * Find the best source match for specified destination.
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;
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;
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;
310 /* Too many identical alternatives? Pick one */
311 if (!--i)
312 break;
314 if (best) {
315 record_rename_pair(dst_index, best->index, MAX_SCORE);
316 renames++;
318 return renames;
321 static void insert_file_table(struct hashmap *table, int index, struct diff_filespec *filespec)
323 struct file_similarity *entry = xmalloc(sizeof(*entry));
325 entry->index = index;
326 entry->filespec = filespec;
328 hashmap_entry_init(entry, hash_filespec(filespec));
329 hashmap_add(table, entry);
333 * Find exact renames first.
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.
339 static int find_exact_renames(struct diff_options *options)
341 int i, renames = 0;
342 struct hashmap file_table;
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);
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);
353 /* Free the hash data structure and entries */
354 hashmap_free(&file_table, 1);
356 return renames;
359 #define NUM_CANDIDATE_PER_DST 4
360 static void record_if_better(struct diff_score m[], struct diff_score *o)
362 int i, worst;
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;
370 /* is it better than the worst one? */
371 if (score_compare(&m[worst], o) > 0)
372 m[worst] = *o;
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.
381 static int too_many_rename_candidates(int num_create,
382 struct diff_options *options)
384 int rename_limit = options->rename_limit;
385 int num_src = rename_src_nr;
386 int i;
388 options->needed_rename_limit = 0;
391 * This basically does a test for the rename matrix not
392 * growing larger than a "rename_limit" square matrix, ie:
394 * num_create * num_src > rename_limit * rename_limit
396 * but handles the potential overflow case specially (and we
397 * assume at least 32-bit integers)
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;
405 options->needed_rename_limit =
406 num_src > num_create ? num_src : num_create;
408 /* Are we running under -C -C? */
409 if (!DIFF_OPT_TST(options, FIND_COPIES_HARDER))
410 return 1;
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++;
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;
424 static int find_renames(struct diff_score *mx, int dst_cnt, int minimum_score, int copies)
426 int count = 0, i;
428 for (i = 0; i < dst_cnt * NUM_CANDIDATE_PER_DST; i++) {
429 struct diff_rename_dst *dst;
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++;
442 return count;
445 void diffcore_rename(struct diff_options *options)
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;
456 if (!minimum_score)
457 minimum_score = DEFAULT_RENAME_SCORE;
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
471 add_rename_dst(p->two);
473 else if (!DIFF_OPT_TST(options, RENAME_EMPTY) &&
474 is_empty_blob_sha1(p->one->sha1))
475 continue;
476 else if (!DIFF_PAIR_UNMERGED(p) && !DIFF_FILE_VALID(p->two)) {
478 * If the source is a broken "delete", and
479 * they did not really want to get broken,
480 * that means the source actually stays.
481 * So we increment the "rename_used" score
482 * by one, to indicate ourselves as a user
484 if (p->broken_pair && !p->score)
485 p->one->rename_used++;
486 register_rename_src(p);
488 else if (detect_rename == DIFF_DETECT_COPY) {
490 * Increment the "rename_used" score by
491 * one, to indicate ourselves as a user.
493 p->one->rename_used++;
494 register_rename_src(p);
497 if (rename_dst_nr == 0 || rename_src_nr == 0)
498 goto cleanup; /* nothing to do */
501 * We really want to cull the candidates list early
502 * with cheap tests in order to avoid doing deltas.
504 rename_count = find_exact_renames(options);
506 /* Did we only want exact renames? */
507 if (minimum_score == MAX_SCORE)
508 goto cleanup;
511 * Calculate how many renames are left (but all the source
512 * files still remain as options for rename/copies!)
514 num_create = (rename_dst_nr - rename_count);
516 /* All done? */
517 if (!num_create)
518 goto cleanup;
520 switch (too_many_rename_candidates(num_create, options)) {
521 case 1:
522 goto cleanup;
523 case 2:
524 options->degraded_cc_to_c = 1;
525 skip_unmodified = 1;
526 break;
527 default:
528 break;
531 if (options->show_rename_progress) {
532 progress = start_progress_delay(
533 _("Performing inexact rename detection"),
534 rename_dst_nr * rename_src_nr, 50, 1);
537 mx = xcalloc(num_create * NUM_CANDIDATE_PER_DST, sizeof(*mx));
538 for (dst_cnt = i = 0; i < rename_dst_nr; i++) {
539 struct diff_filespec *two = rename_dst[i].two;
540 struct diff_score *m;
542 if (rename_dst[i].pair)
543 continue; /* dealt with exact match already. */
545 m = &mx[dst_cnt * NUM_CANDIDATE_PER_DST];
546 for (j = 0; j < NUM_CANDIDATE_PER_DST; j++)
547 m[j].dst = -1;
549 for (j = 0; j < rename_src_nr; j++) {
550 struct diff_filespec *one = rename_src[j].p->one;
551 struct diff_score this_src;
553 if (skip_unmodified &&
554 diff_unmodified_pair(rename_src[j].p))
555 continue;
557 this_src.score = estimate_similarity(one, two,
558 minimum_score);
559 this_src.name_score = basename_same(one, two);
560 this_src.dst = i;
561 this_src.src = j;
562 record_if_better(m, &this_src);
564 * Once we run estimate_similarity,
565 * We do not need the text anymore.
567 diff_free_filespec_blob(one);
568 diff_free_filespec_blob(two);
570 dst_cnt++;
571 display_progress(progress, (i+1)*rename_src_nr);
573 stop_progress(&progress);
575 /* cost matrix sorted by most to least similar pair */
576 qsort(mx, dst_cnt * NUM_CANDIDATE_PER_DST, sizeof(*mx), score_compare);
578 rename_count += find_renames(mx, dst_cnt, minimum_score, 0);
579 if (detect_rename == DIFF_DETECT_COPY)
580 rename_count += find_renames(mx, dst_cnt, minimum_score, 1);
581 free(mx);
583 cleanup:
584 /* At this point, we have found some renames and copies and they
585 * are recorded in rename_dst. The original list is still in *q.
587 DIFF_QUEUE_CLEAR(&outq);
588 for (i = 0; i < q->nr; i++) {
589 struct diff_filepair *p = q->queue[i];
590 struct diff_filepair *pair_to_free = NULL;
592 if (DIFF_PAIR_UNMERGED(p)) {
593 diff_q(&outq, p);
595 else if (!DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
597 * Creation
599 * We would output this create record if it has
600 * not been turned into a rename/copy already.
602 struct diff_rename_dst *dst = locate_rename_dst(p->two);
603 if (dst && dst->pair) {
604 diff_q(&outq, dst->pair);
605 pair_to_free = p;
607 else
608 /* no matching rename/copy source, so
609 * record this as a creation.
611 diff_q(&outq, p);
613 else if (DIFF_FILE_VALID(p->one) && !DIFF_FILE_VALID(p->two)) {
615 * Deletion
617 * We would output this delete record if:
619 * (1) this is a broken delete and the counterpart
620 * broken create remains in the output; or
621 * (2) this is not a broken delete, and rename_dst
622 * does not have a rename/copy to move p->one->path
623 * out of existence.
625 * Otherwise, the counterpart broken create
626 * has been turned into a rename-edit; or
627 * delete did not have a matching create to
628 * begin with.
630 if (DIFF_PAIR_BROKEN(p)) {
631 /* broken delete */
632 struct diff_rename_dst *dst = locate_rename_dst(p->one);
633 if (dst && dst->pair)
634 /* counterpart is now rename/copy */
635 pair_to_free = p;
637 else {
638 if (p->one->rename_used)
639 /* this path remains */
640 pair_to_free = p;
643 if (pair_to_free)
645 else
646 diff_q(&outq, p);
648 else if (!diff_unmodified_pair(p))
649 /* all the usual ones need to be kept */
650 diff_q(&outq, p);
651 else
652 /* no need to keep unmodified pairs */
653 pair_to_free = p;
655 if (pair_to_free)
656 diff_free_filepair(pair_to_free);
658 diff_debug_queue("done copying original", &outq);
660 free(q->queue);
661 *q = outq;
662 diff_debug_queue("done collapsing", q);
664 for (i = 0; i < rename_dst_nr; i++)
665 free_filespec(rename_dst[i].two);
667 free(rename_dst);
668 rename_dst = NULL;
669 rename_dst_nr = rename_dst_alloc = 0;
670 free(rename_src);
671 rename_src = NULL;
672 rename_src_nr = rename_src_alloc = 0;
673 return;