1/* 2 * Recursive Merge algorithm stolen from git-merge-recursive.py by 3 * Fredrik Kuivinen. 4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006 5 */ 6#include"cache.h" 7#include"config.h" 8#include"advice.h" 9#include"lockfile.h" 10#include"cache-tree.h" 11#include"commit.h" 12#include"blob.h" 13#include"builtin.h" 14#include"tree-walk.h" 15#include"diff.h" 16#include"diffcore.h" 17#include"tag.h" 18#include"unpack-trees.h" 19#include"string-list.h" 20#include"xdiff-interface.h" 21#include"ll-merge.h" 22#include"attr.h" 23#include"merge-recursive.h" 24#include"dir.h" 25#include"submodule.h" 26 27struct path_hashmap_entry { 28struct hashmap_entry e; 29char path[FLEX_ARRAY]; 30}; 31 32static intpath_hashmap_cmp(const void*cmp_data, 33const void*entry, 34const void*entry_or_key, 35const void*keydata) 36{ 37const struct path_hashmap_entry *a = entry; 38const struct path_hashmap_entry *b = entry_or_key; 39const char*key = keydata; 40 41if(ignore_case) 42returnstrcasecmp(a->path, key ? key : b->path); 43else 44returnstrcmp(a->path, key ? key : b->path); 45} 46 47static unsigned intpath_hash(const char*path) 48{ 49return ignore_case ?strihash(path) :strhash(path); 50} 51 52static struct dir_rename_entry *dir_rename_find_entry(struct hashmap *hashmap, 53char*dir) 54{ 55struct dir_rename_entry key; 56 57if(dir == NULL) 58return NULL; 59hashmap_entry_init(&key,strhash(dir)); 60 key.dir = dir; 61returnhashmap_get(hashmap, &key, NULL); 62} 63 64static intdir_rename_cmp(const void*unused_cmp_data, 65const void*entry, 66const void*entry_or_key, 67const void*unused_keydata) 68{ 69const struct dir_rename_entry *e1 = entry; 70const struct dir_rename_entry *e2 = entry_or_key; 71 72returnstrcmp(e1->dir, e2->dir); 73} 74 75static voiddir_rename_init(struct hashmap *map) 76{ 77hashmap_init(map, dir_rename_cmp, NULL,0); 78} 79 80static voiddir_rename_entry_init(struct dir_rename_entry *entry, 81char*directory) 82{ 83hashmap_entry_init(entry,strhash(directory)); 84 entry->dir = directory; 85 entry->non_unique_new_dir =0; 86strbuf_init(&entry->new_dir,0); 87string_list_init(&entry->possible_new_dirs,0); 88} 89 90static struct collision_entry *collision_find_entry(struct hashmap *hashmap, 91char*target_file) 92{ 93struct collision_entry key; 94 95hashmap_entry_init(&key,strhash(target_file)); 96 key.target_file = target_file; 97returnhashmap_get(hashmap, &key, NULL); 98} 99 100static intcollision_cmp(void*unused_cmp_data, 101const struct collision_entry *e1, 102const struct collision_entry *e2, 103const void*unused_keydata) 104{ 105returnstrcmp(e1->target_file, e2->target_file); 106} 107 108static voidcollision_init(struct hashmap *map) 109{ 110hashmap_init(map, (hashmap_cmp_fn) collision_cmp, NULL,0); 111} 112 113static voidflush_output(struct merge_options *o) 114{ 115if(o->buffer_output <2&& o->obuf.len) { 116fputs(o->obuf.buf, stdout); 117strbuf_reset(&o->obuf); 118} 119} 120 121static interr(struct merge_options *o,const char*err, ...) 122{ 123va_list params; 124 125if(o->buffer_output <2) 126flush_output(o); 127else{ 128strbuf_complete(&o->obuf,'\n'); 129strbuf_addstr(&o->obuf,"error: "); 130} 131va_start(params, err); 132strbuf_vaddf(&o->obuf, err, params); 133va_end(params); 134if(o->buffer_output >1) 135strbuf_addch(&o->obuf,'\n'); 136else{ 137error("%s", o->obuf.buf); 138strbuf_reset(&o->obuf); 139} 140 141return-1; 142} 143 144static struct tree *shift_tree_object(struct tree *one,struct tree *two, 145const char*subtree_shift) 146{ 147struct object_id shifted; 148 149if(!*subtree_shift) { 150shift_tree(&one->object.oid, &two->object.oid, &shifted,0); 151}else{ 152shift_tree_by(&one->object.oid, &two->object.oid, &shifted, 153 subtree_shift); 154} 155if(!oidcmp(&two->object.oid, &shifted)) 156return two; 157returnlookup_tree(&shifted); 158} 159 160static struct commit *make_virtual_commit(struct tree *tree,const char*comment) 161{ 162struct commit *commit =alloc_commit_node(); 163 164set_merge_remote_desc(commit, comment, (struct object *)commit); 165 commit->tree = tree; 166 commit->object.parsed =1; 167return commit; 168} 169 170/* 171 * Since we use get_tree_entry(), which does not put the read object into 172 * the object pool, we cannot rely on a == b. 173 */ 174static intoid_eq(const struct object_id *a,const struct object_id *b) 175{ 176if(!a && !b) 177return2; 178return a && b &&oidcmp(a, b) ==0; 179} 180 181enum rename_type { 182 RENAME_NORMAL =0, 183 RENAME_DELETE, 184 RENAME_ONE_FILE_TO_ONE, 185 RENAME_ONE_FILE_TO_TWO, 186 RENAME_TWO_FILES_TO_ONE 187}; 188 189struct rename_conflict_info { 190enum rename_type rename_type; 191struct diff_filepair *pair1; 192struct diff_filepair *pair2; 193const char*branch1; 194const char*branch2; 195struct stage_data *dst_entry1; 196struct stage_data *dst_entry2; 197struct diff_filespec ren1_other; 198struct diff_filespec ren2_other; 199}; 200 201/* 202 * Since we want to write the index eventually, we cannot reuse the index 203 * for these (temporary) data. 204 */ 205struct stage_data { 206struct{ 207unsigned mode; 208struct object_id oid; 209} stages[4]; 210struct rename_conflict_info *rename_conflict_info; 211unsigned processed:1; 212}; 213 214staticinlinevoidsetup_rename_conflict_info(enum rename_type rename_type, 215struct diff_filepair *pair1, 216struct diff_filepair *pair2, 217const char*branch1, 218const char*branch2, 219struct stage_data *dst_entry1, 220struct stage_data *dst_entry2, 221struct merge_options *o, 222struct stage_data *src_entry1, 223struct stage_data *src_entry2) 224{ 225struct rename_conflict_info *ci =xcalloc(1,sizeof(struct rename_conflict_info)); 226 ci->rename_type = rename_type; 227 ci->pair1 = pair1; 228 ci->branch1 = branch1; 229 ci->branch2 = branch2; 230 231 ci->dst_entry1 = dst_entry1; 232 dst_entry1->rename_conflict_info = ci; 233 dst_entry1->processed =0; 234 235assert(!pair2 == !dst_entry2); 236if(dst_entry2) { 237 ci->dst_entry2 = dst_entry2; 238 ci->pair2 = pair2; 239 dst_entry2->rename_conflict_info = ci; 240} 241 242if(rename_type == RENAME_TWO_FILES_TO_ONE) { 243/* 244 * For each rename, there could have been 245 * modifications on the side of history where that 246 * file was not renamed. 247 */ 248int ostage1 = o->branch1 == branch1 ?3:2; 249int ostage2 = ostage1 ^1; 250 251 ci->ren1_other.path = pair1->one->path; 252oidcpy(&ci->ren1_other.oid, &src_entry1->stages[ostage1].oid); 253 ci->ren1_other.mode = src_entry1->stages[ostage1].mode; 254 255 ci->ren2_other.path = pair2->one->path; 256oidcpy(&ci->ren2_other.oid, &src_entry2->stages[ostage2].oid); 257 ci->ren2_other.mode = src_entry2->stages[ostage2].mode; 258} 259} 260 261static intshow(struct merge_options *o,int v) 262{ 263return(!o->call_depth && o->verbosity >= v) || o->verbosity >=5; 264} 265 266__attribute__((format(printf,3,4))) 267static voidoutput(struct merge_options *o,int v,const char*fmt, ...) 268{ 269va_list ap; 270 271if(!show(o, v)) 272return; 273 274strbuf_addchars(&o->obuf,' ', o->call_depth *2); 275 276va_start(ap, fmt); 277strbuf_vaddf(&o->obuf, fmt, ap); 278va_end(ap); 279 280strbuf_addch(&o->obuf,'\n'); 281if(!o->buffer_output) 282flush_output(o); 283} 284 285static voidoutput_commit_title(struct merge_options *o,struct commit *commit) 286{ 287strbuf_addchars(&o->obuf,' ', o->call_depth *2); 288if(commit->util) 289strbuf_addf(&o->obuf,"virtual%s\n", 290merge_remote_util(commit)->name); 291else{ 292strbuf_add_unique_abbrev(&o->obuf, commit->object.oid.hash, 293 DEFAULT_ABBREV); 294strbuf_addch(&o->obuf,' '); 295if(parse_commit(commit) !=0) 296strbuf_addstr(&o->obuf,_("(bad commit)\n")); 297else{ 298const char*title; 299const char*msg =get_commit_buffer(commit, NULL); 300int len =find_commit_subject(msg, &title); 301if(len) 302strbuf_addf(&o->obuf,"%.*s\n", len, title); 303unuse_commit_buffer(commit, msg); 304} 305} 306flush_output(o); 307} 308 309static intadd_cacheinfo(struct merge_options *o, 310unsigned int mode,const struct object_id *oid, 311const char*path,int stage,int refresh,int options) 312{ 313struct cache_entry *ce; 314int ret; 315 316 ce =make_cache_entry(mode, oid ? oid->hash : null_sha1, path, stage,0); 317if(!ce) 318returnerr(o,_("addinfo_cache failed for path '%s'"), path); 319 320 ret =add_cache_entry(ce, options); 321if(refresh) { 322struct cache_entry *nce; 323 324 nce =refresh_cache_entry(ce, CE_MATCH_REFRESH | CE_MATCH_IGNORE_MISSING); 325if(!nce) 326returnerr(o,_("addinfo_cache failed for path '%s'"), path); 327if(nce != ce) 328 ret =add_cache_entry(nce, options); 329} 330return ret; 331} 332 333static voidinit_tree_desc_from_tree(struct tree_desc *desc,struct tree *tree) 334{ 335parse_tree(tree); 336init_tree_desc(desc, tree->buffer, tree->size); 337} 338 339static intgit_merge_trees(int index_only, 340struct tree *common, 341struct tree *head, 342struct tree *merge) 343{ 344int rc; 345struct tree_desc t[3]; 346struct unpack_trees_options opts; 347 348memset(&opts,0,sizeof(opts)); 349if(index_only) 350 opts.index_only =1; 351else 352 opts.update =1; 353 opts.merge =1; 354 opts.head_idx =2; 355 opts.fn = threeway_merge; 356 opts.src_index = &the_index; 357 opts.dst_index = &the_index; 358setup_unpack_trees_porcelain(&opts,"merge"); 359 360init_tree_desc_from_tree(t+0, common); 361init_tree_desc_from_tree(t+1, head); 362init_tree_desc_from_tree(t+2, merge); 363 364 rc =unpack_trees(3, t, &opts); 365cache_tree_free(&active_cache_tree); 366return rc; 367} 368 369struct tree *write_tree_from_memory(struct merge_options *o) 370{ 371struct tree *result = NULL; 372 373if(unmerged_cache()) { 374int i; 375fprintf(stderr,"BUG: There are unmerged index entries:\n"); 376for(i =0; i < active_nr; i++) { 377const struct cache_entry *ce = active_cache[i]; 378if(ce_stage(ce)) 379fprintf(stderr,"BUG:%d%.*s\n",ce_stage(ce), 380(int)ce_namelen(ce), ce->name); 381} 382die("BUG: unmerged index entries in merge-recursive.c"); 383} 384 385if(!active_cache_tree) 386 active_cache_tree =cache_tree(); 387 388if(!cache_tree_fully_valid(active_cache_tree) && 389cache_tree_update(&the_index,0) <0) { 390err(o,_("error building trees")); 391return NULL; 392} 393 394 result =lookup_tree(&active_cache_tree->oid); 395 396return result; 397} 398 399static intsave_files_dirs(const unsigned char*sha1, 400struct strbuf *base,const char*path, 401unsigned int mode,int stage,void*context) 402{ 403struct path_hashmap_entry *entry; 404int baselen = base->len; 405struct merge_options *o = context; 406 407strbuf_addstr(base, path); 408 409FLEX_ALLOC_MEM(entry, path, base->buf, base->len); 410hashmap_entry_init(entry,path_hash(entry->path)); 411hashmap_add(&o->current_file_dir_set, entry); 412 413strbuf_setlen(base, baselen); 414return(S_ISDIR(mode) ? READ_TREE_RECURSIVE :0); 415} 416 417static voidget_files_dirs(struct merge_options *o,struct tree *tree) 418{ 419struct pathspec match_all; 420memset(&match_all,0,sizeof(match_all)); 421read_tree_recursive(tree,"",0,0, &match_all, save_files_dirs, o); 422} 423 424/* 425 * Returns an index_entry instance which doesn't have to correspond to 426 * a real cache entry in Git's index. 427 */ 428static struct stage_data *insert_stage_data(const char*path, 429struct tree *o,struct tree *a,struct tree *b, 430struct string_list *entries) 431{ 432struct string_list_item *item; 433struct stage_data *e =xcalloc(1,sizeof(struct stage_data)); 434get_tree_entry(o->object.oid.hash, path, 435 e->stages[1].oid.hash, &e->stages[1].mode); 436get_tree_entry(a->object.oid.hash, path, 437 e->stages[2].oid.hash, &e->stages[2].mode); 438get_tree_entry(b->object.oid.hash, path, 439 e->stages[3].oid.hash, &e->stages[3].mode); 440 item =string_list_insert(entries, path); 441 item->util = e; 442return e; 443} 444 445/* 446 * Create a dictionary mapping file names to stage_data objects. The 447 * dictionary contains one entry for every path with a non-zero stage entry. 448 */ 449static struct string_list *get_unmerged(void) 450{ 451struct string_list *unmerged =xcalloc(1,sizeof(struct string_list)); 452int i; 453 454 unmerged->strdup_strings =1; 455 456for(i =0; i < active_nr; i++) { 457struct string_list_item *item; 458struct stage_data *e; 459const struct cache_entry *ce = active_cache[i]; 460if(!ce_stage(ce)) 461continue; 462 463 item =string_list_lookup(unmerged, ce->name); 464if(!item) { 465 item =string_list_insert(unmerged, ce->name); 466 item->util =xcalloc(1,sizeof(struct stage_data)); 467} 468 e = item->util; 469 e->stages[ce_stage(ce)].mode = ce->ce_mode; 470oidcpy(&e->stages[ce_stage(ce)].oid, &ce->oid); 471} 472 473return unmerged; 474} 475 476static intstring_list_df_name_compare(const char*one,const char*two) 477{ 478int onelen =strlen(one); 479int twolen =strlen(two); 480/* 481 * Here we only care that entries for D/F conflicts are 482 * adjacent, in particular with the file of the D/F conflict 483 * appearing before files below the corresponding directory. 484 * The order of the rest of the list is irrelevant for us. 485 * 486 * To achieve this, we sort with df_name_compare and provide 487 * the mode S_IFDIR so that D/F conflicts will sort correctly. 488 * We use the mode S_IFDIR for everything else for simplicity, 489 * since in other cases any changes in their order due to 490 * sorting cause no problems for us. 491 */ 492int cmp =df_name_compare(one, onelen, S_IFDIR, 493 two, twolen, S_IFDIR); 494/* 495 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure 496 * that 'foo' comes before 'foo/bar'. 497 */ 498if(cmp) 499return cmp; 500return onelen - twolen; 501} 502 503static voidrecord_df_conflict_files(struct merge_options *o, 504struct string_list *entries) 505{ 506/* If there is a D/F conflict and the file for such a conflict 507 * currently exist in the working tree, we want to allow it to be 508 * removed to make room for the corresponding directory if needed. 509 * The files underneath the directories of such D/F conflicts will 510 * be processed before the corresponding file involved in the D/F 511 * conflict. If the D/F directory ends up being removed by the 512 * merge, then we won't have to touch the D/F file. If the D/F 513 * directory needs to be written to the working copy, then the D/F 514 * file will simply be removed (in make_room_for_path()) to make 515 * room for the necessary paths. Note that if both the directory 516 * and the file need to be present, then the D/F file will be 517 * reinstated with a new unique name at the time it is processed. 518 */ 519struct string_list df_sorted_entries = STRING_LIST_INIT_NODUP; 520const char*last_file = NULL; 521int last_len =0; 522int i; 523 524/* 525 * If we're merging merge-bases, we don't want to bother with 526 * any working directory changes. 527 */ 528if(o->call_depth) 529return; 530 531/* Ensure D/F conflicts are adjacent in the entries list. */ 532for(i =0; i < entries->nr; i++) { 533struct string_list_item *next = &entries->items[i]; 534string_list_append(&df_sorted_entries, next->string)->util = 535 next->util; 536} 537 df_sorted_entries.cmp = string_list_df_name_compare; 538string_list_sort(&df_sorted_entries); 539 540string_list_clear(&o->df_conflict_file_set,1); 541for(i =0; i < df_sorted_entries.nr; i++) { 542const char*path = df_sorted_entries.items[i].string; 543int len =strlen(path); 544struct stage_data *e = df_sorted_entries.items[i].util; 545 546/* 547 * Check if last_file & path correspond to a D/F conflict; 548 * i.e. whether path is last_file+'/'+<something>. 549 * If so, record that it's okay to remove last_file to make 550 * room for path and friends if needed. 551 */ 552if(last_file && 553 len > last_len && 554memcmp(path, last_file, last_len) ==0&& 555 path[last_len] =='/') { 556string_list_insert(&o->df_conflict_file_set, last_file); 557} 558 559/* 560 * Determine whether path could exist as a file in the 561 * working directory as a possible D/F conflict. This 562 * will only occur when it exists in stage 2 as a 563 * file. 564 */ 565if(S_ISREG(e->stages[2].mode) ||S_ISLNK(e->stages[2].mode)) { 566 last_file = path; 567 last_len = len; 568}else{ 569 last_file = NULL; 570} 571} 572string_list_clear(&df_sorted_entries,0); 573} 574 575struct rename { 576struct diff_filepair *pair; 577/* 578 * Purpose of src_entry and dst_entry: 579 * 580 * If 'before' is renamed to 'after' then src_entry will contain 581 * the versions of 'before' from the merge_base, HEAD, and MERGE in 582 * stages 1, 2, and 3; dst_entry will contain the respective 583 * versions of 'after' in corresponding locations. Thus, we have a 584 * total of six modes and oids, though some will be null. (Stage 0 585 * is ignored; we're interested in handling conflicts.) 586 * 587 * Since we don't turn on break-rewrites by default, neither 588 * src_entry nor dst_entry can have all three of their stages have 589 * non-null oids, meaning at most four of the six will be non-null. 590 * Also, since this is a rename, both src_entry and dst_entry will 591 * have at least one non-null oid, meaning at least two will be 592 * non-null. Of the six oids, a typical rename will have three be 593 * non-null. Only two implies a rename/delete, and four implies a 594 * rename/add. 595 */ 596struct stage_data *src_entry; 597struct stage_data *dst_entry; 598unsigned processed:1; 599}; 600 601static intupdate_stages(struct merge_options *opt,const char*path, 602const struct diff_filespec *o, 603const struct diff_filespec *a, 604const struct diff_filespec *b) 605{ 606 607/* 608 * NOTE: It is usually a bad idea to call update_stages on a path 609 * before calling update_file on that same path, since it can 610 * sometimes lead to spurious "refusing to lose untracked file..." 611 * messages from update_file (via make_room_for path via 612 * would_lose_untracked). Instead, reverse the order of the calls 613 * (executing update_file first and then update_stages). 614 */ 615int clear =1; 616int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_SKIP_DFCHECK; 617if(clear) 618if(remove_file_from_cache(path)) 619return-1; 620if(o) 621if(add_cacheinfo(opt, o->mode, &o->oid, path,1,0, options)) 622return-1; 623if(a) 624if(add_cacheinfo(opt, a->mode, &a->oid, path,2,0, options)) 625return-1; 626if(b) 627if(add_cacheinfo(opt, b->mode, &b->oid, path,3,0, options)) 628return-1; 629return0; 630} 631 632static voidupdate_entry(struct stage_data *entry, 633struct diff_filespec *o, 634struct diff_filespec *a, 635struct diff_filespec *b) 636{ 637 entry->processed =0; 638 entry->stages[1].mode = o->mode; 639 entry->stages[2].mode = a->mode; 640 entry->stages[3].mode = b->mode; 641oidcpy(&entry->stages[1].oid, &o->oid); 642oidcpy(&entry->stages[2].oid, &a->oid); 643oidcpy(&entry->stages[3].oid, &b->oid); 644} 645 646static intremove_file(struct merge_options *o,int clean, 647const char*path,int no_wd) 648{ 649int update_cache = o->call_depth || clean; 650int update_working_directory = !o->call_depth && !no_wd; 651 652if(update_cache) { 653if(remove_file_from_cache(path)) 654return-1; 655} 656if(update_working_directory) { 657if(ignore_case) { 658struct cache_entry *ce; 659 ce =cache_file_exists(path,strlen(path), ignore_case); 660if(ce &&ce_stage(ce) ==0&&strcmp(path, ce->name)) 661return0; 662} 663if(remove_path(path)) 664return-1; 665} 666return0; 667} 668 669/* add a string to a strbuf, but converting "/" to "_" */ 670static voidadd_flattened_path(struct strbuf *out,const char*s) 671{ 672size_t i = out->len; 673strbuf_addstr(out, s); 674for(; i < out->len; i++) 675if(out->buf[i] =='/') 676 out->buf[i] ='_'; 677} 678 679static char*unique_path(struct merge_options *o,const char*path,const char*branch) 680{ 681struct path_hashmap_entry *entry; 682struct strbuf newpath = STRBUF_INIT; 683int suffix =0; 684size_t base_len; 685 686strbuf_addf(&newpath,"%s~", path); 687add_flattened_path(&newpath, branch); 688 689 base_len = newpath.len; 690while(hashmap_get_from_hash(&o->current_file_dir_set, 691path_hash(newpath.buf), newpath.buf) || 692(!o->call_depth &&file_exists(newpath.buf))) { 693strbuf_setlen(&newpath, base_len); 694strbuf_addf(&newpath,"_%d", suffix++); 695} 696 697FLEX_ALLOC_MEM(entry, path, newpath.buf, newpath.len); 698hashmap_entry_init(entry,path_hash(entry->path)); 699hashmap_add(&o->current_file_dir_set, entry); 700returnstrbuf_detach(&newpath, NULL); 701} 702 703/** 704 * Check whether a directory in the index is in the way of an incoming 705 * file. Return 1 if so. If check_working_copy is non-zero, also 706 * check the working directory. If empty_ok is non-zero, also return 707 * 0 in the case where the working-tree dir exists but is empty. 708 */ 709static intdir_in_way(const char*path,int check_working_copy,int empty_ok) 710{ 711int pos; 712struct strbuf dirpath = STRBUF_INIT; 713struct stat st; 714 715strbuf_addstr(&dirpath, path); 716strbuf_addch(&dirpath,'/'); 717 718 pos =cache_name_pos(dirpath.buf, dirpath.len); 719 720if(pos <0) 721 pos = -1- pos; 722if(pos < active_nr && 723!strncmp(dirpath.buf, active_cache[pos]->name, dirpath.len)) { 724strbuf_release(&dirpath); 725return1; 726} 727 728strbuf_release(&dirpath); 729return check_working_copy && !lstat(path, &st) &&S_ISDIR(st.st_mode) && 730!(empty_ok &&is_empty_dir(path)); 731} 732 733static intwas_tracked(const char*path) 734{ 735int pos =cache_name_pos(path,strlen(path)); 736 737if(0<= pos) 738/* we have been tracking this path */ 739return1; 740 741/* 742 * Look for an unmerged entry for the path, 743 * specifically stage #2, which would indicate 744 * that "our" side before the merge started 745 * had the path tracked (and resulted in a conflict). 746 */ 747for(pos = -1- pos; 748 pos < active_nr && !strcmp(path, active_cache[pos]->name); 749 pos++) 750if(ce_stage(active_cache[pos]) ==2) 751return1; 752return0; 753} 754 755static intwould_lose_untracked(const char*path) 756{ 757return!was_tracked(path) &&file_exists(path); 758} 759 760static intmake_room_for_path(struct merge_options *o,const char*path) 761{ 762int status, i; 763const char*msg =_("failed to create path '%s'%s"); 764 765/* Unlink any D/F conflict files that are in the way */ 766for(i =0; i < o->df_conflict_file_set.nr; i++) { 767const char*df_path = o->df_conflict_file_set.items[i].string; 768size_t pathlen =strlen(path); 769size_t df_pathlen =strlen(df_path); 770if(df_pathlen < pathlen && 771 path[df_pathlen] =='/'&& 772strncmp(path, df_path, df_pathlen) ==0) { 773output(o,3, 774_("Removing%sto make room for subdirectory\n"), 775 df_path); 776unlink(df_path); 777unsorted_string_list_delete_item(&o->df_conflict_file_set, 778 i,0); 779break; 780} 781} 782 783/* Make sure leading directories are created */ 784 status =safe_create_leading_directories_const(path); 785if(status) { 786if(status == SCLD_EXISTS) 787/* something else exists */ 788returnerr(o, msg, path,_(": perhaps a D/F conflict?")); 789returnerr(o, msg, path,""); 790} 791 792/* 793 * Do not unlink a file in the work tree if we are not 794 * tracking it. 795 */ 796if(would_lose_untracked(path)) 797returnerr(o,_("refusing to lose untracked file at '%s'"), 798 path); 799 800/* Successful unlink is good.. */ 801if(!unlink(path)) 802return0; 803/* .. and so is no existing file */ 804if(errno == ENOENT) 805return0; 806/* .. but not some other error (who really cares what?) */ 807returnerr(o, msg, path,_(": perhaps a D/F conflict?")); 808} 809 810static intupdate_file_flags(struct merge_options *o, 811const struct object_id *oid, 812unsigned mode, 813const char*path, 814int update_cache, 815int update_wd) 816{ 817int ret =0; 818 819if(o->call_depth) 820 update_wd =0; 821 822if(update_wd) { 823enum object_type type; 824void*buf; 825unsigned long size; 826 827if(S_ISGITLINK(mode)) { 828/* 829 * We may later decide to recursively descend into 830 * the submodule directory and update its index 831 * and/or work tree, but we do not do that now. 832 */ 833 update_wd =0; 834goto update_index; 835} 836 837 buf =read_sha1_file(oid->hash, &type, &size); 838if(!buf) 839returnerr(o,_("cannot read object%s'%s'"),oid_to_hex(oid), path); 840if(type != OBJ_BLOB) { 841 ret =err(o,_("blob expected for%s'%s'"),oid_to_hex(oid), path); 842goto free_buf; 843} 844if(S_ISREG(mode)) { 845struct strbuf strbuf = STRBUF_INIT; 846if(convert_to_working_tree(path, buf, size, &strbuf)) { 847free(buf); 848 size = strbuf.len; 849 buf =strbuf_detach(&strbuf, NULL); 850} 851} 852 853if(make_room_for_path(o, path) <0) { 854 update_wd =0; 855goto free_buf; 856} 857if(S_ISREG(mode) || (!has_symlinks &&S_ISLNK(mode))) { 858int fd; 859if(mode &0100) 860 mode =0777; 861else 862 mode =0666; 863 fd =open(path, O_WRONLY | O_TRUNC | O_CREAT, mode); 864if(fd <0) { 865 ret =err(o,_("failed to open '%s':%s"), 866 path,strerror(errno)); 867goto free_buf; 868} 869write_in_full(fd, buf, size); 870close(fd); 871}else if(S_ISLNK(mode)) { 872char*lnk =xmemdupz(buf, size); 873safe_create_leading_directories_const(path); 874unlink(path); 875if(symlink(lnk, path)) 876 ret =err(o,_("failed to symlink '%s':%s"), 877 path,strerror(errno)); 878free(lnk); 879}else 880 ret =err(o, 881_("do not know what to do with%06o%s'%s'"), 882 mode,oid_to_hex(oid), path); 883 free_buf: 884free(buf); 885} 886 update_index: 887if(!ret && update_cache) 888add_cacheinfo(o, mode, oid, path,0, update_wd, ADD_CACHE_OK_TO_ADD); 889return ret; 890} 891 892static intupdate_file(struct merge_options *o, 893int clean, 894const struct object_id *oid, 895unsigned mode, 896const char*path) 897{ 898returnupdate_file_flags(o, oid, mode, path, o->call_depth || clean, !o->call_depth); 899} 900 901/* Low level file merging, update and removal */ 902 903struct merge_file_info { 904struct object_id oid; 905unsigned mode; 906unsigned clean:1, 907 merge:1; 908}; 909 910static intmerge_3way(struct merge_options *o, 911 mmbuffer_t *result_buf, 912const struct diff_filespec *one, 913const struct diff_filespec *a, 914const struct diff_filespec *b, 915const char*branch1, 916const char*branch2) 917{ 918 mmfile_t orig, src1, src2; 919struct ll_merge_options ll_opts = {0}; 920char*base_name, *name1, *name2; 921int merge_status; 922 923 ll_opts.renormalize = o->renormalize; 924 ll_opts.xdl_opts = o->xdl_opts; 925 926if(o->call_depth) { 927 ll_opts.virtual_ancestor =1; 928 ll_opts.variant =0; 929}else{ 930switch(o->recursive_variant) { 931case MERGE_RECURSIVE_OURS: 932 ll_opts.variant = XDL_MERGE_FAVOR_OURS; 933break; 934case MERGE_RECURSIVE_THEIRS: 935 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS; 936break; 937default: 938 ll_opts.variant =0; 939break; 940} 941} 942 943if(strcmp(a->path, b->path) || 944(o->ancestor != NULL &&strcmp(a->path, one->path) !=0)) { 945 base_name = o->ancestor == NULL ? NULL : 946mkpathdup("%s:%s", o->ancestor, one->path); 947 name1 =mkpathdup("%s:%s", branch1, a->path); 948 name2 =mkpathdup("%s:%s", branch2, b->path); 949}else{ 950 base_name = o->ancestor == NULL ? NULL : 951mkpathdup("%s", o->ancestor); 952 name1 =mkpathdup("%s", branch1); 953 name2 =mkpathdup("%s", branch2); 954} 955 956read_mmblob(&orig, &one->oid); 957read_mmblob(&src1, &a->oid); 958read_mmblob(&src2, &b->oid); 959 960 merge_status =ll_merge(result_buf, a->path, &orig, base_name, 961&src1, name1, &src2, name2, &ll_opts); 962 963free(base_name); 964free(name1); 965free(name2); 966free(orig.ptr); 967free(src1.ptr); 968free(src2.ptr); 969return merge_status; 970} 971 972static intmerge_file_1(struct merge_options *o, 973const struct diff_filespec *one, 974const struct diff_filespec *a, 975const struct diff_filespec *b, 976const char*branch1, 977const char*branch2, 978struct merge_file_info *result) 979{ 980 result->merge =0; 981 result->clean =1; 982 983if((S_IFMT & a->mode) != (S_IFMT & b->mode)) { 984 result->clean =0; 985if(S_ISREG(a->mode)) { 986 result->mode = a->mode; 987oidcpy(&result->oid, &a->oid); 988}else{ 989 result->mode = b->mode; 990oidcpy(&result->oid, &b->oid); 991} 992}else{ 993if(!oid_eq(&a->oid, &one->oid) && !oid_eq(&b->oid, &one->oid)) 994 result->merge =1; 995 996/* 997 * Merge modes 998 */ 999if(a->mode == b->mode || a->mode == one->mode)1000 result->mode = b->mode;1001else{1002 result->mode = a->mode;1003if(b->mode != one->mode) {1004 result->clean =0;1005 result->merge =1;1006}1007}10081009if(oid_eq(&a->oid, &b->oid) ||oid_eq(&a->oid, &one->oid))1010oidcpy(&result->oid, &b->oid);1011else if(oid_eq(&b->oid, &one->oid))1012oidcpy(&result->oid, &a->oid);1013else if(S_ISREG(a->mode)) {1014 mmbuffer_t result_buf;1015int ret =0, merge_status;10161017 merge_status =merge_3way(o, &result_buf, one, a, b,1018 branch1, branch2);10191020if((merge_status <0) || !result_buf.ptr)1021 ret =err(o,_("Failed to execute internal merge"));10221023if(!ret &&write_sha1_file(result_buf.ptr, result_buf.size,1024 blob_type, result->oid.hash))1025 ret =err(o,_("Unable to add%sto database"),1026 a->path);10271028free(result_buf.ptr);1029if(ret)1030return ret;1031 result->clean = (merge_status ==0);1032}else if(S_ISGITLINK(a->mode)) {1033 result->clean =merge_submodule(&result->oid,1034 one->path,1035&one->oid,1036&a->oid,1037&b->oid,1038!o->call_depth);1039}else if(S_ISLNK(a->mode)) {1040oidcpy(&result->oid, &a->oid);10411042if(!oid_eq(&a->oid, &b->oid))1043 result->clean =0;1044}else1045die("BUG: unsupported object type in the tree");1046}10471048return0;1049}10501051static intmerge_file_special_markers(struct merge_options *o,1052const struct diff_filespec *one,1053const struct diff_filespec *a,1054const struct diff_filespec *b,1055const char*branch1,1056const char*filename1,1057const char*branch2,1058const char*filename2,1059struct merge_file_info *mfi)1060{1061char*side1 = NULL;1062char*side2 = NULL;1063int ret;10641065if(filename1)1066 side1 =xstrfmt("%s:%s", branch1, filename1);1067if(filename2)1068 side2 =xstrfmt("%s:%s", branch2, filename2);10691070 ret =merge_file_1(o, one, a, b,1071 side1 ? side1 : branch1,1072 side2 ? side2 : branch2, mfi);1073free(side1);1074free(side2);1075return ret;1076}10771078static intmerge_file_one(struct merge_options *o,1079const char*path,1080const struct object_id *o_oid,int o_mode,1081const struct object_id *a_oid,int a_mode,1082const struct object_id *b_oid,int b_mode,1083const char*branch1,1084const char*branch2,1085struct merge_file_info *mfi)1086{1087struct diff_filespec one, a, b;10881089 one.path = a.path = b.path = (char*)path;1090oidcpy(&one.oid, o_oid);1091 one.mode = o_mode;1092oidcpy(&a.oid, a_oid);1093 a.mode = a_mode;1094oidcpy(&b.oid, b_oid);1095 b.mode = b_mode;1096returnmerge_file_1(o, &one, &a, &b, branch1, branch2, mfi);1097}10981099static inthandle_change_delete(struct merge_options *o,1100const char*path,const char*old_path,1101const struct object_id *o_oid,int o_mode,1102const struct object_id *changed_oid,1103int changed_mode,1104const char*change_branch,1105const char*delete_branch,1106const char*change,const char*change_past)1107{1108char*alt_path = NULL;1109const char*update_path = path;1110int ret =0;11111112if(dir_in_way(path, !o->call_depth,0)) {1113 update_path = alt_path =unique_path(o, path, change_branch);1114}11151116if(o->call_depth) {1117/*1118 * We cannot arbitrarily accept either a_sha or b_sha as1119 * correct; since there is no true "middle point" between1120 * them, simply reuse the base version for virtual merge base.1121 */1122 ret =remove_file_from_cache(path);1123if(!ret)1124 ret =update_file(o,0, o_oid, o_mode, update_path);1125}else{1126if(!alt_path) {1127if(!old_path) {1128output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1129"and%sin%s. Version%sof%sleft in tree."),1130 change, path, delete_branch, change_past,1131 change_branch, change_branch, path);1132}else{1133output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1134"and%sto%sin%s. Version%sof%sleft in tree."),1135 change, old_path, delete_branch, change_past, path,1136 change_branch, change_branch, path);1137}1138}else{1139if(!old_path) {1140output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1141"and%sin%s. Version%sof%sleft in tree at%s."),1142 change, path, delete_branch, change_past,1143 change_branch, change_branch, path, alt_path);1144}else{1145output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1146"and%sto%sin%s. Version%sof%sleft in tree at%s."),1147 change, old_path, delete_branch, change_past, path,1148 change_branch, change_branch, path, alt_path);1149}1150}1151/*1152 * No need to call update_file() on path when change_branch ==1153 * o->branch1 && !alt_path, since that would needlessly touch1154 * path. We could call update_file_flags() with update_cache=01155 * and update_wd=0, but that's a no-op.1156 */1157if(change_branch != o->branch1 || alt_path)1158 ret =update_file(o,0, changed_oid, changed_mode, update_path);1159}1160free(alt_path);11611162return ret;1163}11641165static intconflict_rename_delete(struct merge_options *o,1166struct diff_filepair *pair,1167const char*rename_branch,1168const char*delete_branch)1169{1170const struct diff_filespec *orig = pair->one;1171const struct diff_filespec *dest = pair->two;11721173if(handle_change_delete(o,1174 o->call_depth ? orig->path : dest->path,1175 o->call_depth ? NULL : orig->path,1176&orig->oid, orig->mode,1177&dest->oid, dest->mode,1178 rename_branch, delete_branch,1179_("rename"),_("renamed")))1180return-1;11811182if(o->call_depth)1183returnremove_file_from_cache(dest->path);1184else1185returnupdate_stages(o, dest->path, NULL,1186 rename_branch == o->branch1 ? dest : NULL,1187 rename_branch == o->branch1 ? NULL : dest);1188}11891190static struct diff_filespec *filespec_from_entry(struct diff_filespec *target,1191struct stage_data *entry,1192int stage)1193{1194struct object_id *oid = &entry->stages[stage].oid;1195unsigned mode = entry->stages[stage].mode;1196if(mode ==0||is_null_oid(oid))1197return NULL;1198oidcpy(&target->oid, oid);1199 target->mode = mode;1200return target;1201}12021203static inthandle_file(struct merge_options *o,1204struct diff_filespec *rename,1205int stage,1206struct rename_conflict_info *ci)1207{1208char*dst_name = rename->path;1209struct stage_data *dst_entry;1210const char*cur_branch, *other_branch;1211struct diff_filespec other;1212struct diff_filespec *add;1213int ret;12141215if(stage ==2) {1216 dst_entry = ci->dst_entry1;1217 cur_branch = ci->branch1;1218 other_branch = ci->branch2;1219}else{1220 dst_entry = ci->dst_entry2;1221 cur_branch = ci->branch2;1222 other_branch = ci->branch1;1223}12241225 add =filespec_from_entry(&other, dst_entry, stage ^1);1226if(add) {1227char*add_name =unique_path(o, rename->path, other_branch);1228if(update_file(o,0, &add->oid, add->mode, add_name))1229return-1;12301231remove_file(o,0, rename->path,0);1232 dst_name =unique_path(o, rename->path, cur_branch);1233}else{1234if(dir_in_way(rename->path, !o->call_depth,0)) {1235 dst_name =unique_path(o, rename->path, cur_branch);1236output(o,1,_("%sis a directory in%sadding as%sinstead"),1237 rename->path, other_branch, dst_name);1238}1239}1240if((ret =update_file(o,0, &rename->oid, rename->mode, dst_name)))1241;/* fall through, do allow dst_name to be released */1242else if(stage ==2)1243 ret =update_stages(o, rename->path, NULL, rename, add);1244else1245 ret =update_stages(o, rename->path, NULL, add, rename);12461247if(dst_name != rename->path)1248free(dst_name);12491250return ret;1251}12521253static intconflict_rename_rename_1to2(struct merge_options *o,1254struct rename_conflict_info *ci)1255{1256/* One file was renamed in both branches, but to different names. */1257struct diff_filespec *one = ci->pair1->one;1258struct diff_filespec *a = ci->pair1->two;1259struct diff_filespec *b = ci->pair2->two;12601261output(o,1,_("CONFLICT (rename/rename): "1262"Rename\"%s\"->\"%s\"in branch\"%s\""1263"rename\"%s\"->\"%s\"in\"%s\"%s"),1264 one->path, a->path, ci->branch1,1265 one->path, b->path, ci->branch2,1266 o->call_depth ?_(" (left unresolved)") :"");1267if(o->call_depth) {1268struct merge_file_info mfi;1269struct diff_filespec other;1270struct diff_filespec *add;1271if(merge_file_one(o, one->path,1272&one->oid, one->mode,1273&a->oid, a->mode,1274&b->oid, b->mode,1275 ci->branch1, ci->branch2, &mfi))1276return-1;12771278/*1279 * FIXME: For rename/add-source conflicts (if we could detect1280 * such), this is wrong. We should instead find a unique1281 * pathname and then either rename the add-source file to that1282 * unique path, or use that unique path instead of src here.1283 */1284if(update_file(o,0, &mfi.oid, mfi.mode, one->path))1285return-1;12861287/*1288 * Above, we put the merged content at the merge-base's1289 * path. Now we usually need to delete both a->path and1290 * b->path. However, the rename on each side of the merge1291 * could also be involved in a rename/add conflict. In1292 * such cases, we should keep the added file around,1293 * resolving the conflict at that path in its favor.1294 */1295 add =filespec_from_entry(&other, ci->dst_entry1,2^1);1296if(add) {1297if(update_file(o,0, &add->oid, add->mode, a->path))1298return-1;1299}1300else1301remove_file_from_cache(a->path);1302 add =filespec_from_entry(&other, ci->dst_entry2,3^1);1303if(add) {1304if(update_file(o,0, &add->oid, add->mode, b->path))1305return-1;1306}1307else1308remove_file_from_cache(b->path);1309}else if(handle_file(o, a,2, ci) ||handle_file(o, b,3, ci))1310return-1;13111312return0;1313}13141315static intconflict_rename_rename_2to1(struct merge_options *o,1316struct rename_conflict_info *ci)1317{1318/* Two files, a & b, were renamed to the same thing, c. */1319struct diff_filespec *a = ci->pair1->one;1320struct diff_filespec *b = ci->pair2->one;1321struct diff_filespec *c1 = ci->pair1->two;1322struct diff_filespec *c2 = ci->pair2->two;1323char*path = c1->path;/* == c2->path */1324struct merge_file_info mfi_c1;1325struct merge_file_info mfi_c2;1326int ret;13271328output(o,1,_("CONFLICT (rename/rename): "1329"Rename%s->%sin%s. "1330"Rename%s->%sin%s"),1331 a->path, c1->path, ci->branch1,1332 b->path, c2->path, ci->branch2);13331334remove_file(o,1, a->path, o->call_depth ||would_lose_untracked(a->path));1335remove_file(o,1, b->path, o->call_depth ||would_lose_untracked(b->path));13361337if(merge_file_special_markers(o, a, c1, &ci->ren1_other,1338 o->branch1, c1->path,1339 o->branch2, ci->ren1_other.path, &mfi_c1) ||1340merge_file_special_markers(o, b, &ci->ren2_other, c2,1341 o->branch1, ci->ren2_other.path,1342 o->branch2, c2->path, &mfi_c2))1343return-1;13441345if(o->call_depth) {1346/*1347 * If mfi_c1.clean && mfi_c2.clean, then it might make1348 * sense to do a two-way merge of those results. But, I1349 * think in all cases, it makes sense to have the virtual1350 * merge base just undo the renames; they can be detected1351 * again later for the non-recursive merge.1352 */1353remove_file(o,0, path,0);1354 ret =update_file(o,0, &mfi_c1.oid, mfi_c1.mode, a->path);1355if(!ret)1356 ret =update_file(o,0, &mfi_c2.oid, mfi_c2.mode,1357 b->path);1358}else{1359char*new_path1 =unique_path(o, path, ci->branch1);1360char*new_path2 =unique_path(o, path, ci->branch2);1361output(o,1,_("Renaming%sto%sand%sto%sinstead"),1362 a->path, new_path1, b->path, new_path2);1363remove_file(o,0, path,0);1364 ret =update_file(o,0, &mfi_c1.oid, mfi_c1.mode, new_path1);1365if(!ret)1366 ret =update_file(o,0, &mfi_c2.oid, mfi_c2.mode,1367 new_path2);1368free(new_path2);1369free(new_path1);1370}13711372return ret;1373}13741375/*1376 * Get the diff_filepairs changed between o_tree and tree.1377 */1378static struct diff_queue_struct *get_diffpairs(struct merge_options *o,1379struct tree *o_tree,1380struct tree *tree)1381{1382struct diff_queue_struct *ret;1383struct diff_options opts;13841385diff_setup(&opts);1386 opts.flags.recursive =1;1387 opts.flags.rename_empty =0;1388 opts.detect_rename = DIFF_DETECT_RENAME;1389 opts.rename_limit = o->merge_rename_limit >=0? o->merge_rename_limit :1390 o->diff_rename_limit >=0? o->diff_rename_limit :13911000;1392 opts.rename_score = o->rename_score;1393 opts.show_rename_progress = o->show_rename_progress;1394 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1395diff_setup_done(&opts);1396diff_tree_oid(&o_tree->object.oid, &tree->object.oid,"", &opts);1397diffcore_std(&opts);1398if(opts.needed_rename_limit > o->needed_rename_limit)1399 o->needed_rename_limit = opts.needed_rename_limit;14001401 ret =xmalloc(sizeof(*ret));1402*ret = diff_queued_diff;14031404 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1405 diff_queued_diff.nr =0;1406 diff_queued_diff.queue = NULL;1407diff_flush(&opts);1408return ret;1409}14101411static inttree_has_path(struct tree *tree,const char*path)1412{1413unsigned char hashy[GIT_MAX_RAWSZ];1414unsigned int mode_o;14151416return!get_tree_entry(tree->object.oid.hash, path,1417 hashy, &mode_o);1418}14191420/*1421 * Return a new string that replaces the beginning portion (which matches1422 * entry->dir), with entry->new_dir. In perl-speak:1423 * new_path_name = (old_path =~ s/entry->dir/entry->new_dir/);1424 * NOTE:1425 * Caller must ensure that old_path starts with entry->dir + '/'.1426 */1427static char*apply_dir_rename(struct dir_rename_entry *entry,1428const char*old_path)1429{1430struct strbuf new_path = STRBUF_INIT;1431int oldlen, newlen;14321433if(entry->non_unique_new_dir)1434return NULL;14351436 oldlen =strlen(entry->dir);1437 newlen = entry->new_dir.len + (strlen(old_path) - oldlen) +1;1438strbuf_grow(&new_path, newlen);1439strbuf_addbuf(&new_path, &entry->new_dir);1440strbuf_addstr(&new_path, &old_path[oldlen]);14411442returnstrbuf_detach(&new_path, NULL);1443}14441445static voidget_renamed_dir_portion(const char*old_path,const char*new_path,1446char**old_dir,char**new_dir)1447{1448char*end_of_old, *end_of_new;1449int old_len, new_len;14501451*old_dir = NULL;1452*new_dir = NULL;14531454/*1455 * For1456 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"1457 * the "e/foo.c" part is the same, we just want to know that1458 * "a/b/c/d" was renamed to "a/b/some/thing/else"1459 * so, for this example, this function returns "a/b/c/d" in1460 * *old_dir and "a/b/some/thing/else" in *new_dir.1461 *1462 * Also, if the basename of the file changed, we don't care. We1463 * want to know which portion of the directory, if any, changed.1464 */1465 end_of_old =strrchr(old_path,'/');1466 end_of_new =strrchr(new_path,'/');14671468if(end_of_old == NULL || end_of_new == NULL)1469return;1470while(*--end_of_new == *--end_of_old &&1471 end_of_old != old_path &&1472 end_of_new != new_path)1473;/* Do nothing; all in the while loop */1474/*1475 * We've found the first non-matching character in the directory1476 * paths. That means the current directory we were comparing1477 * represents the rename. Move end_of_old and end_of_new back1478 * to the full directory name.1479 */1480if(*end_of_old =='/')1481 end_of_old++;1482if(*end_of_old !='/')1483 end_of_new++;1484 end_of_old =strchr(end_of_old,'/');1485 end_of_new =strchr(end_of_new,'/');14861487/*1488 * It may have been the case that old_path and new_path were the same1489 * directory all along. Don't claim a rename if they're the same.1490 */1491 old_len = end_of_old - old_path;1492 new_len = end_of_new - new_path;14931494if(old_len != new_len ||strncmp(old_path, new_path, old_len)) {1495*old_dir =xstrndup(old_path, old_len);1496*new_dir =xstrndup(new_path, new_len);1497}1498}14991500static voidremove_hashmap_entries(struct hashmap *dir_renames,1501struct string_list *items_to_remove)1502{1503int i;1504struct dir_rename_entry *entry;15051506for(i =0; i < items_to_remove->nr; i++) {1507 entry = items_to_remove->items[i].util;1508hashmap_remove(dir_renames, entry, NULL);1509}1510string_list_clear(items_to_remove,0);1511}15121513/*1514 * See if there is a directory rename for path, and if there are any file1515 * level conflicts for the renamed location. If there is a rename and1516 * there are no conflicts, return the new name. Otherwise, return NULL.1517 */1518static char*handle_path_level_conflicts(struct merge_options *o,1519const char*path,1520struct dir_rename_entry *entry,1521struct hashmap *collisions,1522struct tree *tree)1523{1524char*new_path = NULL;1525struct collision_entry *collision_ent;1526int clean =1;1527struct strbuf collision_paths = STRBUF_INIT;15281529/*1530 * entry has the mapping of old directory name to new directory name1531 * that we want to apply to path.1532 */1533 new_path =apply_dir_rename(entry, path);15341535if(!new_path) {1536/* This should only happen when entry->non_unique_new_dir set */1537if(!entry->non_unique_new_dir)1538BUG("entry->non_unqiue_dir not set and !new_path");1539output(o,1,_("CONFLICT (directory rename split): "1540"Unclear where to place%sbecause directory "1541"%swas renamed to multiple other directories, "1542"with no destination getting a majority of the "1543"files."),1544 path, entry->dir);1545 clean =0;1546return NULL;1547}15481549/*1550 * The caller needs to have ensured that it has pre-populated1551 * collisions with all paths that map to new_path. Do a quick check1552 * to ensure that's the case.1553 */1554 collision_ent =collision_find_entry(collisions, new_path);1555if(collision_ent == NULL)1556BUG("collision_ent is NULL");15571558/*1559 * Check for one-sided add/add/.../add conflicts, i.e.1560 * where implicit renames from the other side doing1561 * directory rename(s) can affect this side of history1562 * to put multiple paths into the same location. Warn1563 * and bail on directory renames for such paths.1564 */1565if(collision_ent->reported_already) {1566 clean =0;1567}else if(tree_has_path(tree, new_path)) {1568 collision_ent->reported_already =1;1569strbuf_add_separated_string_list(&collision_paths,", ",1570&collision_ent->source_files);1571output(o,1,_("CONFLICT (implicit dir rename): Existing "1572"file/dir at%sin the way of implicit "1573"directory rename(s) putting the following "1574"path(s) there:%s."),1575 new_path, collision_paths.buf);1576 clean =0;1577}else if(collision_ent->source_files.nr >1) {1578 collision_ent->reported_already =1;1579strbuf_add_separated_string_list(&collision_paths,", ",1580&collision_ent->source_files);1581output(o,1,_("CONFLICT (implicit dir rename): Cannot map "1582"more than one path to%s; implicit directory "1583"renames tried to put these paths there:%s"),1584 new_path, collision_paths.buf);1585 clean =0;1586}15871588/* Free memory we no longer need */1589strbuf_release(&collision_paths);1590if(!clean && new_path) {1591free(new_path);1592return NULL;1593}15941595return new_path;1596}15971598/*1599 * There are a couple things we want to do at the directory level:1600 * 1. Check for both sides renaming to the same thing, in order to avoid1601 * implicit renaming of files that should be left in place. (See1602 * testcase 6b in t6043 for details.)1603 * 2. Prune directory renames if there are still files left in the1604 * the original directory. These represent a partial directory rename,1605 * i.e. a rename where only some of the files within the directory1606 * were renamed elsewhere. (Technically, this could be done earlier1607 * in get_directory_renames(), except that would prevent us from1608 * doing the previous check and thus failing testcase 6b.)1609 * 3. Check for rename/rename(1to2) conflicts (at the directory level).1610 * In the future, we could potentially record this info as well and1611 * omit reporting rename/rename(1to2) conflicts for each path within1612 * the affected directories, thus cleaning up the merge output.1613 * NOTE: We do NOT check for rename/rename(2to1) conflicts at the1614 * directory level, because merging directories is fine. If it1615 * causes conflicts for files within those merged directories, then1616 * that should be detected at the individual path level.1617 */1618static voidhandle_directory_level_conflicts(struct merge_options *o,1619struct hashmap *dir_re_head,1620struct tree *head,1621struct hashmap *dir_re_merge,1622struct tree *merge)1623{1624struct hashmap_iter iter;1625struct dir_rename_entry *head_ent;1626struct dir_rename_entry *merge_ent;16271628struct string_list remove_from_head = STRING_LIST_INIT_NODUP;1629struct string_list remove_from_merge = STRING_LIST_INIT_NODUP;16301631hashmap_iter_init(dir_re_head, &iter);1632while((head_ent =hashmap_iter_next(&iter))) {1633 merge_ent =dir_rename_find_entry(dir_re_merge, head_ent->dir);1634if(merge_ent &&1635!head_ent->non_unique_new_dir &&1636!merge_ent->non_unique_new_dir &&1637!strbuf_cmp(&head_ent->new_dir, &merge_ent->new_dir)) {1638/* 1. Renamed identically; remove it from both sides */1639string_list_append(&remove_from_head,1640 head_ent->dir)->util = head_ent;1641strbuf_release(&head_ent->new_dir);1642string_list_append(&remove_from_merge,1643 merge_ent->dir)->util = merge_ent;1644strbuf_release(&merge_ent->new_dir);1645}else if(tree_has_path(head, head_ent->dir)) {1646/* 2. This wasn't a directory rename after all */1647string_list_append(&remove_from_head,1648 head_ent->dir)->util = head_ent;1649strbuf_release(&head_ent->new_dir);1650}1651}16521653remove_hashmap_entries(dir_re_head, &remove_from_head);1654remove_hashmap_entries(dir_re_merge, &remove_from_merge);16551656hashmap_iter_init(dir_re_merge, &iter);1657while((merge_ent =hashmap_iter_next(&iter))) {1658 head_ent =dir_rename_find_entry(dir_re_head, merge_ent->dir);1659if(tree_has_path(merge, merge_ent->dir)) {1660/* 2. This wasn't a directory rename after all */1661string_list_append(&remove_from_merge,1662 merge_ent->dir)->util = merge_ent;1663}else if(head_ent &&1664!head_ent->non_unique_new_dir &&1665!merge_ent->non_unique_new_dir) {1666/* 3. rename/rename(1to2) */1667/*1668 * We can assume it's not rename/rename(1to1) because1669 * that was case (1), already checked above. So we1670 * know that head_ent->new_dir and merge_ent->new_dir1671 * are different strings.1672 */1673output(o,1,_("CONFLICT (rename/rename): "1674"Rename directory%s->%sin%s. "1675"Rename directory%s->%sin%s"),1676 head_ent->dir, head_ent->new_dir.buf, o->branch1,1677 head_ent->dir, merge_ent->new_dir.buf, o->branch2);1678string_list_append(&remove_from_head,1679 head_ent->dir)->util = head_ent;1680strbuf_release(&head_ent->new_dir);1681string_list_append(&remove_from_merge,1682 merge_ent->dir)->util = merge_ent;1683strbuf_release(&merge_ent->new_dir);1684}1685}16861687remove_hashmap_entries(dir_re_head, &remove_from_head);1688remove_hashmap_entries(dir_re_merge, &remove_from_merge);1689}16901691static struct hashmap *get_directory_renames(struct diff_queue_struct *pairs,1692struct tree *tree)1693{1694struct hashmap *dir_renames;1695struct hashmap_iter iter;1696struct dir_rename_entry *entry;1697int i;16981699/*1700 * Typically, we think of a directory rename as all files from a1701 * certain directory being moved to a target directory. However,1702 * what if someone first moved two files from the original1703 * directory in one commit, and then renamed the directory1704 * somewhere else in a later commit? At merge time, we just know1705 * that files from the original directory went to two different1706 * places, and that the bulk of them ended up in the same place.1707 * We want each directory rename to represent where the bulk of the1708 * files from that directory end up; this function exists to find1709 * where the bulk of the files went.1710 *1711 * The first loop below simply iterates through the list of file1712 * renames, finding out how often each directory rename pair1713 * possibility occurs.1714 */1715 dir_renames =xmalloc(sizeof(struct hashmap));1716dir_rename_init(dir_renames);1717for(i =0; i < pairs->nr; ++i) {1718struct string_list_item *item;1719int*count;1720struct diff_filepair *pair = pairs->queue[i];1721char*old_dir, *new_dir;17221723/* File not part of directory rename if it wasn't renamed */1724if(pair->status !='R')1725continue;17261727get_renamed_dir_portion(pair->one->path, pair->two->path,1728&old_dir, &new_dir);1729if(!old_dir)1730/* Directory didn't change at all; ignore this one. */1731continue;17321733 entry =dir_rename_find_entry(dir_renames, old_dir);1734if(!entry) {1735 entry =xmalloc(sizeof(struct dir_rename_entry));1736dir_rename_entry_init(entry, old_dir);1737hashmap_put(dir_renames, entry);1738}else{1739free(old_dir);1740}1741 item =string_list_lookup(&entry->possible_new_dirs, new_dir);1742if(!item) {1743 item =string_list_insert(&entry->possible_new_dirs,1744 new_dir);1745 item->util =xcalloc(1,sizeof(int));1746}else{1747free(new_dir);1748}1749 count = item->util;1750*count +=1;1751}17521753/*1754 * For each directory with files moved out of it, we find out which1755 * target directory received the most files so we can declare it to1756 * be the "winning" target location for the directory rename. This1757 * winner gets recorded in new_dir. If there is no winner1758 * (multiple target directories received the same number of files),1759 * we set non_unique_new_dir. Once we've determined the winner (or1760 * that there is no winner), we no longer need possible_new_dirs.1761 */1762hashmap_iter_init(dir_renames, &iter);1763while((entry =hashmap_iter_next(&iter))) {1764int max =0;1765int bad_max =0;1766char*best = NULL;17671768for(i =0; i < entry->possible_new_dirs.nr; i++) {1769int*count = entry->possible_new_dirs.items[i].util;17701771if(*count == max)1772 bad_max = max;1773else if(*count > max) {1774 max = *count;1775 best = entry->possible_new_dirs.items[i].string;1776}1777}1778if(bad_max == max)1779 entry->non_unique_new_dir =1;1780else{1781assert(entry->new_dir.len ==0);1782strbuf_addstr(&entry->new_dir, best);1783}1784/*1785 * The relevant directory sub-portion of the original full1786 * filepaths were xstrndup'ed before inserting into1787 * possible_new_dirs, and instead of manually iterating the1788 * list and free'ing each, just lie and tell1789 * possible_new_dirs that it did the strdup'ing so that it1790 * will free them for us.1791 */1792 entry->possible_new_dirs.strdup_strings =1;1793string_list_clear(&entry->possible_new_dirs,1);1794}17951796return dir_renames;1797}17981799static struct dir_rename_entry *check_dir_renamed(const char*path,1800struct hashmap *dir_renames)1801{1802char temp[PATH_MAX];1803char*end;1804struct dir_rename_entry *entry;18051806strcpy(temp, path);1807while((end =strrchr(temp,'/'))) {1808*end ='\0';1809 entry =dir_rename_find_entry(dir_renames, temp);1810if(entry)1811return entry;1812}1813return NULL;1814}18151816static voidcompute_collisions(struct hashmap *collisions,1817struct hashmap *dir_renames,1818struct diff_queue_struct *pairs)1819{1820int i;18211822/*1823 * Multiple files can be mapped to the same path due to directory1824 * renames done by the other side of history. Since that other1825 * side of history could have merged multiple directories into one,1826 * if our side of history added the same file basename to each of1827 * those directories, then all N of them would get implicitly1828 * renamed by the directory rename detection into the same path,1829 * and we'd get an add/add/.../add conflict, and all those adds1830 * from *this* side of history. This is not representable in the1831 * index, and users aren't going to easily be able to make sense of1832 * it. So we need to provide a good warning about what's1833 * happening, and fall back to no-directory-rename detection1834 * behavior for those paths.1835 *1836 * See testcases 9e and all of section 5 from t6043 for examples.1837 */1838collision_init(collisions);18391840for(i =0; i < pairs->nr; ++i) {1841struct dir_rename_entry *dir_rename_ent;1842struct collision_entry *collision_ent;1843char*new_path;1844struct diff_filepair *pair = pairs->queue[i];18451846if(pair->status =='D')1847continue;1848 dir_rename_ent =check_dir_renamed(pair->two->path,1849 dir_renames);1850if(!dir_rename_ent)1851continue;18521853 new_path =apply_dir_rename(dir_rename_ent, pair->two->path);1854if(!new_path)1855/*1856 * dir_rename_ent->non_unique_new_path is true, which1857 * means there is no directory rename for us to use,1858 * which means it won't cause us any additional1859 * collisions.1860 */1861continue;1862 collision_ent =collision_find_entry(collisions, new_path);1863if(!collision_ent) {1864 collision_ent =xcalloc(1,1865sizeof(struct collision_entry));1866hashmap_entry_init(collision_ent,strhash(new_path));1867hashmap_put(collisions, collision_ent);1868 collision_ent->target_file = new_path;1869}else{1870free(new_path);1871}1872string_list_insert(&collision_ent->source_files,1873 pair->two->path);1874}1875}18761877static char*check_for_directory_rename(struct merge_options *o,1878const char*path,1879struct tree *tree,1880struct hashmap *dir_renames,1881struct hashmap *dir_rename_exclusions,1882struct hashmap *collisions,1883int*clean_merge)1884{1885char*new_path = NULL;1886struct dir_rename_entry *entry =check_dir_renamed(path, dir_renames);1887struct dir_rename_entry *oentry = NULL;18881889if(!entry)1890return new_path;18911892/*1893 * This next part is a little weird. We do not want to do an1894 * implicit rename into a directory we renamed on our side, because1895 * that will result in a spurious rename/rename(1to2) conflict. An1896 * example:1897 * Base commit: dumbdir/afile, otherdir/bfile1898 * Side 1: smrtdir/afile, otherdir/bfile1899 * Side 2: dumbdir/afile, dumbdir/bfile1900 * Here, while working on Side 1, we could notice that otherdir was1901 * renamed/merged to dumbdir, and change the diff_filepair for1902 * otherdir/bfile into a rename into dumbdir/bfile. However, Side1903 * 2 will notice the rename from dumbdir to smrtdir, and do the1904 * transitive rename to move it from dumbdir/bfile to1905 * smrtdir/bfile. That gives us bfile in dumbdir vs being in1906 * smrtdir, a rename/rename(1to2) conflict. We really just want1907 * the file to end up in smrtdir. And the way to achieve that is1908 * to not let Side1 do the rename to dumbdir, since we know that is1909 * the source of one of our directory renames.1910 *1911 * That's why oentry and dir_rename_exclusions is here.1912 *1913 * As it turns out, this also prevents N-way transient rename1914 * confusion; See testcases 9c and 9d of t6043.1915 */1916 oentry =dir_rename_find_entry(dir_rename_exclusions, entry->new_dir.buf);1917if(oentry) {1918output(o,1,_("WARNING: Avoiding applying%s->%srename "1919"to%s, because%sitself was renamed."),1920 entry->dir, entry->new_dir.buf, path, entry->new_dir.buf);1921}else{1922 new_path =handle_path_level_conflicts(o, path, entry,1923 collisions, tree);1924*clean_merge &= (new_path != NULL);1925}19261927return new_path;1928}19291930/*1931 * Get information of all renames which occurred in 'pairs', making use of1932 * any implicit directory renames inferred from the other side of history.1933 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')1934 * to be able to associate the correct cache entries with the rename1935 * information; tree is always equal to either a_tree or b_tree.1936 */1937static struct string_list *get_renames(struct merge_options *o,1938struct diff_queue_struct *pairs,1939struct hashmap *dir_renames,1940struct hashmap *dir_rename_exclusions,1941struct tree *tree,1942struct tree *o_tree,1943struct tree *a_tree,1944struct tree *b_tree,1945struct string_list *entries,1946int*clean_merge)1947{1948int i;1949struct hashmap collisions;1950struct hashmap_iter iter;1951struct collision_entry *e;1952struct string_list *renames;19531954compute_collisions(&collisions, dir_renames, pairs);1955 renames =xcalloc(1,sizeof(struct string_list));19561957for(i =0; i < pairs->nr; ++i) {1958struct string_list_item *item;1959struct rename *re;1960struct diff_filepair *pair = pairs->queue[i];1961char*new_path;/* non-NULL only with directory renames */19621963if(pair->status =='D') {1964diff_free_filepair(pair);1965continue;1966}1967 new_path =check_for_directory_rename(o, pair->two->path, tree,1968 dir_renames,1969 dir_rename_exclusions,1970&collisions,1971 clean_merge);1972if(pair->status !='R'&& !new_path) {1973diff_free_filepair(pair);1974continue;1975}19761977 re =xmalloc(sizeof(*re));1978 re->processed =0;1979 re->pair = pair;1980 item =string_list_lookup(entries, re->pair->one->path);1981if(!item)1982 re->src_entry =insert_stage_data(re->pair->one->path,1983 o_tree, a_tree, b_tree, entries);1984else1985 re->src_entry = item->util;19861987 item =string_list_lookup(entries, re->pair->two->path);1988if(!item)1989 re->dst_entry =insert_stage_data(re->pair->two->path,1990 o_tree, a_tree, b_tree, entries);1991else1992 re->dst_entry = item->util;1993 item =string_list_insert(renames, pair->one->path);1994 item->util = re;1995}19961997hashmap_iter_init(&collisions, &iter);1998while((e =hashmap_iter_next(&iter))) {1999free(e->target_file);2000string_list_clear(&e->source_files,0);2001}2002hashmap_free(&collisions,1);2003return renames;2004}20052006static intprocess_renames(struct merge_options *o,2007struct string_list *a_renames,2008struct string_list *b_renames)2009{2010int clean_merge =1, i, j;2011struct string_list a_by_dst = STRING_LIST_INIT_NODUP;2012struct string_list b_by_dst = STRING_LIST_INIT_NODUP;2013const struct rename *sre;20142015for(i =0; i < a_renames->nr; i++) {2016 sre = a_renames->items[i].util;2017string_list_insert(&a_by_dst, sre->pair->two->path)->util2018= (void*)sre;2019}2020for(i =0; i < b_renames->nr; i++) {2021 sre = b_renames->items[i].util;2022string_list_insert(&b_by_dst, sre->pair->two->path)->util2023= (void*)sre;2024}20252026for(i =0, j =0; i < a_renames->nr || j < b_renames->nr;) {2027struct string_list *renames1, *renames2Dst;2028struct rename *ren1 = NULL, *ren2 = NULL;2029const char*branch1, *branch2;2030const char*ren1_src, *ren1_dst;2031struct string_list_item *lookup;20322033if(i >= a_renames->nr) {2034 ren2 = b_renames->items[j++].util;2035}else if(j >= b_renames->nr) {2036 ren1 = a_renames->items[i++].util;2037}else{2038int compare =strcmp(a_renames->items[i].string,2039 b_renames->items[j].string);2040if(compare <=0)2041 ren1 = a_renames->items[i++].util;2042if(compare >=0)2043 ren2 = b_renames->items[j++].util;2044}20452046/* TODO: refactor, so that 1/2 are not needed */2047if(ren1) {2048 renames1 = a_renames;2049 renames2Dst = &b_by_dst;2050 branch1 = o->branch1;2051 branch2 = o->branch2;2052}else{2053 renames1 = b_renames;2054 renames2Dst = &a_by_dst;2055 branch1 = o->branch2;2056 branch2 = o->branch1;2057SWAP(ren2, ren1);2058}20592060if(ren1->processed)2061continue;2062 ren1->processed =1;2063 ren1->dst_entry->processed =1;2064/* BUG: We should only mark src_entry as processed if we2065 * are not dealing with a rename + add-source case.2066 */2067 ren1->src_entry->processed =1;20682069 ren1_src = ren1->pair->one->path;2070 ren1_dst = ren1->pair->two->path;20712072if(ren2) {2073/* One file renamed on both sides */2074const char*ren2_src = ren2->pair->one->path;2075const char*ren2_dst = ren2->pair->two->path;2076enum rename_type rename_type;2077if(strcmp(ren1_src, ren2_src) !=0)2078die("BUG: ren1_src != ren2_src");2079 ren2->dst_entry->processed =1;2080 ren2->processed =1;2081if(strcmp(ren1_dst, ren2_dst) !=0) {2082 rename_type = RENAME_ONE_FILE_TO_TWO;2083 clean_merge =0;2084}else{2085 rename_type = RENAME_ONE_FILE_TO_ONE;2086/* BUG: We should only remove ren1_src in2087 * the base stage (think of rename +2088 * add-source cases).2089 */2090remove_file(o,1, ren1_src,1);2091update_entry(ren1->dst_entry,2092 ren1->pair->one,2093 ren1->pair->two,2094 ren2->pair->two);2095}2096setup_rename_conflict_info(rename_type,2097 ren1->pair,2098 ren2->pair,2099 branch1,2100 branch2,2101 ren1->dst_entry,2102 ren2->dst_entry,2103 o,2104 NULL,2105 NULL);2106}else if((lookup =string_list_lookup(renames2Dst, ren1_dst))) {2107/* Two different files renamed to the same thing */2108char*ren2_dst;2109 ren2 = lookup->util;2110 ren2_dst = ren2->pair->two->path;2111if(strcmp(ren1_dst, ren2_dst) !=0)2112die("BUG: ren1_dst != ren2_dst");21132114 clean_merge =0;2115 ren2->processed =1;2116/*2117 * BUG: We should only mark src_entry as processed2118 * if we are not dealing with a rename + add-source2119 * case.2120 */2121 ren2->src_entry->processed =1;21222123setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE,2124 ren1->pair,2125 ren2->pair,2126 branch1,2127 branch2,2128 ren1->dst_entry,2129 ren2->dst_entry,2130 o,2131 ren1->src_entry,2132 ren2->src_entry);21332134}else{2135/* Renamed in 1, maybe changed in 2 */2136/* we only use sha1 and mode of these */2137struct diff_filespec src_other, dst_other;2138int try_merge;21392140/*2141 * unpack_trees loads entries from common-commit2142 * into stage 1, from head-commit into stage 2, and2143 * from merge-commit into stage 3. We keep track2144 * of which side corresponds to the rename.2145 */2146int renamed_stage = a_renames == renames1 ?2:3;2147int other_stage = a_renames == renames1 ?3:2;21482149/* BUG: We should only remove ren1_src in the base2150 * stage and in other_stage (think of rename +2151 * add-source case).2152 */2153remove_file(o,1, ren1_src,2154 renamed_stage ==2|| !was_tracked(ren1_src));21552156oidcpy(&src_other.oid,2157&ren1->src_entry->stages[other_stage].oid);2158 src_other.mode = ren1->src_entry->stages[other_stage].mode;2159oidcpy(&dst_other.oid,2160&ren1->dst_entry->stages[other_stage].oid);2161 dst_other.mode = ren1->dst_entry->stages[other_stage].mode;2162 try_merge =0;21632164if(oid_eq(&src_other.oid, &null_oid)) {2165setup_rename_conflict_info(RENAME_DELETE,2166 ren1->pair,2167 NULL,2168 branch1,2169 branch2,2170 ren1->dst_entry,2171 NULL,2172 o,2173 NULL,2174 NULL);2175}else if((dst_other.mode == ren1->pair->two->mode) &&2176oid_eq(&dst_other.oid, &ren1->pair->two->oid)) {2177/*2178 * Added file on the other side identical to2179 * the file being renamed: clean merge.2180 * Also, there is no need to overwrite the2181 * file already in the working copy, so call2182 * update_file_flags() instead of2183 * update_file().2184 */2185if(update_file_flags(o,2186&ren1->pair->two->oid,2187 ren1->pair->two->mode,2188 ren1_dst,21891,/* update_cache */21900/* update_wd */))2191 clean_merge = -1;2192}else if(!oid_eq(&dst_other.oid, &null_oid)) {2193 clean_merge =0;2194 try_merge =1;2195output(o,1,_("CONFLICT (rename/add): Rename%s->%sin%s. "2196"%sadded in%s"),2197 ren1_src, ren1_dst, branch1,2198 ren1_dst, branch2);2199if(o->call_depth) {2200struct merge_file_info mfi;2201if(merge_file_one(o, ren1_dst, &null_oid,0,2202&ren1->pair->two->oid,2203 ren1->pair->two->mode,2204&dst_other.oid,2205 dst_other.mode,2206 branch1, branch2, &mfi)) {2207 clean_merge = -1;2208goto cleanup_and_return;2209}2210output(o,1,_("Adding merged%s"), ren1_dst);2211if(update_file(o,0, &mfi.oid,2212 mfi.mode, ren1_dst))2213 clean_merge = -1;2214 try_merge =0;2215}else{2216char*new_path =unique_path(o, ren1_dst, branch2);2217output(o,1,_("Adding as%sinstead"), new_path);2218if(update_file(o,0, &dst_other.oid,2219 dst_other.mode, new_path))2220 clean_merge = -1;2221free(new_path);2222}2223}else2224 try_merge =1;22252226if(clean_merge <0)2227goto cleanup_and_return;2228if(try_merge) {2229struct diff_filespec *one, *a, *b;2230 src_other.path = (char*)ren1_src;22312232 one = ren1->pair->one;2233if(a_renames == renames1) {2234 a = ren1->pair->two;2235 b = &src_other;2236}else{2237 b = ren1->pair->two;2238 a = &src_other;2239}2240update_entry(ren1->dst_entry, one, a, b);2241setup_rename_conflict_info(RENAME_NORMAL,2242 ren1->pair,2243 NULL,2244 branch1,2245 NULL,2246 ren1->dst_entry,2247 NULL,2248 o,2249 NULL,2250 NULL);2251}2252}2253}2254cleanup_and_return:2255string_list_clear(&a_by_dst,0);2256string_list_clear(&b_by_dst,0);22572258return clean_merge;2259}22602261struct rename_info {2262struct string_list *head_renames;2263struct string_list *merge_renames;2264};22652266static voidinitial_cleanup_rename(struct diff_queue_struct *pairs,2267struct hashmap *dir_renames)2268{2269struct hashmap_iter iter;2270struct dir_rename_entry *e;22712272hashmap_iter_init(dir_renames, &iter);2273while((e =hashmap_iter_next(&iter))) {2274free(e->dir);2275strbuf_release(&e->new_dir);2276/* possible_new_dirs already cleared in get_directory_renames */2277}2278hashmap_free(dir_renames,1);2279free(dir_renames);22802281free(pairs->queue);2282free(pairs);2283}22842285static inthandle_renames(struct merge_options *o,2286struct tree *common,2287struct tree *head,2288struct tree *merge,2289struct string_list *entries,2290struct rename_info *ri)2291{2292struct diff_queue_struct *head_pairs, *merge_pairs;2293struct hashmap *dir_re_head, *dir_re_merge;2294int clean =1;22952296 ri->head_renames = NULL;2297 ri->merge_renames = NULL;22982299if(!o->detect_rename)2300return1;23012302 head_pairs =get_diffpairs(o, common, head);2303 merge_pairs =get_diffpairs(o, common, merge);23042305 dir_re_head =get_directory_renames(head_pairs, head);2306 dir_re_merge =get_directory_renames(merge_pairs, merge);23072308handle_directory_level_conflicts(o,2309 dir_re_head, head,2310 dir_re_merge, merge);23112312 ri->head_renames =get_renames(o, head_pairs,2313 dir_re_merge, dir_re_head, head,2314 common, head, merge, entries,2315&clean);2316if(clean <0)2317goto cleanup;2318 ri->merge_renames =get_renames(o, merge_pairs,2319 dir_re_head, dir_re_merge, merge,2320 common, head, merge, entries,2321&clean);2322if(clean <0)2323goto cleanup;2324 clean &=process_renames(o, ri->head_renames, ri->merge_renames);23252326cleanup:2327/*2328 * Some cleanup is deferred until cleanup_renames() because the2329 * data structures are still needed and referenced in2330 * process_entry(). But there are a few things we can free now.2331 */2332initial_cleanup_rename(head_pairs, dir_re_head);2333initial_cleanup_rename(merge_pairs, dir_re_merge);23342335return clean;2336}23372338static voidfinal_cleanup_rename(struct string_list *rename)2339{2340const struct rename *re;2341int i;23422343if(rename == NULL)2344return;23452346for(i =0; i < rename->nr; i++) {2347 re = rename->items[i].util;2348diff_free_filepair(re->pair);2349}2350string_list_clear(rename,1);2351free(rename);2352}23532354static voidfinal_cleanup_renames(struct rename_info *re_info)2355{2356final_cleanup_rename(re_info->head_renames);2357final_cleanup_rename(re_info->merge_renames);2358}23592360static struct object_id *stage_oid(const struct object_id *oid,unsigned mode)2361{2362return(is_null_oid(oid) || mode ==0) ? NULL: (struct object_id *)oid;2363}23642365static intread_oid_strbuf(struct merge_options *o,2366const struct object_id *oid,struct strbuf *dst)2367{2368void*buf;2369enum object_type type;2370unsigned long size;2371 buf =read_sha1_file(oid->hash, &type, &size);2372if(!buf)2373returnerr(o,_("cannot read object%s"),oid_to_hex(oid));2374if(type != OBJ_BLOB) {2375free(buf);2376returnerr(o,_("object%sis not a blob"),oid_to_hex(oid));2377}2378strbuf_attach(dst, buf, size, size +1);2379return0;2380}23812382static intblob_unchanged(struct merge_options *opt,2383const struct object_id *o_oid,2384unsigned o_mode,2385const struct object_id *a_oid,2386unsigned a_mode,2387int renormalize,const char*path)2388{2389struct strbuf o = STRBUF_INIT;2390struct strbuf a = STRBUF_INIT;2391int ret =0;/* assume changed for safety */23922393if(a_mode != o_mode)2394return0;2395if(oid_eq(o_oid, a_oid))2396return1;2397if(!renormalize)2398return0;23992400assert(o_oid && a_oid);2401if(read_oid_strbuf(opt, o_oid, &o) ||read_oid_strbuf(opt, a_oid, &a))2402goto error_return;2403/*2404 * Note: binary | is used so that both renormalizations are2405 * performed. Comparison can be skipped if both files are2406 * unchanged since their sha1s have already been compared.2407 */2408if(renormalize_buffer(&the_index, path, o.buf, o.len, &o) |2409renormalize_buffer(&the_index, path, a.buf, a.len, &a))2410 ret = (o.len == a.len && !memcmp(o.buf, a.buf, o.len));24112412error_return:2413strbuf_release(&o);2414strbuf_release(&a);2415return ret;2416}24172418static inthandle_modify_delete(struct merge_options *o,2419const char*path,2420struct object_id *o_oid,int o_mode,2421struct object_id *a_oid,int a_mode,2422struct object_id *b_oid,int b_mode)2423{2424const char*modify_branch, *delete_branch;2425struct object_id *changed_oid;2426int changed_mode;24272428if(a_oid) {2429 modify_branch = o->branch1;2430 delete_branch = o->branch2;2431 changed_oid = a_oid;2432 changed_mode = a_mode;2433}else{2434 modify_branch = o->branch2;2435 delete_branch = o->branch1;2436 changed_oid = b_oid;2437 changed_mode = b_mode;2438}24392440returnhandle_change_delete(o,2441 path, NULL,2442 o_oid, o_mode,2443 changed_oid, changed_mode,2444 modify_branch, delete_branch,2445_("modify"),_("modified"));2446}24472448static intmerge_content(struct merge_options *o,2449const char*path,2450struct object_id *o_oid,int o_mode,2451struct object_id *a_oid,int a_mode,2452struct object_id *b_oid,int b_mode,2453struct rename_conflict_info *rename_conflict_info)2454{2455const char*reason =_("content");2456const char*path1 = NULL, *path2 = NULL;2457struct merge_file_info mfi;2458struct diff_filespec one, a, b;2459unsigned df_conflict_remains =0;24602461if(!o_oid) {2462 reason =_("add/add");2463 o_oid = (struct object_id *)&null_oid;2464}2465 one.path = a.path = b.path = (char*)path;2466oidcpy(&one.oid, o_oid);2467 one.mode = o_mode;2468oidcpy(&a.oid, a_oid);2469 a.mode = a_mode;2470oidcpy(&b.oid, b_oid);2471 b.mode = b_mode;24722473if(rename_conflict_info) {2474struct diff_filepair *pair1 = rename_conflict_info->pair1;24752476 path1 = (o->branch1 == rename_conflict_info->branch1) ?2477 pair1->two->path : pair1->one->path;2478/* If rename_conflict_info->pair2 != NULL, we are in2479 * RENAME_ONE_FILE_TO_ONE case. Otherwise, we have a2480 * normal rename.2481 */2482 path2 = (rename_conflict_info->pair2 ||2483 o->branch2 == rename_conflict_info->branch1) ?2484 pair1->two->path : pair1->one->path;24852486if(dir_in_way(path, !o->call_depth,2487S_ISGITLINK(pair1->two->mode)))2488 df_conflict_remains =1;2489}2490if(merge_file_special_markers(o, &one, &a, &b,2491 o->branch1, path1,2492 o->branch2, path2, &mfi))2493return-1;24942495if(mfi.clean && !df_conflict_remains &&2496oid_eq(&mfi.oid, a_oid) && mfi.mode == a_mode) {2497int path_renamed_outside_HEAD;2498output(o,3,_("Skipped%s(merged same as existing)"), path);2499/*2500 * The content merge resulted in the same file contents we2501 * already had. We can return early if those file contents2502 * are recorded at the correct path (which may not be true2503 * if the merge involves a rename).2504 */2505 path_renamed_outside_HEAD = !path2 || !strcmp(path, path2);2506if(!path_renamed_outside_HEAD) {2507add_cacheinfo(o, mfi.mode, &mfi.oid, path,25080, (!o->call_depth),0);2509return mfi.clean;2510}2511}else2512output(o,2,_("Auto-merging%s"), path);25132514if(!mfi.clean) {2515if(S_ISGITLINK(mfi.mode))2516 reason =_("submodule");2517output(o,1,_("CONFLICT (%s): Merge conflict in%s"),2518 reason, path);2519if(rename_conflict_info && !df_conflict_remains)2520if(update_stages(o, path, &one, &a, &b))2521return-1;2522}25232524if(df_conflict_remains) {2525char*new_path;2526if(o->call_depth) {2527remove_file_from_cache(path);2528}else{2529if(!mfi.clean) {2530if(update_stages(o, path, &one, &a, &b))2531return-1;2532}else{2533int file_from_stage2 =was_tracked(path);2534struct diff_filespec merged;2535oidcpy(&merged.oid, &mfi.oid);2536 merged.mode = mfi.mode;25372538if(update_stages(o, path, NULL,2539 file_from_stage2 ? &merged : NULL,2540 file_from_stage2 ? NULL : &merged))2541return-1;2542}25432544}2545 new_path =unique_path(o, path, rename_conflict_info->branch1);2546output(o,1,_("Adding as%sinstead"), new_path);2547if(update_file(o,0, &mfi.oid, mfi.mode, new_path)) {2548free(new_path);2549return-1;2550}2551free(new_path);2552 mfi.clean =0;2553}else if(update_file(o, mfi.clean, &mfi.oid, mfi.mode, path))2554return-1;2555return mfi.clean;2556}25572558/* Per entry merge function */2559static intprocess_entry(struct merge_options *o,2560const char*path,struct stage_data *entry)2561{2562int clean_merge =1;2563int normalize = o->renormalize;2564unsigned o_mode = entry->stages[1].mode;2565unsigned a_mode = entry->stages[2].mode;2566unsigned b_mode = entry->stages[3].mode;2567struct object_id *o_oid =stage_oid(&entry->stages[1].oid, o_mode);2568struct object_id *a_oid =stage_oid(&entry->stages[2].oid, a_mode);2569struct object_id *b_oid =stage_oid(&entry->stages[3].oid, b_mode);25702571 entry->processed =1;2572if(entry->rename_conflict_info) {2573struct rename_conflict_info *conflict_info = entry->rename_conflict_info;2574switch(conflict_info->rename_type) {2575case RENAME_NORMAL:2576case RENAME_ONE_FILE_TO_ONE:2577 clean_merge =merge_content(o, path,2578 o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,2579 conflict_info);2580break;2581case RENAME_DELETE:2582 clean_merge =0;2583if(conflict_rename_delete(o,2584 conflict_info->pair1,2585 conflict_info->branch1,2586 conflict_info->branch2))2587 clean_merge = -1;2588break;2589case RENAME_ONE_FILE_TO_TWO:2590 clean_merge =0;2591if(conflict_rename_rename_1to2(o, conflict_info))2592 clean_merge = -1;2593break;2594case RENAME_TWO_FILES_TO_ONE:2595 clean_merge =0;2596if(conflict_rename_rename_2to1(o, conflict_info))2597 clean_merge = -1;2598break;2599default:2600 entry->processed =0;2601break;2602}2603}else if(o_oid && (!a_oid || !b_oid)) {2604/* Case A: Deleted in one */2605if((!a_oid && !b_oid) ||2606(!b_oid &&blob_unchanged(o, o_oid, o_mode, a_oid, a_mode, normalize, path)) ||2607(!a_oid &&blob_unchanged(o, o_oid, o_mode, b_oid, b_mode, normalize, path))) {2608/* Deleted in both or deleted in one and2609 * unchanged in the other */2610if(a_oid)2611output(o,2,_("Removing%s"), path);2612/* do not touch working file if it did not exist */2613remove_file(o,1, path, !a_oid);2614}else{2615/* Modify/delete; deleted side may have put a directory in the way */2616 clean_merge =0;2617if(handle_modify_delete(o, path, o_oid, o_mode,2618 a_oid, a_mode, b_oid, b_mode))2619 clean_merge = -1;2620}2621}else if((!o_oid && a_oid && !b_oid) ||2622(!o_oid && !a_oid && b_oid)) {2623/* Case B: Added in one. */2624/* [nothing|directory] -> ([nothing|directory], file) */26252626const char*add_branch;2627const char*other_branch;2628unsigned mode;2629const struct object_id *oid;2630const char*conf;26312632if(a_oid) {2633 add_branch = o->branch1;2634 other_branch = o->branch2;2635 mode = a_mode;2636 oid = a_oid;2637 conf =_("file/directory");2638}else{2639 add_branch = o->branch2;2640 other_branch = o->branch1;2641 mode = b_mode;2642 oid = b_oid;2643 conf =_("directory/file");2644}2645if(dir_in_way(path,2646!o->call_depth && !S_ISGITLINK(a_mode),26470)) {2648char*new_path =unique_path(o, path, add_branch);2649 clean_merge =0;2650output(o,1,_("CONFLICT (%s): There is a directory with name%sin%s. "2651"Adding%sas%s"),2652 conf, path, other_branch, path, new_path);2653if(update_file(o,0, oid, mode, new_path))2654 clean_merge = -1;2655else if(o->call_depth)2656remove_file_from_cache(path);2657free(new_path);2658}else{2659output(o,2,_("Adding%s"), path);2660/* do not overwrite file if already present */2661if(update_file_flags(o, oid, mode, path,1, !a_oid))2662 clean_merge = -1;2663}2664}else if(a_oid && b_oid) {2665/* Case C: Added in both (check for same permissions) and */2666/* case D: Modified in both, but differently. */2667 clean_merge =merge_content(o, path,2668 o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,2669 NULL);2670}else if(!o_oid && !a_oid && !b_oid) {2671/*2672 * this entry was deleted altogether. a_mode == 0 means2673 * we had that path and want to actively remove it.2674 */2675remove_file(o,1, path, !a_mode);2676}else2677die("BUG: fatal merge failure, shouldn't happen.");26782679return clean_merge;2680}26812682intmerge_trees(struct merge_options *o,2683struct tree *head,2684struct tree *merge,2685struct tree *common,2686struct tree **result)2687{2688int code, clean;26892690if(o->subtree_shift) {2691 merge =shift_tree_object(head, merge, o->subtree_shift);2692 common =shift_tree_object(head, common, o->subtree_shift);2693}26942695if(oid_eq(&common->object.oid, &merge->object.oid)) {2696struct strbuf sb = STRBUF_INIT;26972698if(!o->call_depth &&index_has_changes(&sb)) {2699err(o,_("Dirty index: cannot merge (dirty:%s)"),2700 sb.buf);2701return0;2702}2703output(o,0,_("Already up to date!"));2704*result = head;2705return1;2706}27072708 code =git_merge_trees(o->call_depth, common, head, merge);27092710if(code !=0) {2711if(show(o,4) || o->call_depth)2712err(o,_("merging of trees%sand%sfailed"),2713oid_to_hex(&head->object.oid),2714oid_to_hex(&merge->object.oid));2715return-1;2716}27172718if(unmerged_cache()) {2719struct string_list *entries;2720struct rename_info re_info;2721int i;2722/*2723 * Only need the hashmap while processing entries, so2724 * initialize it here and free it when we are done running2725 * through the entries. Keeping it in the merge_options as2726 * opposed to decaring a local hashmap is for convenience2727 * so that we don't have to pass it to around.2728 */2729hashmap_init(&o->current_file_dir_set, path_hashmap_cmp, NULL,512);2730get_files_dirs(o, head);2731get_files_dirs(o, merge);27322733 entries =get_unmerged();2734 clean =handle_renames(o, common, head, merge, entries,2735&re_info);2736record_df_conflict_files(o, entries);2737if(clean <0)2738goto cleanup;2739for(i = entries->nr-1;0<= i; i--) {2740const char*path = entries->items[i].string;2741struct stage_data *e = entries->items[i].util;2742if(!e->processed) {2743int ret =process_entry(o, path, e);2744if(!ret)2745 clean =0;2746else if(ret <0) {2747 clean = ret;2748goto cleanup;2749}2750}2751}2752for(i =0; i < entries->nr; i++) {2753struct stage_data *e = entries->items[i].util;2754if(!e->processed)2755die("BUG: unprocessed path???%s",2756 entries->items[i].string);2757}27582759cleanup:2760final_cleanup_renames(&re_info);27612762string_list_clear(entries,1);2763free(entries);27642765hashmap_free(&o->current_file_dir_set,1);27662767if(clean <0)2768return clean;2769}2770else2771 clean =1;27722773if(o->call_depth && !(*result =write_tree_from_memory(o)))2774return-1;27752776return clean;2777}27782779static struct commit_list *reverse_commit_list(struct commit_list *list)2780{2781struct commit_list *next = NULL, *current, *backup;2782for(current = list; current; current = backup) {2783 backup = current->next;2784 current->next = next;2785 next = current;2786}2787return next;2788}27892790/*2791 * Merge the commits h1 and h2, return the resulting virtual2792 * commit object and a flag indicating the cleanness of the merge.2793 */2794intmerge_recursive(struct merge_options *o,2795struct commit *h1,2796struct commit *h2,2797struct commit_list *ca,2798struct commit **result)2799{2800struct commit_list *iter;2801struct commit *merged_common_ancestors;2802struct tree *mrtree = mrtree;2803int clean;28042805if(show(o,4)) {2806output(o,4,_("Merging:"));2807output_commit_title(o, h1);2808output_commit_title(o, h2);2809}28102811if(!ca) {2812 ca =get_merge_bases(h1, h2);2813 ca =reverse_commit_list(ca);2814}28152816if(show(o,5)) {2817unsigned cnt =commit_list_count(ca);28182819output(o,5,Q_("found%ucommon ancestor:",2820"found%ucommon ancestors:", cnt), cnt);2821for(iter = ca; iter; iter = iter->next)2822output_commit_title(o, iter->item);2823}28242825 merged_common_ancestors =pop_commit(&ca);2826if(merged_common_ancestors == NULL) {2827/* if there is no common ancestor, use an empty tree */2828struct tree *tree;28292830 tree =lookup_tree(the_hash_algo->empty_tree);2831 merged_common_ancestors =make_virtual_commit(tree,"ancestor");2832}28332834for(iter = ca; iter; iter = iter->next) {2835const char*saved_b1, *saved_b2;2836 o->call_depth++;2837/*2838 * When the merge fails, the result contains files2839 * with conflict markers. The cleanness flag is2840 * ignored (unless indicating an error), it was never2841 * actually used, as result of merge_trees has always2842 * overwritten it: the committed "conflicts" were2843 * already resolved.2844 */2845discard_cache();2846 saved_b1 = o->branch1;2847 saved_b2 = o->branch2;2848 o->branch1 ="Temporary merge branch 1";2849 o->branch2 ="Temporary merge branch 2";2850if(merge_recursive(o, merged_common_ancestors, iter->item,2851 NULL, &merged_common_ancestors) <0)2852return-1;2853 o->branch1 = saved_b1;2854 o->branch2 = saved_b2;2855 o->call_depth--;28562857if(!merged_common_ancestors)2858returnerr(o,_("merge returned no commit"));2859}28602861discard_cache();2862if(!o->call_depth)2863read_cache();28642865 o->ancestor ="merged common ancestors";2866 clean =merge_trees(o, h1->tree, h2->tree, merged_common_ancestors->tree,2867&mrtree);2868if(clean <0) {2869flush_output(o);2870return clean;2871}28722873if(o->call_depth) {2874*result =make_virtual_commit(mrtree,"merged tree");2875commit_list_insert(h1, &(*result)->parents);2876commit_list_insert(h2, &(*result)->parents->next);2877}2878flush_output(o);2879if(!o->call_depth && o->buffer_output <2)2880strbuf_release(&o->obuf);2881if(show(o,2))2882diff_warn_rename_limit("merge.renamelimit",2883 o->needed_rename_limit,0);2884return clean;2885}28862887static struct commit *get_ref(const struct object_id *oid,const char*name)2888{2889struct object *object;28902891 object =deref_tag(parse_object(oid), name,strlen(name));2892if(!object)2893return NULL;2894if(object->type == OBJ_TREE)2895returnmake_virtual_commit((struct tree*)object, name);2896if(object->type != OBJ_COMMIT)2897return NULL;2898if(parse_commit((struct commit *)object))2899return NULL;2900return(struct commit *)object;2901}29022903intmerge_recursive_generic(struct merge_options *o,2904const struct object_id *head,2905const struct object_id *merge,2906int num_base_list,2907const struct object_id **base_list,2908struct commit **result)2909{2910int clean;2911struct lock_file lock = LOCK_INIT;2912struct commit *head_commit =get_ref(head, o->branch1);2913struct commit *next_commit =get_ref(merge, o->branch2);2914struct commit_list *ca = NULL;29152916if(base_list) {2917int i;2918for(i =0; i < num_base_list; ++i) {2919struct commit *base;2920if(!(base =get_ref(base_list[i],oid_to_hex(base_list[i]))))2921returnerr(o,_("Could not parse object '%s'"),2922oid_to_hex(base_list[i]));2923commit_list_insert(base, &ca);2924}2925}29262927hold_locked_index(&lock, LOCK_DIE_ON_ERROR);2928 clean =merge_recursive(o, head_commit, next_commit, ca,2929 result);2930if(clean <0)2931return clean;29322933if(active_cache_changed &&2934write_locked_index(&the_index, &lock, COMMIT_LOCK))2935returnerr(o,_("Unable to write index."));29362937return clean ?0:1;2938}29392940static voidmerge_recursive_config(struct merge_options *o)2941{2942git_config_get_int("merge.verbosity", &o->verbosity);2943git_config_get_int("diff.renamelimit", &o->diff_rename_limit);2944git_config_get_int("merge.renamelimit", &o->merge_rename_limit);2945git_config(git_xmerge_config, NULL);2946}29472948voidinit_merge_options(struct merge_options *o)2949{2950const char*merge_verbosity;2951memset(o,0,sizeof(struct merge_options));2952 o->verbosity =2;2953 o->buffer_output =1;2954 o->diff_rename_limit = -1;2955 o->merge_rename_limit = -1;2956 o->renormalize =0;2957 o->detect_rename =1;2958merge_recursive_config(o);2959 merge_verbosity =getenv("GIT_MERGE_VERBOSITY");2960if(merge_verbosity)2961 o->verbosity =strtol(merge_verbosity, NULL,10);2962if(o->verbosity >=5)2963 o->buffer_output =0;2964strbuf_init(&o->obuf,0);2965string_list_init(&o->df_conflict_file_set,1);2966}29672968intparse_merge_opt(struct merge_options *o,const char*s)2969{2970const char*arg;29712972if(!s || !*s)2973return-1;2974if(!strcmp(s,"ours"))2975 o->recursive_variant = MERGE_RECURSIVE_OURS;2976else if(!strcmp(s,"theirs"))2977 o->recursive_variant = MERGE_RECURSIVE_THEIRS;2978else if(!strcmp(s,"subtree"))2979 o->subtree_shift ="";2980else if(skip_prefix(s,"subtree=", &arg))2981 o->subtree_shift = arg;2982else if(!strcmp(s,"patience"))2983 o->xdl_opts =DIFF_WITH_ALG(o, PATIENCE_DIFF);2984else if(!strcmp(s,"histogram"))2985 o->xdl_opts =DIFF_WITH_ALG(o, HISTOGRAM_DIFF);2986else if(skip_prefix(s,"diff-algorithm=", &arg)) {2987long value =parse_algorithm_value(arg);2988if(value <0)2989return-1;2990/* clear out previous settings */2991DIFF_XDL_CLR(o, NEED_MINIMAL);2992 o->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;2993 o->xdl_opts |= value;2994}2995else if(!strcmp(s,"ignore-space-change"))2996DIFF_XDL_SET(o, IGNORE_WHITESPACE_CHANGE);2997else if(!strcmp(s,"ignore-all-space"))2998DIFF_XDL_SET(o, IGNORE_WHITESPACE);2999else if(!strcmp(s,"ignore-space-at-eol"))3000DIFF_XDL_SET(o, IGNORE_WHITESPACE_AT_EOL);3001else if(!strcmp(s,"ignore-cr-at-eol"))3002DIFF_XDL_SET(o, IGNORE_CR_AT_EOL);3003else if(!strcmp(s,"renormalize"))3004 o->renormalize =1;3005else if(!strcmp(s,"no-renormalize"))3006 o->renormalize =0;3007else if(!strcmp(s,"no-renames"))3008 o->detect_rename =0;3009else if(!strcmp(s,"find-renames")) {3010 o->detect_rename =1;3011 o->rename_score =0;3012}3013else if(skip_prefix(s,"find-renames=", &arg) ||3014skip_prefix(s,"rename-threshold=", &arg)) {3015if((o->rename_score =parse_rename_score(&arg)) == -1|| *arg !=0)3016return-1;3017 o->detect_rename =1;3018}3019else3020return-1;3021return0;3022}