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" 9 10/* Table of rename/copy destinations */ 11 12static struct diff_rename_dst { 13struct diff_filespec *two; 14struct diff_filepair *pair; 15} *rename_dst; 16static int rename_dst_nr, rename_dst_alloc; 17 18static struct diff_rename_dst *locate_rename_dst(struct diff_filespec *two, 19int insert_ok) 20{ 21int first, last; 22 23 first =0; 24 last = 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) { 32 last = next; 33continue; 34} 35 first = 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) { 42 rename_dst_alloc =alloc_nr(rename_dst_alloc); 43 rename_dst =xrealloc(rename_dst, 44 rename_dst_alloc *sizeof(*rename_dst)); 45} 46 rename_dst_nr++; 47if(first < rename_dst_nr) 48memmove(rename_dst + first +1, rename_dst + first, 49(rename_dst_nr - first -1) *sizeof(*rename_dst)); 50 rename_dst[first].two =alloc_filespec(two->path); 51fill_filespec(rename_dst[first].two, two->sha1, two->mode); 52 rename_dst[first].pair = NULL; 53return&(rename_dst[first]); 54} 55 56/* Table of rename/copy src files */ 57static struct diff_rename_src { 58struct diff_filespec *one; 59unsigned src_path_left :1; 60} *rename_src; 61static int rename_src_nr, rename_src_alloc; 62 63static struct diff_rename_src *register_rename_src(struct diff_filespec *one, 64int src_path_left) 65{ 66int first, last; 67 68 first =0; 69 last = rename_src_nr; 70while(last > first) { 71int next = (last + first) >>1; 72struct diff_rename_src *src = &(rename_src[next]); 73int cmp =strcmp(one->path, src->one->path); 74if(!cmp) 75return src; 76if(cmp <0) { 77 last = next; 78continue; 79} 80 first = next+1; 81} 82 83/* insert to make it at "first" */ 84if(rename_src_alloc <= rename_src_nr) { 85 rename_src_alloc =alloc_nr(rename_src_alloc); 86 rename_src =xrealloc(rename_src, 87 rename_src_alloc *sizeof(*rename_src)); 88} 89 rename_src_nr++; 90if(first < rename_src_nr) 91memmove(rename_src + first +1, rename_src + first, 92(rename_src_nr - first -1) *sizeof(*rename_src)); 93 rename_src[first].one = one; 94 rename_src[first].src_path_left = src_path_left; 95return&(rename_src[first]); 96} 97 98static intis_exact_match(struct diff_filespec *src,struct diff_filespec *dst) 99{ 100if(src->sha1_valid && dst->sha1_valid && 101!memcmp(src->sha1, dst->sha1,20)) 102return1; 103if(diff_populate_filespec(src,1) ||diff_populate_filespec(dst,1)) 104return0; 105if(src->size != dst->size) 106return0; 107if(diff_populate_filespec(src,0) ||diff_populate_filespec(dst,0)) 108return0; 109if(src->size == dst->size && 110!memcmp(src->data, dst->data, src->size)) 111return1; 112return0; 113} 114 115struct diff_score { 116int src;/* index in rename_src */ 117int dst;/* index in rename_dst */ 118int score; 119}; 120 121static intestimate_similarity(struct diff_filespec *src, 122struct diff_filespec *dst, 123int minimum_score) 124{ 125/* src points at a file that existed in the original tree (or 126 * optionally a file in the destination tree) and dst points 127 * at a newly created file. They may be quite similar, in which 128 * case we want to say src is renamed to dst or src is copied into 129 * dst, and then some edit has been applied to dst. 130 * 131 * Compare them and return how similar they are, representing 132 * the score as an integer between 0 and MAX_SCORE. 133 * 134 * When there is an exact match, it is considered a better 135 * match than anything else; the destination does not even 136 * call into this function in that case. 137 */ 138void*delta; 139unsigned long delta_size, base_size, src_copied, literal_added; 140unsigned long delta_limit; 141int score; 142 143/* We deal only with regular files. Symlink renames are handled 144 * only when they are exact matches --- in other words, no edits 145 * after renaming. 146 */ 147if(!S_ISREG(src->mode) || !S_ISREG(dst->mode)) 148return0; 149 150 delta_size = ((src->size < dst->size) ? 151(dst->size - src->size) : (src->size - dst->size)); 152 base_size = ((src->size < dst->size) ? src->size : dst->size); 153 154/* We would not consider edits that change the file size so 155 * drastically. delta_size must be smaller than 156 * (MAX_SCORE-minimum_score)/MAX_SCORE * min(src->size, dst->size). 157 * 158 * Note that base_size == 0 case is handled here already 159 * and the final score computation below would not have a 160 * divide-by-zero issue. 161 */ 162if(base_size * (MAX_SCORE-minimum_score) < delta_size * MAX_SCORE) 163return0; 164 165if(diff_populate_filespec(src,0) ||diff_populate_filespec(dst,0)) 166return0;/* error but caught downstream */ 167 168 delta_limit = base_size * (MAX_SCORE-minimum_score) / MAX_SCORE; 169 delta =diff_delta(src->data, src->size, 170 dst->data, dst->size, 171&delta_size, delta_limit); 172if(!delta) 173/* If delta_limit is exceeded, we have too much differences */ 174return0; 175 176/* A delta that has a lot of literal additions would have 177 * big delta_size no matter what else it does. 178 */ 179if(base_size * (MAX_SCORE-minimum_score) < delta_size * MAX_SCORE) 180return0; 181 182/* Estimate the edit size by interpreting delta. */ 183if(count_delta(delta, delta_size, &src_copied, &literal_added)) { 184free(delta); 185return0; 186} 187free(delta); 188 189/* Extent of damage */ 190if(src->size + literal_added < src_copied) 191 delta_size =0; 192else 193 delta_size = (src->size - src_copied) + literal_added; 194 195/* 196 * Now we will give some score to it. 100% edit gets 0 points 197 * and 0% edit gets MAX_SCORE points. 198 */ 199 score = MAX_SCORE - (MAX_SCORE * delta_size / base_size); 200if(score <0)return0; 201if(MAX_SCORE < score)return MAX_SCORE; 202return score; 203} 204 205static voidrecord_rename_pair(int dst_index,int src_index,int score) 206{ 207struct diff_filespec *one, *two, *src, *dst; 208struct diff_filepair *dp; 209 210if(rename_dst[dst_index].pair) 211die("internal error: dst already matched."); 212 213 src = rename_src[src_index].one; 214 one =alloc_filespec(src->path); 215fill_filespec(one, src->sha1, src->mode); 216 217 dst = rename_dst[dst_index].two; 218 two =alloc_filespec(dst->path); 219fill_filespec(two, dst->sha1, dst->mode); 220 221 dp =diff_queue(NULL, one, two); 222 dp->score = score; 223 dp->source_stays = rename_src[src_index].src_path_left; 224 rename_dst[dst_index].pair = dp; 225} 226 227/* 228 * We sort the rename similarity matrix with the score, in descending 229 * order (the most similar first). 230 */ 231static intscore_compare(const void*a_,const void*b_) 232{ 233const struct diff_score *a = a_, *b = b_; 234return b->score - a->score; 235} 236 237static intcompute_stays(struct diff_queue_struct *q, 238struct diff_filespec *one) 239{ 240int i; 241for(i =0; i < q->nr; i++) { 242struct diff_filepair *p = q->queue[i]; 243if(strcmp(one->path, p->two->path)) 244continue; 245if(DIFF_PAIR_RENAME(p)) { 246return0;/* something else is renamed into this */ 247} 248} 249return1; 250} 251 252voiddiffcore_rename(struct diff_options *options) 253{ 254int detect_rename = options->detect_rename; 255int minimum_score = options->rename_score; 256int rename_limit = options->rename_limit; 257struct diff_queue_struct *q = &diff_queued_diff; 258struct diff_queue_struct outq; 259struct diff_score *mx; 260int i, j, rename_count; 261int num_create, num_src, dst_cnt; 262 263if(!minimum_score) 264 minimum_score = DEFAULT_RENAME_SCORE; 265 rename_count =0; 266 267for(i =0; i < q->nr; i++) { 268struct diff_filepair *p = q->queue[i]; 269if(!DIFF_FILE_VALID(p->one)) 270if(!DIFF_FILE_VALID(p->two)) 271continue;/* unmerged */ 272else 273locate_rename_dst(p->two,1); 274else if(!DIFF_FILE_VALID(p->two)) { 275/* If the source is a broken "delete", and 276 * they did not really want to get broken, 277 * that means the source actually stays. 278 */ 279int stays = (p->broken_pair && !p->score); 280register_rename_src(p->one, stays); 281} 282else if(detect_rename == DIFF_DETECT_COPY) 283register_rename_src(p->one,1); 284} 285if(rename_dst_nr ==0|| rename_src_nr ==0|| 286(0< rename_limit && rename_limit < rename_dst_nr)) 287goto cleanup;/* nothing to do */ 288 289/* We really want to cull the candidates list early 290 * with cheap tests in order to avoid doing deltas. 291 */ 292for(i =0; i < rename_dst_nr; i++) { 293struct diff_filespec *two = rename_dst[i].two; 294for(j =0; j < rename_src_nr; j++) { 295struct diff_filespec *one = rename_src[j].one; 296if(!is_exact_match(one, two)) 297continue; 298record_rename_pair(i, j, MAX_SCORE); 299 rename_count++; 300break;/* we are done with this entry */ 301} 302} 303 304/* Have we run out the created file pool? If so we can avoid 305 * doing the delta matrix altogether. 306 */ 307if(rename_count == rename_dst_nr) 308goto cleanup; 309 310if(minimum_score == MAX_SCORE) 311goto cleanup; 312 313 num_create = (rename_dst_nr - rename_count); 314 num_src = rename_src_nr; 315 mx =xmalloc(sizeof(*mx) * num_create * num_src); 316for(dst_cnt = i =0; i < rename_dst_nr; i++) { 317int base = dst_cnt * num_src; 318struct diff_filespec *two = rename_dst[i].two; 319if(rename_dst[i].pair) 320continue;/* dealt with exact match already. */ 321for(j =0; j < rename_src_nr; j++) { 322struct diff_filespec *one = rename_src[j].one; 323struct diff_score *m = &mx[base+j]; 324 m->src = j; 325 m->dst = i; 326 m->score =estimate_similarity(one, two, 327 minimum_score); 328} 329 dst_cnt++; 330} 331/* cost matrix sorted by most to least similar pair */ 332qsort(mx, num_create * num_src,sizeof(*mx), score_compare); 333for(i =0; i < num_create * num_src; i++) { 334struct diff_rename_dst *dst = &rename_dst[mx[i].dst]; 335if(dst->pair) 336continue;/* already done, either exact or fuzzy. */ 337if(mx[i].score < minimum_score) 338break;/* there is no more usable pair. */ 339record_rename_pair(mx[i].dst, mx[i].src, mx[i].score); 340 rename_count++; 341} 342free(mx); 343 344 cleanup: 345/* At this point, we have found some renames and copies and they 346 * are recorded in rename_dst. The original list is still in *q. 347 */ 348 outq.queue = NULL; 349 outq.nr = outq.alloc =0; 350for(i =0; i < q->nr; i++) { 351struct diff_filepair *p = q->queue[i]; 352struct diff_filepair *pair_to_free = NULL; 353 354if(!DIFF_FILE_VALID(p->one) &&DIFF_FILE_VALID(p->two)) { 355/* 356 * Creation 357 * 358 * We would output this create record if it has 359 * not been turned into a rename/copy already. 360 */ 361struct diff_rename_dst *dst = 362locate_rename_dst(p->two,0); 363if(dst && dst->pair) { 364diff_q(&outq, dst->pair); 365 pair_to_free = p; 366} 367else 368/* no matching rename/copy source, so 369 * record this as a creation. 370 */ 371diff_q(&outq, p); 372} 373else if(DIFF_FILE_VALID(p->one) && !DIFF_FILE_VALID(p->two)) { 374/* 375 * Deletion 376 * 377 * We would output this delete record if: 378 * 379 * (1) this is a broken delete and the counterpart 380 * broken create remains in the output; or 381 * (2) this is not a broken delete, and rename_dst 382 * does not have a rename/copy to move p->one->path 383 * out of existence. 384 * 385 * Otherwise, the counterpart broken create 386 * has been turned into a rename-edit; or 387 * delete did not have a matching create to 388 * begin with. 389 */ 390if(DIFF_PAIR_BROKEN(p)) { 391/* broken delete */ 392struct diff_rename_dst *dst = 393locate_rename_dst(p->one,0); 394if(dst && dst->pair) 395/* counterpart is now rename/copy */ 396 pair_to_free = p; 397} 398else{ 399for(j =0; j < rename_dst_nr; j++) { 400if(!rename_dst[j].pair) 401continue; 402if(strcmp(rename_dst[j].pair-> 403 one->path, 404 p->one->path)) 405continue; 406break; 407} 408if(j < rename_dst_nr) 409/* this path remains */ 410 pair_to_free = p; 411} 412 413if(pair_to_free) 414; 415else 416diff_q(&outq, p); 417} 418else if(!diff_unmodified_pair(p)) 419/* all the usual ones need to be kept */ 420diff_q(&outq, p); 421else 422/* no need to keep unmodified pairs */ 423 pair_to_free = p; 424 425if(pair_to_free) 426diff_free_filepair(pair_to_free); 427} 428diff_debug_queue("done copying original", &outq); 429 430free(q->queue); 431*q = outq; 432diff_debug_queue("done collapsing", q); 433 434/* We need to see which rename source really stays here; 435 * earlier we only checked if the path is left in the result, 436 * but even if a path remains in the result, if that is coming 437 * from copying something else on top of it, then the original 438 * source is lost and does not stay. 439 */ 440for(i =0; i < q->nr; i++) { 441struct diff_filepair *p = q->queue[i]; 442if(DIFF_PAIR_RENAME(p) && p->source_stays) { 443/* If one appears as the target of a rename-copy, 444 * then mark p->source_stays = 0; otherwise 445 * leave it as is. 446 */ 447 p->source_stays =compute_stays(q, p->one); 448} 449} 450 451for(i =0; i < rename_dst_nr; i++) { 452diff_free_filespec_data(rename_dst[i].two); 453free(rename_dst[i].two); 454} 455 456free(rename_dst); 457 rename_dst = NULL; 458 rename_dst_nr = rename_dst_alloc =0; 459free(rename_src); 460 rename_src = NULL; 461 rename_src_nr = rename_src_alloc =0; 462return; 463}