1/*
2* Copyright (C) 2005 Junio C Hamano
3*/
4#include "cache.h"
5#include "diff.h"
6#include "diffcore.h"
7#include "delta.h"
8#include "count-delta.h"
910
/* Table of rename/copy destinations */
1112
static struct diff_rename_dst {
13struct diff_filespec *two;
14struct diff_filepair *pair;
15} *rename_dst;
16static int rename_dst_nr, rename_dst_alloc;
1718
static struct diff_rename_dst *locate_rename_dst(struct diff_filespec *two,
19int insert_ok)
20{
21int first, last;
2223
first = 0;
24last = rename_dst_nr;
25while (last > first) {
26int next = (last + first) >> 1;
27struct diff_rename_dst *dst = &(rename_dst[next]);
28int cmp = strcmp(two->path, dst->two->path);
29if (!cmp)
30return dst;
31if (cmp < 0) {
32last = next;
33continue;
34}
35first = next+1;
36}
37/* not found */
38if (!insert_ok)
39return NULL;
40/* insert to make it at "first" */
41if (rename_dst_alloc <= rename_dst_nr) {
42rename_dst_alloc = alloc_nr(rename_dst_alloc);
43rename_dst = xrealloc(rename_dst,
44rename_dst_alloc * sizeof(*rename_dst));
45}
46rename_dst_nr++;
47if (first < rename_dst_nr)
48memmove(rename_dst + first + 1, rename_dst + first,
49(rename_dst_nr - first - 1) * sizeof(*rename_dst));
50rename_dst[first].two = two;
51rename_dst[first].pair = NULL;
52return &(rename_dst[first]);
53}
5455
/* Table of rename/copy src files */
56static struct diff_rename_src {
57struct diff_filespec *one;
58unsigned src_stays : 1;
59} *rename_src;
60static int rename_src_nr, rename_src_alloc;
6162
static struct diff_rename_src *register_rename_src(struct diff_filespec *one,
63int src_stays)
64{
65int first, last;
6667
first = 0;
68last = rename_src_nr;
69while (last > first) {
70int next = (last + first) >> 1;
71struct diff_rename_src *src = &(rename_src[next]);
72int cmp = strcmp(one->path, src->one->path);
73if (!cmp)
74return src;
75if (cmp < 0) {
76last = next;
77continue;
78}
79first = next+1;
80}
8182
/* insert to make it at "first" */
83if (rename_src_alloc <= rename_src_nr) {
84rename_src_alloc = alloc_nr(rename_src_alloc);
85rename_src = xrealloc(rename_src,
86rename_src_alloc * sizeof(*rename_src));
87}
88rename_src_nr++;
89if (first < rename_src_nr)
90memmove(rename_src + first + 1, rename_src + first,
91(rename_src_nr - first - 1) * sizeof(*rename_src));
92rename_src[first].one = one;
93rename_src[first].src_stays = src_stays;
94return &(rename_src[first]);
95}
9697
static int is_exact_match(struct diff_filespec *src, struct diff_filespec *dst)
98{
99if (src->sha1_valid && dst->sha1_valid &&
100!memcmp(src->sha1, dst->sha1, 20))
101return 1;
102if (diff_populate_filespec(src, 1) || diff_populate_filespec(dst, 1))
103return 0;
104if (src->size != dst->size)
105return 0;
106if (diff_populate_filespec(src, 0) || diff_populate_filespec(dst, 0))
107return 0;
108if (src->size == dst->size &&
109!memcmp(src->data, dst->data, src->size))
110return 1;
111return 0;
112}
113114
struct diff_score {
115int src; /* index in rename_src */
116int dst; /* index in rename_dst */
117int score;
118};
119120
static int estimate_similarity(struct diff_filespec *src,
121struct diff_filespec *dst,
122int minimum_score)
123{
124/* src points at a file that existed in the original tree (or
125* optionally a file in the destination tree) and dst points
126* at a newly created file. They may be quite similar, in which
127* case we want to say src is renamed to dst or src is copied into
128* dst, and then some edit has been applied to dst.
129*
130* Compare them and return how similar they are, representing
131* the score as an integer between 0 and MAX_SCORE.
132*
133* When there is an exact match, it is considered a better
134* match than anything else; the destination does not even
135* call into this function in that case.
136*/
137void *delta;
138unsigned long delta_size, base_size, src_copied, literal_added;
139int score;
140141
/* We deal only with regular files. Symlink renames are handled
142* only when they are exact matches --- in other words, no edits
143* after renaming.
144*/
145if (!S_ISREG(src->mode) || !S_ISREG(dst->mode))
146return 0;
147148
delta_size = ((src->size < dst->size) ?
149(dst->size - src->size) : (src->size - dst->size));
150base_size = ((src->size < dst->size) ? src->size : dst->size);
151152
/* We would not consider edits that change the file size so
153* drastically. delta_size must be smaller than
154* (MAX_SCORE-minimum_score)/MAX_SCORE * min(src->size, dst->size).
155*
156* Note that base_size == 0 case is handled here already
157* and the final score computation below would not have a
158* divide-by-zero issue.
159*/
160if (base_size * (MAX_SCORE-minimum_score) < delta_size * MAX_SCORE)
161return 0;
162163
if (diff_populate_filespec(src, 0) || diff_populate_filespec(dst, 0))
164return 0; /* error but caught downstream */
165166
delta = diff_delta(src->data, src->size,
167dst->data, dst->size,
168&delta_size);
169170
/* A delta that has a lot of literal additions would have
171* big delta_size no matter what else it does.
172*/
173if (base_size * (MAX_SCORE-minimum_score) < delta_size * MAX_SCORE)
174return 0;
175176
/* Estimate the edit size by interpreting delta. */
177if (count_delta(delta, delta_size, &src_copied, &literal_added)) {
178free(delta);
179return 0;
180}
181free(delta);
182183
/* Extent of damage */
184if (src->size + literal_added < src_copied)
185delta_size = 0;
186else
187delta_size = (src->size - src_copied) + literal_added;
188189
/*
190* Now we will give some score to it. 100% edit gets 0 points
191* and 0% edit gets MAX_SCORE points.
192*/
193score = MAX_SCORE - (MAX_SCORE * delta_size / base_size);
194if (score < 0) return 0;
195if (MAX_SCORE < score) return MAX_SCORE;
196return score;
197}
198199
static void record_rename_pair(struct diff_queue_struct *renq,
200int dst_index, int src_index, int score)
201{
202struct diff_filespec *one, *two, *src, *dst;
203struct diff_filepair *dp;
204205
if (rename_dst[dst_index].pair)
206die("internal error: dst already matched.");
207208
src = rename_src[src_index].one;
209one = alloc_filespec(src->path);
210fill_filespec(one, src->sha1, src->mode);
211212
dst = rename_dst[dst_index].two;
213two = alloc_filespec(dst->path);
214fill_filespec(two, dst->sha1, dst->mode);
215216
dp = diff_queue(renq, one, two);
217dp->score = score;
218dp->source_stays = rename_src[src_index].src_stays;
219rename_dst[dst_index].pair = dp;
220}
221222
/*
223* We sort the rename similarity matrix with the score, in descending
224* order (the most similar first).
225*/
226static int score_compare(const void *a_, const void *b_)
227{
228const struct diff_score *a = a_, *b = b_;
229return b->score - a->score;
230}
231232
int diff_scoreopt_parse(const char *opt)
233{
234int diglen, num, scale, i;
235if (opt[0] != '-' || (opt[1] != 'M' && opt[1] != 'C' && opt[1] != 'B'))
236return -1; /* that is not a -M, -C nor -B option */
237diglen = strspn(opt+2, "0123456789");
238if (diglen == 0 || strlen(opt+2) != diglen)
239return 0; /* use default */
240sscanf(opt+2, "%d", &num);
241for (i = 0, scale = 1; i < diglen; i++)
242scale *= 10;
243244
/* user says num divided by scale and we say internally that
245* is MAX_SCORE * num / scale.
246*/
247return MAX_SCORE * num / scale;
248}
249250
void diffcore_rename(int detect_rename, int minimum_score)
251{
252struct diff_queue_struct *q = &diff_queued_diff;
253struct diff_queue_struct renq, outq;
254struct diff_score *mx;
255int i, j;
256int num_create, num_src, dst_cnt;
257258
if (!minimum_score)
259minimum_score = DEFAULT_RENAME_SCORE;
260renq.queue = NULL;
261renq.nr = renq.alloc = 0;
262263
for (i = 0; i < q->nr; i++) {
264struct diff_filepair *p = q->queue[i];
265if (!DIFF_FILE_VALID(p->one))
266if (!DIFF_FILE_VALID(p->two))
267continue; /* unmerged */
268else
269locate_rename_dst(p->two, 1);
270else if (!DIFF_FILE_VALID(p->two))
271register_rename_src(p->one, 0);
272else if (detect_rename == DIFF_DETECT_COPY)
273register_rename_src(p->one, 1);
274}
275if (rename_dst_nr == 0)
276goto cleanup; /* nothing to do */
277278
/* We really want to cull the candidates list early
279* with cheap tests in order to avoid doing deltas.
280*/
281for (i = 0; i < rename_dst_nr; i++) {
282struct diff_filespec *two = rename_dst[i].two;
283for (j = 0; j < rename_src_nr; j++) {
284struct diff_filespec *one = rename_src[j].one;
285if (!is_exact_match(one, two))
286continue;
287record_rename_pair(&renq, i, j, MAX_SCORE);
288break; /* we are done with this entry */
289}
290}
291diff_debug_queue("done detecting exact", &renq);
292293
/* Have we run out the created file pool? If so we can avoid
294* doing the delta matrix altogether.
295*/
296if (renq.nr == rename_dst_nr)
297goto cleanup;
298299
num_create = (rename_dst_nr - renq.nr);
300num_src = rename_src_nr;
301mx = xmalloc(sizeof(*mx) * num_create * num_src);
302for (dst_cnt = i = 0; i < rename_dst_nr; i++) {
303int base = dst_cnt * num_src;
304struct diff_filespec *two = rename_dst[i].two;
305if (rename_dst[i].pair)
306continue; /* dealt with exact match already. */
307for (j = 0; j < rename_src_nr; j++) {
308struct diff_filespec *one = rename_src[j].one;
309struct diff_score *m = &mx[base+j];
310m->src = j;
311m->dst = i;
312m->score = estimate_similarity(one, two,
313minimum_score);
314}
315dst_cnt++;
316}
317/* cost matrix sorted by most to least similar pair */
318qsort(mx, num_create * num_src, sizeof(*mx), score_compare);
319for (i = 0; i < num_create * num_src; i++) {
320struct diff_rename_dst *dst = &rename_dst[mx[i].dst];
321if (dst->pair)
322continue; /* already done, either exact or fuzzy. */
323if (mx[i].score < minimum_score)
324break; /* there is no more usable pair. */
325record_rename_pair(&renq, mx[i].dst, mx[i].src, mx[i].score);
326}
327free(mx);
328diff_debug_queue("done detecting fuzzy", &renq);
329330
cleanup:
331/* At this point, we have found some renames and copies and they
332* are kept in renq. The original list is still in *q.
333*/
334outq.queue = NULL;
335outq.nr = outq.alloc = 0;
336for (i = 0; i < q->nr; i++) {
337struct diff_filepair *p = q->queue[i];
338struct diff_filepair *pair_to_free = NULL;
339340
if (!DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
341/*
342* Creation
343*
344* We would output this create record if it has
345* not been turned into a rename/copy already.
346*/
347struct diff_rename_dst *dst =
348locate_rename_dst(p->two, 0);
349if (dst && dst->pair) {
350diff_q(&outq, dst->pair);
351pair_to_free = p;
352}
353else
354/* no matching rename/copy source, so
355* record this as a creation.
356*/
357diff_q(&outq, p);
358}
359else if (DIFF_FILE_VALID(p->one) && !DIFF_FILE_VALID(p->two)) {
360/*
361* Deletion
362*
363* We would output this delete record if:
364*
365* (1) this is a broken delete and the counterpart
366* broken create remains in the output; or
367* (2) this is not a broken delete, and renq does
368* not have a rename/copy to move p->one->path
369* out.
370*
371* Otherwise, the counterpart broken create
372* has been turned into a rename-edit; or
373* delete did not have a matching create to
374* begin with.
375*/
376if (DIFF_PAIR_BROKEN(p)) {
377/* broken delete */
378struct diff_rename_dst *dst =
379locate_rename_dst(p->one, 0);
380if (dst && dst->pair)
381/* counterpart is now rename/copy */
382pair_to_free = p;
383}
384else {
385for (j = 0; j < renq.nr; j++)
386if (!strcmp(renq.queue[j]->one->path,
387p->one->path))
388break;
389if (j < renq.nr)
390/* this path remains */
391pair_to_free = p;
392}
393394
if (pair_to_free)
395;
396else
397diff_q(&outq, p);
398}
399else if (!diff_unmodified_pair(p))
400/* all the usual ones need to be kept */
401diff_q(&outq, p);
402else
403/* no need to keep unmodified pairs */
404pair_to_free = p;
405406
if (pair_to_free)
407diff_free_filepair(pair_to_free);
408}
409diff_debug_queue("done copying original", &outq);
410411
free(renq.queue);
412free(q->queue);
413*q = outq;
414diff_debug_queue("done collapsing", q);
415416
free(rename_dst);
417rename_dst = NULL;
418rename_dst_nr = rename_dst_alloc = 0;
419free(rename_src);
420rename_src = NULL;
421rename_src_nr = rename_src_alloc = 0;
422return;
423}