1/* 2 * Builtin "git am" 3 * 4 * Based on git-am.sh by Junio C Hamano. 5 */ 6#include"cache.h" 7#include"config.h" 8#include"builtin.h" 9#include"exec_cmd.h" 10#include"parse-options.h" 11#include"dir.h" 12#include"run-command.h" 13#include"quote.h" 14#include"tempfile.h" 15#include"lockfile.h" 16#include"cache-tree.h" 17#include"refs.h" 18#include"commit.h" 19#include"diff.h" 20#include"diffcore.h" 21#include"unpack-trees.h" 22#include"branch.h" 23#include"sequencer.h" 24#include"revision.h" 25#include"merge-recursive.h" 26#include"revision.h" 27#include"log-tree.h" 28#include"notes-utils.h" 29#include"rerere.h" 30#include"prompt.h" 31#include"mailinfo.h" 32#include"apply.h" 33#include"string-list.h" 34#include"packfile.h" 35 36/** 37 * Returns 1 if the file is empty or does not exist, 0 otherwise. 38 */ 39static intis_empty_file(const char*filename) 40{ 41struct stat st; 42 43if(stat(filename, &st) <0) { 44if(errno == ENOENT) 45return1; 46die_errno(_("could not stat%s"), filename); 47} 48 49return!st.st_size; 50} 51 52/** 53 * Returns the length of the first line of msg. 54 */ 55static intlinelen(const char*msg) 56{ 57returnstrchrnul(msg,'\n') - msg; 58} 59 60/** 61 * Returns true if `str` consists of only whitespace, false otherwise. 62 */ 63static intstr_isspace(const char*str) 64{ 65for(; *str; str++) 66if(!isspace(*str)) 67return0; 68 69return1; 70} 71 72enum patch_format { 73 PATCH_FORMAT_UNKNOWN =0, 74 PATCH_FORMAT_MBOX, 75 PATCH_FORMAT_STGIT, 76 PATCH_FORMAT_STGIT_SERIES, 77 PATCH_FORMAT_HG, 78 PATCH_FORMAT_MBOXRD 79}; 80 81enum keep_type { 82 KEEP_FALSE =0, 83 KEEP_TRUE,/* pass -k flag to git-mailinfo */ 84 KEEP_NON_PATCH /* pass -b flag to git-mailinfo */ 85}; 86 87enum scissors_type { 88 SCISSORS_UNSET = -1, 89 SCISSORS_FALSE =0,/* pass --no-scissors to git-mailinfo */ 90 SCISSORS_TRUE /* pass --scissors to git-mailinfo */ 91}; 92 93enum signoff_type { 94 SIGNOFF_FALSE =0, 95 SIGNOFF_TRUE =1, 96 SIGNOFF_EXPLICIT /* --signoff was set on the command-line */ 97}; 98 99struct am_state { 100/* state directory path */ 101char*dir; 102 103/* current and last patch numbers, 1-indexed */ 104int cur; 105int last; 106 107/* commit metadata and message */ 108char*author_name; 109char*author_email; 110char*author_date; 111char*msg; 112size_t msg_len; 113 114/* when --rebasing, records the original commit the patch came from */ 115struct object_id orig_commit; 116 117/* number of digits in patch filename */ 118int prec; 119 120/* various operating modes and command line options */ 121int interactive; 122int threeway; 123int quiet; 124int signoff;/* enum signoff_type */ 125int utf8; 126int keep;/* enum keep_type */ 127int message_id; 128int scissors;/* enum scissors_type */ 129struct argv_array git_apply_opts; 130const char*resolvemsg; 131int committer_date_is_author_date; 132int ignore_date; 133int allow_rerere_autoupdate; 134const char*sign_commit; 135int rebasing; 136}; 137 138/** 139 * Initializes am_state with the default values. 140 */ 141static voidam_state_init(struct am_state *state) 142{ 143int gpgsign; 144 145memset(state,0,sizeof(*state)); 146 147 state->dir =git_pathdup("rebase-apply"); 148 149 state->prec =4; 150 151git_config_get_bool("am.threeway", &state->threeway); 152 153 state->utf8 =1; 154 155git_config_get_bool("am.messageid", &state->message_id); 156 157 state->scissors = SCISSORS_UNSET; 158 159argv_array_init(&state->git_apply_opts); 160 161if(!git_config_get_bool("commit.gpgsign", &gpgsign)) 162 state->sign_commit = gpgsign ?"": NULL; 163} 164 165/** 166 * Releases memory allocated by an am_state. 167 */ 168static voidam_state_release(struct am_state *state) 169{ 170free(state->dir); 171free(state->author_name); 172free(state->author_email); 173free(state->author_date); 174free(state->msg); 175argv_array_clear(&state->git_apply_opts); 176} 177 178/** 179 * Returns path relative to the am_state directory. 180 */ 181staticinlineconst char*am_path(const struct am_state *state,const char*path) 182{ 183returnmkpath("%s/%s", state->dir, path); 184} 185 186/** 187 * For convenience to call write_file() 188 */ 189static voidwrite_state_text(const struct am_state *state, 190const char*name,const char*string) 191{ 192write_file(am_path(state, name),"%s", string); 193} 194 195static voidwrite_state_count(const struct am_state *state, 196const char*name,int value) 197{ 198write_file(am_path(state, name),"%d", value); 199} 200 201static voidwrite_state_bool(const struct am_state *state, 202const char*name,int value) 203{ 204write_state_text(state, name, value ?"t":"f"); 205} 206 207/** 208 * If state->quiet is false, calls fprintf(fp, fmt, ...), and appends a newline 209 * at the end. 210 */ 211static voidsay(const struct am_state *state,FILE*fp,const char*fmt, ...) 212{ 213va_list ap; 214 215va_start(ap, fmt); 216if(!state->quiet) { 217vfprintf(fp, fmt, ap); 218putc('\n', fp); 219} 220va_end(ap); 221} 222 223/** 224 * Returns 1 if there is an am session in progress, 0 otherwise. 225 */ 226static intam_in_progress(const struct am_state *state) 227{ 228struct stat st; 229 230if(lstat(state->dir, &st) <0|| !S_ISDIR(st.st_mode)) 231return0; 232if(lstat(am_path(state,"last"), &st) || !S_ISREG(st.st_mode)) 233return0; 234if(lstat(am_path(state,"next"), &st) || !S_ISREG(st.st_mode)) 235return0; 236return1; 237} 238 239/** 240 * Reads the contents of `file` in the `state` directory into `sb`. Returns the 241 * number of bytes read on success, -1 if the file does not exist. If `trim` is 242 * set, trailing whitespace will be removed. 243 */ 244static intread_state_file(struct strbuf *sb,const struct am_state *state, 245const char*file,int trim) 246{ 247strbuf_reset(sb); 248 249if(strbuf_read_file(sb,am_path(state, file),0) >=0) { 250if(trim) 251strbuf_trim(sb); 252 253return sb->len; 254} 255 256if(errno == ENOENT) 257return-1; 258 259die_errno(_("could not read '%s'"),am_path(state, file)); 260} 261 262/** 263 * Take a series of KEY='VALUE' lines where VALUE part is 264 * sq-quoted, and append <KEY, VALUE> at the end of the string list 265 */ 266static intparse_key_value_squoted(char*buf,struct string_list *list) 267{ 268while(*buf) { 269struct string_list_item *item; 270char*np; 271char*cp =strchr(buf,'='); 272if(!cp) 273return-1; 274 np =strchrnul(cp,'\n'); 275*cp++ ='\0'; 276 item =string_list_append(list, buf); 277 278 buf = np + (*np =='\n'); 279*np ='\0'; 280 cp =sq_dequote(cp); 281if(!cp) 282return-1; 283 item->util =xstrdup(cp); 284} 285return0; 286} 287 288/** 289 * Reads and parses the state directory's "author-script" file, and sets 290 * state->author_name, state->author_email and state->author_date accordingly. 291 * Returns 0 on success, -1 if the file could not be parsed. 292 * 293 * The author script is of the format: 294 * 295 * GIT_AUTHOR_NAME='$author_name' 296 * GIT_AUTHOR_EMAIL='$author_email' 297 * GIT_AUTHOR_DATE='$author_date' 298 * 299 * where $author_name, $author_email and $author_date are quoted. We are strict 300 * with our parsing, as the file was meant to be eval'd in the old git-am.sh 301 * script, and thus if the file differs from what this function expects, it is 302 * better to bail out than to do something that the user does not expect. 303 */ 304static intread_author_script(struct am_state *state) 305{ 306const char*filename =am_path(state,"author-script"); 307struct strbuf buf = STRBUF_INIT; 308struct string_list kv = STRING_LIST_INIT_DUP; 309int retval = -1;/* assume failure */ 310int fd; 311 312assert(!state->author_name); 313assert(!state->author_email); 314assert(!state->author_date); 315 316 fd =open(filename, O_RDONLY); 317if(fd <0) { 318if(errno == ENOENT) 319return0; 320die_errno(_("could not open '%s' for reading"), filename); 321} 322strbuf_read(&buf, fd,0); 323close(fd); 324if(parse_key_value_squoted(buf.buf, &kv)) 325goto finish; 326 327if(kv.nr !=3|| 328strcmp(kv.items[0].string,"GIT_AUTHOR_NAME") || 329strcmp(kv.items[1].string,"GIT_AUTHOR_EMAIL") || 330strcmp(kv.items[2].string,"GIT_AUTHOR_DATE")) 331goto finish; 332 state->author_name = kv.items[0].util; 333 state->author_email = kv.items[1].util; 334 state->author_date = kv.items[2].util; 335 retval =0; 336finish: 337string_list_clear(&kv, !!retval); 338strbuf_release(&buf); 339return retval; 340} 341 342/** 343 * Saves state->author_name, state->author_email and state->author_date in the 344 * state directory's "author-script" file. 345 */ 346static voidwrite_author_script(const struct am_state *state) 347{ 348struct strbuf sb = STRBUF_INIT; 349 350strbuf_addstr(&sb,"GIT_AUTHOR_NAME="); 351sq_quote_buf(&sb, state->author_name); 352strbuf_addch(&sb,'\n'); 353 354strbuf_addstr(&sb,"GIT_AUTHOR_EMAIL="); 355sq_quote_buf(&sb, state->author_email); 356strbuf_addch(&sb,'\n'); 357 358strbuf_addstr(&sb,"GIT_AUTHOR_DATE="); 359sq_quote_buf(&sb, state->author_date); 360strbuf_addch(&sb,'\n'); 361 362write_state_text(state,"author-script", sb.buf); 363 364strbuf_release(&sb); 365} 366 367/** 368 * Reads the commit message from the state directory's "final-commit" file, 369 * setting state->msg to its contents and state->msg_len to the length of its 370 * contents in bytes. 371 * 372 * Returns 0 on success, -1 if the file does not exist. 373 */ 374static intread_commit_msg(struct am_state *state) 375{ 376struct strbuf sb = STRBUF_INIT; 377 378assert(!state->msg); 379 380if(read_state_file(&sb, state,"final-commit",0) <0) { 381strbuf_release(&sb); 382return-1; 383} 384 385 state->msg =strbuf_detach(&sb, &state->msg_len); 386return0; 387} 388 389/** 390 * Saves state->msg in the state directory's "final-commit" file. 391 */ 392static voidwrite_commit_msg(const struct am_state *state) 393{ 394const char*filename =am_path(state,"final-commit"); 395write_file_buf(filename, state->msg, state->msg_len); 396} 397 398/** 399 * Loads state from disk. 400 */ 401static voidam_load(struct am_state *state) 402{ 403struct strbuf sb = STRBUF_INIT; 404 405if(read_state_file(&sb, state,"next",1) <0) 406die("BUG: state file 'next' does not exist"); 407 state->cur =strtol(sb.buf, NULL,10); 408 409if(read_state_file(&sb, state,"last",1) <0) 410die("BUG: state file 'last' does not exist"); 411 state->last =strtol(sb.buf, NULL,10); 412 413if(read_author_script(state) <0) 414die(_("could not parse author script")); 415 416read_commit_msg(state); 417 418if(read_state_file(&sb, state,"original-commit",1) <0) 419oidclr(&state->orig_commit); 420else if(get_oid_hex(sb.buf, &state->orig_commit) <0) 421die(_("could not parse%s"),am_path(state,"original-commit")); 422 423read_state_file(&sb, state,"threeway",1); 424 state->threeway = !strcmp(sb.buf,"t"); 425 426read_state_file(&sb, state,"quiet",1); 427 state->quiet = !strcmp(sb.buf,"t"); 428 429read_state_file(&sb, state,"sign",1); 430 state->signoff = !strcmp(sb.buf,"t"); 431 432read_state_file(&sb, state,"utf8",1); 433 state->utf8 = !strcmp(sb.buf,"t"); 434 435if(file_exists(am_path(state,"rerere-autoupdate"))) { 436read_state_file(&sb, state,"rerere-autoupdate",1); 437 state->allow_rerere_autoupdate =strcmp(sb.buf,"t") ? 438 RERERE_NOAUTOUPDATE : RERERE_AUTOUPDATE; 439}else{ 440 state->allow_rerere_autoupdate =0; 441} 442 443read_state_file(&sb, state,"keep",1); 444if(!strcmp(sb.buf,"t")) 445 state->keep = KEEP_TRUE; 446else if(!strcmp(sb.buf,"b")) 447 state->keep = KEEP_NON_PATCH; 448else 449 state->keep = KEEP_FALSE; 450 451read_state_file(&sb, state,"messageid",1); 452 state->message_id = !strcmp(sb.buf,"t"); 453 454read_state_file(&sb, state,"scissors",1); 455if(!strcmp(sb.buf,"t")) 456 state->scissors = SCISSORS_TRUE; 457else if(!strcmp(sb.buf,"f")) 458 state->scissors = SCISSORS_FALSE; 459else 460 state->scissors = SCISSORS_UNSET; 461 462read_state_file(&sb, state,"apply-opt",1); 463argv_array_clear(&state->git_apply_opts); 464if(sq_dequote_to_argv_array(sb.buf, &state->git_apply_opts) <0) 465die(_("could not parse%s"),am_path(state,"apply-opt")); 466 467 state->rebasing = !!file_exists(am_path(state,"rebasing")); 468 469strbuf_release(&sb); 470} 471 472/** 473 * Removes the am_state directory, forcefully terminating the current am 474 * session. 475 */ 476static voidam_destroy(const struct am_state *state) 477{ 478struct strbuf sb = STRBUF_INIT; 479 480strbuf_addstr(&sb, state->dir); 481remove_dir_recursively(&sb,0); 482strbuf_release(&sb); 483} 484 485/** 486 * Runs applypatch-msg hook. Returns its exit code. 487 */ 488static intrun_applypatch_msg_hook(struct am_state *state) 489{ 490int ret; 491 492assert(state->msg); 493 ret =run_hook_le(NULL,"applypatch-msg",am_path(state,"final-commit"), NULL); 494 495if(!ret) { 496FREE_AND_NULL(state->msg); 497if(read_commit_msg(state) <0) 498die(_("'%s' was deleted by the applypatch-msg hook"), 499am_path(state,"final-commit")); 500} 501 502return ret; 503} 504 505/** 506 * Runs post-rewrite hook. Returns it exit code. 507 */ 508static intrun_post_rewrite_hook(const struct am_state *state) 509{ 510struct child_process cp = CHILD_PROCESS_INIT; 511const char*hook =find_hook("post-rewrite"); 512int ret; 513 514if(!hook) 515return0; 516 517argv_array_push(&cp.args, hook); 518argv_array_push(&cp.args,"rebase"); 519 520 cp.in =xopen(am_path(state,"rewritten"), O_RDONLY); 521 cp.stdout_to_stderr =1; 522 523 ret =run_command(&cp); 524 525close(cp.in); 526return ret; 527} 528 529/** 530 * Reads the state directory's "rewritten" file, and copies notes from the old 531 * commits listed in the file to their rewritten commits. 532 * 533 * Returns 0 on success, -1 on failure. 534 */ 535static intcopy_notes_for_rebase(const struct am_state *state) 536{ 537struct notes_rewrite_cfg *c; 538struct strbuf sb = STRBUF_INIT; 539const char*invalid_line =_("Malformed input line: '%s'."); 540const char*msg ="Notes added by 'git rebase'"; 541FILE*fp; 542int ret =0; 543 544assert(state->rebasing); 545 546 c =init_copy_notes_for_rewrite("rebase"); 547if(!c) 548return0; 549 550 fp =xfopen(am_path(state,"rewritten"),"r"); 551 552while(!strbuf_getline_lf(&sb, fp)) { 553struct object_id from_obj, to_obj; 554 555if(sb.len != GIT_SHA1_HEXSZ *2+1) { 556 ret =error(invalid_line, sb.buf); 557goto finish; 558} 559 560if(get_oid_hex(sb.buf, &from_obj)) { 561 ret =error(invalid_line, sb.buf); 562goto finish; 563} 564 565if(sb.buf[GIT_SHA1_HEXSZ] !=' ') { 566 ret =error(invalid_line, sb.buf); 567goto finish; 568} 569 570if(get_oid_hex(sb.buf + GIT_SHA1_HEXSZ +1, &to_obj)) { 571 ret =error(invalid_line, sb.buf); 572goto finish; 573} 574 575if(copy_note_for_rewrite(c, &from_obj, &to_obj)) 576 ret =error(_("Failed to copy notes from '%s' to '%s'"), 577oid_to_hex(&from_obj),oid_to_hex(&to_obj)); 578} 579 580finish: 581finish_copy_notes_for_rewrite(c, msg); 582fclose(fp); 583strbuf_release(&sb); 584return ret; 585} 586 587/** 588 * Determines if the file looks like a piece of RFC2822 mail by grabbing all 589 * non-indented lines and checking if they look like they begin with valid 590 * header field names. 591 * 592 * Returns 1 if the file looks like a piece of mail, 0 otherwise. 593 */ 594static intis_mail(FILE*fp) 595{ 596const char*header_regex ="^[!-9;-~]+:"; 597struct strbuf sb = STRBUF_INIT; 598 regex_t regex; 599int ret =1; 600 601if(fseek(fp,0L, SEEK_SET)) 602die_errno(_("fseek failed")); 603 604if(regcomp(®ex, header_regex, REG_NOSUB | REG_EXTENDED)) 605die("invalid pattern:%s", header_regex); 606 607while(!strbuf_getline(&sb, fp)) { 608if(!sb.len) 609break;/* End of header */ 610 611/* Ignore indented folded lines */ 612if(*sb.buf =='\t'|| *sb.buf ==' ') 613continue; 614 615/* It's a header if it matches header_regex */ 616if(regexec(®ex, sb.buf,0, NULL,0)) { 617 ret =0; 618goto done; 619} 620} 621 622done: 623regfree(®ex); 624strbuf_release(&sb); 625return ret; 626} 627 628/** 629 * Attempts to detect the patch_format of the patches contained in `paths`, 630 * returning the PATCH_FORMAT_* enum value. Returns PATCH_FORMAT_UNKNOWN if 631 * detection fails. 632 */ 633static intdetect_patch_format(const char**paths) 634{ 635enum patch_format ret = PATCH_FORMAT_UNKNOWN; 636struct strbuf l1 = STRBUF_INIT; 637struct strbuf l2 = STRBUF_INIT; 638struct strbuf l3 = STRBUF_INIT; 639FILE*fp; 640 641/* 642 * We default to mbox format if input is from stdin and for directories 643 */ 644if(!*paths || !strcmp(*paths,"-") ||is_directory(*paths)) 645return PATCH_FORMAT_MBOX; 646 647/* 648 * Otherwise, check the first few lines of the first patch, starting 649 * from the first non-blank line, to try to detect its format. 650 */ 651 652 fp =xfopen(*paths,"r"); 653 654while(!strbuf_getline(&l1, fp)) { 655if(l1.len) 656break; 657} 658 659if(starts_with(l1.buf,"From ") ||starts_with(l1.buf,"From: ")) { 660 ret = PATCH_FORMAT_MBOX; 661goto done; 662} 663 664if(starts_with(l1.buf,"# This series applies on GIT commit")) { 665 ret = PATCH_FORMAT_STGIT_SERIES; 666goto done; 667} 668 669if(!strcmp(l1.buf,"# HG changeset patch")) { 670 ret = PATCH_FORMAT_HG; 671goto done; 672} 673 674strbuf_getline(&l2, fp); 675strbuf_getline(&l3, fp); 676 677/* 678 * If the second line is empty and the third is a From, Author or Date 679 * entry, this is likely an StGit patch. 680 */ 681if(l1.len && !l2.len && 682(starts_with(l3.buf,"From:") || 683starts_with(l3.buf,"Author:") || 684starts_with(l3.buf,"Date:"))) { 685 ret = PATCH_FORMAT_STGIT; 686goto done; 687} 688 689if(l1.len &&is_mail(fp)) { 690 ret = PATCH_FORMAT_MBOX; 691goto done; 692} 693 694done: 695fclose(fp); 696strbuf_release(&l1); 697strbuf_release(&l2); 698strbuf_release(&l3); 699return ret; 700} 701 702/** 703 * Splits out individual email patches from `paths`, where each path is either 704 * a mbox file or a Maildir. Returns 0 on success, -1 on failure. 705 */ 706static intsplit_mail_mbox(struct am_state *state,const char**paths, 707int keep_cr,int mboxrd) 708{ 709struct child_process cp = CHILD_PROCESS_INIT; 710struct strbuf last = STRBUF_INIT; 711int ret; 712 713 cp.git_cmd =1; 714argv_array_push(&cp.args,"mailsplit"); 715argv_array_pushf(&cp.args,"-d%d", state->prec); 716argv_array_pushf(&cp.args,"-o%s", state->dir); 717argv_array_push(&cp.args,"-b"); 718if(keep_cr) 719argv_array_push(&cp.args,"--keep-cr"); 720if(mboxrd) 721argv_array_push(&cp.args,"--mboxrd"); 722argv_array_push(&cp.args,"--"); 723argv_array_pushv(&cp.args, paths); 724 725 ret =capture_command(&cp, &last,8); 726if(ret) 727goto exit; 728 729 state->cur =1; 730 state->last =strtol(last.buf, NULL,10); 731 732exit: 733strbuf_release(&last); 734return ret ? -1:0; 735} 736 737/** 738 * Callback signature for split_mail_conv(). The foreign patch should be 739 * read from `in`, and the converted patch (in RFC2822 mail format) should be 740 * written to `out`. Return 0 on success, or -1 on failure. 741 */ 742typedefint(*mail_conv_fn)(FILE*out,FILE*in,int keep_cr); 743 744/** 745 * Calls `fn` for each file in `paths` to convert the foreign patch to the 746 * RFC2822 mail format suitable for parsing with git-mailinfo. 747 * 748 * Returns 0 on success, -1 on failure. 749 */ 750static intsplit_mail_conv(mail_conv_fn fn,struct am_state *state, 751const char**paths,int keep_cr) 752{ 753static const char*stdin_only[] = {"-", NULL}; 754int i; 755 756if(!*paths) 757 paths = stdin_only; 758 759for(i =0; *paths; paths++, i++) { 760FILE*in, *out; 761const char*mail; 762int ret; 763 764if(!strcmp(*paths,"-")) 765 in = stdin; 766else 767 in =fopen(*paths,"r"); 768 769if(!in) 770returnerror_errno(_("could not open '%s' for reading"), 771*paths); 772 773 mail =mkpath("%s/%0*d", state->dir, state->prec, i +1); 774 775 out =fopen(mail,"w"); 776if(!out) { 777if(in != stdin) 778fclose(in); 779returnerror_errno(_("could not open '%s' for writing"), 780 mail); 781} 782 783 ret =fn(out, in, keep_cr); 784 785fclose(out); 786if(in != stdin) 787fclose(in); 788 789if(ret) 790returnerror(_("could not parse patch '%s'"), *paths); 791} 792 793 state->cur =1; 794 state->last = i; 795return0; 796} 797 798/** 799 * A split_mail_conv() callback that converts an StGit patch to an RFC2822 800 * message suitable for parsing with git-mailinfo. 801 */ 802static intstgit_patch_to_mail(FILE*out,FILE*in,int keep_cr) 803{ 804struct strbuf sb = STRBUF_INIT; 805int subject_printed =0; 806 807while(!strbuf_getline_lf(&sb, in)) { 808const char*str; 809 810if(str_isspace(sb.buf)) 811continue; 812else if(skip_prefix(sb.buf,"Author:", &str)) 813fprintf(out,"From:%s\n", str); 814else if(starts_with(sb.buf,"From") ||starts_with(sb.buf,"Date")) 815fprintf(out,"%s\n", sb.buf); 816else if(!subject_printed) { 817fprintf(out,"Subject:%s\n", sb.buf); 818 subject_printed =1; 819}else{ 820fprintf(out,"\n%s\n", sb.buf); 821break; 822} 823} 824 825strbuf_reset(&sb); 826while(strbuf_fread(&sb,8192, in) >0) { 827fwrite(sb.buf,1, sb.len, out); 828strbuf_reset(&sb); 829} 830 831strbuf_release(&sb); 832return0; 833} 834 835/** 836 * This function only supports a single StGit series file in `paths`. 837 * 838 * Given an StGit series file, converts the StGit patches in the series into 839 * RFC2822 messages suitable for parsing with git-mailinfo, and queues them in 840 * the state directory. 841 * 842 * Returns 0 on success, -1 on failure. 843 */ 844static intsplit_mail_stgit_series(struct am_state *state,const char**paths, 845int keep_cr) 846{ 847const char*series_dir; 848char*series_dir_buf; 849FILE*fp; 850struct argv_array patches = ARGV_ARRAY_INIT; 851struct strbuf sb = STRBUF_INIT; 852int ret; 853 854if(!paths[0] || paths[1]) 855returnerror(_("Only one StGIT patch series can be applied at once")); 856 857 series_dir_buf =xstrdup(*paths); 858 series_dir =dirname(series_dir_buf); 859 860 fp =fopen(*paths,"r"); 861if(!fp) 862returnerror_errno(_("could not open '%s' for reading"), *paths); 863 864while(!strbuf_getline_lf(&sb, fp)) { 865if(*sb.buf =='#') 866continue;/* skip comment lines */ 867 868argv_array_push(&patches,mkpath("%s/%s", series_dir, sb.buf)); 869} 870 871fclose(fp); 872strbuf_release(&sb); 873free(series_dir_buf); 874 875 ret =split_mail_conv(stgit_patch_to_mail, state, patches.argv, keep_cr); 876 877argv_array_clear(&patches); 878return ret; 879} 880 881/** 882 * A split_patches_conv() callback that converts a mercurial patch to a RFC2822 883 * message suitable for parsing with git-mailinfo. 884 */ 885static inthg_patch_to_mail(FILE*out,FILE*in,int keep_cr) 886{ 887struct strbuf sb = STRBUF_INIT; 888int rc =0; 889 890while(!strbuf_getline_lf(&sb, in)) { 891const char*str; 892 893if(skip_prefix(sb.buf,"# User ", &str)) 894fprintf(out,"From:%s\n", str); 895else if(skip_prefix(sb.buf,"# Date ", &str)) { 896 timestamp_t timestamp; 897long tz, tz2; 898char*end; 899 900 errno =0; 901 timestamp =parse_timestamp(str, &end,10); 902if(errno) { 903 rc =error(_("invalid timestamp")); 904goto exit; 905} 906 907if(!skip_prefix(end," ", &str)) { 908 rc =error(_("invalid Date line")); 909goto exit; 910} 911 912 errno =0; 913 tz =strtol(str, &end,10); 914if(errno) { 915 rc =error(_("invalid timezone offset")); 916goto exit; 917} 918 919if(*end) { 920 rc =error(_("invalid Date line")); 921goto exit; 922} 923 924/* 925 * mercurial's timezone is in seconds west of UTC, 926 * however git's timezone is in hours + minutes east of 927 * UTC. Convert it. 928 */ 929 tz2 =labs(tz) /3600*100+labs(tz) %3600/60; 930if(tz >0) 931 tz2 = -tz2; 932 933fprintf(out,"Date:%s\n",show_date(timestamp, tz2,DATE_MODE(RFC2822))); 934}else if(starts_with(sb.buf,"# ")) { 935continue; 936}else{ 937fprintf(out,"\n%s\n", sb.buf); 938break; 939} 940} 941 942strbuf_reset(&sb); 943while(strbuf_fread(&sb,8192, in) >0) { 944fwrite(sb.buf,1, sb.len, out); 945strbuf_reset(&sb); 946} 947exit: 948strbuf_release(&sb); 949return rc; 950} 951 952/** 953 * Splits a list of files/directories into individual email patches. Each path 954 * in `paths` must be a file/directory that is formatted according to 955 * `patch_format`. 956 * 957 * Once split out, the individual email patches will be stored in the state 958 * directory, with each patch's filename being its index, padded to state->prec 959 * digits. 960 * 961 * state->cur will be set to the index of the first mail, and state->last will 962 * be set to the index of the last mail. 963 * 964 * Set keep_cr to 0 to convert all lines ending with \r\n to end with \n, 1 965 * to disable this behavior, -1 to use the default configured setting. 966 * 967 * Returns 0 on success, -1 on failure. 968 */ 969static intsplit_mail(struct am_state *state,enum patch_format patch_format, 970const char**paths,int keep_cr) 971{ 972if(keep_cr <0) { 973 keep_cr =0; 974git_config_get_bool("am.keepcr", &keep_cr); 975} 976 977switch(patch_format) { 978case PATCH_FORMAT_MBOX: 979returnsplit_mail_mbox(state, paths, keep_cr,0); 980case PATCH_FORMAT_STGIT: 981returnsplit_mail_conv(stgit_patch_to_mail, state, paths, keep_cr); 982case PATCH_FORMAT_STGIT_SERIES: 983returnsplit_mail_stgit_series(state, paths, keep_cr); 984case PATCH_FORMAT_HG: 985returnsplit_mail_conv(hg_patch_to_mail, state, paths, keep_cr); 986case PATCH_FORMAT_MBOXRD: 987returnsplit_mail_mbox(state, paths, keep_cr,1); 988default: 989die("BUG: invalid patch_format"); 990} 991return-1; 992} 993 994/** 995 * Setup a new am session for applying patches 996 */ 997static voidam_setup(struct am_state *state,enum patch_format patch_format, 998const char**paths,int keep_cr) 999{1000struct object_id curr_head;1001const char*str;1002struct strbuf sb = STRBUF_INIT;10031004if(!patch_format)1005 patch_format =detect_patch_format(paths);10061007if(!patch_format) {1008fprintf_ln(stderr,_("Patch format detection failed."));1009exit(128);1010}10111012if(mkdir(state->dir,0777) <0&& errno != EEXIST)1013die_errno(_("failed to create directory '%s'"), state->dir);10141015if(split_mail(state, patch_format, paths, keep_cr) <0) {1016am_destroy(state);1017die(_("Failed to split patches."));1018}10191020if(state->rebasing)1021 state->threeway =1;10221023write_state_bool(state,"threeway", state->threeway);1024write_state_bool(state,"quiet", state->quiet);1025write_state_bool(state,"sign", state->signoff);1026write_state_bool(state,"utf8", state->utf8);10271028if(state->allow_rerere_autoupdate)1029write_state_bool(state,"rerere-autoupdate",1030 state->allow_rerere_autoupdate == RERERE_AUTOUPDATE);10311032switch(state->keep) {1033case KEEP_FALSE:1034 str ="f";1035break;1036case KEEP_TRUE:1037 str ="t";1038break;1039case KEEP_NON_PATCH:1040 str ="b";1041break;1042default:1043die("BUG: invalid value for state->keep");1044}10451046write_state_text(state,"keep", str);1047write_state_bool(state,"messageid", state->message_id);10481049switch(state->scissors) {1050case SCISSORS_UNSET:1051 str ="";1052break;1053case SCISSORS_FALSE:1054 str ="f";1055break;1056case SCISSORS_TRUE:1057 str ="t";1058break;1059default:1060die("BUG: invalid value for state->scissors");1061}1062write_state_text(state,"scissors", str);10631064sq_quote_argv(&sb, state->git_apply_opts.argv,0);1065write_state_text(state,"apply-opt", sb.buf);10661067if(state->rebasing)1068write_state_text(state,"rebasing","");1069else1070write_state_text(state,"applying","");10711072if(!get_oid("HEAD", &curr_head)) {1073write_state_text(state,"abort-safety",oid_to_hex(&curr_head));1074if(!state->rebasing)1075update_ref("am","ORIG_HEAD", &curr_head, NULL,0,1076 UPDATE_REFS_DIE_ON_ERR);1077}else{1078write_state_text(state,"abort-safety","");1079if(!state->rebasing)1080delete_ref(NULL,"ORIG_HEAD", NULL,0);1081}10821083/*1084 * NOTE: Since the "next" and "last" files determine if an am_state1085 * session is in progress, they should be written last.1086 */10871088write_state_count(state,"next", state->cur);1089write_state_count(state,"last", state->last);10901091strbuf_release(&sb);1092}10931094/**1095 * Increments the patch pointer, and cleans am_state for the application of the1096 * next patch.1097 */1098static voidam_next(struct am_state *state)1099{1100struct object_id head;11011102FREE_AND_NULL(state->author_name);1103FREE_AND_NULL(state->author_email);1104FREE_AND_NULL(state->author_date);1105FREE_AND_NULL(state->msg);1106 state->msg_len =0;11071108unlink(am_path(state,"author-script"));1109unlink(am_path(state,"final-commit"));11101111oidclr(&state->orig_commit);1112unlink(am_path(state,"original-commit"));11131114if(!get_oid("HEAD", &head))1115write_state_text(state,"abort-safety",oid_to_hex(&head));1116else1117write_state_text(state,"abort-safety","");11181119 state->cur++;1120write_state_count(state,"next", state->cur);1121}11221123/**1124 * Returns the filename of the current patch email.1125 */1126static const char*msgnum(const struct am_state *state)1127{1128static struct strbuf sb = STRBUF_INIT;11291130strbuf_reset(&sb);1131strbuf_addf(&sb,"%0*d", state->prec, state->cur);11321133return sb.buf;1134}11351136/**1137 * Refresh and write index.1138 */1139static voidrefresh_and_write_cache(void)1140{1141struct lock_file lock_file = LOCK_INIT;11421143hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);1144refresh_cache(REFRESH_QUIET);1145if(write_locked_index(&the_index, &lock_file, COMMIT_LOCK))1146die(_("unable to write index file"));1147}11481149/**1150 * Returns 1 if the index differs from HEAD, 0 otherwise. When on an unborn1151 * branch, returns 1 if there are entries in the index, 0 otherwise. If an1152 * strbuf is provided, the space-separated list of files that differ will be1153 * appended to it.1154 */1155static intindex_has_changes(struct strbuf *sb)1156{1157struct object_id head;1158int i;11591160if(!get_oid_tree("HEAD", &head)) {1161struct diff_options opt;11621163diff_setup(&opt);1164 opt.flags.exit_with_status =1;1165if(!sb)1166 opt.flags.quick =1;1167do_diff_cache(&head, &opt);1168diffcore_std(&opt);1169for(i =0; sb && i < diff_queued_diff.nr; i++) {1170if(i)1171strbuf_addch(sb,' ');1172strbuf_addstr(sb, diff_queued_diff.queue[i]->two->path);1173}1174diff_flush(&opt);1175return opt.flags.has_changes !=0;1176}else{1177for(i =0; sb && i < active_nr; i++) {1178if(i)1179strbuf_addch(sb,' ');1180strbuf_addstr(sb, active_cache[i]->name);1181}1182return!!active_nr;1183}1184}11851186/**1187 * Dies with a user-friendly message on how to proceed after resolving the1188 * problem. This message can be overridden with state->resolvemsg.1189 */1190static void NORETURN die_user_resolve(const struct am_state *state)1191{1192if(state->resolvemsg) {1193printf_ln("%s", state->resolvemsg);1194}else{1195const char*cmdline = state->interactive ?"git am -i":"git am";11961197printf_ln(_("When you have resolved this problem, run\"%s--continue\"."), cmdline);1198printf_ln(_("If you prefer to skip this patch, run\"%s--skip\"instead."), cmdline);1199printf_ln(_("To restore the original branch and stop patching, run\"%s--abort\"."), cmdline);1200}12011202exit(128);1203}12041205/**1206 * Appends signoff to the "msg" field of the am_state.1207 */1208static voidam_append_signoff(struct am_state *state)1209{1210struct strbuf sb = STRBUF_INIT;12111212strbuf_attach(&sb, state->msg, state->msg_len, state->msg_len);1213append_signoff(&sb,0,0);1214 state->msg =strbuf_detach(&sb, &state->msg_len);1215}12161217/**1218 * Parses `mail` using git-mailinfo, extracting its patch and authorship info.1219 * state->msg will be set to the patch message. state->author_name,1220 * state->author_email and state->author_date will be set to the patch author's1221 * name, email and date respectively. The patch body will be written to the1222 * state directory's "patch" file.1223 *1224 * Returns 1 if the patch should be skipped, 0 otherwise.1225 */1226static intparse_mail(struct am_state *state,const char*mail)1227{1228FILE*fp;1229struct strbuf sb = STRBUF_INIT;1230struct strbuf msg = STRBUF_INIT;1231struct strbuf author_name = STRBUF_INIT;1232struct strbuf author_date = STRBUF_INIT;1233struct strbuf author_email = STRBUF_INIT;1234int ret =0;1235struct mailinfo mi;12361237setup_mailinfo(&mi);12381239if(state->utf8)1240 mi.metainfo_charset =get_commit_output_encoding();1241else1242 mi.metainfo_charset = NULL;12431244switch(state->keep) {1245case KEEP_FALSE:1246break;1247case KEEP_TRUE:1248 mi.keep_subject =1;1249break;1250case KEEP_NON_PATCH:1251 mi.keep_non_patch_brackets_in_subject =1;1252break;1253default:1254die("BUG: invalid value for state->keep");1255}12561257if(state->message_id)1258 mi.add_message_id =1;12591260switch(state->scissors) {1261case SCISSORS_UNSET:1262break;1263case SCISSORS_FALSE:1264 mi.use_scissors =0;1265break;1266case SCISSORS_TRUE:1267 mi.use_scissors =1;1268break;1269default:1270die("BUG: invalid value for state->scissors");1271}12721273 mi.input =xfopen(mail,"r");1274 mi.output =xfopen(am_path(state,"info"),"w");1275if(mailinfo(&mi,am_path(state,"msg"),am_path(state,"patch")))1276die("could not parse patch");12771278fclose(mi.input);1279fclose(mi.output);12801281/* Extract message and author information */1282 fp =xfopen(am_path(state,"info"),"r");1283while(!strbuf_getline_lf(&sb, fp)) {1284const char*x;12851286if(skip_prefix(sb.buf,"Subject: ", &x)) {1287if(msg.len)1288strbuf_addch(&msg,'\n');1289strbuf_addstr(&msg, x);1290}else if(skip_prefix(sb.buf,"Author: ", &x))1291strbuf_addstr(&author_name, x);1292else if(skip_prefix(sb.buf,"Email: ", &x))1293strbuf_addstr(&author_email, x);1294else if(skip_prefix(sb.buf,"Date: ", &x))1295strbuf_addstr(&author_date, x);1296}1297fclose(fp);12981299/* Skip pine's internal folder data */1300if(!strcmp(author_name.buf,"Mail System Internal Data")) {1301 ret =1;1302goto finish;1303}13041305if(is_empty_file(am_path(state,"patch"))) {1306printf_ln(_("Patch is empty."));1307die_user_resolve(state);1308}13091310strbuf_addstr(&msg,"\n\n");1311strbuf_addbuf(&msg, &mi.log_message);1312strbuf_stripspace(&msg,0);13131314assert(!state->author_name);1315 state->author_name =strbuf_detach(&author_name, NULL);13161317assert(!state->author_email);1318 state->author_email =strbuf_detach(&author_email, NULL);13191320assert(!state->author_date);1321 state->author_date =strbuf_detach(&author_date, NULL);13221323assert(!state->msg);1324 state->msg =strbuf_detach(&msg, &state->msg_len);13251326finish:1327strbuf_release(&msg);1328strbuf_release(&author_date);1329strbuf_release(&author_email);1330strbuf_release(&author_name);1331strbuf_release(&sb);1332clear_mailinfo(&mi);1333return ret;1334}13351336/**1337 * Sets commit_id to the commit hash where the mail was generated from.1338 * Returns 0 on success, -1 on failure.1339 */1340static intget_mail_commit_oid(struct object_id *commit_id,const char*mail)1341{1342struct strbuf sb = STRBUF_INIT;1343FILE*fp =xfopen(mail,"r");1344const char*x;1345int ret =0;13461347if(strbuf_getline_lf(&sb, fp) ||1348!skip_prefix(sb.buf,"From ", &x) ||1349get_oid_hex(x, commit_id) <0)1350 ret = -1;13511352strbuf_release(&sb);1353fclose(fp);1354return ret;1355}13561357/**1358 * Sets state->msg, state->author_name, state->author_email, state->author_date1359 * to the commit's respective info.1360 */1361static voidget_commit_info(struct am_state *state,struct commit *commit)1362{1363const char*buffer, *ident_line, *msg;1364size_t ident_len;1365struct ident_split id;13661367 buffer =logmsg_reencode(commit, NULL,get_commit_output_encoding());13681369 ident_line =find_commit_header(buffer,"author", &ident_len);13701371if(split_ident_line(&id, ident_line, ident_len) <0)1372die(_("invalid ident line: %.*s"), (int)ident_len, ident_line);13731374assert(!state->author_name);1375if(id.name_begin)1376 state->author_name =1377xmemdupz(id.name_begin, id.name_end - id.name_begin);1378else1379 state->author_name =xstrdup("");13801381assert(!state->author_email);1382if(id.mail_begin)1383 state->author_email =1384xmemdupz(id.mail_begin, id.mail_end - id.mail_begin);1385else1386 state->author_email =xstrdup("");13871388assert(!state->author_date);1389 state->author_date =xstrdup(show_ident_date(&id,DATE_MODE(NORMAL)));13901391assert(!state->msg);1392 msg =strstr(buffer,"\n\n");1393if(!msg)1394die(_("unable to parse commit%s"),oid_to_hex(&commit->object.oid));1395 state->msg =xstrdup(msg +2);1396 state->msg_len =strlen(state->msg);1397unuse_commit_buffer(commit, buffer);1398}13991400/**1401 * Writes `commit` as a patch to the state directory's "patch" file.1402 */1403static voidwrite_commit_patch(const struct am_state *state,struct commit *commit)1404{1405struct rev_info rev_info;1406FILE*fp;14071408 fp =xfopen(am_path(state,"patch"),"w");1409init_revisions(&rev_info, NULL);1410 rev_info.diff =1;1411 rev_info.abbrev =0;1412 rev_info.disable_stdin =1;1413 rev_info.show_root_diff =1;1414 rev_info.diffopt.output_format = DIFF_FORMAT_PATCH;1415 rev_info.no_commit_id =1;1416 rev_info.diffopt.flags.binary =1;1417 rev_info.diffopt.flags.full_index =1;1418 rev_info.diffopt.use_color =0;1419 rev_info.diffopt.file = fp;1420 rev_info.diffopt.close_file =1;1421add_pending_object(&rev_info, &commit->object,"");1422diff_setup_done(&rev_info.diffopt);1423log_tree_commit(&rev_info, commit);1424}14251426/**1427 * Writes the diff of the index against HEAD as a patch to the state1428 * directory's "patch" file.1429 */1430static voidwrite_index_patch(const struct am_state *state)1431{1432struct tree *tree;1433struct object_id head;1434struct rev_info rev_info;1435FILE*fp;14361437if(!get_oid_tree("HEAD", &head))1438 tree =lookup_tree(&head);1439else1440 tree =lookup_tree(the_hash_algo->empty_tree);14411442 fp =xfopen(am_path(state,"patch"),"w");1443init_revisions(&rev_info, NULL);1444 rev_info.diff =1;1445 rev_info.disable_stdin =1;1446 rev_info.no_commit_id =1;1447 rev_info.diffopt.output_format = DIFF_FORMAT_PATCH;1448 rev_info.diffopt.use_color =0;1449 rev_info.diffopt.file = fp;1450 rev_info.diffopt.close_file =1;1451add_pending_object(&rev_info, &tree->object,"");1452diff_setup_done(&rev_info.diffopt);1453run_diff_index(&rev_info,1);1454}14551456/**1457 * Like parse_mail(), but parses the mail by looking up its commit ID1458 * directly. This is used in --rebasing mode to bypass git-mailinfo's munging1459 * of patches.1460 *1461 * state->orig_commit will be set to the original commit ID.1462 *1463 * Will always return 0 as the patch should never be skipped.1464 */1465static intparse_mail_rebase(struct am_state *state,const char*mail)1466{1467struct commit *commit;1468struct object_id commit_oid;14691470if(get_mail_commit_oid(&commit_oid, mail) <0)1471die(_("could not parse%s"), mail);14721473 commit =lookup_commit_or_die(&commit_oid, mail);14741475get_commit_info(state, commit);14761477write_commit_patch(state, commit);14781479oidcpy(&state->orig_commit, &commit_oid);1480write_state_text(state,"original-commit",oid_to_hex(&commit_oid));14811482return0;1483}14841485/**1486 * Applies current patch with git-apply. Returns 0 on success, -1 otherwise. If1487 * `index_file` is not NULL, the patch will be applied to that index.1488 */1489static intrun_apply(const struct am_state *state,const char*index_file)1490{1491struct argv_array apply_paths = ARGV_ARRAY_INIT;1492struct argv_array apply_opts = ARGV_ARRAY_INIT;1493struct apply_state apply_state;1494int res, opts_left;1495int force_apply =0;1496int options =0;14971498if(init_apply_state(&apply_state, NULL))1499die("BUG: init_apply_state() failed");15001501argv_array_push(&apply_opts,"apply");1502argv_array_pushv(&apply_opts, state->git_apply_opts.argv);15031504 opts_left =apply_parse_options(apply_opts.argc, apply_opts.argv,1505&apply_state, &force_apply, &options,1506 NULL);15071508if(opts_left !=0)1509die("unknown option passed through to git apply");15101511if(index_file) {1512 apply_state.index_file = index_file;1513 apply_state.cached =1;1514}else1515 apply_state.check_index =1;15161517/*1518 * If we are allowed to fall back on 3-way merge, don't give false1519 * errors during the initial attempt.1520 */1521if(state->threeway && !index_file)1522 apply_state.apply_verbosity = verbosity_silent;15231524if(check_apply_state(&apply_state, force_apply))1525die("BUG: check_apply_state() failed");15261527argv_array_push(&apply_paths,am_path(state,"patch"));15281529 res =apply_all_patches(&apply_state, apply_paths.argc, apply_paths.argv, options);15301531argv_array_clear(&apply_paths);1532argv_array_clear(&apply_opts);1533clear_apply_state(&apply_state);15341535if(res)1536return res;15371538if(index_file) {1539/* Reload index as apply_all_patches() will have modified it. */1540discard_cache();1541read_cache_from(index_file);1542}15431544return0;1545}15461547/**1548 * Builds an index that contains just the blobs needed for a 3way merge.1549 */1550static intbuild_fake_ancestor(const struct am_state *state,const char*index_file)1551{1552struct child_process cp = CHILD_PROCESS_INIT;15531554 cp.git_cmd =1;1555argv_array_push(&cp.args,"apply");1556argv_array_pushv(&cp.args, state->git_apply_opts.argv);1557argv_array_pushf(&cp.args,"--build-fake-ancestor=%s", index_file);1558argv_array_push(&cp.args,am_path(state,"patch"));15591560if(run_command(&cp))1561return-1;15621563return0;1564}15651566/**1567 * Attempt a threeway merge, using index_path as the temporary index.1568 */1569static intfall_back_threeway(const struct am_state *state,const char*index_path)1570{1571struct object_id orig_tree, their_tree, our_tree;1572const struct object_id *bases[1] = { &orig_tree };1573struct merge_options o;1574struct commit *result;1575char*their_tree_name;15761577if(get_oid("HEAD", &our_tree) <0)1578hashcpy(our_tree.hash, EMPTY_TREE_SHA1_BIN);15791580if(build_fake_ancestor(state, index_path))1581returnerror("could not build fake ancestor");15821583discard_cache();1584read_cache_from(index_path);15851586if(write_index_as_tree(orig_tree.hash, &the_index, index_path,0, NULL))1587returnerror(_("Repository lacks necessary blobs to fall back on 3-way merge."));15881589say(state, stdout,_("Using index info to reconstruct a base tree..."));15901591if(!state->quiet) {1592/*1593 * List paths that needed 3-way fallback, so that the user can1594 * review them with extra care to spot mismerges.1595 */1596struct rev_info rev_info;1597const char*diff_filter_str ="--diff-filter=AM";15981599init_revisions(&rev_info, NULL);1600 rev_info.diffopt.output_format = DIFF_FORMAT_NAME_STATUS;1601diff_opt_parse(&rev_info.diffopt, &diff_filter_str,1, rev_info.prefix);1602add_pending_oid(&rev_info,"HEAD", &our_tree,0);1603diff_setup_done(&rev_info.diffopt);1604run_diff_index(&rev_info,1);1605}16061607if(run_apply(state, index_path))1608returnerror(_("Did you hand edit your patch?\n"1609"It does not apply to blobs recorded in its index."));16101611if(write_index_as_tree(their_tree.hash, &the_index, index_path,0, NULL))1612returnerror("could not write tree");16131614say(state, stdout,_("Falling back to patching base and 3-way merge..."));16151616discard_cache();1617read_cache();16181619/*1620 * This is not so wrong. Depending on which base we picked, orig_tree1621 * may be wildly different from ours, but their_tree has the same set of1622 * wildly different changes in parts the patch did not touch, so1623 * recursive ends up canceling them, saying that we reverted all those1624 * changes.1625 */16261627init_merge_options(&o);16281629 o.branch1 ="HEAD";1630 their_tree_name =xstrfmt("%.*s",linelen(state->msg), state->msg);1631 o.branch2 = their_tree_name;16321633if(state->quiet)1634 o.verbosity =0;16351636if(merge_recursive_generic(&o, &our_tree, &their_tree,1, bases, &result)) {1637rerere(state->allow_rerere_autoupdate);1638free(their_tree_name);1639returnerror(_("Failed to merge in the changes."));1640}16411642free(their_tree_name);1643return0;1644}16451646/**1647 * Commits the current index with state->msg as the commit message and1648 * state->author_name, state->author_email and state->author_date as the author1649 * information.1650 */1651static voiddo_commit(const struct am_state *state)1652{1653struct object_id tree, parent, commit;1654const struct object_id *old_oid;1655struct commit_list *parents = NULL;1656const char*reflog_msg, *author;1657struct strbuf sb = STRBUF_INIT;16581659if(run_hook_le(NULL,"pre-applypatch", NULL))1660exit(1);16611662if(write_cache_as_tree(tree.hash,0, NULL))1663die(_("git write-tree failed to write a tree"));16641665if(!get_oid_commit("HEAD", &parent)) {1666 old_oid = &parent;1667commit_list_insert(lookup_commit(&parent), &parents);1668}else{1669 old_oid = NULL;1670say(state, stderr,_("applying to an empty history"));1671}16721673 author =fmt_ident(state->author_name, state->author_email,1674 state->ignore_date ? NULL : state->author_date,1675 IDENT_STRICT);16761677if(state->committer_date_is_author_date)1678setenv("GIT_COMMITTER_DATE",1679 state->ignore_date ?"": state->author_date,1);16801681if(commit_tree(state->msg, state->msg_len, tree.hash, parents, commit.hash,1682 author, state->sign_commit))1683die(_("failed to write commit object"));16841685 reflog_msg =getenv("GIT_REFLOG_ACTION");1686if(!reflog_msg)1687 reflog_msg ="am";16881689strbuf_addf(&sb,"%s: %.*s", reflog_msg,linelen(state->msg),1690 state->msg);16911692update_ref(sb.buf,"HEAD", &commit, old_oid,0,1693 UPDATE_REFS_DIE_ON_ERR);16941695if(state->rebasing) {1696FILE*fp =xfopen(am_path(state,"rewritten"),"a");16971698assert(!is_null_oid(&state->orig_commit));1699fprintf(fp,"%s",oid_to_hex(&state->orig_commit));1700fprintf(fp,"%s\n",oid_to_hex(&commit));1701fclose(fp);1702}17031704run_hook_le(NULL,"post-applypatch", NULL);17051706strbuf_release(&sb);1707}17081709/**1710 * Validates the am_state for resuming -- the "msg" and authorship fields must1711 * be filled up.1712 */1713static voidvalidate_resume_state(const struct am_state *state)1714{1715if(!state->msg)1716die(_("cannot resume:%sdoes not exist."),1717am_path(state,"final-commit"));17181719if(!state->author_name || !state->author_email || !state->author_date)1720die(_("cannot resume:%sdoes not exist."),1721am_path(state,"author-script"));1722}17231724/**1725 * Interactively prompt the user on whether the current patch should be1726 * applied.1727 *1728 * Returns 0 if the user chooses to apply the patch, 1 if the user chooses to1729 * skip it.1730 */1731static intdo_interactive(struct am_state *state)1732{1733assert(state->msg);17341735if(!isatty(0))1736die(_("cannot be interactive without stdin connected to a terminal."));17371738for(;;) {1739const char*reply;17401741puts(_("Commit Body is:"));1742puts("--------------------------");1743printf("%s", state->msg);1744puts("--------------------------");17451746/*1747 * TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]1748 * in your translation. The program will only accept English1749 * input at this point.1750 */1751 reply =git_prompt(_("Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "), PROMPT_ECHO);17521753if(!reply) {1754continue;1755}else if(*reply =='y'|| *reply =='Y') {1756return0;1757}else if(*reply =='a'|| *reply =='A') {1758 state->interactive =0;1759return0;1760}else if(*reply =='n'|| *reply =='N') {1761return1;1762}else if(*reply =='e'|| *reply =='E') {1763struct strbuf msg = STRBUF_INIT;17641765if(!launch_editor(am_path(state,"final-commit"), &msg, NULL)) {1766free(state->msg);1767 state->msg =strbuf_detach(&msg, &state->msg_len);1768}1769strbuf_release(&msg);1770}else if(*reply =='v'|| *reply =='V') {1771const char*pager =git_pager(1);1772struct child_process cp = CHILD_PROCESS_INIT;17731774if(!pager)1775 pager ="cat";1776prepare_pager_args(&cp, pager);1777argv_array_push(&cp.args,am_path(state,"patch"));1778run_command(&cp);1779}1780}1781}17821783/**1784 * Applies all queued mail.1785 *1786 * If `resume` is true, we are "resuming". The "msg" and authorship fields, as1787 * well as the state directory's "patch" file is used as-is for applying the1788 * patch and committing it.1789 */1790static voidam_run(struct am_state *state,int resume)1791{1792const char*argv_gc_auto[] = {"gc","--auto", NULL};1793struct strbuf sb = STRBUF_INIT;17941795unlink(am_path(state,"dirtyindex"));17961797refresh_and_write_cache();17981799if(index_has_changes(&sb)) {1800write_state_bool(state,"dirtyindex",1);1801die(_("Dirty index: cannot apply patches (dirty:%s)"), sb.buf);1802}18031804strbuf_release(&sb);18051806while(state->cur <= state->last) {1807const char*mail =am_path(state,msgnum(state));1808int apply_status;18091810reset_ident_date();18111812if(!file_exists(mail))1813goto next;18141815if(resume) {1816validate_resume_state(state);1817}else{1818int skip;18191820if(state->rebasing)1821 skip =parse_mail_rebase(state, mail);1822else1823 skip =parse_mail(state, mail);18241825if(skip)1826goto next;/* mail should be skipped */18271828if(state->signoff)1829am_append_signoff(state);18301831write_author_script(state);1832write_commit_msg(state);1833}18341835if(state->interactive &&do_interactive(state))1836goto next;18371838if(run_applypatch_msg_hook(state))1839exit(1);18401841say(state, stdout,_("Applying: %.*s"),linelen(state->msg), state->msg);18421843 apply_status =run_apply(state, NULL);18441845if(apply_status && state->threeway) {1846struct strbuf sb = STRBUF_INIT;18471848strbuf_addstr(&sb,am_path(state,"patch-merge-index"));1849 apply_status =fall_back_threeway(state, sb.buf);1850strbuf_release(&sb);18511852/*1853 * Applying the patch to an earlier tree and merging1854 * the result may have produced the same tree as ours.1855 */1856if(!apply_status && !index_has_changes(NULL)) {1857say(state, stdout,_("No changes -- Patch already applied."));1858goto next;1859}1860}18611862if(apply_status) {1863int advice_amworkdir =1;18641865printf_ln(_("Patch failed at%s%.*s"),msgnum(state),1866linelen(state->msg), state->msg);18671868git_config_get_bool("advice.amworkdir", &advice_amworkdir);18691870if(advice_amworkdir)1871printf_ln(_("The copy of the patch that failed is found in:%s"),1872am_path(state,"patch"));18731874die_user_resolve(state);1875}18761877do_commit(state);18781879next:1880am_next(state);18811882if(resume)1883am_load(state);1884 resume =0;1885}18861887if(!is_empty_file(am_path(state,"rewritten"))) {1888assert(state->rebasing);1889copy_notes_for_rebase(state);1890run_post_rewrite_hook(state);1891}18921893/*1894 * In rebasing mode, it's up to the caller to take care of1895 * housekeeping.1896 */1897if(!state->rebasing) {1898am_destroy(state);1899close_all_packs();1900run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);1901}1902}19031904/**1905 * Resume the current am session after patch application failure. The user did1906 * all the hard work, and we do not have to do any patch application. Just1907 * trust and commit what the user has in the index and working tree.1908 */1909static voidam_resolve(struct am_state *state)1910{1911validate_resume_state(state);19121913say(state, stdout,_("Applying: %.*s"),linelen(state->msg), state->msg);19141915if(!index_has_changes(NULL)) {1916printf_ln(_("No changes - did you forget to use 'git add'?\n"1917"If there is nothing left to stage, chances are that something else\n"1918"already introduced the same changes; you might want to skip this patch."));1919die_user_resolve(state);1920}19211922if(unmerged_cache()) {1923printf_ln(_("You still have unmerged paths in your index.\n"1924"You should 'git add' each file with resolved conflicts to mark them as such.\n"1925"You might run `git rm` on a file to accept\"deleted by them\"for it."));1926die_user_resolve(state);1927}19281929if(state->interactive) {1930write_index_patch(state);1931if(do_interactive(state))1932goto next;1933}19341935rerere(0);19361937do_commit(state);19381939next:1940am_next(state);1941am_load(state);1942am_run(state,0);1943}19441945/**1946 * Performs a checkout fast-forward from `head` to `remote`. If `reset` is1947 * true, any unmerged entries will be discarded. Returns 0 on success, -1 on1948 * failure.1949 */1950static intfast_forward_to(struct tree *head,struct tree *remote,int reset)1951{1952struct lock_file lock_file = LOCK_INIT;1953struct unpack_trees_options opts;1954struct tree_desc t[2];19551956if(parse_tree(head) ||parse_tree(remote))1957return-1;19581959hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);19601961refresh_cache(REFRESH_QUIET);19621963memset(&opts,0,sizeof(opts));1964 opts.head_idx =1;1965 opts.src_index = &the_index;1966 opts.dst_index = &the_index;1967 opts.update =1;1968 opts.merge =1;1969 opts.reset = reset;1970 opts.fn = twoway_merge;1971init_tree_desc(&t[0], head->buffer, head->size);1972init_tree_desc(&t[1], remote->buffer, remote->size);19731974if(unpack_trees(2, t, &opts)) {1975rollback_lock_file(&lock_file);1976return-1;1977}19781979if(write_locked_index(&the_index, &lock_file, COMMIT_LOCK))1980die(_("unable to write new index file"));19811982return0;1983}19841985/**1986 * Merges a tree into the index. The index's stat info will take precedence1987 * over the merged tree's. Returns 0 on success, -1 on failure.1988 */1989static intmerge_tree(struct tree *tree)1990{1991struct lock_file lock_file = LOCK_INIT;1992struct unpack_trees_options opts;1993struct tree_desc t[1];19941995if(parse_tree(tree))1996return-1;19971998hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);19992000memset(&opts,0,sizeof(opts));2001 opts.head_idx =1;2002 opts.src_index = &the_index;2003 opts.dst_index = &the_index;2004 opts.merge =1;2005 opts.fn = oneway_merge;2006init_tree_desc(&t[0], tree->buffer, tree->size);20072008if(unpack_trees(1, t, &opts)) {2009rollback_lock_file(&lock_file);2010return-1;2011}20122013if(write_locked_index(&the_index, &lock_file, COMMIT_LOCK))2014die(_("unable to write new index file"));20152016return0;2017}20182019/**2020 * Clean the index without touching entries that are not modified between2021 * `head` and `remote`.2022 */2023static intclean_index(const struct object_id *head,const struct object_id *remote)2024{2025struct tree *head_tree, *remote_tree, *index_tree;2026struct object_id index;20272028 head_tree =parse_tree_indirect(head);2029if(!head_tree)2030returnerror(_("Could not parse object '%s'."),oid_to_hex(head));20312032 remote_tree =parse_tree_indirect(remote);2033if(!remote_tree)2034returnerror(_("Could not parse object '%s'."),oid_to_hex(remote));20352036read_cache_unmerged();20372038if(fast_forward_to(head_tree, head_tree,1))2039return-1;20402041if(write_cache_as_tree(index.hash,0, NULL))2042return-1;20432044 index_tree =parse_tree_indirect(&index);2045if(!index_tree)2046returnerror(_("Could not parse object '%s'."),oid_to_hex(&index));20472048if(fast_forward_to(index_tree, remote_tree,0))2049return-1;20502051if(merge_tree(remote_tree))2052return-1;20532054remove_branch_state();20552056return0;2057}20582059/**2060 * Resets rerere's merge resolution metadata.2061 */2062static voidam_rerere_clear(void)2063{2064struct string_list merge_rr = STRING_LIST_INIT_DUP;2065rerere_clear(&merge_rr);2066string_list_clear(&merge_rr,1);2067}20682069/**2070 * Resume the current am session by skipping the current patch.2071 */2072static voidam_skip(struct am_state *state)2073{2074struct object_id head;20752076am_rerere_clear();20772078if(get_oid("HEAD", &head))2079hashcpy(head.hash, EMPTY_TREE_SHA1_BIN);20802081if(clean_index(&head, &head))2082die(_("failed to clean index"));20832084am_next(state);2085am_load(state);2086am_run(state,0);2087}20882089/**2090 * Returns true if it is safe to reset HEAD to the ORIG_HEAD, false otherwise.2091 *2092 * It is not safe to reset HEAD when:2093 * 1. git-am previously failed because the index was dirty.2094 * 2. HEAD has moved since git-am previously failed.2095 */2096static intsafe_to_abort(const struct am_state *state)2097{2098struct strbuf sb = STRBUF_INIT;2099struct object_id abort_safety, head;21002101if(file_exists(am_path(state,"dirtyindex")))2102return0;21032104if(read_state_file(&sb, state,"abort-safety",1) >0) {2105if(get_oid_hex(sb.buf, &abort_safety))2106die(_("could not parse%s"),am_path(state,"abort-safety"));2107}else2108oidclr(&abort_safety);2109strbuf_release(&sb);21102111if(get_oid("HEAD", &head))2112oidclr(&head);21132114if(!oidcmp(&head, &abort_safety))2115return1;21162117warning(_("You seem to have moved HEAD since the last 'am' failure.\n"2118"Not rewinding to ORIG_HEAD"));21192120return0;2121}21222123/**2124 * Aborts the current am session if it is safe to do so.2125 */2126static voidam_abort(struct am_state *state)2127{2128struct object_id curr_head, orig_head;2129int has_curr_head, has_orig_head;2130char*curr_branch;21312132if(!safe_to_abort(state)) {2133am_destroy(state);2134return;2135}21362137am_rerere_clear();21382139 curr_branch =resolve_refdup("HEAD",0, &curr_head, NULL);2140 has_curr_head = curr_branch && !is_null_oid(&curr_head);2141if(!has_curr_head)2142hashcpy(curr_head.hash, EMPTY_TREE_SHA1_BIN);21432144 has_orig_head = !get_oid("ORIG_HEAD", &orig_head);2145if(!has_orig_head)2146hashcpy(orig_head.hash, EMPTY_TREE_SHA1_BIN);21472148clean_index(&curr_head, &orig_head);21492150if(has_orig_head)2151update_ref("am --abort","HEAD", &orig_head,2152 has_curr_head ? &curr_head : NULL,0,2153 UPDATE_REFS_DIE_ON_ERR);2154else if(curr_branch)2155delete_ref(NULL, curr_branch, NULL, REF_NO_DEREF);21562157free(curr_branch);2158am_destroy(state);2159}21602161/**2162 * parse_options() callback that validates and sets opt->value to the2163 * PATCH_FORMAT_* enum value corresponding to `arg`.2164 */2165static intparse_opt_patchformat(const struct option *opt,const char*arg,int unset)2166{2167int*opt_value = opt->value;21682169if(!strcmp(arg,"mbox"))2170*opt_value = PATCH_FORMAT_MBOX;2171else if(!strcmp(arg,"stgit"))2172*opt_value = PATCH_FORMAT_STGIT;2173else if(!strcmp(arg,"stgit-series"))2174*opt_value = PATCH_FORMAT_STGIT_SERIES;2175else if(!strcmp(arg,"hg"))2176*opt_value = PATCH_FORMAT_HG;2177else if(!strcmp(arg,"mboxrd"))2178*opt_value = PATCH_FORMAT_MBOXRD;2179else2180returnerror(_("Invalid value for --patch-format:%s"), arg);2181return0;2182}21832184enum resume_mode {2185 RESUME_FALSE =0,2186 RESUME_APPLY,2187 RESUME_RESOLVED,2188 RESUME_SKIP,2189 RESUME_ABORT2190};21912192static intgit_am_config(const char*k,const char*v,void*cb)2193{2194int status;21952196 status =git_gpg_config(k, v, NULL);2197if(status)2198return status;21992200returngit_default_config(k, v, NULL);2201}22022203intcmd_am(int argc,const char**argv,const char*prefix)2204{2205struct am_state state;2206int binary = -1;2207int keep_cr = -1;2208int patch_format = PATCH_FORMAT_UNKNOWN;2209enum resume_mode resume = RESUME_FALSE;2210int in_progress;22112212const char*const usage[] = {2213N_("git am [<options>] [(<mbox> | <Maildir>)...]"),2214N_("git am [<options>] (--continue | --skip | --abort)"),2215 NULL2216};22172218struct option options[] = {2219OPT_BOOL('i',"interactive", &state.interactive,2220N_("run interactively")),2221OPT_HIDDEN_BOOL('b',"binary", &binary,2222N_("historical option -- no-op")),2223OPT_BOOL('3',"3way", &state.threeway,2224N_("allow fall back on 3way merging if needed")),2225OPT__QUIET(&state.quiet,N_("be quiet")),2226OPT_SET_INT('s',"signoff", &state.signoff,2227N_("add a Signed-off-by line to the commit message"),2228 SIGNOFF_EXPLICIT),2229OPT_BOOL('u',"utf8", &state.utf8,2230N_("recode into utf8 (default)")),2231OPT_SET_INT('k',"keep", &state.keep,2232N_("pass -k flag to git-mailinfo"), KEEP_TRUE),2233OPT_SET_INT(0,"keep-non-patch", &state.keep,2234N_("pass -b flag to git-mailinfo"), KEEP_NON_PATCH),2235OPT_BOOL('m',"message-id", &state.message_id,2236N_("pass -m flag to git-mailinfo")),2237{ OPTION_SET_INT,0,"keep-cr", &keep_cr, NULL,2238N_("pass --keep-cr flag to git-mailsplit for mbox format"),2239 PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL,1},2240{ OPTION_SET_INT,0,"no-keep-cr", &keep_cr, NULL,2241N_("do not pass --keep-cr flag to git-mailsplit independent of am.keepcr"),2242 PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL,0},2243OPT_BOOL('c',"scissors", &state.scissors,2244N_("strip everything before a scissors line")),2245OPT_PASSTHRU_ARGV(0,"whitespace", &state.git_apply_opts,N_("action"),2246N_("pass it through git-apply"),22470),2248OPT_PASSTHRU_ARGV(0,"ignore-space-change", &state.git_apply_opts, NULL,2249N_("pass it through git-apply"),2250 PARSE_OPT_NOARG),2251OPT_PASSTHRU_ARGV(0,"ignore-whitespace", &state.git_apply_opts, NULL,2252N_("pass it through git-apply"),2253 PARSE_OPT_NOARG),2254OPT_PASSTHRU_ARGV(0,"directory", &state.git_apply_opts,N_("root"),2255N_("pass it through git-apply"),22560),2257OPT_PASSTHRU_ARGV(0,"exclude", &state.git_apply_opts,N_("path"),2258N_("pass it through git-apply"),22590),2260OPT_PASSTHRU_ARGV(0,"include", &state.git_apply_opts,N_("path"),2261N_("pass it through git-apply"),22620),2263OPT_PASSTHRU_ARGV('C', NULL, &state.git_apply_opts,N_("n"),2264N_("pass it through git-apply"),22650),2266OPT_PASSTHRU_ARGV('p', NULL, &state.git_apply_opts,N_("num"),2267N_("pass it through git-apply"),22680),2269OPT_CALLBACK(0,"patch-format", &patch_format,N_("format"),2270N_("format the patch(es) are in"),2271 parse_opt_patchformat),2272OPT_PASSTHRU_ARGV(0,"reject", &state.git_apply_opts, NULL,2273N_("pass it through git-apply"),2274 PARSE_OPT_NOARG),2275OPT_STRING(0,"resolvemsg", &state.resolvemsg, NULL,2276N_("override error message when patch failure occurs")),2277OPT_CMDMODE(0,"continue", &resume,2278N_("continue applying patches after resolving a conflict"),2279 RESUME_RESOLVED),2280OPT_CMDMODE('r',"resolved", &resume,2281N_("synonyms for --continue"),2282 RESUME_RESOLVED),2283OPT_CMDMODE(0,"skip", &resume,2284N_("skip the current patch"),2285 RESUME_SKIP),2286OPT_CMDMODE(0,"abort", &resume,2287N_("restore the original branch and abort the patching operation."),2288 RESUME_ABORT),2289OPT_BOOL(0,"committer-date-is-author-date",2290&state.committer_date_is_author_date,2291N_("lie about committer date")),2292OPT_BOOL(0,"ignore-date", &state.ignore_date,2293N_("use current timestamp for author date")),2294OPT_RERERE_AUTOUPDATE(&state.allow_rerere_autoupdate),2295{ OPTION_STRING,'S',"gpg-sign", &state.sign_commit,N_("key-id"),2296N_("GPG-sign commits"),2297 PARSE_OPT_OPTARG, NULL, (intptr_t)""},2298OPT_HIDDEN_BOOL(0,"rebasing", &state.rebasing,2299N_("(internal use for git-rebase)")),2300OPT_END()2301};23022303if(argc ==2&& !strcmp(argv[1],"-h"))2304usage_with_options(usage, options);23052306git_config(git_am_config, NULL);23072308am_state_init(&state);23092310 in_progress =am_in_progress(&state);2311if(in_progress)2312am_load(&state);23132314 argc =parse_options(argc, argv, prefix, options, usage,0);23152316if(binary >=0)2317fprintf_ln(stderr,_("The -b/--binary option has been a no-op for long time, and\n"2318"it will be removed. Please do not use it anymore."));23192320/* Ensure a valid committer ident can be constructed */2321git_committer_info(IDENT_STRICT);23222323if(read_index_preload(&the_index, NULL) <0)2324die(_("failed to read the index"));23252326if(in_progress) {2327/*2328 * Catch user error to feed us patches when there is a session2329 * in progress:2330 *2331 * 1. mbox path(s) are provided on the command-line.2332 * 2. stdin is not a tty: the user is trying to feed us a patch2333 * from standard input. This is somewhat unreliable -- stdin2334 * could be /dev/null for example and the caller did not2335 * intend to feed us a patch but wanted to continue2336 * unattended.2337 */2338if(argc || (resume == RESUME_FALSE && !isatty(0)))2339die(_("previous rebase directory%sstill exists but mbox given."),2340 state.dir);23412342if(resume == RESUME_FALSE)2343 resume = RESUME_APPLY;23442345if(state.signoff == SIGNOFF_EXPLICIT)2346am_append_signoff(&state);2347}else{2348struct argv_array paths = ARGV_ARRAY_INIT;2349int i;23502351/*2352 * Handle stray state directory in the independent-run case. In2353 * the --rebasing case, it is up to the caller to take care of2354 * stray directories.2355 */2356if(file_exists(state.dir) && !state.rebasing) {2357if(resume == RESUME_ABORT) {2358am_destroy(&state);2359am_state_release(&state);2360return0;2361}23622363die(_("Stray%sdirectory found.\n"2364"Use\"git am --abort\"to remove it."),2365 state.dir);2366}23672368if(resume)2369die(_("Resolve operation not in progress, we are not resuming."));23702371for(i =0; i < argc; i++) {2372if(is_absolute_path(argv[i]) || !prefix)2373argv_array_push(&paths, argv[i]);2374else2375argv_array_push(&paths,mkpath("%s/%s", prefix, argv[i]));2376}23772378am_setup(&state, patch_format, paths.argv, keep_cr);23792380argv_array_clear(&paths);2381}23822383switch(resume) {2384case RESUME_FALSE:2385am_run(&state,0);2386break;2387case RESUME_APPLY:2388am_run(&state,1);2389break;2390case RESUME_RESOLVED:2391am_resolve(&state);2392break;2393case RESUME_SKIP:2394am_skip(&state);2395break;2396case RESUME_ABORT:2397am_abort(&state);2398break;2399default:2400die("BUG: invalid resume value");2401}24022403am_state_release(&state);24042405return0;2406}