2 * Copyright (C) 2005 Junio C Hamano
7 #include "object-store.h"
11 /* Table of rename/copy destinations */
13 static struct diff_rename_dst {
14 struct diff_filespec *two;
15 struct diff_filepair *pair;
17 static int rename_dst_nr, rename_dst_alloc;
19 static int find_rename_dst(struct diff_filespec *two)
25 while (last > first) {
26 int next = first + ((last - first) >> 1);
27 struct diff_rename_dst *dst = &(rename_dst[next]);
28 int cmp = strcmp(two->path, dst->two->path);
40 static struct diff_rename_dst *locate_rename_dst(struct diff_filespec *two)
42 int ofs = find_rename_dst(two);
43 return ofs < 0 ? NULL : &rename_dst[ofs];
47 * Returns 0 on success, -1 if we found a duplicate.
49 static int add_rename_dst(struct diff_filespec *two)
51 int first = find_rename_dst(two);
57 /* insert to make it at "first" */
58 ALLOC_GROW(rename_dst, rename_dst_nr + 1, rename_dst_alloc);
60 if (first < rename_dst_nr)
61 MOVE_ARRAY(rename_dst + first + 1, rename_dst + first,
62 rename_dst_nr - first - 1);
63 rename_dst[first].two = alloc_filespec(two->path);
64 fill_filespec(rename_dst[first].two, &two->oid, two->oid_valid,
66 rename_dst[first].pair = NULL;
70 /* Table of rename/copy src files */
71 static struct diff_rename_src {
72 struct diff_filepair *p;
73 unsigned short score; /* to remember the break score */
75 static int rename_src_nr, rename_src_alloc;
77 static struct diff_rename_src *register_rename_src(struct diff_filepair *p)
80 struct diff_filespec *one = p->one;
81 unsigned short score = p->score;
85 while (last > first) {
86 int next = first + ((last - first) >> 1);
87 struct diff_rename_src *src = &(rename_src[next]);
88 int cmp = strcmp(one->path, src->p->one->path);
98 /* insert to make it at "first" */
99 ALLOC_GROW(rename_src, rename_src_nr + 1, rename_src_alloc);
101 if (first < rename_src_nr)
102 MOVE_ARRAY(rename_src + first + 1, rename_src + first,
103 rename_src_nr - first - 1);
104 rename_src[first].p = p;
105 rename_src[first].score = score;
106 return &(rename_src[first]);
109 static int basename_same(struct diff_filespec *src, struct diff_filespec *dst)
111 int src_len = strlen(src->path), dst_len = strlen(dst->path);
112 while (src_len && dst_len) {
113 char c1 = src->path[--src_len];
114 char c2 = dst->path[--dst_len];
120 return (!src_len || src->path[src_len - 1] == '/') &&
121 (!dst_len || dst->path[dst_len - 1] == '/');
125 int src; /* index in rename_src */
126 int dst; /* index in rename_dst */
127 unsigned short score;
131 static int estimate_similarity(struct repository *r,
132 struct diff_filespec *src,
133 struct diff_filespec *dst,
136 /* src points at a file that existed in the original tree (or
137 * optionally a file in the destination tree) and dst points
138 * at a newly created file. They may be quite similar, in which
139 * case we want to say src is renamed to dst or src is copied into
140 * dst, and then some edit has been applied to dst.
142 * Compare them and return how similar they are, representing
143 * the score as an integer between 0 and MAX_SCORE.
145 * When there is an exact match, it is considered a better
146 * match than anything else; the destination does not even
147 * call into this function in that case.
149 unsigned long max_size, delta_size, base_size, src_copied, literal_added;
151 struct diff_populate_filespec_options dpf_options = {
155 /* We deal only with regular files. Symlink renames are handled
156 * only when they are exact matches --- in other words, no edits
159 if (!S_ISREG(src->mode) || !S_ISREG(dst->mode))
163 * Need to check that source and destination sizes are
164 * filled in before comparing them.
166 * If we already have "cnt_data" filled in, we know it's
167 * all good (avoid checking the size for zero, as that
168 * is a possible size - we really should have a flag to
169 * say whether the size is valid or not!)
171 if (!src->cnt_data &&
172 diff_populate_filespec(r, src, &dpf_options))
174 if (!dst->cnt_data &&
175 diff_populate_filespec(r, dst, &dpf_options))
178 max_size = ((src->size > dst->size) ? src->size : dst->size);
179 base_size = ((src->size < dst->size) ? src->size : dst->size);
180 delta_size = max_size - base_size;
182 /* We would not consider edits that change the file size so
183 * drastically. delta_size must be smaller than
184 * (MAX_SCORE-minimum_score)/MAX_SCORE * min(src->size, dst->size).
186 * Note that base_size == 0 case is handled here already
187 * and the final score computation below would not have a
188 * divide-by-zero issue.
190 if (max_size * (MAX_SCORE-minimum_score) < delta_size * MAX_SCORE)
193 if (!src->cnt_data && diff_populate_filespec(r, src, NULL))
195 if (!dst->cnt_data && diff_populate_filespec(r, dst, NULL))
198 if (diffcore_count_changes(r, src, dst,
199 &src->cnt_data, &dst->cnt_data,
200 &src_copied, &literal_added))
203 /* How similar are they?
204 * what percentage of material in dst are from source?
207 score = 0; /* should not happen */
209 score = (int)(src_copied * MAX_SCORE / max_size);
213 static void record_rename_pair(int dst_index, int src_index, int score)
215 struct diff_filespec *src, *dst;
216 struct diff_filepair *dp;
218 if (rename_dst[dst_index].pair)
219 die("internal error: dst already matched.");
221 src = rename_src[src_index].p->one;
225 dst = rename_dst[dst_index].two;
228 dp = diff_queue(NULL, src, dst);
229 dp->renamed_pair = 1;
230 if (!strcmp(src->path, dst->path))
231 dp->score = rename_src[src_index].score;
234 rename_dst[dst_index].pair = dp;
238 * We sort the rename similarity matrix with the score, in descending
239 * order (the most similar first).
241 static int score_compare(const void *a_, const void *b_)
243 const struct diff_score *a = a_, *b = b_;
245 /* sink the unused ones to the bottom */
247 return (0 <= b->dst);
251 if (a->score == b->score)
252 return b->name_score - a->name_score;
254 return b->score - a->score;
257 struct file_similarity {
258 struct hashmap_entry entry;
260 struct diff_filespec *filespec;
263 static unsigned int hash_filespec(struct repository *r,
264 struct diff_filespec *filespec)
266 if (!filespec->oid_valid) {
267 if (diff_populate_filespec(r, filespec, NULL))
269 hash_object_file(r->hash_algo, filespec->data, filespec->size,
270 "blob", &filespec->oid);
272 return oidhash(&filespec->oid);
275 static int find_identical_files(struct hashmap *srcs,
277 struct diff_options *options)
280 struct diff_filespec *target = rename_dst[dst_index].two;
281 struct file_similarity *p, *best = NULL;
282 int i = 100, best_score = -1;
283 unsigned int hash = hash_filespec(options->repo, target);
286 * Find the best source match for specified destination.
288 p = hashmap_get_entry_from_hash(srcs, hash, NULL,
289 struct file_similarity, entry);
290 hashmap_for_each_entry_from(srcs, p, entry) {
292 struct diff_filespec *source = p->filespec;
294 /* False hash collision? */
295 if (!oideq(&source->oid, &target->oid))
297 /* Non-regular files? If so, the modes must match! */
298 if (!S_ISREG(source->mode) || !S_ISREG(target->mode)) {
299 if (source->mode != target->mode)
302 /* Give higher scores to sources that haven't been used already */
303 score = !source->rename_used;
304 if (source->rename_used && options->detect_rename != DIFF_DETECT_COPY)
306 score += basename_same(source, target);
307 if (score > best_score) {
314 /* Too many identical alternatives? Pick one */
319 record_rename_pair(dst_index, best->index, MAX_SCORE);
325 static void insert_file_table(struct repository *r,
326 struct hashmap *table, int index,
327 struct diff_filespec *filespec)
329 struct file_similarity *entry = xmalloc(sizeof(*entry));
331 entry->index = index;
332 entry->filespec = filespec;
334 hashmap_entry_init(&entry->entry, hash_filespec(r, filespec));
335 hashmap_add(table, &entry->entry);
339 * Find exact renames first.
341 * The first round matches up the up-to-date entries,
342 * and then during the second round we try to match
343 * cache-dirty entries as well.
345 static int find_exact_renames(struct diff_options *options)
348 struct hashmap file_table;
350 /* Add all sources to the hash table in reverse order, because
351 * later on they will be retrieved in LIFO order.
353 hashmap_init(&file_table, NULL, NULL, rename_src_nr);
354 for (i = rename_src_nr-1; i >= 0; i--)
355 insert_file_table(options->repo,
357 rename_src[i].p->one);
359 /* Walk the destinations and find best source match */
360 for (i = 0; i < rename_dst_nr; i++)
361 renames += find_identical_files(&file_table, i, options);
363 /* Free the hash data structure and entries */
364 hashmap_free_entries(&file_table, struct file_similarity, entry);
369 #define NUM_CANDIDATE_PER_DST 4
370 static void record_if_better(struct diff_score m[], struct diff_score *o)
374 /* find the worst one */
376 for (i = 1; i < NUM_CANDIDATE_PER_DST; i++)
377 if (score_compare(&m[i], &m[worst]) > 0)
380 /* is it better than the worst one? */
381 if (score_compare(&m[worst], o) > 0)
387 * 0 if we are under the limit;
388 * 1 if we need to disable inexact rename detection;
389 * 2 if we would be under the limit if we were given -C instead of -C -C.
391 static int too_many_rename_candidates(int num_create,
392 struct diff_options *options)
394 int rename_limit = options->rename_limit;
395 int num_src = rename_src_nr;
398 options->needed_rename_limit = 0;
401 * This basically does a test for the rename matrix not
402 * growing larger than a "rename_limit" square matrix, ie:
404 * num_create * num_src > rename_limit * rename_limit
406 if (rename_limit <= 0)
407 rename_limit = 32767;
408 if ((num_create <= rename_limit || num_src <= rename_limit) &&
409 ((uint64_t)num_create * (uint64_t)num_src
410 <= (uint64_t)rename_limit * (uint64_t)rename_limit))
413 options->needed_rename_limit =
414 num_src > num_create ? num_src : num_create;
416 /* Are we running under -C -C? */
417 if (!options->flags.find_copies_harder)
420 /* Would we bust the limit if we were running under -C? */
421 for (num_src = i = 0; i < rename_src_nr; i++) {
422 if (diff_unmodified_pair(rename_src[i].p))
426 if ((num_create <= rename_limit || num_src <= rename_limit) &&
427 ((uint64_t)num_create * (uint64_t)num_src
428 <= (uint64_t)rename_limit * (uint64_t)rename_limit))
433 static int find_renames(struct diff_score *mx, int dst_cnt, int minimum_score, int copies)
437 for (i = 0; i < dst_cnt * NUM_CANDIDATE_PER_DST; i++) {
438 struct diff_rename_dst *dst;
440 if ((mx[i].dst < 0) ||
441 (mx[i].score < minimum_score))
442 break; /* there is no more usable pair. */
443 dst = &rename_dst[mx[i].dst];
445 continue; /* already done, either exact or fuzzy. */
446 if (!copies && rename_src[mx[i].src].p->one->rename_used)
448 record_rename_pair(mx[i].dst, mx[i].src, mx[i].score);
454 void diffcore_rename(struct diff_options *options)
456 int detect_rename = options->detect_rename;
457 int minimum_score = options->rename_score;
458 struct diff_queue_struct *q = &diff_queued_diff;
459 struct diff_queue_struct outq;
460 struct diff_score *mx;
461 int i, j, rename_count, skip_unmodified = 0;
462 int num_create, dst_cnt;
463 struct progress *progress = NULL;
466 minimum_score = DEFAULT_RENAME_SCORE;
468 for (i = 0; i < q->nr; i++) {
469 struct diff_filepair *p = q->queue[i];
470 if (!DIFF_FILE_VALID(p->one)) {
471 if (!DIFF_FILE_VALID(p->two))
472 continue; /* unmerged */
473 else if (options->single_follow &&
474 strcmp(options->single_follow, p->two->path))
475 continue; /* not interested */
476 else if (!options->flags.rename_empty &&
477 is_empty_blob_oid(&p->two->oid))
479 else if (add_rename_dst(p->two) < 0) {
480 warning("skipping rename detection, detected"
481 " duplicate destination '%s'",
486 else if (!options->flags.rename_empty &&
487 is_empty_blob_oid(&p->one->oid))
489 else if (!DIFF_PAIR_UNMERGED(p) && !DIFF_FILE_VALID(p->two)) {
491 * If the source is a broken "delete", and
492 * they did not really want to get broken,
493 * that means the source actually stays.
494 * So we increment the "rename_used" score
495 * by one, to indicate ourselves as a user
497 if (p->broken_pair && !p->score)
498 p->one->rename_used++;
499 register_rename_src(p);
501 else if (detect_rename == DIFF_DETECT_COPY) {
503 * Increment the "rename_used" score by
504 * one, to indicate ourselves as a user.
506 p->one->rename_used++;
507 register_rename_src(p);
510 if (rename_dst_nr == 0 || rename_src_nr == 0)
511 goto cleanup; /* nothing to do */
514 * We really want to cull the candidates list early
515 * with cheap tests in order to avoid doing deltas.
517 rename_count = find_exact_renames(options);
519 /* Did we only want exact renames? */
520 if (minimum_score == MAX_SCORE)
524 * Calculate how many renames are left (but all the source
525 * files still remain as options for rename/copies!)
527 num_create = (rename_dst_nr - rename_count);
533 switch (too_many_rename_candidates(num_create, options)) {
537 options->degraded_cc_to_c = 1;
544 if (options->show_rename_progress) {
545 progress = start_delayed_progress(
546 _("Performing inexact rename detection"),
547 (uint64_t)rename_dst_nr * (uint64_t)rename_src_nr);
550 mx = xcalloc(st_mult(NUM_CANDIDATE_PER_DST, num_create), sizeof(*mx));
551 for (dst_cnt = i = 0; i < rename_dst_nr; i++) {
552 struct diff_filespec *two = rename_dst[i].two;
553 struct diff_score *m;
555 if (rename_dst[i].pair)
556 continue; /* dealt with exact match already. */
558 m = &mx[dst_cnt * NUM_CANDIDATE_PER_DST];
559 for (j = 0; j < NUM_CANDIDATE_PER_DST; j++)
562 for (j = 0; j < rename_src_nr; j++) {
563 struct diff_filespec *one = rename_src[j].p->one;
564 struct diff_score this_src;
566 if (skip_unmodified &&
567 diff_unmodified_pair(rename_src[j].p))
570 this_src.score = estimate_similarity(options->repo,
573 this_src.name_score = basename_same(one, two);
576 record_if_better(m, &this_src);
578 * Once we run estimate_similarity,
579 * We do not need the text anymore.
581 diff_free_filespec_blob(one);
582 diff_free_filespec_blob(two);
585 display_progress(progress, (uint64_t)(i+1)*(uint64_t)rename_src_nr);
587 stop_progress(&progress);
589 /* cost matrix sorted by most to least similar pair */
590 STABLE_QSORT(mx, dst_cnt * NUM_CANDIDATE_PER_DST, score_compare);
592 rename_count += find_renames(mx, dst_cnt, minimum_score, 0);
593 if (detect_rename == DIFF_DETECT_COPY)
594 rename_count += find_renames(mx, dst_cnt, minimum_score, 1);
598 /* At this point, we have found some renames and copies and they
599 * are recorded in rename_dst. The original list is still in *q.
601 DIFF_QUEUE_CLEAR(&outq);
602 for (i = 0; i < q->nr; i++) {
603 struct diff_filepair *p = q->queue[i];
604 struct diff_filepair *pair_to_free = NULL;
606 if (DIFF_PAIR_UNMERGED(p)) {
609 else if (!DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
613 * We would output this create record if it has
614 * not been turned into a rename/copy already.
616 struct diff_rename_dst *dst = locate_rename_dst(p->two);
617 if (dst && dst->pair) {
618 diff_q(&outq, dst->pair);
622 /* no matching rename/copy source, so
623 * record this as a creation.
627 else if (DIFF_FILE_VALID(p->one) && !DIFF_FILE_VALID(p->two)) {
631 * We would output this delete record if:
633 * (1) this is a broken delete and the counterpart
634 * broken create remains in the output; or
635 * (2) this is not a broken delete, and rename_dst
636 * does not have a rename/copy to move p->one->path
639 * Otherwise, the counterpart broken create
640 * has been turned into a rename-edit; or
641 * delete did not have a matching create to
644 if (DIFF_PAIR_BROKEN(p)) {
646 struct diff_rename_dst *dst = locate_rename_dst(p->one);
647 if (dst && dst->pair)
648 /* counterpart is now rename/copy */
652 if (p->one->rename_used)
653 /* this path remains */
662 else if (!diff_unmodified_pair(p))
663 /* all the usual ones need to be kept */
666 /* no need to keep unmodified pairs */
670 diff_free_filepair(pair_to_free);
672 diff_debug_queue("done copying original", &outq);
676 diff_debug_queue("done collapsing", q);
678 for (i = 0; i < rename_dst_nr; i++)
679 free_filespec(rename_dst[i].two);
681 FREE_AND_NULL(rename_dst);
682 rename_dst_nr = rename_dst_alloc = 0;
683 FREE_AND_NULL(rename_src);
684 rename_src_nr = rename_src_alloc = 0;