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