Paul Tan | 73c2779 | 2015-08-04 21:51:24 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Builtin "git am" |
| 3 | * |
| 4 | * Based on git-am.sh by Junio C Hamano. |
| 5 | */ |
| 6 | #include "cache.h" |
Brandon Williams | b2141fc | 2017-06-14 11:07:36 -0700 | [diff] [blame] | 7 | #include "config.h" |
Paul Tan | 73c2779 | 2015-08-04 21:51:24 +0800 | [diff] [blame] | 8 | #include "builtin.h" |
| 9 | #include "exec_cmd.h" |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 10 | #include "parse-options.h" |
| 11 | #include "dir.h" |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 12 | #include "run-command.h" |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 13 | #include "quote.h" |
Junio C Hamano | db86e61 | 2015-08-25 14:57:09 -0700 | [diff] [blame] | 14 | #include "tempfile.h" |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 15 | #include "lockfile.h" |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 16 | #include "cache-tree.h" |
| 17 | #include "refs.h" |
| 18 | #include "commit.h" |
Paul Tan | 32a5fcb | 2015-08-04 21:51:31 +0800 | [diff] [blame] | 19 | #include "diff.h" |
| 20 | #include "diffcore.h" |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 21 | #include "unpack-trees.h" |
| 22 | #include "branch.h" |
Paul Tan | eb898b8 | 2015-08-04 21:51:39 +0800 | [diff] [blame] | 23 | #include "sequencer.h" |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 24 | #include "revision.h" |
| 25 | #include "merge-recursive.h" |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 26 | #include "revision.h" |
| 27 | #include "log-tree.h" |
Paul Tan | 88b291f | 2015-08-04 21:51:55 +0800 | [diff] [blame] | 28 | #include "notes-utils.h" |
Paul Tan | f1cb96d | 2015-08-04 21:51:59 +0800 | [diff] [blame] | 29 | #include "rerere.h" |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 30 | #include "prompt.h" |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 31 | #include "mailinfo.h" |
Christian Couder | edfac5e | 2016-09-04 22:18:33 +0200 | [diff] [blame] | 32 | #include "apply.h" |
Junio C Hamano | a77598e | 2016-08-30 12:36:42 -0700 | [diff] [blame] | 33 | #include "string-list.h" |
Jonathan Tan | 3836d88 | 2017-08-18 15:20:21 -0700 | [diff] [blame] | 34 | #include "packfile.h" |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 35 | |
| 36 | /** |
| 37 | * Returns 1 if the file is empty or does not exist, 0 otherwise. |
| 38 | */ |
| 39 | static int is_empty_file(const char *filename) |
| 40 | { |
| 41 | struct stat st; |
| 42 | |
| 43 | if (stat(filename, &st) < 0) { |
| 44 | if (errno == ENOENT) |
| 45 | return 1; |
| 46 | die_errno(_("could not stat %s"), filename); |
| 47 | } |
| 48 | |
| 49 | return !st.st_size; |
| 50 | } |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 51 | |
Paul Tan | c29807b | 2015-08-04 21:51:27 +0800 | [diff] [blame] | 52 | /** |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 53 | * Returns the length of the first line of msg. |
| 54 | */ |
| 55 | static int linelen(const char *msg) |
| 56 | { |
| 57 | return strchrnul(msg, '\n') - msg; |
| 58 | } |
| 59 | |
Paul Tan | 5ae41c7 | 2015-08-04 21:52:00 +0800 | [diff] [blame] | 60 | /** |
| 61 | * Returns true if `str` consists of only whitespace, false otherwise. |
| 62 | */ |
| 63 | static int str_isspace(const char *str) |
| 64 | { |
| 65 | for (; *str; str++) |
| 66 | if (!isspace(*str)) |
| 67 | return 0; |
| 68 | |
| 69 | return 1; |
| 70 | } |
| 71 | |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 72 | enum patch_format { |
| 73 | PATCH_FORMAT_UNKNOWN = 0, |
Paul Tan | 5ae41c7 | 2015-08-04 21:52:00 +0800 | [diff] [blame] | 74 | PATCH_FORMAT_MBOX, |
Paul Tan | 336108c | 2015-08-04 21:52:01 +0800 | [diff] [blame] | 75 | PATCH_FORMAT_STGIT, |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 76 | PATCH_FORMAT_STGIT_SERIES, |
Eric Wong | d9925d1 | 2016-06-05 04:46:41 +0000 | [diff] [blame] | 77 | PATCH_FORMAT_HG, |
| 78 | PATCH_FORMAT_MBOXRD |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 79 | }; |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 80 | |
Paul Tan | 4f1b696 | 2015-08-04 21:51:46 +0800 | [diff] [blame] | 81 | enum 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 | |
Paul Tan | 9b64661 | 2015-08-04 21:51:49 +0800 | [diff] [blame] | 87 | enum 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 | |
Paul Tan | b5e8235 | 2015-08-04 22:08:51 +0800 | [diff] [blame] | 93 | enum signoff_type { |
| 94 | SIGNOFF_FALSE = 0, |
| 95 | SIGNOFF_TRUE = 1, |
| 96 | SIGNOFF_EXPLICIT /* --signoff was set on the command-line */ |
| 97 | }; |
| 98 | |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 99 | struct am_state { |
| 100 | /* state directory path */ |
| 101 | char *dir; |
| 102 | |
| 103 | /* current and last patch numbers, 1-indexed */ |
| 104 | int cur; |
| 105 | int last; |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 106 | |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 107 | /* commit metadata and message */ |
| 108 | char *author_name; |
| 109 | char *author_email; |
| 110 | char *author_date; |
| 111 | char *msg; |
| 112 | size_t msg_len; |
| 113 | |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 114 | /* when --rebasing, records the original commit the patch came from */ |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 115 | struct object_id orig_commit; |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 116 | |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 117 | /* number of digits in patch filename */ |
| 118 | int prec; |
Paul Tan | 5d28cf7 | 2015-08-04 21:51:37 +0800 | [diff] [blame] | 119 | |
| 120 | /* various operating modes and command line options */ |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 121 | int interactive; |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 122 | int threeway; |
Paul Tan | 5d28cf7 | 2015-08-04 21:51:37 +0800 | [diff] [blame] | 123 | int quiet; |
Paul Tan | b5e8235 | 2015-08-04 22:08:51 +0800 | [diff] [blame] | 124 | int signoff; /* enum signoff_type */ |
Paul Tan | ef7ee16 | 2015-08-04 21:51:45 +0800 | [diff] [blame] | 125 | int utf8; |
Paul Tan | 4f1b696 | 2015-08-04 21:51:46 +0800 | [diff] [blame] | 126 | int keep; /* enum keep_type */ |
Paul Tan | 702cbaa | 2015-08-04 21:51:47 +0800 | [diff] [blame] | 127 | int message_id; |
Paul Tan | 9b64661 | 2015-08-04 21:51:49 +0800 | [diff] [blame] | 128 | int scissors; /* enum scissors_type */ |
Paul Tan | 257e8ce | 2015-08-04 21:51:50 +0800 | [diff] [blame] | 129 | struct argv_array git_apply_opts; |
Paul Tan | 2d83109 | 2015-08-04 21:51:38 +0800 | [diff] [blame] | 130 | const char *resolvemsg; |
Paul Tan | 0cd4bcb | 2015-08-04 21:51:52 +0800 | [diff] [blame] | 131 | int committer_date_is_author_date; |
Paul Tan | f07adb6 | 2015-08-04 21:51:51 +0800 | [diff] [blame] | 132 | int ignore_date; |
Paul Tan | f1cb96d | 2015-08-04 21:51:59 +0800 | [diff] [blame] | 133 | int allow_rerere_autoupdate; |
Paul Tan | 7e35dac | 2015-08-04 21:51:53 +0800 | [diff] [blame] | 134 | const char *sign_commit; |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 135 | int rebasing; |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 136 | }; |
| 137 | |
| 138 | /** |
Jeff King | 16d2676 | 2017-04-20 17:09:35 -0400 | [diff] [blame] | 139 | * Initializes am_state with the default values. |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 140 | */ |
Jeff King | 16d2676 | 2017-04-20 17:09:35 -0400 | [diff] [blame] | 141 | static void am_state_init(struct am_state *state) |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 142 | { |
Paul Tan | 7e35dac | 2015-08-04 21:51:53 +0800 | [diff] [blame] | 143 | int gpgsign; |
| 144 | |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 145 | memset(state, 0, sizeof(*state)); |
| 146 | |
Jeff King | 16d2676 | 2017-04-20 17:09:35 -0400 | [diff] [blame] | 147 | state->dir = git_pathdup("rebase-apply"); |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 148 | |
| 149 | state->prec = 4; |
Paul Tan | ef7ee16 | 2015-08-04 21:51:45 +0800 | [diff] [blame] | 150 | |
Remi Lespinet | e97a5e7 | 2015-08-04 22:19:26 +0800 | [diff] [blame] | 151 | git_config_get_bool("am.threeway", &state->threeway); |
| 152 | |
Paul Tan | ef7ee16 | 2015-08-04 21:51:45 +0800 | [diff] [blame] | 153 | state->utf8 = 1; |
Paul Tan | 702cbaa | 2015-08-04 21:51:47 +0800 | [diff] [blame] | 154 | |
| 155 | git_config_get_bool("am.messageid", &state->message_id); |
Paul Tan | 9b64661 | 2015-08-04 21:51:49 +0800 | [diff] [blame] | 156 | |
| 157 | state->scissors = SCISSORS_UNSET; |
Paul Tan | 257e8ce | 2015-08-04 21:51:50 +0800 | [diff] [blame] | 158 | |
| 159 | argv_array_init(&state->git_apply_opts); |
Paul Tan | 7e35dac | 2015-08-04 21:51:53 +0800 | [diff] [blame] | 160 | |
| 161 | if (!git_config_get_bool("commit.gpgsign", &gpgsign)) |
| 162 | state->sign_commit = gpgsign ? "" : NULL; |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | /** |
| 166 | * Releases memory allocated by an am_state. |
| 167 | */ |
| 168 | static void am_state_release(struct am_state *state) |
| 169 | { |
| 170 | free(state->dir); |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 171 | free(state->author_name); |
| 172 | free(state->author_email); |
| 173 | free(state->author_date); |
| 174 | free(state->msg); |
Paul Tan | 257e8ce | 2015-08-04 21:51:50 +0800 | [diff] [blame] | 175 | argv_array_clear(&state->git_apply_opts); |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Returns path relative to the am_state directory. |
| 180 | */ |
| 181 | static inline const char *am_path(const struct am_state *state, const char *path) |
| 182 | { |
| 183 | return mkpath("%s/%s", state->dir, path); |
| 184 | } |
| 185 | |
| 186 | /** |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 187 | * For convenience to call write_file() |
| 188 | */ |
René Scharfe | 1dad879 | 2016-07-08 05:08:05 -0400 | [diff] [blame] | 189 | static void write_state_text(const struct am_state *state, |
| 190 | const char *name, const char *string) |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 191 | { |
René Scharfe | 1dad879 | 2016-07-08 05:08:05 -0400 | [diff] [blame] | 192 | write_file(am_path(state, name), "%s", string); |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 193 | } |
| 194 | |
René Scharfe | 1dad879 | 2016-07-08 05:08:05 -0400 | [diff] [blame] | 195 | static void write_state_count(const struct am_state *state, |
| 196 | const char *name, int value) |
| 197 | { |
| 198 | write_file(am_path(state, name), "%d", value); |
| 199 | } |
| 200 | |
| 201 | static void write_state_bool(const struct am_state *state, |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 202 | const char *name, int value) |
| 203 | { |
René Scharfe | 1dad879 | 2016-07-08 05:08:05 -0400 | [diff] [blame] | 204 | write_state_text(state, name, value ? "t" : "f"); |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | /** |
Paul Tan | 5d28cf7 | 2015-08-04 21:51:37 +0800 | [diff] [blame] | 208 | * If state->quiet is false, calls fprintf(fp, fmt, ...), and appends a newline |
| 209 | * at the end. |
| 210 | */ |
| 211 | static void say(const struct am_state *state, FILE *fp, const char *fmt, ...) |
| 212 | { |
| 213 | va_list ap; |
| 214 | |
| 215 | va_start(ap, fmt); |
| 216 | if (!state->quiet) { |
| 217 | vfprintf(fp, fmt, ap); |
| 218 | putc('\n', fp); |
| 219 | } |
| 220 | va_end(ap); |
| 221 | } |
| 222 | |
| 223 | /** |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 224 | * Returns 1 if there is an am session in progress, 0 otherwise. |
| 225 | */ |
| 226 | static int am_in_progress(const struct am_state *state) |
| 227 | { |
| 228 | struct stat st; |
| 229 | |
| 230 | if (lstat(state->dir, &st) < 0 || !S_ISDIR(st.st_mode)) |
| 231 | return 0; |
| 232 | if (lstat(am_path(state, "last"), &st) || !S_ISREG(st.st_mode)) |
| 233 | return 0; |
| 234 | if (lstat(am_path(state, "next"), &st) || !S_ISREG(st.st_mode)) |
| 235 | return 0; |
| 236 | return 1; |
| 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 | */ |
| 244 | static int read_state_file(struct strbuf *sb, const struct am_state *state, |
| 245 | const char *file, int trim) |
| 246 | { |
| 247 | strbuf_reset(sb); |
| 248 | |
| 249 | if (strbuf_read_file(sb, am_path(state, file), 0) >= 0) { |
| 250 | if (trim) |
| 251 | strbuf_trim(sb); |
| 252 | |
| 253 | return sb->len; |
| 254 | } |
| 255 | |
| 256 | if (errno == ENOENT) |
| 257 | return -1; |
| 258 | |
| 259 | die_errno(_("could not read '%s'"), am_path(state, file)); |
| 260 | } |
| 261 | |
| 262 | /** |
Junio C Hamano | a77598e | 2016-08-30 12:36:42 -0700 | [diff] [blame] | 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 |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 265 | */ |
Junio C Hamano | a77598e | 2016-08-30 12:36:42 -0700 | [diff] [blame] | 266 | static int parse_key_value_squoted(char *buf, struct string_list *list) |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 267 | { |
Junio C Hamano | a77598e | 2016-08-30 12:36:42 -0700 | [diff] [blame] | 268 | while (*buf) { |
| 269 | struct string_list_item *item; |
| 270 | char *np; |
| 271 | char *cp = strchr(buf, '='); |
| 272 | if (!cp) |
| 273 | return -1; |
| 274 | np = strchrnul(cp, '\n'); |
| 275 | *cp++ = '\0'; |
| 276 | item = string_list_append(list, buf); |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 277 | |
Junio C Hamano | a77598e | 2016-08-30 12:36:42 -0700 | [diff] [blame] | 278 | buf = np + (*np == '\n'); |
| 279 | *np = '\0'; |
| 280 | cp = sq_dequote(cp); |
| 281 | if (!cp) |
| 282 | return -1; |
| 283 | item->util = xstrdup(cp); |
| 284 | } |
| 285 | return 0; |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 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 | */ |
| 304 | static int read_author_script(struct am_state *state) |
| 305 | { |
| 306 | const char *filename = am_path(state, "author-script"); |
Junio C Hamano | a77598e | 2016-08-30 12:36:42 -0700 | [diff] [blame] | 307 | struct strbuf buf = STRBUF_INIT; |
| 308 | struct string_list kv = STRING_LIST_INIT_DUP; |
| 309 | int retval = -1; /* assume failure */ |
| 310 | int fd; |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 311 | |
| 312 | assert(!state->author_name); |
| 313 | assert(!state->author_email); |
| 314 | assert(!state->author_date); |
| 315 | |
Junio C Hamano | a77598e | 2016-08-30 12:36:42 -0700 | [diff] [blame] | 316 | fd = open(filename, O_RDONLY); |
| 317 | if (fd < 0) { |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 318 | if (errno == ENOENT) |
| 319 | return 0; |
| 320 | die_errno(_("could not open '%s' for reading"), filename); |
| 321 | } |
Junio C Hamano | a77598e | 2016-08-30 12:36:42 -0700 | [diff] [blame] | 322 | strbuf_read(&buf, fd, 0); |
| 323 | close(fd); |
| 324 | if (parse_key_value_squoted(buf.buf, &kv)) |
| 325 | goto finish; |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 326 | |
Junio C Hamano | a77598e | 2016-08-30 12:36:42 -0700 | [diff] [blame] | 327 | if (kv.nr != 3 || |
| 328 | strcmp(kv.items[0].string, "GIT_AUTHOR_NAME") || |
| 329 | strcmp(kv.items[1].string, "GIT_AUTHOR_EMAIL") || |
| 330 | strcmp(kv.items[2].string, "GIT_AUTHOR_DATE")) |
| 331 | goto 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; |
| 336 | finish: |
| 337 | string_list_clear(&kv, !!retval); |
| 338 | strbuf_release(&buf); |
| 339 | return retval; |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 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 | */ |
| 346 | static void write_author_script(const struct am_state *state) |
| 347 | { |
| 348 | struct strbuf sb = STRBUF_INIT; |
| 349 | |
| 350 | strbuf_addstr(&sb, "GIT_AUTHOR_NAME="); |
| 351 | sq_quote_buf(&sb, state->author_name); |
| 352 | strbuf_addch(&sb, '\n'); |
| 353 | |
| 354 | strbuf_addstr(&sb, "GIT_AUTHOR_EMAIL="); |
| 355 | sq_quote_buf(&sb, state->author_email); |
| 356 | strbuf_addch(&sb, '\n'); |
| 357 | |
| 358 | strbuf_addstr(&sb, "GIT_AUTHOR_DATE="); |
| 359 | sq_quote_buf(&sb, state->author_date); |
| 360 | strbuf_addch(&sb, '\n'); |
| 361 | |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 362 | write_state_text(state, "author-script", sb.buf); |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 363 | |
| 364 | strbuf_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 | */ |
| 374 | static int read_commit_msg(struct am_state *state) |
| 375 | { |
| 376 | struct strbuf sb = STRBUF_INIT; |
| 377 | |
| 378 | assert(!state->msg); |
| 379 | |
| 380 | if (read_state_file(&sb, state, "final-commit", 0) < 0) { |
| 381 | strbuf_release(&sb); |
| 382 | return -1; |
| 383 | } |
| 384 | |
| 385 | state->msg = strbuf_detach(&sb, &state->msg_len); |
| 386 | return 0; |
| 387 | } |
| 388 | |
| 389 | /** |
| 390 | * Saves state->msg in the state directory's "final-commit" file. |
| 391 | */ |
| 392 | static void write_commit_msg(const struct am_state *state) |
| 393 | { |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 394 | const char *filename = am_path(state, "final-commit"); |
Jeff King | e78d5d4 | 2016-07-08 05:12:55 -0400 | [diff] [blame] | 395 | write_file_buf(filename, state->msg, state->msg_len); |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | /** |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 399 | * Loads state from disk. |
| 400 | */ |
| 401 | static void am_load(struct am_state *state) |
| 402 | { |
| 403 | struct strbuf sb = STRBUF_INIT; |
| 404 | |
| 405 | if (read_state_file(&sb, state, "next", 1) < 0) |
| 406 | die("BUG: state file 'next' does not exist"); |
| 407 | state->cur = strtol(sb.buf, NULL, 10); |
| 408 | |
| 409 | if (read_state_file(&sb, state, "last", 1) < 0) |
| 410 | die("BUG: state file 'last' does not exist"); |
| 411 | state->last = strtol(sb.buf, NULL, 10); |
| 412 | |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 413 | if (read_author_script(state) < 0) |
| 414 | die(_("could not parse author script")); |
| 415 | |
| 416 | read_commit_msg(state); |
| 417 | |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 418 | if (read_state_file(&sb, state, "original-commit", 1) < 0) |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 419 | oidclr(&state->orig_commit); |
| 420 | else if (get_oid_hex(sb.buf, &state->orig_commit) < 0) |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 421 | die(_("could not parse %s"), am_path(state, "original-commit")); |
| 422 | |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 423 | read_state_file(&sb, state, "threeway", 1); |
| 424 | state->threeway = !strcmp(sb.buf, "t"); |
| 425 | |
Paul Tan | 5d28cf7 | 2015-08-04 21:51:37 +0800 | [diff] [blame] | 426 | read_state_file(&sb, state, "quiet", 1); |
| 427 | state->quiet = !strcmp(sb.buf, "t"); |
| 428 | |
Paul Tan | eb898b8 | 2015-08-04 21:51:39 +0800 | [diff] [blame] | 429 | read_state_file(&sb, state, "sign", 1); |
| 430 | state->signoff = !strcmp(sb.buf, "t"); |
| 431 | |
Paul Tan | ef7ee16 | 2015-08-04 21:51:45 +0800 | [diff] [blame] | 432 | read_state_file(&sb, state, "utf8", 1); |
| 433 | state->utf8 = !strcmp(sb.buf, "t"); |
| 434 | |
Phillip Wood | fd4a3f4 | 2017-08-02 11:44:15 +0100 | [diff] [blame] | 435 | if (file_exists(am_path(state, "rerere-autoupdate"))) { |
| 436 | read_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 | |
Paul Tan | 4f1b696 | 2015-08-04 21:51:46 +0800 | [diff] [blame] | 443 | read_state_file(&sb, state, "keep", 1); |
| 444 | if (!strcmp(sb.buf, "t")) |
| 445 | state->keep = KEEP_TRUE; |
| 446 | else if (!strcmp(sb.buf, "b")) |
| 447 | state->keep = KEEP_NON_PATCH; |
| 448 | else |
| 449 | state->keep = KEEP_FALSE; |
| 450 | |
Paul Tan | 702cbaa | 2015-08-04 21:51:47 +0800 | [diff] [blame] | 451 | read_state_file(&sb, state, "messageid", 1); |
| 452 | state->message_id = !strcmp(sb.buf, "t"); |
| 453 | |
Paul Tan | 9b64661 | 2015-08-04 21:51:49 +0800 | [diff] [blame] | 454 | read_state_file(&sb, state, "scissors", 1); |
| 455 | if (!strcmp(sb.buf, "t")) |
| 456 | state->scissors = SCISSORS_TRUE; |
| 457 | else if (!strcmp(sb.buf, "f")) |
| 458 | state->scissors = SCISSORS_FALSE; |
| 459 | else |
| 460 | state->scissors = SCISSORS_UNSET; |
| 461 | |
Paul Tan | 257e8ce | 2015-08-04 21:51:50 +0800 | [diff] [blame] | 462 | read_state_file(&sb, state, "apply-opt", 1); |
| 463 | argv_array_clear(&state->git_apply_opts); |
| 464 | if (sq_dequote_to_argv_array(sb.buf, &state->git_apply_opts) < 0) |
| 465 | die(_("could not parse %s"), am_path(state, "apply-opt")); |
| 466 | |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 467 | state->rebasing = !!file_exists(am_path(state, "rebasing")); |
| 468 | |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 469 | strbuf_release(&sb); |
| 470 | } |
| 471 | |
| 472 | /** |
| 473 | * Removes the am_state directory, forcefully terminating the current am |
| 474 | * session. |
| 475 | */ |
| 476 | static void am_destroy(const struct am_state *state) |
| 477 | { |
| 478 | struct strbuf sb = STRBUF_INIT; |
| 479 | |
| 480 | strbuf_addstr(&sb, state->dir); |
| 481 | remove_dir_recursively(&sb, 0); |
| 482 | strbuf_release(&sb); |
| 483 | } |
| 484 | |
| 485 | /** |
Paul Tan | b8803d8 | 2015-08-04 21:51:56 +0800 | [diff] [blame] | 486 | * Runs applypatch-msg hook. Returns its exit code. |
| 487 | */ |
| 488 | static int run_applypatch_msg_hook(struct am_state *state) |
| 489 | { |
| 490 | int ret; |
| 491 | |
| 492 | assert(state->msg); |
| 493 | ret = run_hook_le(NULL, "applypatch-msg", am_path(state, "final-commit"), NULL); |
| 494 | |
| 495 | if (!ret) { |
Ævar Arnfjörð Bjarmason | 6a83d90 | 2017-06-15 23:15:46 +0000 | [diff] [blame] | 496 | FREE_AND_NULL(state->msg); |
Paul Tan | b8803d8 | 2015-08-04 21:51:56 +0800 | [diff] [blame] | 497 | if (read_commit_msg(state) < 0) |
| 498 | die(_("'%s' was deleted by the applypatch-msg hook"), |
| 499 | am_path(state, "final-commit")); |
| 500 | } |
| 501 | |
| 502 | return ret; |
| 503 | } |
| 504 | |
| 505 | /** |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 506 | * Runs post-rewrite hook. Returns it exit code. |
| 507 | */ |
| 508 | static int run_post_rewrite_hook(const struct am_state *state) |
| 509 | { |
| 510 | struct child_process cp = CHILD_PROCESS_INIT; |
| 511 | const char *hook = find_hook("post-rewrite"); |
| 512 | int ret; |
| 513 | |
| 514 | if (!hook) |
| 515 | return 0; |
| 516 | |
| 517 | argv_array_push(&cp.args, hook); |
| 518 | argv_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 | |
| 525 | close(cp.in); |
| 526 | return ret; |
| 527 | } |
| 528 | |
| 529 | /** |
Paul Tan | 88b291f | 2015-08-04 21:51:55 +0800 | [diff] [blame] | 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 | */ |
| 535 | static int copy_notes_for_rebase(const struct am_state *state) |
| 536 | { |
| 537 | struct notes_rewrite_cfg *c; |
| 538 | struct strbuf sb = STRBUF_INIT; |
| 539 | const char *invalid_line = _("Malformed input line: '%s'."); |
| 540 | const char *msg = "Notes added by 'git rebase'"; |
| 541 | FILE *fp; |
| 542 | int ret = 0; |
| 543 | |
| 544 | assert(state->rebasing); |
| 545 | |
| 546 | c = init_copy_notes_for_rewrite("rebase"); |
| 547 | if (!c) |
| 548 | return 0; |
| 549 | |
| 550 | fp = xfopen(am_path(state, "rewritten"), "r"); |
| 551 | |
Junio C Hamano | 8f309ae | 2016-01-13 15:31:17 -0800 | [diff] [blame] | 552 | while (!strbuf_getline_lf(&sb, fp)) { |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 553 | struct object_id from_obj, to_obj; |
Paul Tan | 88b291f | 2015-08-04 21:51:55 +0800 | [diff] [blame] | 554 | |
| 555 | if (sb.len != GIT_SHA1_HEXSZ * 2 + 1) { |
| 556 | ret = error(invalid_line, sb.buf); |
| 557 | goto finish; |
| 558 | } |
| 559 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 560 | if (get_oid_hex(sb.buf, &from_obj)) { |
Paul Tan | 88b291f | 2015-08-04 21:51:55 +0800 | [diff] [blame] | 561 | ret = error(invalid_line, sb.buf); |
| 562 | goto finish; |
| 563 | } |
| 564 | |
| 565 | if (sb.buf[GIT_SHA1_HEXSZ] != ' ') { |
| 566 | ret = error(invalid_line, sb.buf); |
| 567 | goto finish; |
| 568 | } |
| 569 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 570 | if (get_oid_hex(sb.buf + GIT_SHA1_HEXSZ + 1, &to_obj)) { |
Paul Tan | 88b291f | 2015-08-04 21:51:55 +0800 | [diff] [blame] | 571 | ret = error(invalid_line, sb.buf); |
| 572 | goto finish; |
| 573 | } |
| 574 | |
brian m. carlson | bb7e473 | 2017-05-30 10:30:42 -0700 | [diff] [blame] | 575 | if (copy_note_for_rewrite(c, &from_obj, &to_obj)) |
Paul Tan | 88b291f | 2015-08-04 21:51:55 +0800 | [diff] [blame] | 576 | ret = error(_("Failed to copy notes from '%s' to '%s'"), |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 577 | oid_to_hex(&from_obj), oid_to_hex(&to_obj)); |
Paul Tan | 88b291f | 2015-08-04 21:51:55 +0800 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | finish: |
| 581 | finish_copy_notes_for_rewrite(c, msg); |
| 582 | fclose(fp); |
| 583 | strbuf_release(&sb); |
| 584 | return ret; |
| 585 | } |
| 586 | |
| 587 | /** |
Paul Tan | c29807b | 2015-08-04 21:51:27 +0800 | [diff] [blame] | 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 | */ |
| 594 | static int is_mail(FILE *fp) |
| 595 | { |
| 596 | const char *header_regex = "^[!-9;-~]+:"; |
| 597 | struct strbuf sb = STRBUF_INIT; |
| 598 | regex_t regex; |
| 599 | int ret = 1; |
| 600 | |
| 601 | if (fseek(fp, 0L, SEEK_SET)) |
| 602 | die_errno(_("fseek failed")); |
| 603 | |
| 604 | if (regcomp(®ex, header_regex, REG_NOSUB | REG_EXTENDED)) |
| 605 | die("invalid pattern: %s", header_regex); |
| 606 | |
Junio C Hamano | 1a0c8df | 2016-01-13 18:32:23 -0800 | [diff] [blame] | 607 | while (!strbuf_getline(&sb, fp)) { |
Paul Tan | c29807b | 2015-08-04 21:51:27 +0800 | [diff] [blame] | 608 | if (!sb.len) |
| 609 | break; /* End of header */ |
| 610 | |
| 611 | /* Ignore indented folded lines */ |
| 612 | if (*sb.buf == '\t' || *sb.buf == ' ') |
| 613 | continue; |
| 614 | |
| 615 | /* It's a header if it matches header_regex */ |
| 616 | if (regexec(®ex, sb.buf, 0, NULL, 0)) { |
| 617 | ret = 0; |
| 618 | goto done; |
| 619 | } |
| 620 | } |
| 621 | |
| 622 | done: |
| 623 | regfree(®ex); |
| 624 | strbuf_release(&sb); |
| 625 | return 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 | */ |
| 633 | static int detect_patch_format(const char **paths) |
| 634 | { |
| 635 | enum patch_format ret = PATCH_FORMAT_UNKNOWN; |
| 636 | struct strbuf l1 = STRBUF_INIT; |
Paul Tan | 5ae41c7 | 2015-08-04 21:52:00 +0800 | [diff] [blame] | 637 | struct strbuf l2 = STRBUF_INIT; |
| 638 | struct strbuf l3 = STRBUF_INIT; |
Paul Tan | c29807b | 2015-08-04 21:51:27 +0800 | [diff] [blame] | 639 | FILE *fp; |
| 640 | |
| 641 | /* |
| 642 | * We default to mbox format if input is from stdin and for directories |
| 643 | */ |
| 644 | if (!*paths || !strcmp(*paths, "-") || is_directory(*paths)) |
| 645 | return 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 | |
Junio C Hamano | 1a0c8df | 2016-01-13 18:32:23 -0800 | [diff] [blame] | 654 | while (!strbuf_getline(&l1, fp)) { |
Paul Tan | c29807b | 2015-08-04 21:51:27 +0800 | [diff] [blame] | 655 | if (l1.len) |
| 656 | break; |
| 657 | } |
| 658 | |
| 659 | if (starts_with(l1.buf, "From ") || starts_with(l1.buf, "From: ")) { |
| 660 | ret = PATCH_FORMAT_MBOX; |
| 661 | goto done; |
| 662 | } |
| 663 | |
Paul Tan | 336108c | 2015-08-04 21:52:01 +0800 | [diff] [blame] | 664 | if (starts_with(l1.buf, "# This series applies on GIT commit")) { |
| 665 | ret = PATCH_FORMAT_STGIT_SERIES; |
| 666 | goto done; |
| 667 | } |
| 668 | |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 669 | if (!strcmp(l1.buf, "# HG changeset patch")) { |
| 670 | ret = PATCH_FORMAT_HG; |
| 671 | goto done; |
| 672 | } |
| 673 | |
Junio C Hamano | 1a0c8df | 2016-01-13 18:32:23 -0800 | [diff] [blame] | 674 | strbuf_getline(&l2, fp); |
Junio C Hamano | 1a0c8df | 2016-01-13 18:32:23 -0800 | [diff] [blame] | 675 | strbuf_getline(&l3, fp); |
Paul Tan | 5ae41c7 | 2015-08-04 21:52:00 +0800 | [diff] [blame] | 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 | */ |
| 681 | if (l1.len && !l2.len && |
| 682 | (starts_with(l3.buf, "From:") || |
| 683 | starts_with(l3.buf, "Author:") || |
| 684 | starts_with(l3.buf, "Date:"))) { |
| 685 | ret = PATCH_FORMAT_STGIT; |
| 686 | goto done; |
| 687 | } |
| 688 | |
Paul Tan | c29807b | 2015-08-04 21:51:27 +0800 | [diff] [blame] | 689 | if (l1.len && is_mail(fp)) { |
| 690 | ret = PATCH_FORMAT_MBOX; |
| 691 | goto done; |
| 692 | } |
| 693 | |
| 694 | done: |
| 695 | fclose(fp); |
| 696 | strbuf_release(&l1); |
Rene Scharfe | 542627a | 2017-08-30 19:49:32 +0200 | [diff] [blame] | 697 | strbuf_release(&l2); |
| 698 | strbuf_release(&l3); |
Paul Tan | c29807b | 2015-08-04 21:51:27 +0800 | [diff] [blame] | 699 | return ret; |
| 700 | } |
| 701 | |
| 702 | /** |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 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 | */ |
Eric Wong | d9925d1 | 2016-06-05 04:46:41 +0000 | [diff] [blame] | 706 | static int split_mail_mbox(struct am_state *state, const char **paths, |
| 707 | int keep_cr, int mboxrd) |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 708 | { |
| 709 | struct child_process cp = CHILD_PROCESS_INIT; |
| 710 | struct strbuf last = STRBUF_INIT; |
| 711 | |
| 712 | cp.git_cmd = 1; |
| 713 | argv_array_push(&cp.args, "mailsplit"); |
| 714 | argv_array_pushf(&cp.args, "-d%d", state->prec); |
| 715 | argv_array_pushf(&cp.args, "-o%s", state->dir); |
| 716 | argv_array_push(&cp.args, "-b"); |
Paul Tan | 5d123a4 | 2015-08-04 21:51:48 +0800 | [diff] [blame] | 717 | if (keep_cr) |
| 718 | argv_array_push(&cp.args, "--keep-cr"); |
Eric Wong | d9925d1 | 2016-06-05 04:46:41 +0000 | [diff] [blame] | 719 | if (mboxrd) |
| 720 | argv_array_push(&cp.args, "--mboxrd"); |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 721 | argv_array_push(&cp.args, "--"); |
| 722 | argv_array_pushv(&cp.args, paths); |
| 723 | |
| 724 | if (capture_command(&cp, &last, 8)) |
| 725 | return -1; |
| 726 | |
| 727 | state->cur = 1; |
| 728 | state->last = strtol(last.buf, NULL, 10); |
| 729 | |
| 730 | return 0; |
| 731 | } |
| 732 | |
| 733 | /** |
Paul Tan | 5ae41c7 | 2015-08-04 21:52:00 +0800 | [diff] [blame] | 734 | * Callback signature for split_mail_conv(). The foreign patch should be |
| 735 | * read from `in`, and the converted patch (in RFC2822 mail format) should be |
| 736 | * written to `out`. Return 0 on success, or -1 on failure. |
| 737 | */ |
| 738 | typedef int (*mail_conv_fn)(FILE *out, FILE *in, int keep_cr); |
| 739 | |
| 740 | /** |
| 741 | * Calls `fn` for each file in `paths` to convert the foreign patch to the |
| 742 | * RFC2822 mail format suitable for parsing with git-mailinfo. |
| 743 | * |
| 744 | * Returns 0 on success, -1 on failure. |
| 745 | */ |
| 746 | static int split_mail_conv(mail_conv_fn fn, struct am_state *state, |
| 747 | const char **paths, int keep_cr) |
| 748 | { |
| 749 | static const char *stdin_only[] = {"-", NULL}; |
| 750 | int i; |
| 751 | |
| 752 | if (!*paths) |
| 753 | paths = stdin_only; |
| 754 | |
| 755 | for (i = 0; *paths; paths++, i++) { |
| 756 | FILE *in, *out; |
| 757 | const char *mail; |
| 758 | int ret; |
| 759 | |
| 760 | if (!strcmp(*paths, "-")) |
| 761 | in = stdin; |
| 762 | else |
| 763 | in = fopen(*paths, "r"); |
| 764 | |
| 765 | if (!in) |
Nguyễn Thái Ngọc Duy | 6e59e9c | 2016-05-08 16:47:24 +0700 | [diff] [blame] | 766 | return error_errno(_("could not open '%s' for reading"), |
| 767 | *paths); |
Paul Tan | 5ae41c7 | 2015-08-04 21:52:00 +0800 | [diff] [blame] | 768 | |
| 769 | mail = mkpath("%s/%0*d", state->dir, state->prec, i + 1); |
| 770 | |
| 771 | out = fopen(mail, "w"); |
René Scharfe | ac8ce18 | 2017-04-16 18:55:30 +0200 | [diff] [blame] | 772 | if (!out) { |
| 773 | if (in != stdin) |
| 774 | fclose(in); |
Nguyễn Thái Ngọc Duy | 6e59e9c | 2016-05-08 16:47:24 +0700 | [diff] [blame] | 775 | return error_errno(_("could not open '%s' for writing"), |
| 776 | mail); |
René Scharfe | ac8ce18 | 2017-04-16 18:55:30 +0200 | [diff] [blame] | 777 | } |
Paul Tan | 5ae41c7 | 2015-08-04 21:52:00 +0800 | [diff] [blame] | 778 | |
| 779 | ret = fn(out, in, keep_cr); |
| 780 | |
| 781 | fclose(out); |
René Scharfe | ac8ce18 | 2017-04-16 18:55:30 +0200 | [diff] [blame] | 782 | if (in != stdin) |
| 783 | fclose(in); |
Paul Tan | 5ae41c7 | 2015-08-04 21:52:00 +0800 | [diff] [blame] | 784 | |
| 785 | if (ret) |
| 786 | return error(_("could not parse patch '%s'"), *paths); |
| 787 | } |
| 788 | |
| 789 | state->cur = 1; |
| 790 | state->last = i; |
| 791 | return 0; |
| 792 | } |
| 793 | |
| 794 | /** |
| 795 | * A split_mail_conv() callback that converts an StGit patch to an RFC2822 |
| 796 | * message suitable for parsing with git-mailinfo. |
| 797 | */ |
| 798 | static int stgit_patch_to_mail(FILE *out, FILE *in, int keep_cr) |
| 799 | { |
| 800 | struct strbuf sb = STRBUF_INIT; |
| 801 | int subject_printed = 0; |
| 802 | |
Junio C Hamano | 8f309ae | 2016-01-13 15:31:17 -0800 | [diff] [blame] | 803 | while (!strbuf_getline_lf(&sb, in)) { |
Paul Tan | 5ae41c7 | 2015-08-04 21:52:00 +0800 | [diff] [blame] | 804 | const char *str; |
| 805 | |
| 806 | if (str_isspace(sb.buf)) |
| 807 | continue; |
| 808 | else if (skip_prefix(sb.buf, "Author:", &str)) |
| 809 | fprintf(out, "From:%s\n", str); |
| 810 | else if (starts_with(sb.buf, "From") || starts_with(sb.buf, "Date")) |
| 811 | fprintf(out, "%s\n", sb.buf); |
| 812 | else if (!subject_printed) { |
| 813 | fprintf(out, "Subject: %s\n", sb.buf); |
| 814 | subject_printed = 1; |
| 815 | } else { |
| 816 | fprintf(out, "\n%s\n", sb.buf); |
| 817 | break; |
| 818 | } |
| 819 | } |
| 820 | |
| 821 | strbuf_reset(&sb); |
| 822 | while (strbuf_fread(&sb, 8192, in) > 0) { |
| 823 | fwrite(sb.buf, 1, sb.len, out); |
| 824 | strbuf_reset(&sb); |
| 825 | } |
| 826 | |
| 827 | strbuf_release(&sb); |
| 828 | return 0; |
| 829 | } |
| 830 | |
| 831 | /** |
Paul Tan | 336108c | 2015-08-04 21:52:01 +0800 | [diff] [blame] | 832 | * This function only supports a single StGit series file in `paths`. |
| 833 | * |
| 834 | * Given an StGit series file, converts the StGit patches in the series into |
| 835 | * RFC2822 messages suitable for parsing with git-mailinfo, and queues them in |
| 836 | * the state directory. |
| 837 | * |
| 838 | * Returns 0 on success, -1 on failure. |
| 839 | */ |
| 840 | static int split_mail_stgit_series(struct am_state *state, const char **paths, |
| 841 | int keep_cr) |
| 842 | { |
| 843 | const char *series_dir; |
| 844 | char *series_dir_buf; |
| 845 | FILE *fp; |
| 846 | struct argv_array patches = ARGV_ARRAY_INIT; |
| 847 | struct strbuf sb = STRBUF_INIT; |
| 848 | int ret; |
| 849 | |
| 850 | if (!paths[0] || paths[1]) |
| 851 | return error(_("Only one StGIT patch series can be applied at once")); |
| 852 | |
| 853 | series_dir_buf = xstrdup(*paths); |
| 854 | series_dir = dirname(series_dir_buf); |
| 855 | |
| 856 | fp = fopen(*paths, "r"); |
| 857 | if (!fp) |
Nguyễn Thái Ngọc Duy | 6e59e9c | 2016-05-08 16:47:24 +0700 | [diff] [blame] | 858 | return error_errno(_("could not open '%s' for reading"), *paths); |
Paul Tan | 336108c | 2015-08-04 21:52:01 +0800 | [diff] [blame] | 859 | |
Junio C Hamano | 8f309ae | 2016-01-13 15:31:17 -0800 | [diff] [blame] | 860 | while (!strbuf_getline_lf(&sb, fp)) { |
Paul Tan | 336108c | 2015-08-04 21:52:01 +0800 | [diff] [blame] | 861 | if (*sb.buf == '#') |
| 862 | continue; /* skip comment lines */ |
| 863 | |
| 864 | argv_array_push(&patches, mkpath("%s/%s", series_dir, sb.buf)); |
| 865 | } |
| 866 | |
| 867 | fclose(fp); |
| 868 | strbuf_release(&sb); |
| 869 | free(series_dir_buf); |
| 870 | |
| 871 | ret = split_mail_conv(stgit_patch_to_mail, state, patches.argv, keep_cr); |
| 872 | |
| 873 | argv_array_clear(&patches); |
| 874 | return ret; |
| 875 | } |
| 876 | |
| 877 | /** |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 878 | * A split_patches_conv() callback that converts a mercurial patch to a RFC2822 |
| 879 | * message suitable for parsing with git-mailinfo. |
| 880 | */ |
| 881 | static int hg_patch_to_mail(FILE *out, FILE *in, int keep_cr) |
| 882 | { |
| 883 | struct strbuf sb = STRBUF_INIT; |
Rene Scharfe | b36474f | 2017-08-30 19:49:33 +0200 | [diff] [blame] | 884 | int rc = 0; |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 885 | |
Junio C Hamano | 8f309ae | 2016-01-13 15:31:17 -0800 | [diff] [blame] | 886 | while (!strbuf_getline_lf(&sb, in)) { |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 887 | const char *str; |
| 888 | |
| 889 | if (skip_prefix(sb.buf, "# User ", &str)) |
| 890 | fprintf(out, "From: %s\n", str); |
| 891 | else if (skip_prefix(sb.buf, "# Date ", &str)) { |
Johannes Schindelin | dddbad7 | 2017-04-26 21:29:31 +0200 | [diff] [blame] | 892 | timestamp_t timestamp; |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 893 | long tz, tz2; |
| 894 | char *end; |
| 895 | |
| 896 | errno = 0; |
Johannes Schindelin | 1aeb7e7 | 2017-04-21 12:45:44 +0200 | [diff] [blame] | 897 | timestamp = parse_timestamp(str, &end, 10); |
Rene Scharfe | b36474f | 2017-08-30 19:49:33 +0200 | [diff] [blame] | 898 | if (errno) { |
| 899 | rc = error(_("invalid timestamp")); |
| 900 | goto exit; |
| 901 | } |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 902 | |
Rene Scharfe | b36474f | 2017-08-30 19:49:33 +0200 | [diff] [blame] | 903 | if (!skip_prefix(end, " ", &str)) { |
| 904 | rc = error(_("invalid Date line")); |
| 905 | goto exit; |
| 906 | } |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 907 | |
| 908 | errno = 0; |
| 909 | tz = strtol(str, &end, 10); |
Rene Scharfe | b36474f | 2017-08-30 19:49:33 +0200 | [diff] [blame] | 910 | if (errno) { |
| 911 | rc = error(_("invalid timezone offset")); |
| 912 | goto exit; |
| 913 | } |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 914 | |
Rene Scharfe | b36474f | 2017-08-30 19:49:33 +0200 | [diff] [blame] | 915 | if (*end) { |
| 916 | rc = error(_("invalid Date line")); |
| 917 | goto exit; |
| 918 | } |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 919 | |
| 920 | /* |
| 921 | * mercurial's timezone is in seconds west of UTC, |
| 922 | * however git's timezone is in hours + minutes east of |
| 923 | * UTC. Convert it. |
| 924 | */ |
| 925 | tz2 = labs(tz) / 3600 * 100 + labs(tz) % 3600 / 60; |
| 926 | if (tz > 0) |
| 927 | tz2 = -tz2; |
| 928 | |
| 929 | fprintf(out, "Date: %s\n", show_date(timestamp, tz2, DATE_MODE(RFC2822))); |
| 930 | } else if (starts_with(sb.buf, "# ")) { |
| 931 | continue; |
| 932 | } else { |
| 933 | fprintf(out, "\n%s\n", sb.buf); |
| 934 | break; |
| 935 | } |
| 936 | } |
| 937 | |
| 938 | strbuf_reset(&sb); |
| 939 | while (strbuf_fread(&sb, 8192, in) > 0) { |
| 940 | fwrite(sb.buf, 1, sb.len, out); |
| 941 | strbuf_reset(&sb); |
| 942 | } |
Rene Scharfe | b36474f | 2017-08-30 19:49:33 +0200 | [diff] [blame] | 943 | exit: |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 944 | strbuf_release(&sb); |
Rene Scharfe | b36474f | 2017-08-30 19:49:33 +0200 | [diff] [blame] | 945 | return rc; |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 946 | } |
| 947 | |
| 948 | /** |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 949 | * Splits a list of files/directories into individual email patches. Each path |
| 950 | * in `paths` must be a file/directory that is formatted according to |
| 951 | * `patch_format`. |
| 952 | * |
| 953 | * Once split out, the individual email patches will be stored in the state |
| 954 | * directory, with each patch's filename being its index, padded to state->prec |
| 955 | * digits. |
| 956 | * |
| 957 | * state->cur will be set to the index of the first mail, and state->last will |
| 958 | * be set to the index of the last mail. |
| 959 | * |
Paul Tan | 5d123a4 | 2015-08-04 21:51:48 +0800 | [diff] [blame] | 960 | * Set keep_cr to 0 to convert all lines ending with \r\n to end with \n, 1 |
| 961 | * to disable this behavior, -1 to use the default configured setting. |
| 962 | * |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 963 | * Returns 0 on success, -1 on failure. |
| 964 | */ |
| 965 | static int split_mail(struct am_state *state, enum patch_format patch_format, |
Paul Tan | 5d123a4 | 2015-08-04 21:51:48 +0800 | [diff] [blame] | 966 | const char **paths, int keep_cr) |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 967 | { |
Paul Tan | 5d123a4 | 2015-08-04 21:51:48 +0800 | [diff] [blame] | 968 | if (keep_cr < 0) { |
| 969 | keep_cr = 0; |
| 970 | git_config_get_bool("am.keepcr", &keep_cr); |
| 971 | } |
| 972 | |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 973 | switch (patch_format) { |
| 974 | case PATCH_FORMAT_MBOX: |
Eric Wong | d9925d1 | 2016-06-05 04:46:41 +0000 | [diff] [blame] | 975 | return split_mail_mbox(state, paths, keep_cr, 0); |
Paul Tan | 5ae41c7 | 2015-08-04 21:52:00 +0800 | [diff] [blame] | 976 | case PATCH_FORMAT_STGIT: |
| 977 | return split_mail_conv(stgit_patch_to_mail, state, paths, keep_cr); |
Paul Tan | 336108c | 2015-08-04 21:52:01 +0800 | [diff] [blame] | 978 | case PATCH_FORMAT_STGIT_SERIES: |
| 979 | return split_mail_stgit_series(state, paths, keep_cr); |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 980 | case PATCH_FORMAT_HG: |
| 981 | return split_mail_conv(hg_patch_to_mail, state, paths, keep_cr); |
Eric Wong | d9925d1 | 2016-06-05 04:46:41 +0000 | [diff] [blame] | 982 | case PATCH_FORMAT_MBOXRD: |
| 983 | return split_mail_mbox(state, paths, keep_cr, 1); |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 984 | default: |
| 985 | die("BUG: invalid patch_format"); |
| 986 | } |
| 987 | return -1; |
| 988 | } |
| 989 | |
| 990 | /** |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 991 | * Setup a new am session for applying patches |
| 992 | */ |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 993 | static void am_setup(struct am_state *state, enum patch_format patch_format, |
Paul Tan | 5d123a4 | 2015-08-04 21:51:48 +0800 | [diff] [blame] | 994 | const char **paths, int keep_cr) |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 995 | { |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 996 | struct object_id curr_head; |
Paul Tan | 4f1b696 | 2015-08-04 21:51:46 +0800 | [diff] [blame] | 997 | const char *str; |
Paul Tan | 257e8ce | 2015-08-04 21:51:50 +0800 | [diff] [blame] | 998 | struct strbuf sb = STRBUF_INIT; |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 999 | |
Paul Tan | c29807b | 2015-08-04 21:51:27 +0800 | [diff] [blame] | 1000 | if (!patch_format) |
| 1001 | patch_format = detect_patch_format(paths); |
| 1002 | |
| 1003 | if (!patch_format) { |
| 1004 | fprintf_ln(stderr, _("Patch format detection failed.")); |
| 1005 | exit(128); |
| 1006 | } |
| 1007 | |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1008 | if (mkdir(state->dir, 0777) < 0 && errno != EEXIST) |
| 1009 | die_errno(_("failed to create directory '%s'"), state->dir); |
| 1010 | |
Paul Tan | 5d123a4 | 2015-08-04 21:51:48 +0800 | [diff] [blame] | 1011 | if (split_mail(state, patch_format, paths, keep_cr) < 0) { |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 1012 | am_destroy(state); |
| 1013 | die(_("Failed to split patches.")); |
| 1014 | } |
| 1015 | |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 1016 | if (state->rebasing) |
| 1017 | state->threeway = 1; |
| 1018 | |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 1019 | write_state_bool(state, "threeway", state->threeway); |
| 1020 | write_state_bool(state, "quiet", state->quiet); |
| 1021 | write_state_bool(state, "sign", state->signoff); |
| 1022 | write_state_bool(state, "utf8", state->utf8); |
Paul Tan | ef7ee16 | 2015-08-04 21:51:45 +0800 | [diff] [blame] | 1023 | |
Phillip Wood | fd4a3f4 | 2017-08-02 11:44:15 +0100 | [diff] [blame] | 1024 | if (state->allow_rerere_autoupdate) |
| 1025 | write_state_bool(state, "rerere-autoupdate", |
| 1026 | state->allow_rerere_autoupdate == RERERE_AUTOUPDATE); |
| 1027 | |
Paul Tan | 4f1b696 | 2015-08-04 21:51:46 +0800 | [diff] [blame] | 1028 | switch (state->keep) { |
| 1029 | case KEEP_FALSE: |
| 1030 | str = "f"; |
| 1031 | break; |
| 1032 | case KEEP_TRUE: |
| 1033 | str = "t"; |
| 1034 | break; |
| 1035 | case KEEP_NON_PATCH: |
| 1036 | str = "b"; |
| 1037 | break; |
| 1038 | default: |
| 1039 | die("BUG: invalid value for state->keep"); |
| 1040 | } |
| 1041 | |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 1042 | write_state_text(state, "keep", str); |
| 1043 | write_state_bool(state, "messageid", state->message_id); |
Paul Tan | 702cbaa | 2015-08-04 21:51:47 +0800 | [diff] [blame] | 1044 | |
Paul Tan | 9b64661 | 2015-08-04 21:51:49 +0800 | [diff] [blame] | 1045 | switch (state->scissors) { |
| 1046 | case SCISSORS_UNSET: |
| 1047 | str = ""; |
| 1048 | break; |
| 1049 | case SCISSORS_FALSE: |
| 1050 | str = "f"; |
| 1051 | break; |
| 1052 | case SCISSORS_TRUE: |
| 1053 | str = "t"; |
| 1054 | break; |
| 1055 | default: |
| 1056 | die("BUG: invalid value for state->scissors"); |
| 1057 | } |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 1058 | write_state_text(state, "scissors", str); |
Paul Tan | 9b64661 | 2015-08-04 21:51:49 +0800 | [diff] [blame] | 1059 | |
Paul Tan | 257e8ce | 2015-08-04 21:51:50 +0800 | [diff] [blame] | 1060 | sq_quote_argv(&sb, state->git_apply_opts.argv, 0); |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 1061 | write_state_text(state, "apply-opt", sb.buf); |
Paul Tan | 257e8ce | 2015-08-04 21:51:50 +0800 | [diff] [blame] | 1062 | |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 1063 | if (state->rebasing) |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 1064 | write_state_text(state, "rebasing", ""); |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 1065 | else |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 1066 | write_state_text(state, "applying", ""); |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 1067 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1068 | if (!get_oid("HEAD", &curr_head)) { |
| 1069 | write_state_text(state, "abort-safety", oid_to_hex(&curr_head)); |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 1070 | if (!state->rebasing) |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1071 | update_ref_oid("am", "ORIG_HEAD", &curr_head, NULL, 0, |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 1072 | UPDATE_REFS_DIE_ON_ERR); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 1073 | } else { |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 1074 | write_state_text(state, "abort-safety", ""); |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 1075 | if (!state->rebasing) |
Kyle Meyer | 755b49a | 2017-02-20 20:10:32 -0500 | [diff] [blame] | 1076 | delete_ref(NULL, "ORIG_HEAD", NULL, 0); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 1077 | } |
| 1078 | |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1079 | /* |
| 1080 | * NOTE: Since the "next" and "last" files determine if an am_state |
| 1081 | * session is in progress, they should be written last. |
| 1082 | */ |
| 1083 | |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 1084 | write_state_count(state, "next", state->cur); |
| 1085 | write_state_count(state, "last", state->last); |
Paul Tan | 257e8ce | 2015-08-04 21:51:50 +0800 | [diff] [blame] | 1086 | |
| 1087 | strbuf_release(&sb); |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | /** |
| 1091 | * Increments the patch pointer, and cleans am_state for the application of the |
| 1092 | * next patch. |
| 1093 | */ |
| 1094 | static void am_next(struct am_state *state) |
| 1095 | { |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1096 | struct object_id head; |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 1097 | |
Ævar Arnfjörð Bjarmason | 88ce3ef | 2017-06-15 23:15:49 +0000 | [diff] [blame] | 1098 | FREE_AND_NULL(state->author_name); |
| 1099 | FREE_AND_NULL(state->author_email); |
| 1100 | FREE_AND_NULL(state->author_date); |
| 1101 | FREE_AND_NULL(state->msg); |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1102 | state->msg_len = 0; |
| 1103 | |
| 1104 | unlink(am_path(state, "author-script")); |
| 1105 | unlink(am_path(state, "final-commit")); |
| 1106 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1107 | oidclr(&state->orig_commit); |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 1108 | unlink(am_path(state, "original-commit")); |
| 1109 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1110 | if (!get_oid("HEAD", &head)) |
| 1111 | write_state_text(state, "abort-safety", oid_to_hex(&head)); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 1112 | else |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 1113 | write_state_text(state, "abort-safety", ""); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 1114 | |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1115 | state->cur++; |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 1116 | write_state_count(state, "next", state->cur); |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1117 | } |
| 1118 | |
| 1119 | /** |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1120 | * Returns the filename of the current patch email. |
| 1121 | */ |
| 1122 | static const char *msgnum(const struct am_state *state) |
| 1123 | { |
| 1124 | static struct strbuf sb = STRBUF_INIT; |
| 1125 | |
| 1126 | strbuf_reset(&sb); |
| 1127 | strbuf_addf(&sb, "%0*d", state->prec, state->cur); |
| 1128 | |
| 1129 | return sb.buf; |
| 1130 | } |
| 1131 | |
| 1132 | /** |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1133 | * Refresh and write index. |
| 1134 | */ |
| 1135 | static void refresh_and_write_cache(void) |
| 1136 | { |
| 1137 | struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file)); |
| 1138 | |
Junio C Hamano | b3e83cc | 2016-12-07 10:33:54 -0800 | [diff] [blame] | 1139 | hold_locked_index(lock_file, LOCK_DIE_ON_ERROR); |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1140 | refresh_cache(REFRESH_QUIET); |
| 1141 | if (write_locked_index(&the_index, lock_file, COMMIT_LOCK)) |
| 1142 | die(_("unable to write index file")); |
| 1143 | } |
| 1144 | |
| 1145 | /** |
Paul Tan | 32a5fcb | 2015-08-04 21:51:31 +0800 | [diff] [blame] | 1146 | * Returns 1 if the index differs from HEAD, 0 otherwise. When on an unborn |
| 1147 | * branch, returns 1 if there are entries in the index, 0 otherwise. If an |
| 1148 | * strbuf is provided, the space-separated list of files that differ will be |
| 1149 | * appended to it. |
| 1150 | */ |
| 1151 | static int index_has_changes(struct strbuf *sb) |
| 1152 | { |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1153 | struct object_id head; |
Paul Tan | 32a5fcb | 2015-08-04 21:51:31 +0800 | [diff] [blame] | 1154 | int i; |
| 1155 | |
brian m. carlson | e82caf3 | 2017-07-13 23:49:28 +0000 | [diff] [blame] | 1156 | if (!get_oid_tree("HEAD", &head)) { |
Paul Tan | 32a5fcb | 2015-08-04 21:51:31 +0800 | [diff] [blame] | 1157 | struct diff_options opt; |
| 1158 | |
| 1159 | diff_setup(&opt); |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame^] | 1160 | opt.flags.exit_with_status = 1; |
Paul Tan | 32a5fcb | 2015-08-04 21:51:31 +0800 | [diff] [blame] | 1161 | if (!sb) |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame^] | 1162 | opt.flags.quick = 1; |
brian m. carlson | 944cffb | 2017-05-06 22:10:35 +0000 | [diff] [blame] | 1163 | do_diff_cache(&head, &opt); |
Paul Tan | 32a5fcb | 2015-08-04 21:51:31 +0800 | [diff] [blame] | 1164 | diffcore_std(&opt); |
| 1165 | for (i = 0; sb && i < diff_queued_diff.nr; i++) { |
| 1166 | if (i) |
| 1167 | strbuf_addch(sb, ' '); |
| 1168 | strbuf_addstr(sb, diff_queued_diff.queue[i]->two->path); |
| 1169 | } |
| 1170 | diff_flush(&opt); |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame^] | 1171 | return opt.flags.has_changes != 0; |
Paul Tan | 32a5fcb | 2015-08-04 21:51:31 +0800 | [diff] [blame] | 1172 | } else { |
| 1173 | for (i = 0; sb && i < active_nr; i++) { |
| 1174 | if (i) |
| 1175 | strbuf_addch(sb, ' '); |
| 1176 | strbuf_addstr(sb, active_cache[i]->name); |
| 1177 | } |
| 1178 | return !!active_nr; |
| 1179 | } |
| 1180 | } |
| 1181 | |
| 1182 | /** |
Paul Tan | 2d83109 | 2015-08-04 21:51:38 +0800 | [diff] [blame] | 1183 | * Dies with a user-friendly message on how to proceed after resolving the |
| 1184 | * problem. This message can be overridden with state->resolvemsg. |
| 1185 | */ |
| 1186 | static void NORETURN die_user_resolve(const struct am_state *state) |
| 1187 | { |
| 1188 | if (state->resolvemsg) { |
| 1189 | printf_ln("%s", state->resolvemsg); |
| 1190 | } else { |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 1191 | const char *cmdline = state->interactive ? "git am -i" : "git am"; |
Paul Tan | 2d83109 | 2015-08-04 21:51:38 +0800 | [diff] [blame] | 1192 | |
| 1193 | printf_ln(_("When you have resolved this problem, run \"%s --continue\"."), cmdline); |
| 1194 | printf_ln(_("If you prefer to skip this patch, run \"%s --skip\" instead."), cmdline); |
| 1195 | printf_ln(_("To restore the original branch and stop patching, run \"%s --abort\"."), cmdline); |
| 1196 | } |
| 1197 | |
| 1198 | exit(128); |
| 1199 | } |
| 1200 | |
| 1201 | /** |
Paul Tan | b5e8235 | 2015-08-04 22:08:51 +0800 | [diff] [blame] | 1202 | * Appends signoff to the "msg" field of the am_state. |
| 1203 | */ |
| 1204 | static void am_append_signoff(struct am_state *state) |
| 1205 | { |
| 1206 | struct strbuf sb = STRBUF_INIT; |
| 1207 | |
| 1208 | strbuf_attach(&sb, state->msg, state->msg_len, state->msg_len); |
Phillip Wood | 735285b | 2017-08-08 11:25:33 +0100 | [diff] [blame] | 1209 | append_signoff(&sb, 0, 0); |
Paul Tan | b5e8235 | 2015-08-04 22:08:51 +0800 | [diff] [blame] | 1210 | state->msg = strbuf_detach(&sb, &state->msg_len); |
| 1211 | } |
| 1212 | |
| 1213 | /** |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1214 | * Parses `mail` using git-mailinfo, extracting its patch and authorship info. |
| 1215 | * state->msg will be set to the patch message. state->author_name, |
| 1216 | * state->author_email and state->author_date will be set to the patch author's |
| 1217 | * name, email and date respectively. The patch body will be written to the |
| 1218 | * state directory's "patch" file. |
| 1219 | * |
| 1220 | * Returns 1 if the patch should be skipped, 0 otherwise. |
| 1221 | */ |
| 1222 | static int parse_mail(struct am_state *state, const char *mail) |
| 1223 | { |
| 1224 | FILE *fp; |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1225 | struct strbuf sb = STRBUF_INIT; |
| 1226 | struct strbuf msg = STRBUF_INIT; |
| 1227 | struct strbuf author_name = STRBUF_INIT; |
| 1228 | struct strbuf author_date = STRBUF_INIT; |
| 1229 | struct strbuf author_email = STRBUF_INIT; |
| 1230 | int ret = 0; |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1231 | struct mailinfo mi; |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1232 | |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1233 | setup_mailinfo(&mi); |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1234 | |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1235 | if (state->utf8) |
| 1236 | mi.metainfo_charset = get_commit_output_encoding(); |
| 1237 | else |
| 1238 | mi.metainfo_charset = NULL; |
Paul Tan | 4f1b696 | 2015-08-04 21:51:46 +0800 | [diff] [blame] | 1239 | |
| 1240 | switch (state->keep) { |
| 1241 | case KEEP_FALSE: |
| 1242 | break; |
| 1243 | case KEEP_TRUE: |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1244 | mi.keep_subject = 1; |
Paul Tan | 4f1b696 | 2015-08-04 21:51:46 +0800 | [diff] [blame] | 1245 | break; |
| 1246 | case KEEP_NON_PATCH: |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1247 | mi.keep_non_patch_brackets_in_subject = 1; |
Paul Tan | 4f1b696 | 2015-08-04 21:51:46 +0800 | [diff] [blame] | 1248 | break; |
| 1249 | default: |
| 1250 | die("BUG: invalid value for state->keep"); |
| 1251 | } |
| 1252 | |
Paul Tan | 702cbaa | 2015-08-04 21:51:47 +0800 | [diff] [blame] | 1253 | if (state->message_id) |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1254 | mi.add_message_id = 1; |
Paul Tan | 702cbaa | 2015-08-04 21:51:47 +0800 | [diff] [blame] | 1255 | |
Paul Tan | 9b64661 | 2015-08-04 21:51:49 +0800 | [diff] [blame] | 1256 | switch (state->scissors) { |
| 1257 | case SCISSORS_UNSET: |
| 1258 | break; |
| 1259 | case SCISSORS_FALSE: |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1260 | mi.use_scissors = 0; |
Paul Tan | 9b64661 | 2015-08-04 21:51:49 +0800 | [diff] [blame] | 1261 | break; |
| 1262 | case SCISSORS_TRUE: |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1263 | mi.use_scissors = 1; |
Paul Tan | 9b64661 | 2015-08-04 21:51:49 +0800 | [diff] [blame] | 1264 | break; |
| 1265 | default: |
| 1266 | die("BUG: invalid value for state->scissors"); |
| 1267 | } |
| 1268 | |
Nguyễn Thái Ngọc Duy | 23a9e07 | 2017-05-03 17:16:46 +0700 | [diff] [blame] | 1269 | mi.input = xfopen(mail, "r"); |
| 1270 | mi.output = xfopen(am_path(state, "info"), "w"); |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1271 | if (mailinfo(&mi, am_path(state, "msg"), am_path(state, "patch"))) |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1272 | die("could not parse patch"); |
| 1273 | |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1274 | fclose(mi.input); |
| 1275 | fclose(mi.output); |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1276 | |
| 1277 | /* Extract message and author information */ |
| 1278 | fp = xfopen(am_path(state, "info"), "r"); |
Junio C Hamano | 8f309ae | 2016-01-13 15:31:17 -0800 | [diff] [blame] | 1279 | while (!strbuf_getline_lf(&sb, fp)) { |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1280 | const char *x; |
| 1281 | |
| 1282 | if (skip_prefix(sb.buf, "Subject: ", &x)) { |
| 1283 | if (msg.len) |
| 1284 | strbuf_addch(&msg, '\n'); |
| 1285 | strbuf_addstr(&msg, x); |
| 1286 | } else if (skip_prefix(sb.buf, "Author: ", &x)) |
| 1287 | strbuf_addstr(&author_name, x); |
| 1288 | else if (skip_prefix(sb.buf, "Email: ", &x)) |
| 1289 | strbuf_addstr(&author_email, x); |
| 1290 | else if (skip_prefix(sb.buf, "Date: ", &x)) |
| 1291 | strbuf_addstr(&author_date, x); |
| 1292 | } |
| 1293 | fclose(fp); |
| 1294 | |
| 1295 | /* Skip pine's internal folder data */ |
| 1296 | if (!strcmp(author_name.buf, "Mail System Internal Data")) { |
| 1297 | ret = 1; |
| 1298 | goto finish; |
| 1299 | } |
| 1300 | |
| 1301 | if (is_empty_file(am_path(state, "patch"))) { |
Jean-Noel Avila | 6c48686 | 2017-05-11 14:06:32 +0200 | [diff] [blame] | 1302 | printf_ln(_("Patch is empty.")); |
Paul Tan | 2d83109 | 2015-08-04 21:51:38 +0800 | [diff] [blame] | 1303 | die_user_resolve(state); |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1304 | } |
| 1305 | |
| 1306 | strbuf_addstr(&msg, "\n\n"); |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1307 | strbuf_addbuf(&msg, &mi.log_message); |
Tobias Klauser | 63af4a8 | 2015-10-16 17:16:42 +0200 | [diff] [blame] | 1308 | strbuf_stripspace(&msg, 0); |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1309 | |
| 1310 | assert(!state->author_name); |
| 1311 | state->author_name = strbuf_detach(&author_name, NULL); |
| 1312 | |
| 1313 | assert(!state->author_email); |
| 1314 | state->author_email = strbuf_detach(&author_email, NULL); |
| 1315 | |
| 1316 | assert(!state->author_date); |
| 1317 | state->author_date = strbuf_detach(&author_date, NULL); |
| 1318 | |
| 1319 | assert(!state->msg); |
| 1320 | state->msg = strbuf_detach(&msg, &state->msg_len); |
| 1321 | |
| 1322 | finish: |
| 1323 | strbuf_release(&msg); |
| 1324 | strbuf_release(&author_date); |
| 1325 | strbuf_release(&author_email); |
| 1326 | strbuf_release(&author_name); |
| 1327 | strbuf_release(&sb); |
Junio C Hamano | 4b98bae | 2015-10-14 17:45:43 -0700 | [diff] [blame] | 1328 | clear_mailinfo(&mi); |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1329 | return ret; |
| 1330 | } |
| 1331 | |
| 1332 | /** |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1333 | * Sets commit_id to the commit hash where the mail was generated from. |
| 1334 | * Returns 0 on success, -1 on failure. |
| 1335 | */ |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1336 | static int get_mail_commit_oid(struct object_id *commit_id, const char *mail) |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1337 | { |
| 1338 | struct strbuf sb = STRBUF_INIT; |
| 1339 | FILE *fp = xfopen(mail, "r"); |
| 1340 | const char *x; |
Johannes Schindelin | 5b34ba4 | 2017-05-04 15:55:45 +0200 | [diff] [blame] | 1341 | int ret = 0; |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1342 | |
Johannes Schindelin | 5b34ba4 | 2017-05-04 15:55:45 +0200 | [diff] [blame] | 1343 | if (strbuf_getline_lf(&sb, fp) || |
| 1344 | !skip_prefix(sb.buf, "From ", &x) || |
| 1345 | get_oid_hex(x, commit_id) < 0) |
| 1346 | ret = -1; |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1347 | |
| 1348 | strbuf_release(&sb); |
| 1349 | fclose(fp); |
Johannes Schindelin | 5b34ba4 | 2017-05-04 15:55:45 +0200 | [diff] [blame] | 1350 | return ret; |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1351 | } |
| 1352 | |
| 1353 | /** |
| 1354 | * Sets state->msg, state->author_name, state->author_email, state->author_date |
| 1355 | * to the commit's respective info. |
| 1356 | */ |
| 1357 | static void get_commit_info(struct am_state *state, struct commit *commit) |
| 1358 | { |
Jeff King | 2e2bbb9 | 2017-04-26 23:27:17 -0400 | [diff] [blame] | 1359 | const char *buffer, *ident_line, *msg; |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1360 | size_t ident_len; |
Jeff King | 721f5f1 | 2017-04-26 23:28:31 -0400 | [diff] [blame] | 1361 | struct ident_split id; |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1362 | |
| 1363 | buffer = logmsg_reencode(commit, NULL, get_commit_output_encoding()); |
| 1364 | |
| 1365 | ident_line = find_commit_header(buffer, "author", &ident_len); |
| 1366 | |
Jeff King | 721f5f1 | 2017-04-26 23:28:31 -0400 | [diff] [blame] | 1367 | if (split_ident_line(&id, ident_line, ident_len) < 0) |
Jeff King | 2e2bbb9 | 2017-04-26 23:27:17 -0400 | [diff] [blame] | 1368 | die(_("invalid ident line: %.*s"), (int)ident_len, ident_line); |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1369 | |
| 1370 | assert(!state->author_name); |
Jeff King | 721f5f1 | 2017-04-26 23:28:31 -0400 | [diff] [blame] | 1371 | if (id.name_begin) |
Jeff King | 2e2bbb9 | 2017-04-26 23:27:17 -0400 | [diff] [blame] | 1372 | state->author_name = |
Jeff King | 721f5f1 | 2017-04-26 23:28:31 -0400 | [diff] [blame] | 1373 | xmemdupz(id.name_begin, id.name_end - id.name_begin); |
| 1374 | else |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1375 | state->author_name = xstrdup(""); |
| 1376 | |
| 1377 | assert(!state->author_email); |
Jeff King | 721f5f1 | 2017-04-26 23:28:31 -0400 | [diff] [blame] | 1378 | if (id.mail_begin) |
Jeff King | 2e2bbb9 | 2017-04-26 23:27:17 -0400 | [diff] [blame] | 1379 | state->author_email = |
Jeff King | 721f5f1 | 2017-04-26 23:28:31 -0400 | [diff] [blame] | 1380 | xmemdupz(id.mail_begin, id.mail_end - id.mail_begin); |
| 1381 | else |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1382 | state->author_email = xstrdup(""); |
| 1383 | |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1384 | assert(!state->author_date); |
Jeff King | 721f5f1 | 2017-04-26 23:28:31 -0400 | [diff] [blame] | 1385 | state->author_date = xstrdup(show_ident_date(&id, DATE_MODE(NORMAL))); |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1386 | |
| 1387 | assert(!state->msg); |
| 1388 | msg = strstr(buffer, "\n\n"); |
| 1389 | if (!msg) |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 1390 | die(_("unable to parse commit %s"), oid_to_hex(&commit->object.oid)); |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1391 | state->msg = xstrdup(msg + 2); |
| 1392 | state->msg_len = strlen(state->msg); |
Jeff King | f131db9 | 2017-04-26 23:25:55 -0400 | [diff] [blame] | 1393 | unuse_commit_buffer(commit, buffer); |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1394 | } |
| 1395 | |
| 1396 | /** |
| 1397 | * Writes `commit` as a patch to the state directory's "patch" file. |
| 1398 | */ |
| 1399 | static void write_commit_patch(const struct am_state *state, struct commit *commit) |
| 1400 | { |
| 1401 | struct rev_info rev_info; |
| 1402 | FILE *fp; |
| 1403 | |
| 1404 | fp = xfopen(am_path(state, "patch"), "w"); |
| 1405 | init_revisions(&rev_info, NULL); |
| 1406 | rev_info.diff = 1; |
| 1407 | rev_info.abbrev = 0; |
| 1408 | rev_info.disable_stdin = 1; |
| 1409 | rev_info.show_root_diff = 1; |
| 1410 | rev_info.diffopt.output_format = DIFF_FORMAT_PATCH; |
| 1411 | rev_info.no_commit_id = 1; |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame^] | 1412 | rev_info.diffopt.flags.binary = 1; |
| 1413 | rev_info.diffopt.flags.full_index = 1; |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1414 | rev_info.diffopt.use_color = 0; |
| 1415 | rev_info.diffopt.file = fp; |
| 1416 | rev_info.diffopt.close_file = 1; |
| 1417 | add_pending_object(&rev_info, &commit->object, ""); |
| 1418 | diff_setup_done(&rev_info.diffopt); |
| 1419 | log_tree_commit(&rev_info, commit); |
| 1420 | } |
| 1421 | |
| 1422 | /** |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 1423 | * Writes the diff of the index against HEAD as a patch to the state |
| 1424 | * directory's "patch" file. |
| 1425 | */ |
| 1426 | static void write_index_patch(const struct am_state *state) |
| 1427 | { |
| 1428 | struct tree *tree; |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1429 | struct object_id head; |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 1430 | struct rev_info rev_info; |
| 1431 | FILE *fp; |
| 1432 | |
brian m. carlson | e82caf3 | 2017-07-13 23:49:28 +0000 | [diff] [blame] | 1433 | if (!get_oid_tree("HEAD", &head)) |
brian m. carlson | 740ee05 | 2017-05-06 22:10:17 +0000 | [diff] [blame] | 1434 | tree = lookup_tree(&head); |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 1435 | else |
brian m. carlson | 740ee05 | 2017-05-06 22:10:17 +0000 | [diff] [blame] | 1436 | tree = lookup_tree(&empty_tree_oid); |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 1437 | |
| 1438 | fp = xfopen(am_path(state, "patch"), "w"); |
| 1439 | init_revisions(&rev_info, NULL); |
| 1440 | rev_info.diff = 1; |
| 1441 | rev_info.disable_stdin = 1; |
| 1442 | rev_info.no_commit_id = 1; |
| 1443 | rev_info.diffopt.output_format = DIFF_FORMAT_PATCH; |
| 1444 | rev_info.diffopt.use_color = 0; |
| 1445 | rev_info.diffopt.file = fp; |
| 1446 | rev_info.diffopt.close_file = 1; |
| 1447 | add_pending_object(&rev_info, &tree->object, ""); |
| 1448 | diff_setup_done(&rev_info.diffopt); |
| 1449 | run_diff_index(&rev_info, 1); |
| 1450 | } |
| 1451 | |
| 1452 | /** |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1453 | * Like parse_mail(), but parses the mail by looking up its commit ID |
| 1454 | * directly. This is used in --rebasing mode to bypass git-mailinfo's munging |
| 1455 | * of patches. |
| 1456 | * |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 1457 | * state->orig_commit will be set to the original commit ID. |
| 1458 | * |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1459 | * Will always return 0 as the patch should never be skipped. |
| 1460 | */ |
| 1461 | static int parse_mail_rebase(struct am_state *state, const char *mail) |
| 1462 | { |
| 1463 | struct commit *commit; |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1464 | struct object_id commit_oid; |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1465 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1466 | if (get_mail_commit_oid(&commit_oid, mail) < 0) |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1467 | die(_("could not parse %s"), mail); |
| 1468 | |
brian m. carlson | bc83266 | 2017-05-06 22:10:10 +0000 | [diff] [blame] | 1469 | commit = lookup_commit_or_die(&commit_oid, mail); |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1470 | |
| 1471 | get_commit_info(state, commit); |
| 1472 | |
| 1473 | write_commit_patch(state, commit); |
| 1474 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1475 | oidcpy(&state->orig_commit, &commit_oid); |
| 1476 | write_state_text(state, "original-commit", oid_to_hex(&commit_oid)); |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 1477 | |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1478 | return 0; |
| 1479 | } |
| 1480 | |
| 1481 | /** |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1482 | * Applies current patch with git-apply. Returns 0 on success, -1 otherwise. If |
| 1483 | * `index_file` is not NULL, the patch will be applied to that index. |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1484 | */ |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1485 | static int run_apply(const struct am_state *state, const char *index_file) |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1486 | { |
Christian Couder | edfac5e | 2016-09-04 22:18:33 +0200 | [diff] [blame] | 1487 | struct argv_array apply_paths = ARGV_ARRAY_INIT; |
| 1488 | struct argv_array apply_opts = ARGV_ARRAY_INIT; |
| 1489 | struct apply_state apply_state; |
| 1490 | int res, opts_left; |
| 1491 | static struct lock_file lock_file; |
| 1492 | int force_apply = 0; |
| 1493 | int options = 0; |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1494 | |
Christian Couder | edfac5e | 2016-09-04 22:18:33 +0200 | [diff] [blame] | 1495 | if (init_apply_state(&apply_state, NULL, &lock_file)) |
| 1496 | die("BUG: init_apply_state() failed"); |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1497 | |
Christian Couder | edfac5e | 2016-09-04 22:18:33 +0200 | [diff] [blame] | 1498 | argv_array_push(&apply_opts, "apply"); |
| 1499 | argv_array_pushv(&apply_opts, state->git_apply_opts.argv); |
| 1500 | |
| 1501 | opts_left = apply_parse_options(apply_opts.argc, apply_opts.argv, |
| 1502 | &apply_state, &force_apply, &options, |
| 1503 | NULL); |
| 1504 | |
| 1505 | if (opts_left != 0) |
| 1506 | die("unknown option passed through to git apply"); |
| 1507 | |
| 1508 | if (index_file) { |
| 1509 | apply_state.index_file = index_file; |
| 1510 | apply_state.cached = 1; |
| 1511 | } else |
| 1512 | apply_state.check_index = 1; |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1513 | |
| 1514 | /* |
| 1515 | * If we are allowed to fall back on 3-way merge, don't give false |
| 1516 | * errors during the initial attempt. |
| 1517 | */ |
Christian Couder | edfac5e | 2016-09-04 22:18:33 +0200 | [diff] [blame] | 1518 | if (state->threeway && !index_file) |
| 1519 | apply_state.apply_verbosity = verbosity_silent; |
| 1520 | |
| 1521 | if (check_apply_state(&apply_state, force_apply)) |
| 1522 | die("BUG: check_apply_state() failed"); |
| 1523 | |
| 1524 | argv_array_push(&apply_paths, am_path(state, "patch")); |
| 1525 | |
| 1526 | res = apply_all_patches(&apply_state, apply_paths.argc, apply_paths.argv, options); |
| 1527 | |
| 1528 | argv_array_clear(&apply_paths); |
| 1529 | argv_array_clear(&apply_opts); |
| 1530 | clear_apply_state(&apply_state); |
| 1531 | |
| 1532 | if (res) |
| 1533 | return res; |
| 1534 | |
| 1535 | if (index_file) { |
| 1536 | /* Reload index as apply_all_patches() will have modified it. */ |
| 1537 | discard_cache(); |
| 1538 | read_cache_from(index_file); |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1539 | } |
| 1540 | |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1541 | return 0; |
| 1542 | } |
| 1543 | |
| 1544 | /** |
| 1545 | * Builds an index that contains just the blobs needed for a 3way merge. |
| 1546 | */ |
| 1547 | static int build_fake_ancestor(const struct am_state *state, const char *index_file) |
| 1548 | { |
| 1549 | struct child_process cp = CHILD_PROCESS_INIT; |
| 1550 | |
| 1551 | cp.git_cmd = 1; |
| 1552 | argv_array_push(&cp.args, "apply"); |
Paul Tan | 257e8ce | 2015-08-04 21:51:50 +0800 | [diff] [blame] | 1553 | argv_array_pushv(&cp.args, state->git_apply_opts.argv); |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1554 | argv_array_pushf(&cp.args, "--build-fake-ancestor=%s", index_file); |
| 1555 | argv_array_push(&cp.args, am_path(state, "patch")); |
| 1556 | |
| 1557 | if (run_command(&cp)) |
| 1558 | return -1; |
| 1559 | |
| 1560 | return 0; |
| 1561 | } |
| 1562 | |
| 1563 | /** |
| 1564 | * Attempt a threeway merge, using index_path as the temporary index. |
| 1565 | */ |
| 1566 | static int fall_back_threeway(const struct am_state *state, const char *index_path) |
| 1567 | { |
Johannes Schindelin | 3f338f4 | 2016-07-26 18:06:30 +0200 | [diff] [blame] | 1568 | struct object_id orig_tree, their_tree, our_tree; |
| 1569 | const struct object_id *bases[1] = { &orig_tree }; |
| 1570 | struct merge_options o; |
| 1571 | struct commit *result; |
| 1572 | char *their_tree_name; |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1573 | |
Johannes Schindelin | 3f338f4 | 2016-07-26 18:06:30 +0200 | [diff] [blame] | 1574 | if (get_oid("HEAD", &our_tree) < 0) |
| 1575 | hashcpy(our_tree.hash, EMPTY_TREE_SHA1_BIN); |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1576 | |
| 1577 | if (build_fake_ancestor(state, index_path)) |
| 1578 | return error("could not build fake ancestor"); |
| 1579 | |
| 1580 | discard_cache(); |
| 1581 | read_cache_from(index_path); |
| 1582 | |
Johannes Schindelin | 3f338f4 | 2016-07-26 18:06:30 +0200 | [diff] [blame] | 1583 | if (write_index_as_tree(orig_tree.hash, &the_index, index_path, 0, NULL)) |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1584 | return error(_("Repository lacks necessary blobs to fall back on 3-way merge.")); |
| 1585 | |
| 1586 | say(state, stdout, _("Using index info to reconstruct a base tree...")); |
| 1587 | |
| 1588 | if (!state->quiet) { |
| 1589 | /* |
| 1590 | * List paths that needed 3-way fallback, so that the user can |
| 1591 | * review them with extra care to spot mismerges. |
| 1592 | */ |
| 1593 | struct rev_info rev_info; |
| 1594 | const char *diff_filter_str = "--diff-filter=AM"; |
| 1595 | |
| 1596 | init_revisions(&rev_info, NULL); |
| 1597 | rev_info.diffopt.output_format = DIFF_FORMAT_NAME_STATUS; |
Duy Nguyen | a97262c | 2016-01-21 18:48:44 +0700 | [diff] [blame] | 1598 | diff_opt_parse(&rev_info.diffopt, &diff_filter_str, 1, rev_info.prefix); |
brian m. carlson | a58a1b0 | 2017-05-06 22:10:26 +0000 | [diff] [blame] | 1599 | add_pending_oid(&rev_info, "HEAD", &our_tree, 0); |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1600 | diff_setup_done(&rev_info.diffopt); |
| 1601 | run_diff_index(&rev_info, 1); |
| 1602 | } |
| 1603 | |
| 1604 | if (run_apply(state, index_path)) |
| 1605 | return error(_("Did you hand edit your patch?\n" |
| 1606 | "It does not apply to blobs recorded in its index.")); |
| 1607 | |
Johannes Schindelin | 3f338f4 | 2016-07-26 18:06:30 +0200 | [diff] [blame] | 1608 | if (write_index_as_tree(their_tree.hash, &the_index, index_path, 0, NULL)) |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1609 | return error("could not write tree"); |
| 1610 | |
| 1611 | say(state, stdout, _("Falling back to patching base and 3-way merge...")); |
| 1612 | |
| 1613 | discard_cache(); |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1614 | read_cache(); |
| 1615 | |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1616 | /* |
| 1617 | * This is not so wrong. Depending on which base we picked, orig_tree |
Johannes Schindelin | 715a51b | 2016-07-08 09:17:34 +0200 | [diff] [blame] | 1618 | * may be wildly different from ours, but their_tree has the same set of |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1619 | * wildly different changes in parts the patch did not touch, so |
| 1620 | * recursive ends up canceling them, saying that we reverted all those |
| 1621 | * changes. |
| 1622 | */ |
| 1623 | |
Johannes Schindelin | 3f338f4 | 2016-07-26 18:06:30 +0200 | [diff] [blame] | 1624 | init_merge_options(&o); |
| 1625 | |
| 1626 | o.branch1 = "HEAD"; |
| 1627 | their_tree_name = xstrfmt("%.*s", linelen(state->msg), state->msg); |
| 1628 | o.branch2 = their_tree_name; |
| 1629 | |
| 1630 | if (state->quiet) |
| 1631 | o.verbosity = 0; |
| 1632 | |
| 1633 | if (merge_recursive_generic(&o, &our_tree, &their_tree, 1, bases, &result)) { |
Paul Tan | f1cb96d | 2015-08-04 21:51:59 +0800 | [diff] [blame] | 1634 | rerere(state->allow_rerere_autoupdate); |
Johannes Schindelin | 3f338f4 | 2016-07-26 18:06:30 +0200 | [diff] [blame] | 1635 | free(their_tree_name); |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1636 | return error(_("Failed to merge in the changes.")); |
| 1637 | } |
| 1638 | |
Johannes Schindelin | 3f338f4 | 2016-07-26 18:06:30 +0200 | [diff] [blame] | 1639 | free(their_tree_name); |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1640 | return 0; |
| 1641 | } |
| 1642 | |
| 1643 | /** |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1644 | * Commits the current index with state->msg as the commit message and |
| 1645 | * state->author_name, state->author_email and state->author_date as the author |
| 1646 | * information. |
| 1647 | */ |
| 1648 | static void do_commit(const struct am_state *state) |
| 1649 | { |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1650 | struct object_id tree, parent, commit; |
| 1651 | const struct object_id *old_oid; |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1652 | struct commit_list *parents = NULL; |
| 1653 | const char *reflog_msg, *author; |
| 1654 | struct strbuf sb = STRBUF_INIT; |
| 1655 | |
Paul Tan | 6c24c5c | 2015-08-04 21:51:57 +0800 | [diff] [blame] | 1656 | if (run_hook_le(NULL, "pre-applypatch", NULL)) |
| 1657 | exit(1); |
| 1658 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1659 | if (write_cache_as_tree(tree.hash, 0, NULL)) |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1660 | die(_("git write-tree failed to write a tree")); |
| 1661 | |
brian m. carlson | e82caf3 | 2017-07-13 23:49:28 +0000 | [diff] [blame] | 1662 | if (!get_oid_commit("HEAD", &parent)) { |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1663 | old_oid = &parent; |
brian m. carlson | bc83266 | 2017-05-06 22:10:10 +0000 | [diff] [blame] | 1664 | commit_list_insert(lookup_commit(&parent), &parents); |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1665 | } else { |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1666 | old_oid = NULL; |
Paul Tan | 5d28cf7 | 2015-08-04 21:51:37 +0800 | [diff] [blame] | 1667 | say(state, stderr, _("applying to an empty history")); |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1668 | } |
| 1669 | |
| 1670 | author = fmt_ident(state->author_name, state->author_email, |
Paul Tan | f07adb6 | 2015-08-04 21:51:51 +0800 | [diff] [blame] | 1671 | state->ignore_date ? NULL : state->author_date, |
| 1672 | IDENT_STRICT); |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1673 | |
Paul Tan | 0cd4bcb | 2015-08-04 21:51:52 +0800 | [diff] [blame] | 1674 | if (state->committer_date_is_author_date) |
| 1675 | setenv("GIT_COMMITTER_DATE", |
| 1676 | state->ignore_date ? "" : state->author_date, 1); |
| 1677 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1678 | if (commit_tree(state->msg, state->msg_len, tree.hash, parents, commit.hash, |
Paul Tan | 7e35dac | 2015-08-04 21:51:53 +0800 | [diff] [blame] | 1679 | author, state->sign_commit)) |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1680 | die(_("failed to write commit object")); |
| 1681 | |
| 1682 | reflog_msg = getenv("GIT_REFLOG_ACTION"); |
| 1683 | if (!reflog_msg) |
| 1684 | reflog_msg = "am"; |
| 1685 | |
| 1686 | strbuf_addf(&sb, "%s: %.*s", reflog_msg, linelen(state->msg), |
| 1687 | state->msg); |
| 1688 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1689 | update_ref_oid(sb.buf, "HEAD", &commit, old_oid, 0, |
| 1690 | UPDATE_REFS_DIE_ON_ERR); |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1691 | |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 1692 | if (state->rebasing) { |
| 1693 | FILE *fp = xfopen(am_path(state, "rewritten"), "a"); |
| 1694 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 1695 | assert(!is_null_oid(&state->orig_commit)); |
| 1696 | fprintf(fp, "%s ", oid_to_hex(&state->orig_commit)); |
| 1697 | fprintf(fp, "%s\n", oid_to_hex(&commit)); |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 1698 | fclose(fp); |
| 1699 | } |
| 1700 | |
Paul Tan | 7088f80 | 2015-08-04 21:51:58 +0800 | [diff] [blame] | 1701 | run_hook_le(NULL, "post-applypatch", NULL); |
| 1702 | |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1703 | strbuf_release(&sb); |
| 1704 | } |
| 1705 | |
| 1706 | /** |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 1707 | * Validates the am_state for resuming -- the "msg" and authorship fields must |
| 1708 | * be filled up. |
| 1709 | */ |
| 1710 | static void validate_resume_state(const struct am_state *state) |
| 1711 | { |
| 1712 | if (!state->msg) |
| 1713 | die(_("cannot resume: %s does not exist."), |
| 1714 | am_path(state, "final-commit")); |
| 1715 | |
| 1716 | if (!state->author_name || !state->author_email || !state->author_date) |
| 1717 | die(_("cannot resume: %s does not exist."), |
| 1718 | am_path(state, "author-script")); |
| 1719 | } |
| 1720 | |
| 1721 | /** |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 1722 | * Interactively prompt the user on whether the current patch should be |
| 1723 | * applied. |
| 1724 | * |
| 1725 | * Returns 0 if the user chooses to apply the patch, 1 if the user chooses to |
| 1726 | * skip it. |
| 1727 | */ |
| 1728 | static int do_interactive(struct am_state *state) |
| 1729 | { |
| 1730 | assert(state->msg); |
| 1731 | |
| 1732 | if (!isatty(0)) |
| 1733 | die(_("cannot be interactive without stdin connected to a terminal.")); |
| 1734 | |
| 1735 | for (;;) { |
| 1736 | const char *reply; |
| 1737 | |
| 1738 | puts(_("Commit Body is:")); |
| 1739 | puts("--------------------------"); |
| 1740 | printf("%s", state->msg); |
| 1741 | puts("--------------------------"); |
| 1742 | |
| 1743 | /* |
| 1744 | * TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a] |
| 1745 | * in your translation. The program will only accept English |
| 1746 | * input at this point. |
| 1747 | */ |
| 1748 | reply = git_prompt(_("Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "), PROMPT_ECHO); |
| 1749 | |
| 1750 | if (!reply) { |
| 1751 | continue; |
| 1752 | } else if (*reply == 'y' || *reply == 'Y') { |
| 1753 | return 0; |
| 1754 | } else if (*reply == 'a' || *reply == 'A') { |
| 1755 | state->interactive = 0; |
| 1756 | return 0; |
| 1757 | } else if (*reply == 'n' || *reply == 'N') { |
| 1758 | return 1; |
| 1759 | } else if (*reply == 'e' || *reply == 'E') { |
| 1760 | struct strbuf msg = STRBUF_INIT; |
| 1761 | |
| 1762 | if (!launch_editor(am_path(state, "final-commit"), &msg, NULL)) { |
| 1763 | free(state->msg); |
| 1764 | state->msg = strbuf_detach(&msg, &state->msg_len); |
| 1765 | } |
| 1766 | strbuf_release(&msg); |
| 1767 | } else if (*reply == 'v' || *reply == 'V') { |
| 1768 | const char *pager = git_pager(1); |
| 1769 | struct child_process cp = CHILD_PROCESS_INIT; |
| 1770 | |
| 1771 | if (!pager) |
| 1772 | pager = "cat"; |
Junio C Hamano | 708b8cc | 2016-02-16 14:46:39 -0800 | [diff] [blame] | 1773 | prepare_pager_args(&cp, pager); |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 1774 | argv_array_push(&cp.args, am_path(state, "patch")); |
| 1775 | run_command(&cp); |
| 1776 | } |
| 1777 | } |
| 1778 | } |
| 1779 | |
| 1780 | /** |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1781 | * Applies all queued mail. |
Paul Tan | 8c7b156 | 2015-08-04 21:51:33 +0800 | [diff] [blame] | 1782 | * |
| 1783 | * If `resume` is true, we are "resuming". The "msg" and authorship fields, as |
| 1784 | * well as the state directory's "patch" file is used as-is for applying the |
| 1785 | * patch and committing it. |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1786 | */ |
Paul Tan | 8c7b156 | 2015-08-04 21:51:33 +0800 | [diff] [blame] | 1787 | static void am_run(struct am_state *state, int resume) |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1788 | { |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1789 | const char *argv_gc_auto[] = {"gc", "--auto", NULL}; |
Paul Tan | 32a5fcb | 2015-08-04 21:51:31 +0800 | [diff] [blame] | 1790 | struct strbuf sb = STRBUF_INIT; |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1791 | |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 1792 | unlink(am_path(state, "dirtyindex")); |
| 1793 | |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1794 | refresh_and_write_cache(); |
| 1795 | |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 1796 | if (index_has_changes(&sb)) { |
Junio C Hamano | 25b763b | 2015-08-24 09:12:53 -0700 | [diff] [blame] | 1797 | write_state_bool(state, "dirtyindex", 1); |
Paul Tan | 32a5fcb | 2015-08-04 21:51:31 +0800 | [diff] [blame] | 1798 | die(_("Dirty index: cannot apply patches (dirty: %s)"), sb.buf); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 1799 | } |
Paul Tan | 32a5fcb | 2015-08-04 21:51:31 +0800 | [diff] [blame] | 1800 | |
| 1801 | strbuf_release(&sb); |
| 1802 | |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1803 | while (state->cur <= state->last) { |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1804 | const char *mail = am_path(state, msgnum(state)); |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1805 | int apply_status; |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1806 | |
Jeff King | 4d9c7e6 | 2016-08-01 15:37:00 -0400 | [diff] [blame] | 1807 | reset_ident_date(); |
| 1808 | |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1809 | if (!file_exists(mail)) |
| 1810 | goto next; |
| 1811 | |
Paul Tan | 8c7b156 | 2015-08-04 21:51:33 +0800 | [diff] [blame] | 1812 | if (resume) { |
| 1813 | validate_resume_state(state); |
Paul Tan | 8c7b156 | 2015-08-04 21:51:33 +0800 | [diff] [blame] | 1814 | } else { |
Paul Tan | df2760a | 2015-08-04 21:51:43 +0800 | [diff] [blame] | 1815 | int skip; |
| 1816 | |
| 1817 | if (state->rebasing) |
| 1818 | skip = parse_mail_rebase(state, mail); |
| 1819 | else |
| 1820 | skip = parse_mail(state, mail); |
| 1821 | |
| 1822 | if (skip) |
Paul Tan | 8c7b156 | 2015-08-04 21:51:33 +0800 | [diff] [blame] | 1823 | goto next; /* mail should be skipped */ |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1824 | |
Giuseppe Bilotta | b7cc705 | 2017-04-15 16:41:01 +0200 | [diff] [blame] | 1825 | if (state->signoff) |
| 1826 | am_append_signoff(state); |
| 1827 | |
Paul Tan | 8c7b156 | 2015-08-04 21:51:33 +0800 | [diff] [blame] | 1828 | write_author_script(state); |
| 1829 | write_commit_msg(state); |
| 1830 | } |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1831 | |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 1832 | if (state->interactive && do_interactive(state)) |
| 1833 | goto next; |
| 1834 | |
Paul Tan | b8803d8 | 2015-08-04 21:51:56 +0800 | [diff] [blame] | 1835 | if (run_applypatch_msg_hook(state)) |
| 1836 | exit(1); |
| 1837 | |
Paul Tan | 5d28cf7 | 2015-08-04 21:51:37 +0800 | [diff] [blame] | 1838 | say(state, stdout, _("Applying: %.*s"), linelen(state->msg), state->msg); |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1839 | |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 1840 | apply_status = run_apply(state, NULL); |
| 1841 | |
| 1842 | if (apply_status && state->threeway) { |
| 1843 | struct strbuf sb = STRBUF_INIT; |
| 1844 | |
| 1845 | strbuf_addstr(&sb, am_path(state, "patch-merge-index")); |
| 1846 | apply_status = fall_back_threeway(state, sb.buf); |
| 1847 | strbuf_release(&sb); |
| 1848 | |
| 1849 | /* |
| 1850 | * Applying the patch to an earlier tree and merging |
| 1851 | * the result may have produced the same tree as ours. |
| 1852 | */ |
| 1853 | if (!apply_status && !index_has_changes(NULL)) { |
| 1854 | say(state, stdout, _("No changes -- Patch already applied.")); |
| 1855 | goto next; |
| 1856 | } |
| 1857 | } |
| 1858 | |
| 1859 | if (apply_status) { |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1860 | int advice_amworkdir = 1; |
| 1861 | |
| 1862 | printf_ln(_("Patch failed at %s %.*s"), msgnum(state), |
| 1863 | linelen(state->msg), state->msg); |
| 1864 | |
| 1865 | git_config_get_bool("advice.amworkdir", &advice_amworkdir); |
| 1866 | |
| 1867 | if (advice_amworkdir) |
| 1868 | printf_ln(_("The copy of the patch that failed is found in: %s"), |
| 1869 | am_path(state, "patch")); |
| 1870 | |
Paul Tan | 2d83109 | 2015-08-04 21:51:38 +0800 | [diff] [blame] | 1871 | die_user_resolve(state); |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 1872 | } |
| 1873 | |
Paul Tan | c9e8d96 | 2015-08-04 21:51:30 +0800 | [diff] [blame] | 1874 | do_commit(state); |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1875 | |
Paul Tan | 3e20dcf | 2015-08-04 21:51:28 +0800 | [diff] [blame] | 1876 | next: |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1877 | am_next(state); |
Paul Tan | 852a171 | 2015-08-04 22:08:50 +0800 | [diff] [blame] | 1878 | |
| 1879 | if (resume) |
| 1880 | am_load(state); |
| 1881 | resume = 0; |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1882 | } |
| 1883 | |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 1884 | if (!is_empty_file(am_path(state, "rewritten"))) { |
| 1885 | assert(state->rebasing); |
Paul Tan | 88b291f | 2015-08-04 21:51:55 +0800 | [diff] [blame] | 1886 | copy_notes_for_rebase(state); |
Paul Tan | 13b97ea | 2015-08-04 21:51:54 +0800 | [diff] [blame] | 1887 | run_post_rewrite_hook(state); |
| 1888 | } |
| 1889 | |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 1890 | /* |
| 1891 | * In rebasing mode, it's up to the caller to take care of |
| 1892 | * housekeeping. |
| 1893 | */ |
| 1894 | if (!state->rebasing) { |
| 1895 | am_destroy(state); |
Johannes Schindelin | df617b5 | 2016-01-13 18:20:16 +0100 | [diff] [blame] | 1896 | close_all_packs(); |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 1897 | run_command_v_opt(argv_gc_auto, RUN_GIT_CMD); |
| 1898 | } |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 1899 | } |
Paul Tan | 73c2779 | 2015-08-04 21:51:24 +0800 | [diff] [blame] | 1900 | |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 1901 | /** |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 1902 | * Resume the current am session after patch application failure. The user did |
| 1903 | * all the hard work, and we do not have to do any patch application. Just |
| 1904 | * trust and commit what the user has in the index and working tree. |
| 1905 | */ |
| 1906 | static void am_resolve(struct am_state *state) |
| 1907 | { |
| 1908 | validate_resume_state(state); |
| 1909 | |
Paul Tan | 5d28cf7 | 2015-08-04 21:51:37 +0800 | [diff] [blame] | 1910 | say(state, stdout, _("Applying: %.*s"), linelen(state->msg), state->msg); |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 1911 | |
| 1912 | if (!index_has_changes(NULL)) { |
| 1913 | printf_ln(_("No changes - did you forget to use 'git add'?\n" |
| 1914 | "If there is nothing left to stage, chances are that something else\n" |
| 1915 | "already introduced the same changes; you might want to skip this patch.")); |
Paul Tan | 2d83109 | 2015-08-04 21:51:38 +0800 | [diff] [blame] | 1916 | die_user_resolve(state); |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 1917 | } |
| 1918 | |
| 1919 | if (unmerged_cache()) { |
| 1920 | printf_ln(_("You still have unmerged paths in your index.\n" |
Jean-Noel Avila | 6c48686 | 2017-05-11 14:06:32 +0200 | [diff] [blame] | 1921 | "You should 'git add' each file with resolved conflicts to mark them as such.\n" |
| 1922 | "You might run `git rm` on a file to accept \"deleted by them\" for it.")); |
Paul Tan | 2d83109 | 2015-08-04 21:51:38 +0800 | [diff] [blame] | 1923 | die_user_resolve(state); |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 1924 | } |
| 1925 | |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 1926 | if (state->interactive) { |
| 1927 | write_index_patch(state); |
| 1928 | if (do_interactive(state)) |
| 1929 | goto next; |
| 1930 | } |
| 1931 | |
Paul Tan | f1cb96d | 2015-08-04 21:51:59 +0800 | [diff] [blame] | 1932 | rerere(0); |
| 1933 | |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 1934 | do_commit(state); |
| 1935 | |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 1936 | next: |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 1937 | am_next(state); |
Paul Tan | 852a171 | 2015-08-04 22:08:50 +0800 | [diff] [blame] | 1938 | am_load(state); |
Paul Tan | 8c7b156 | 2015-08-04 21:51:33 +0800 | [diff] [blame] | 1939 | am_run(state, 0); |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 1940 | } |
| 1941 | |
| 1942 | /** |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 1943 | * Performs a checkout fast-forward from `head` to `remote`. If `reset` is |
| 1944 | * true, any unmerged entries will be discarded. Returns 0 on success, -1 on |
| 1945 | * failure. |
| 1946 | */ |
| 1947 | static int fast_forward_to(struct tree *head, struct tree *remote, int reset) |
| 1948 | { |
| 1949 | struct lock_file *lock_file; |
| 1950 | struct unpack_trees_options opts; |
| 1951 | struct tree_desc t[2]; |
| 1952 | |
| 1953 | if (parse_tree(head) || parse_tree(remote)) |
| 1954 | return -1; |
| 1955 | |
| 1956 | lock_file = xcalloc(1, sizeof(struct lock_file)); |
Junio C Hamano | b3e83cc | 2016-12-07 10:33:54 -0800 | [diff] [blame] | 1957 | hold_locked_index(lock_file, LOCK_DIE_ON_ERROR); |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 1958 | |
| 1959 | refresh_cache(REFRESH_QUIET); |
| 1960 | |
| 1961 | memset(&opts, 0, sizeof(opts)); |
| 1962 | opts.head_idx = 1; |
| 1963 | opts.src_index = &the_index; |
| 1964 | opts.dst_index = &the_index; |
| 1965 | opts.update = 1; |
| 1966 | opts.merge = 1; |
| 1967 | opts.reset = reset; |
| 1968 | opts.fn = twoway_merge; |
| 1969 | init_tree_desc(&t[0], head->buffer, head->size); |
| 1970 | init_tree_desc(&t[1], remote->buffer, remote->size); |
| 1971 | |
| 1972 | if (unpack_trees(2, t, &opts)) { |
| 1973 | rollback_lock_file(lock_file); |
| 1974 | return -1; |
| 1975 | } |
| 1976 | |
| 1977 | if (write_locked_index(&the_index, lock_file, COMMIT_LOCK)) |
| 1978 | die(_("unable to write new index file")); |
| 1979 | |
| 1980 | return 0; |
| 1981 | } |
| 1982 | |
| 1983 | /** |
Paul Tan | 3ecc704 | 2015-08-19 16:22:22 +0800 | [diff] [blame] | 1984 | * Merges a tree into the index. The index's stat info will take precedence |
| 1985 | * over the merged tree's. Returns 0 on success, -1 on failure. |
| 1986 | */ |
| 1987 | static int merge_tree(struct tree *tree) |
| 1988 | { |
| 1989 | struct lock_file *lock_file; |
| 1990 | struct unpack_trees_options opts; |
| 1991 | struct tree_desc t[1]; |
| 1992 | |
| 1993 | if (parse_tree(tree)) |
| 1994 | return -1; |
| 1995 | |
| 1996 | lock_file = xcalloc(1, sizeof(struct lock_file)); |
Junio C Hamano | b3e83cc | 2016-12-07 10:33:54 -0800 | [diff] [blame] | 1997 | hold_locked_index(lock_file, LOCK_DIE_ON_ERROR); |
Paul Tan | 3ecc704 | 2015-08-19 16:22:22 +0800 | [diff] [blame] | 1998 | |
| 1999 | memset(&opts, 0, sizeof(opts)); |
| 2000 | opts.head_idx = 1; |
| 2001 | opts.src_index = &the_index; |
| 2002 | opts.dst_index = &the_index; |
| 2003 | opts.merge = 1; |
| 2004 | opts.fn = oneway_merge; |
| 2005 | init_tree_desc(&t[0], tree->buffer, tree->size); |
| 2006 | |
| 2007 | if (unpack_trees(1, t, &opts)) { |
| 2008 | rollback_lock_file(lock_file); |
| 2009 | return -1; |
| 2010 | } |
| 2011 | |
| 2012 | if (write_locked_index(&the_index, lock_file, COMMIT_LOCK)) |
| 2013 | die(_("unable to write new index file")); |
| 2014 | |
| 2015 | return 0; |
| 2016 | } |
| 2017 | |
| 2018 | /** |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2019 | * Clean the index without touching entries that are not modified between |
| 2020 | * `head` and `remote`. |
| 2021 | */ |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2022 | static int clean_index(const struct object_id *head, const struct object_id *remote) |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2023 | { |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2024 | struct tree *head_tree, *remote_tree, *index_tree; |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2025 | struct object_id index; |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2026 | |
brian m. carlson | a9dbc17 | 2017-05-06 22:10:37 +0000 | [diff] [blame] | 2027 | head_tree = parse_tree_indirect(head); |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2028 | if (!head_tree) |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2029 | return error(_("Could not parse object '%s'."), oid_to_hex(head)); |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2030 | |
brian m. carlson | a9dbc17 | 2017-05-06 22:10:37 +0000 | [diff] [blame] | 2031 | remote_tree = parse_tree_indirect(remote); |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2032 | if (!remote_tree) |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2033 | return error(_("Could not parse object '%s'."), oid_to_hex(remote)); |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2034 | |
| 2035 | read_cache_unmerged(); |
| 2036 | |
| 2037 | if (fast_forward_to(head_tree, head_tree, 1)) |
| 2038 | return -1; |
| 2039 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2040 | if (write_cache_as_tree(index.hash, 0, NULL)) |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2041 | return -1; |
| 2042 | |
brian m. carlson | a9dbc17 | 2017-05-06 22:10:37 +0000 | [diff] [blame] | 2043 | index_tree = parse_tree_indirect(&index); |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2044 | if (!index_tree) |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2045 | return error(_("Could not parse object '%s'."), oid_to_hex(&index)); |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2046 | |
| 2047 | if (fast_forward_to(index_tree, remote_tree, 0)) |
| 2048 | return -1; |
| 2049 | |
Paul Tan | 3ecc704 | 2015-08-19 16:22:22 +0800 | [diff] [blame] | 2050 | if (merge_tree(remote_tree)) |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2051 | return -1; |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2052 | |
| 2053 | remove_branch_state(); |
| 2054 | |
| 2055 | return 0; |
| 2056 | } |
| 2057 | |
| 2058 | /** |
Paul Tan | f1cb96d | 2015-08-04 21:51:59 +0800 | [diff] [blame] | 2059 | * Resets rerere's merge resolution metadata. |
| 2060 | */ |
| 2061 | static void am_rerere_clear(void) |
| 2062 | { |
| 2063 | struct string_list merge_rr = STRING_LIST_INIT_DUP; |
Paul Tan | f1cb96d | 2015-08-04 21:51:59 +0800 | [diff] [blame] | 2064 | rerere_clear(&merge_rr); |
| 2065 | string_list_clear(&merge_rr, 1); |
| 2066 | } |
| 2067 | |
| 2068 | /** |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2069 | * Resume the current am session by skipping the current patch. |
| 2070 | */ |
| 2071 | static void am_skip(struct am_state *state) |
| 2072 | { |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2073 | struct object_id head; |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2074 | |
Paul Tan | f1cb96d | 2015-08-04 21:51:59 +0800 | [diff] [blame] | 2075 | am_rerere_clear(); |
| 2076 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2077 | if (get_oid("HEAD", &head)) |
| 2078 | hashcpy(head.hash, EMPTY_TREE_SHA1_BIN); |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2079 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2080 | if (clean_index(&head, &head)) |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2081 | die(_("failed to clean index")); |
| 2082 | |
| 2083 | am_next(state); |
Paul Tan | 852a171 | 2015-08-04 22:08:50 +0800 | [diff] [blame] | 2084 | am_load(state); |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2085 | am_run(state, 0); |
| 2086 | } |
| 2087 | |
| 2088 | /** |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2089 | * Returns true if it is safe to reset HEAD to the ORIG_HEAD, false otherwise. |
| 2090 | * |
| 2091 | * It is not safe to reset HEAD when: |
| 2092 | * 1. git-am previously failed because the index was dirty. |
| 2093 | * 2. HEAD has moved since git-am previously failed. |
| 2094 | */ |
| 2095 | static int safe_to_abort(const struct am_state *state) |
| 2096 | { |
| 2097 | struct strbuf sb = STRBUF_INIT; |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2098 | struct object_id abort_safety, head; |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2099 | |
| 2100 | if (file_exists(am_path(state, "dirtyindex"))) |
| 2101 | return 0; |
| 2102 | |
| 2103 | if (read_state_file(&sb, state, "abort-safety", 1) > 0) { |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2104 | if (get_oid_hex(sb.buf, &abort_safety)) |
Stephan Beyer | ccd71b2 | 2016-12-07 22:51:29 +0100 | [diff] [blame] | 2105 | die(_("could not parse %s"), am_path(state, "abort-safety")); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2106 | } else |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2107 | oidclr(&abort_safety); |
Rene Scharfe | 28ac7aa | 2017-08-30 19:49:34 +0200 | [diff] [blame] | 2108 | strbuf_release(&sb); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2109 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2110 | if (get_oid("HEAD", &head)) |
| 2111 | oidclr(&head); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2112 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2113 | if (!oidcmp(&head, &abort_safety)) |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2114 | return 1; |
| 2115 | |
Stephan Beyer | 1868331 | 2016-12-07 22:51:30 +0100 | [diff] [blame] | 2116 | warning(_("You seem to have moved HEAD since the last 'am' failure.\n" |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2117 | "Not rewinding to ORIG_HEAD")); |
| 2118 | |
| 2119 | return 0; |
| 2120 | } |
| 2121 | |
| 2122 | /** |
| 2123 | * Aborts the current am session if it is safe to do so. |
| 2124 | */ |
| 2125 | static void am_abort(struct am_state *state) |
| 2126 | { |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2127 | struct object_id curr_head, orig_head; |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2128 | int has_curr_head, has_orig_head; |
| 2129 | char *curr_branch; |
| 2130 | |
| 2131 | if (!safe_to_abort(state)) { |
| 2132 | am_destroy(state); |
| 2133 | return; |
| 2134 | } |
| 2135 | |
Paul Tan | f1cb96d | 2015-08-04 21:51:59 +0800 | [diff] [blame] | 2136 | am_rerere_clear(); |
| 2137 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2138 | curr_branch = resolve_refdup("HEAD", 0, curr_head.hash, NULL); |
René Scharfe | 57e0ef0 | 2017-05-06 19:13:56 +0200 | [diff] [blame] | 2139 | has_curr_head = curr_branch && !is_null_oid(&curr_head); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2140 | if (!has_curr_head) |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2141 | hashcpy(curr_head.hash, EMPTY_TREE_SHA1_BIN); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2142 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2143 | has_orig_head = !get_oid("ORIG_HEAD", &orig_head); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2144 | if (!has_orig_head) |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2145 | hashcpy(orig_head.hash, EMPTY_TREE_SHA1_BIN); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2146 | |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2147 | clean_index(&curr_head, &orig_head); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2148 | |
| 2149 | if (has_orig_head) |
brian m. carlson | 8c88769 | 2016-09-05 20:08:09 +0000 | [diff] [blame] | 2150 | update_ref_oid("am --abort", "HEAD", &orig_head, |
| 2151 | has_curr_head ? &curr_head : NULL, 0, |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2152 | UPDATE_REFS_DIE_ON_ERR); |
| 2153 | else if (curr_branch) |
Kyle Meyer | 755b49a | 2017-02-20 20:10:32 -0500 | [diff] [blame] | 2154 | delete_ref(NULL, curr_branch, NULL, REF_NODEREF); |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2155 | |
| 2156 | free(curr_branch); |
| 2157 | am_destroy(state); |
| 2158 | } |
| 2159 | |
| 2160 | /** |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 2161 | * parse_options() callback that validates and sets opt->value to the |
| 2162 | * PATCH_FORMAT_* enum value corresponding to `arg`. |
| 2163 | */ |
| 2164 | static int parse_opt_patchformat(const struct option *opt, const char *arg, int unset) |
| 2165 | { |
| 2166 | int *opt_value = opt->value; |
| 2167 | |
| 2168 | if (!strcmp(arg, "mbox")) |
| 2169 | *opt_value = PATCH_FORMAT_MBOX; |
Paul Tan | 5ae41c7 | 2015-08-04 21:52:00 +0800 | [diff] [blame] | 2170 | else if (!strcmp(arg, "stgit")) |
| 2171 | *opt_value = PATCH_FORMAT_STGIT; |
Paul Tan | 336108c | 2015-08-04 21:52:01 +0800 | [diff] [blame] | 2172 | else if (!strcmp(arg, "stgit-series")) |
| 2173 | *opt_value = PATCH_FORMAT_STGIT_SERIES; |
Paul Tan | 94cd175 | 2015-08-04 21:52:02 +0800 | [diff] [blame] | 2174 | else if (!strcmp(arg, "hg")) |
| 2175 | *opt_value = PATCH_FORMAT_HG; |
Eric Wong | d9925d1 | 2016-06-05 04:46:41 +0000 | [diff] [blame] | 2176 | else if (!strcmp(arg, "mboxrd")) |
| 2177 | *opt_value = PATCH_FORMAT_MBOXRD; |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 2178 | else |
| 2179 | return error(_("Invalid value for --patch-format: %s"), arg); |
| 2180 | return 0; |
| 2181 | } |
| 2182 | |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 2183 | enum resume_mode { |
| 2184 | RESUME_FALSE = 0, |
Paul Tan | 8c7b156 | 2015-08-04 21:51:33 +0800 | [diff] [blame] | 2185 | RESUME_APPLY, |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2186 | RESUME_RESOLVED, |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2187 | RESUME_SKIP, |
| 2188 | RESUME_ABORT |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 2189 | }; |
| 2190 | |
Renee Margaret McConahy | 434c64d | 2015-09-30 13:49:44 -0400 | [diff] [blame] | 2191 | static int git_am_config(const char *k, const char *v, void *cb) |
| 2192 | { |
| 2193 | int status; |
| 2194 | |
| 2195 | status = git_gpg_config(k, v, NULL); |
| 2196 | if (status) |
| 2197 | return status; |
| 2198 | |
| 2199 | return git_default_config(k, v, NULL); |
| 2200 | } |
| 2201 | |
Paul Tan | 73c2779 | 2015-08-04 21:51:24 +0800 | [diff] [blame] | 2202 | int cmd_am(int argc, const char **argv, const char *prefix) |
| 2203 | { |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 2204 | struct am_state state; |
Paul Tan | c2676cd | 2015-08-04 21:52:04 +0800 | [diff] [blame] | 2205 | int binary = -1; |
Paul Tan | 5d123a4 | 2015-08-04 21:51:48 +0800 | [diff] [blame] | 2206 | int keep_cr = -1; |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 2207 | int patch_format = PATCH_FORMAT_UNKNOWN; |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 2208 | enum resume_mode resume = RESUME_FALSE; |
Paul Tan | 852a171 | 2015-08-04 22:08:50 +0800 | [diff] [blame] | 2209 | int in_progress; |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 2210 | |
| 2211 | const char * const usage[] = { |
Alex Henrie | d65fdc9 | 2016-09-07 22:33:08 -0600 | [diff] [blame] | 2212 | N_("git am [<options>] [(<mbox> | <Maildir>)...]"), |
Ralf Thielow | d96a031 | 2015-10-16 19:09:57 +0200 | [diff] [blame] | 2213 | N_("git am [<options>] (--continue | --skip | --abort)"), |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 2214 | NULL |
| 2215 | }; |
| 2216 | |
| 2217 | struct option options[] = { |
Paul Tan | 7ff2683 | 2015-08-04 21:52:03 +0800 | [diff] [blame] | 2218 | OPT_BOOL('i', "interactive", &state.interactive, |
| 2219 | N_("run interactively")), |
Paul Tan | c2676cd | 2015-08-04 21:52:04 +0800 | [diff] [blame] | 2220 | OPT_HIDDEN_BOOL('b', "binary", &binary, |
Jiang Xin | 1fb5a0e | 2015-08-26 23:51:19 +0800 | [diff] [blame] | 2221 | N_("historical option -- no-op")), |
Paul Tan | 84f3de2 | 2015-08-04 21:51:41 +0800 | [diff] [blame] | 2222 | OPT_BOOL('3', "3way", &state.threeway, |
| 2223 | N_("allow fall back on 3way merging if needed")), |
Paul Tan | 5d28cf7 | 2015-08-04 21:51:37 +0800 | [diff] [blame] | 2224 | OPT__QUIET(&state.quiet, N_("be quiet")), |
Paul Tan | b5e8235 | 2015-08-04 22:08:51 +0800 | [diff] [blame] | 2225 | OPT_SET_INT('s', "signoff", &state.signoff, |
| 2226 | N_("add a Signed-off-by line to the commit message"), |
| 2227 | SIGNOFF_EXPLICIT), |
Paul Tan | ef7ee16 | 2015-08-04 21:51:45 +0800 | [diff] [blame] | 2228 | OPT_BOOL('u', "utf8", &state.utf8, |
| 2229 | N_("recode into utf8 (default)")), |
Paul Tan | 4f1b696 | 2015-08-04 21:51:46 +0800 | [diff] [blame] | 2230 | OPT_SET_INT('k', "keep", &state.keep, |
| 2231 | N_("pass -k flag to git-mailinfo"), KEEP_TRUE), |
| 2232 | OPT_SET_INT(0, "keep-non-patch", &state.keep, |
| 2233 | N_("pass -b flag to git-mailinfo"), KEEP_NON_PATCH), |
Paul Tan | 702cbaa | 2015-08-04 21:51:47 +0800 | [diff] [blame] | 2234 | OPT_BOOL('m', "message-id", &state.message_id, |
| 2235 | N_("pass -m flag to git-mailinfo")), |
Paul Tan | 5d123a4 | 2015-08-04 21:51:48 +0800 | [diff] [blame] | 2236 | { OPTION_SET_INT, 0, "keep-cr", &keep_cr, NULL, |
| 2237 | N_("pass --keep-cr flag to git-mailsplit for mbox format"), |
| 2238 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, 1}, |
| 2239 | { OPTION_SET_INT, 0, "no-keep-cr", &keep_cr, NULL, |
| 2240 | N_("do not pass --keep-cr flag to git-mailsplit independent of am.keepcr"), |
| 2241 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, 0}, |
Paul Tan | 9b64661 | 2015-08-04 21:51:49 +0800 | [diff] [blame] | 2242 | OPT_BOOL('c', "scissors", &state.scissors, |
| 2243 | N_("strip everything before a scissors line")), |
Paul Tan | 257e8ce | 2015-08-04 21:51:50 +0800 | [diff] [blame] | 2244 | OPT_PASSTHRU_ARGV(0, "whitespace", &state.git_apply_opts, N_("action"), |
| 2245 | N_("pass it through git-apply"), |
| 2246 | 0), |
| 2247 | OPT_PASSTHRU_ARGV(0, "ignore-space-change", &state.git_apply_opts, NULL, |
| 2248 | N_("pass it through git-apply"), |
| 2249 | PARSE_OPT_NOARG), |
| 2250 | OPT_PASSTHRU_ARGV(0, "ignore-whitespace", &state.git_apply_opts, NULL, |
| 2251 | N_("pass it through git-apply"), |
| 2252 | PARSE_OPT_NOARG), |
| 2253 | OPT_PASSTHRU_ARGV(0, "directory", &state.git_apply_opts, N_("root"), |
| 2254 | N_("pass it through git-apply"), |
| 2255 | 0), |
| 2256 | OPT_PASSTHRU_ARGV(0, "exclude", &state.git_apply_opts, N_("path"), |
| 2257 | N_("pass it through git-apply"), |
| 2258 | 0), |
| 2259 | OPT_PASSTHRU_ARGV(0, "include", &state.git_apply_opts, N_("path"), |
| 2260 | N_("pass it through git-apply"), |
| 2261 | 0), |
| 2262 | OPT_PASSTHRU_ARGV('C', NULL, &state.git_apply_opts, N_("n"), |
| 2263 | N_("pass it through git-apply"), |
| 2264 | 0), |
| 2265 | OPT_PASSTHRU_ARGV('p', NULL, &state.git_apply_opts, N_("num"), |
| 2266 | N_("pass it through git-apply"), |
| 2267 | 0), |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 2268 | OPT_CALLBACK(0, "patch-format", &patch_format, N_("format"), |
| 2269 | N_("format the patch(es) are in"), |
| 2270 | parse_opt_patchformat), |
Paul Tan | 257e8ce | 2015-08-04 21:51:50 +0800 | [diff] [blame] | 2271 | OPT_PASSTHRU_ARGV(0, "reject", &state.git_apply_opts, NULL, |
| 2272 | N_("pass it through git-apply"), |
| 2273 | PARSE_OPT_NOARG), |
Paul Tan | 2d83109 | 2015-08-04 21:51:38 +0800 | [diff] [blame] | 2274 | OPT_STRING(0, "resolvemsg", &state.resolvemsg, NULL, |
| 2275 | N_("override error message when patch failure occurs")), |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 2276 | OPT_CMDMODE(0, "continue", &resume, |
| 2277 | N_("continue applying patches after resolving a conflict"), |
| 2278 | RESUME_RESOLVED), |
| 2279 | OPT_CMDMODE('r', "resolved", &resume, |
| 2280 | N_("synonyms for --continue"), |
| 2281 | RESUME_RESOLVED), |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2282 | OPT_CMDMODE(0, "skip", &resume, |
| 2283 | N_("skip the current patch"), |
| 2284 | RESUME_SKIP), |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2285 | OPT_CMDMODE(0, "abort", &resume, |
| 2286 | N_("restore the original branch and abort the patching operation."), |
| 2287 | RESUME_ABORT), |
Paul Tan | 0cd4bcb | 2015-08-04 21:51:52 +0800 | [diff] [blame] | 2288 | OPT_BOOL(0, "committer-date-is-author-date", |
| 2289 | &state.committer_date_is_author_date, |
| 2290 | N_("lie about committer date")), |
Paul Tan | f07adb6 | 2015-08-04 21:51:51 +0800 | [diff] [blame] | 2291 | OPT_BOOL(0, "ignore-date", &state.ignore_date, |
| 2292 | N_("use current timestamp for author date")), |
Paul Tan | f1cb96d | 2015-08-04 21:51:59 +0800 | [diff] [blame] | 2293 | OPT_RERERE_AUTOUPDATE(&state.allow_rerere_autoupdate), |
Paul Tan | 7e35dac | 2015-08-04 21:51:53 +0800 | [diff] [blame] | 2294 | { OPTION_STRING, 'S', "gpg-sign", &state.sign_commit, N_("key-id"), |
| 2295 | N_("GPG-sign commits"), |
| 2296 | PARSE_OPT_OPTARG, NULL, (intptr_t) "" }, |
Paul Tan | 35bdcc5 | 2015-08-04 21:51:42 +0800 | [diff] [blame] | 2297 | OPT_HIDDEN_BOOL(0, "rebasing", &state.rebasing, |
| 2298 | N_("(internal use for git-rebase)")), |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 2299 | OPT_END() |
| 2300 | }; |
Paul Tan | 73c2779 | 2015-08-04 21:51:24 +0800 | [diff] [blame] | 2301 | |
Jeff King | f3a2fff | 2017-05-30 01:11:23 -0400 | [diff] [blame] | 2302 | if (argc == 2 && !strcmp(argv[1], "-h")) |
| 2303 | usage_with_options(usage, options); |
| 2304 | |
Renee Margaret McConahy | 434c64d | 2015-09-30 13:49:44 -0400 | [diff] [blame] | 2305 | git_config(git_am_config, NULL); |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 2306 | |
Jeff King | 16d2676 | 2017-04-20 17:09:35 -0400 | [diff] [blame] | 2307 | am_state_init(&state); |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 2308 | |
Paul Tan | 852a171 | 2015-08-04 22:08:50 +0800 | [diff] [blame] | 2309 | in_progress = am_in_progress(&state); |
| 2310 | if (in_progress) |
| 2311 | am_load(&state); |
| 2312 | |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 2313 | argc = parse_options(argc, argv, prefix, options, usage, 0); |
| 2314 | |
Paul Tan | c2676cd | 2015-08-04 21:52:04 +0800 | [diff] [blame] | 2315 | if (binary >= 0) |
| 2316 | fprintf_ln(stderr, _("The -b/--binary option has been a no-op for long time, and\n" |
| 2317 | "it will be removed. Please do not use it anymore.")); |
| 2318 | |
Paul Tan | 5e4f9cf | 2015-08-04 21:52:05 +0800 | [diff] [blame] | 2319 | /* Ensure a valid committer ident can be constructed */ |
| 2320 | git_committer_info(IDENT_STRICT); |
| 2321 | |
Paul Tan | 38a824f | 2015-08-04 21:51:29 +0800 | [diff] [blame] | 2322 | if (read_index_preload(&the_index, NULL) < 0) |
| 2323 | die(_("failed to read the index")); |
| 2324 | |
Paul Tan | 852a171 | 2015-08-04 22:08:50 +0800 | [diff] [blame] | 2325 | if (in_progress) { |
Paul Tan | 8d18550 | 2015-08-04 21:51:36 +0800 | [diff] [blame] | 2326 | /* |
| 2327 | * Catch user error to feed us patches when there is a session |
| 2328 | * in progress: |
| 2329 | * |
| 2330 | * 1. mbox path(s) are provided on the command-line. |
| 2331 | * 2. stdin is not a tty: the user is trying to feed us a patch |
| 2332 | * from standard input. This is somewhat unreliable -- stdin |
| 2333 | * could be /dev/null for example and the caller did not |
| 2334 | * intend to feed us a patch but wanted to continue |
| 2335 | * unattended. |
| 2336 | */ |
| 2337 | if (argc || (resume == RESUME_FALSE && !isatty(0))) |
| 2338 | die(_("previous rebase directory %s still exists but mbox given."), |
| 2339 | state.dir); |
| 2340 | |
Paul Tan | 8c7b156 | 2015-08-04 21:51:33 +0800 | [diff] [blame] | 2341 | if (resume == RESUME_FALSE) |
| 2342 | resume = RESUME_APPLY; |
Paul Tan | b5e8235 | 2015-08-04 22:08:51 +0800 | [diff] [blame] | 2343 | |
| 2344 | if (state.signoff == SIGNOFF_EXPLICIT) |
| 2345 | am_append_signoff(&state); |
Paul Tan | 8c7b156 | 2015-08-04 21:51:33 +0800 | [diff] [blame] | 2346 | } else { |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 2347 | struct argv_array paths = ARGV_ARRAY_INIT; |
| 2348 | int i; |
| 2349 | |
Paul Tan | 6d42ac2 | 2015-08-04 21:51:44 +0800 | [diff] [blame] | 2350 | /* |
| 2351 | * Handle stray state directory in the independent-run case. In |
| 2352 | * the --rebasing case, it is up to the caller to take care of |
| 2353 | * stray directories. |
| 2354 | */ |
| 2355 | if (file_exists(state.dir) && !state.rebasing) { |
| 2356 | if (resume == RESUME_ABORT) { |
| 2357 | am_destroy(&state); |
| 2358 | am_state_release(&state); |
| 2359 | return 0; |
| 2360 | } |
| 2361 | |
| 2362 | die(_("Stray %s directory found.\n" |
| 2363 | "Use \"git am --abort\" to remove it."), |
| 2364 | state.dir); |
| 2365 | } |
| 2366 | |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 2367 | if (resume) |
| 2368 | die(_("Resolve operation not in progress, we are not resuming.")); |
| 2369 | |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 2370 | for (i = 0; i < argc; i++) { |
| 2371 | if (is_absolute_path(argv[i]) || !prefix) |
| 2372 | argv_array_push(&paths, argv[i]); |
| 2373 | else |
| 2374 | argv_array_push(&paths, mkpath("%s/%s", prefix, argv[i])); |
| 2375 | } |
| 2376 | |
Paul Tan | 5d123a4 | 2015-08-04 21:51:48 +0800 | [diff] [blame] | 2377 | am_setup(&state, patch_format, paths.argv, keep_cr); |
Paul Tan | 11c2177 | 2015-08-04 21:51:26 +0800 | [diff] [blame] | 2378 | |
| 2379 | argv_array_clear(&paths); |
| 2380 | } |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 2381 | |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 2382 | switch (resume) { |
| 2383 | case RESUME_FALSE: |
Paul Tan | 8c7b156 | 2015-08-04 21:51:33 +0800 | [diff] [blame] | 2384 | am_run(&state, 0); |
| 2385 | break; |
| 2386 | case RESUME_APPLY: |
| 2387 | am_run(&state, 1); |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 2388 | break; |
| 2389 | case RESUME_RESOLVED: |
| 2390 | am_resolve(&state); |
| 2391 | break; |
Paul Tan | 9990080 | 2015-08-04 21:51:34 +0800 | [diff] [blame] | 2392 | case RESUME_SKIP: |
| 2393 | am_skip(&state); |
| 2394 | break; |
Paul Tan | 33388a7 | 2015-08-04 21:51:35 +0800 | [diff] [blame] | 2395 | case RESUME_ABORT: |
| 2396 | am_abort(&state); |
| 2397 | break; |
Paul Tan | 240bfd2 | 2015-08-04 21:51:32 +0800 | [diff] [blame] | 2398 | default: |
| 2399 | die("BUG: invalid resume value"); |
| 2400 | } |
Paul Tan | 8c3bd9e | 2015-08-04 21:51:25 +0800 | [diff] [blame] | 2401 | |
| 2402 | am_state_release(&state); |
| 2403 | |
Paul Tan | 73c2779 | 2015-08-04 21:51:24 +0800 | [diff] [blame] | 2404 | return 0; |
| 2405 | } |