Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | #include "commit.h" |
| 3 | #include "refs.h" |
Stefan Beller | cbd53a2 | 2018-05-15 16:42:15 -0700 | [diff] [blame] | 4 | #include "object-store.h" |
Stefan Beller | 2122f67 | 2018-06-28 18:21:58 -0700 | [diff] [blame] | 5 | #include "repository.h" |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 6 | #include "diff.h" |
| 7 | #include "diffcore.h" |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 8 | #include "xdiff-interface.h" |
| 9 | #include "ll-merge.h" |
| 10 | #include "dir.h" |
Johan Herland | 5688184 | 2010-11-09 22:49:47 +0100 | [diff] [blame] | 11 | #include "notes.h" |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 12 | #include "notes-merge.h" |
Johan Herland | 443259c | 2010-11-09 22:49:53 +0100 | [diff] [blame] | 13 | #include "strbuf.h" |
Johan Herland | bf9a05b | 2013-06-12 02:13:01 +0200 | [diff] [blame] | 14 | #include "notes-utils.h" |
Derrick Stolee | 6404355 | 2018-07-20 16:33:04 +0000 | [diff] [blame] | 15 | #include "commit-reach.h" |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 16 | |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 17 | struct notes_merge_pair { |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 18 | struct object_id obj, base, local, remote; |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 19 | }; |
| 20 | |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 21 | void init_notes_merge_options(struct notes_merge_options *o) |
| 22 | { |
| 23 | memset(o, 0, sizeof(struct notes_merge_options)); |
Johan Herland | 443259c | 2010-11-09 22:49:53 +0100 | [diff] [blame] | 24 | strbuf_init(&(o->commit_msg), 0); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 25 | o->verbosity = NOTES_MERGE_VERBOSITY_DEFAULT; |
| 26 | } |
| 27 | |
Brandon Williams | 4d77896 | 2017-05-30 10:31:01 -0700 | [diff] [blame] | 28 | static int path_to_oid(const char *path, struct object_id *oid) |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 29 | { |
Brandon Williams | 4d77896 | 2017-05-30 10:31:01 -0700 | [diff] [blame] | 30 | char hex_oid[GIT_SHA1_HEXSZ]; |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 31 | int i = 0; |
Brandon Williams | 4d77896 | 2017-05-30 10:31:01 -0700 | [diff] [blame] | 32 | while (*path && i < GIT_SHA1_HEXSZ) { |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 33 | if (*path != '/') |
Brandon Williams | 4d77896 | 2017-05-30 10:31:01 -0700 | [diff] [blame] | 34 | hex_oid[i++] = *path; |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 35 | path++; |
| 36 | } |
Brandon Williams | 4d77896 | 2017-05-30 10:31:01 -0700 | [diff] [blame] | 37 | if (*path || i != GIT_SHA1_HEXSZ) |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 38 | return -1; |
Brandon Williams | 4d77896 | 2017-05-30 10:31:01 -0700 | [diff] [blame] | 39 | return get_oid_hex(hex_oid, oid); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 40 | } |
| 41 | |
Brandon Williams | 4d77896 | 2017-05-30 10:31:01 -0700 | [diff] [blame] | 42 | static int verify_notes_filepair(struct diff_filepair *p, struct object_id *oid) |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 43 | { |
| 44 | switch (p->status) { |
| 45 | case DIFF_STATUS_MODIFIED: |
| 46 | assert(p->one->mode == p->two->mode); |
brian m. carlson | a0d12c4 | 2016-06-24 23:09:23 +0000 | [diff] [blame] | 47 | assert(!is_null_oid(&p->one->oid)); |
| 48 | assert(!is_null_oid(&p->two->oid)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 49 | break; |
| 50 | case DIFF_STATUS_ADDED: |
brian m. carlson | a0d12c4 | 2016-06-24 23:09:23 +0000 | [diff] [blame] | 51 | assert(is_null_oid(&p->one->oid)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 52 | break; |
| 53 | case DIFF_STATUS_DELETED: |
brian m. carlson | a0d12c4 | 2016-06-24 23:09:23 +0000 | [diff] [blame] | 54 | assert(is_null_oid(&p->two->oid)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 55 | break; |
| 56 | default: |
| 57 | return -1; |
| 58 | } |
| 59 | assert(!strcmp(p->one->path, p->two->path)); |
Brandon Williams | 4d77896 | 2017-05-30 10:31:01 -0700 | [diff] [blame] | 60 | return path_to_oid(p->one->path, oid); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | static struct notes_merge_pair *find_notes_merge_pair_pos( |
Brandon Williams | d7a7c70 | 2017-05-30 10:31:00 -0700 | [diff] [blame] | 64 | struct notes_merge_pair *list, int len, struct object_id *obj, |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 65 | int insert_new, int *occupied) |
| 66 | { |
| 67 | /* |
| 68 | * Both diff_tree_remote() and diff_tree_local() tend to process |
| 69 | * merge_pairs in ascending order. Therefore, cache last returned |
| 70 | * index, and search sequentially from there until the appropriate |
| 71 | * position is found. |
| 72 | * |
| 73 | * Since inserts only happen from diff_tree_remote() (which mainly |
| 74 | * _appends_), we don't care that inserting into the middle of the |
| 75 | * list is expensive (using memmove()). |
| 76 | */ |
| 77 | static int last_index; |
| 78 | int i = last_index < len ? last_index : len - 1; |
| 79 | int prev_cmp = 0, cmp = -1; |
| 80 | while (i >= 0 && i < len) { |
Brandon Williams | d7a7c70 | 2017-05-30 10:31:00 -0700 | [diff] [blame] | 81 | cmp = oidcmp(obj, &list[i].obj); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 82 | if (!cmp) /* obj belongs @ i */ |
| 83 | break; |
| 84 | else if (cmp < 0 && prev_cmp <= 0) /* obj belongs < i */ |
| 85 | i--; |
| 86 | else if (cmp < 0) /* obj belongs between i-1 and i */ |
| 87 | break; |
| 88 | else if (cmp > 0 && prev_cmp >= 0) /* obj belongs > i */ |
| 89 | i++; |
| 90 | else /* if (cmp > 0) */ { /* obj belongs between i and i+1 */ |
| 91 | i++; |
| 92 | break; |
| 93 | } |
| 94 | prev_cmp = cmp; |
| 95 | } |
| 96 | if (i < 0) |
| 97 | i = 0; |
| 98 | /* obj belongs at, or immediately preceding, index i (0 <= i <= len) */ |
| 99 | |
| 100 | if (!cmp) |
| 101 | *occupied = 1; |
| 102 | else { |
| 103 | *occupied = 0; |
| 104 | if (insert_new && i < len) { |
René Scharfe | f331ab9 | 2017-07-15 22:00:45 +0200 | [diff] [blame] | 105 | MOVE_ARRAY(list + i + 1, list + i, len - i); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 106 | memset(list + i, 0, sizeof(struct notes_merge_pair)); |
| 107 | } |
| 108 | } |
| 109 | last_index = i; |
| 110 | return list + i; |
| 111 | } |
| 112 | |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 113 | static struct object_id uninitialized = { |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 114 | "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" \ |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 115 | "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" |
| 116 | }; |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 117 | |
| 118 | static struct notes_merge_pair *diff_tree_remote(struct notes_merge_options *o, |
Brandon Williams | 9d6babb | 2017-05-30 10:30:59 -0700 | [diff] [blame] | 119 | const struct object_id *base, |
| 120 | const struct object_id *remote, |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 121 | int *num_changes) |
| 122 | { |
| 123 | struct diff_options opt; |
| 124 | struct notes_merge_pair *changes; |
| 125 | int i, len = 0; |
| 126 | |
| 127 | trace_printf("\tdiff_tree_remote(base = %.7s, remote = %.7s)\n", |
Brandon Williams | 9d6babb | 2017-05-30 10:30:59 -0700 | [diff] [blame] | 128 | oid_to_hex(base), oid_to_hex(remote)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 129 | |
| 130 | diff_setup(&opt); |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 131 | opt.flags.recursive = 1; |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 132 | opt.output_format = DIFF_FORMAT_NO_OUTPUT; |
Thomas Rast | 2845265 | 2012-08-03 14:16:24 +0200 | [diff] [blame] | 133 | diff_setup_done(&opt); |
Brandon Williams | 66f414f | 2017-05-30 10:31:03 -0700 | [diff] [blame] | 134 | diff_tree_oid(base, remote, "", &opt); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 135 | diffcore_std(&opt); |
| 136 | |
| 137 | changes = xcalloc(diff_queued_diff.nr, sizeof(struct notes_merge_pair)); |
| 138 | |
| 139 | for (i = 0; i < diff_queued_diff.nr; i++) { |
| 140 | struct diff_filepair *p = diff_queued_diff.queue[i]; |
| 141 | struct notes_merge_pair *mp; |
| 142 | int occupied; |
Brandon Williams | d7a7c70 | 2017-05-30 10:31:00 -0700 | [diff] [blame] | 143 | struct object_id obj; |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 144 | |
Brandon Williams | 4d77896 | 2017-05-30 10:31:01 -0700 | [diff] [blame] | 145 | if (verify_notes_filepair(p, &obj)) { |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 146 | trace_printf("\t\tCannot merge entry '%s' (%c): " |
| 147 | "%.7s -> %.7s. Skipping!\n", p->one->path, |
brian m. carlson | a0d12c4 | 2016-06-24 23:09:23 +0000 | [diff] [blame] | 148 | p->status, oid_to_hex(&p->one->oid), |
| 149 | oid_to_hex(&p->two->oid)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 150 | continue; |
| 151 | } |
Brandon Williams | d7a7c70 | 2017-05-30 10:31:00 -0700 | [diff] [blame] | 152 | mp = find_notes_merge_pair_pos(changes, len, &obj, 1, &occupied); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 153 | if (occupied) { |
| 154 | /* We've found an addition/deletion pair */ |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 155 | assert(oideq(&mp->obj, &obj)); |
brian m. carlson | a0d12c4 | 2016-06-24 23:09:23 +0000 | [diff] [blame] | 156 | if (is_null_oid(&p->one->oid)) { /* addition */ |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 157 | assert(is_null_oid(&mp->remote)); |
| 158 | oidcpy(&mp->remote, &p->two->oid); |
brian m. carlson | a0d12c4 | 2016-06-24 23:09:23 +0000 | [diff] [blame] | 159 | } else if (is_null_oid(&p->two->oid)) { /* deletion */ |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 160 | assert(is_null_oid(&mp->base)); |
| 161 | oidcpy(&mp->base, &p->one->oid); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 162 | } else |
| 163 | assert(!"Invalid existing change recorded"); |
| 164 | } else { |
Brandon Williams | d7a7c70 | 2017-05-30 10:31:00 -0700 | [diff] [blame] | 165 | oidcpy(&mp->obj, &obj); |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 166 | oidcpy(&mp->base, &p->one->oid); |
| 167 | oidcpy(&mp->local, &uninitialized); |
| 168 | oidcpy(&mp->remote, &p->two->oid); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 169 | len++; |
| 170 | } |
| 171 | trace_printf("\t\tStored remote change for %s: %.7s -> %.7s\n", |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 172 | oid_to_hex(&mp->obj), oid_to_hex(&mp->base), |
| 173 | oid_to_hex(&mp->remote)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 174 | } |
| 175 | diff_flush(&opt); |
Junio C Hamano | ed6e803 | 2016-06-02 14:09:22 -0700 | [diff] [blame] | 176 | clear_pathspec(&opt.pathspec); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 177 | |
| 178 | *num_changes = len; |
| 179 | return changes; |
| 180 | } |
| 181 | |
| 182 | static void diff_tree_local(struct notes_merge_options *o, |
| 183 | struct notes_merge_pair *changes, int len, |
Brandon Williams | 9d6babb | 2017-05-30 10:30:59 -0700 | [diff] [blame] | 184 | const struct object_id *base, |
| 185 | const struct object_id *local) |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 186 | { |
| 187 | struct diff_options opt; |
| 188 | int i; |
| 189 | |
| 190 | trace_printf("\tdiff_tree_local(len = %i, base = %.7s, local = %.7s)\n", |
Brandon Williams | 9d6babb | 2017-05-30 10:30:59 -0700 | [diff] [blame] | 191 | len, oid_to_hex(base), oid_to_hex(local)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 192 | |
| 193 | diff_setup(&opt); |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 194 | opt.flags.recursive = 1; |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 195 | opt.output_format = DIFF_FORMAT_NO_OUTPUT; |
Thomas Rast | 2845265 | 2012-08-03 14:16:24 +0200 | [diff] [blame] | 196 | diff_setup_done(&opt); |
Brandon Williams | 66f414f | 2017-05-30 10:31:03 -0700 | [diff] [blame] | 197 | diff_tree_oid(base, local, "", &opt); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 198 | diffcore_std(&opt); |
| 199 | |
| 200 | for (i = 0; i < diff_queued_diff.nr; i++) { |
| 201 | struct diff_filepair *p = diff_queued_diff.queue[i]; |
| 202 | struct notes_merge_pair *mp; |
| 203 | int match; |
Brandon Williams | d7a7c70 | 2017-05-30 10:31:00 -0700 | [diff] [blame] | 204 | struct object_id obj; |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 205 | |
Brandon Williams | 4d77896 | 2017-05-30 10:31:01 -0700 | [diff] [blame] | 206 | if (verify_notes_filepair(p, &obj)) { |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 207 | trace_printf("\t\tCannot merge entry '%s' (%c): " |
| 208 | "%.7s -> %.7s. Skipping!\n", p->one->path, |
brian m. carlson | a0d12c4 | 2016-06-24 23:09:23 +0000 | [diff] [blame] | 209 | p->status, oid_to_hex(&p->one->oid), |
| 210 | oid_to_hex(&p->two->oid)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 211 | continue; |
| 212 | } |
Brandon Williams | d7a7c70 | 2017-05-30 10:31:00 -0700 | [diff] [blame] | 213 | mp = find_notes_merge_pair_pos(changes, len, &obj, 0, &match); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 214 | if (!match) { |
| 215 | trace_printf("\t\tIgnoring local-only change for %s: " |
Brandon Williams | d7a7c70 | 2017-05-30 10:31:00 -0700 | [diff] [blame] | 216 | "%.7s -> %.7s\n", oid_to_hex(&obj), |
brian m. carlson | a0d12c4 | 2016-06-24 23:09:23 +0000 | [diff] [blame] | 217 | oid_to_hex(&p->one->oid), |
| 218 | oid_to_hex(&p->two->oid)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 219 | continue; |
| 220 | } |
| 221 | |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 222 | assert(oideq(&mp->obj, &obj)); |
brian m. carlson | a0d12c4 | 2016-06-24 23:09:23 +0000 | [diff] [blame] | 223 | if (is_null_oid(&p->two->oid)) { /* deletion */ |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 224 | /* |
| 225 | * Either this is a true deletion (1), or it is part |
| 226 | * of an A/D pair (2), or D/A pair (3): |
| 227 | * |
| 228 | * (1) mp->local is uninitialized; set it to null_sha1 |
| 229 | * (2) mp->local is not uninitialized; don't touch it |
| 230 | * (3) mp->local is uninitialized; set it to null_sha1 |
| 231 | * (will be overwritten by following addition) |
| 232 | */ |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 233 | if (oideq(&mp->local, &uninitialized)) |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 234 | oidclr(&mp->local); |
brian m. carlson | a0d12c4 | 2016-06-24 23:09:23 +0000 | [diff] [blame] | 235 | } else if (is_null_oid(&p->one->oid)) { /* addition */ |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 236 | /* |
| 237 | * Either this is a true addition (1), or it is part |
| 238 | * of an A/D pair (2), or D/A pair (3): |
| 239 | * |
| 240 | * (1) mp->local is uninitialized; set to p->two->sha1 |
| 241 | * (2) mp->local is uninitialized; set to p->two->sha1 |
| 242 | * (3) mp->local is null_sha1; set to p->two->sha1 |
| 243 | */ |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 244 | assert(is_null_oid(&mp->local) || |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 245 | oideq(&mp->local, &uninitialized)); |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 246 | oidcpy(&mp->local, &p->two->oid); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 247 | } else { /* modification */ |
| 248 | /* |
| 249 | * This is a true modification. p->one->sha1 shall |
| 250 | * match mp->base, and mp->local shall be uninitialized. |
| 251 | * Set mp->local to p->two->sha1. |
| 252 | */ |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 253 | assert(oideq(&p->one->oid, &mp->base)); |
| 254 | assert(oideq(&mp->local, &uninitialized)); |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 255 | oidcpy(&mp->local, &p->two->oid); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 256 | } |
| 257 | trace_printf("\t\tStored local change for %s: %.7s -> %.7s\n", |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 258 | oid_to_hex(&mp->obj), oid_to_hex(&mp->base), |
| 259 | oid_to_hex(&mp->local)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 260 | } |
| 261 | diff_flush(&opt); |
Junio C Hamano | ed6e803 | 2016-06-02 14:09:22 -0700 | [diff] [blame] | 262 | clear_pathspec(&opt.pathspec); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 263 | } |
| 264 | |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 265 | static void check_notes_merge_worktree(struct notes_merge_options *o) |
| 266 | { |
| 267 | if (!o->has_worktree) { |
| 268 | /* |
| 269 | * Must establish NOTES_MERGE_WORKTREE. |
| 270 | * Abort if NOTES_MERGE_WORKTREE already exists |
| 271 | */ |
Johan Herland | dabba59 | 2012-03-15 15:58:56 +0100 | [diff] [blame] | 272 | if (file_exists(git_path(NOTES_MERGE_WORKTREE)) && |
| 273 | !is_empty_dir(git_path(NOTES_MERGE_WORKTREE))) { |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 274 | if (advice_resolve_conflict) |
Vasco Almeida | c041c6d | 2016-09-19 13:08:20 +0000 | [diff] [blame] | 275 | die(_("You have not concluded your previous " |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 276 | "notes merge (%s exists).\nPlease, use " |
| 277 | "'git notes merge --commit' or 'git notes " |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 278 | "merge --abort' to commit/abort the " |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 279 | "previous merge before you start a new " |
Vasco Almeida | c041c6d | 2016-09-19 13:08:20 +0000 | [diff] [blame] | 280 | "notes merge."), git_path("NOTES_MERGE_*")); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 281 | else |
Vasco Almeida | c041c6d | 2016-09-19 13:08:20 +0000 | [diff] [blame] | 282 | die(_("You have not concluded your notes merge " |
| 283 | "(%s exists)."), git_path("NOTES_MERGE_*")); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 284 | } |
| 285 | |
Nguyễn Thái Ngọc Duy | dcf6926 | 2014-11-30 15:24:27 +0700 | [diff] [blame] | 286 | if (safe_create_leading_directories_const(git_path( |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 287 | NOTES_MERGE_WORKTREE "/.test"))) |
| 288 | die_errno("unable to create directory %s", |
| 289 | git_path(NOTES_MERGE_WORKTREE)); |
| 290 | o->has_worktree = 1; |
| 291 | } else if (!file_exists(git_path(NOTES_MERGE_WORKTREE))) |
| 292 | /* NOTES_MERGE_WORKTREE should already be established */ |
| 293 | die("missing '%s'. This should not happen", |
| 294 | git_path(NOTES_MERGE_WORKTREE)); |
| 295 | } |
| 296 | |
Brandon Williams | 9e5e0c2 | 2017-05-30 10:31:02 -0700 | [diff] [blame] | 297 | static void write_buf_to_worktree(const struct object_id *obj, |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 298 | const char *buf, unsigned long size) |
| 299 | { |
| 300 | int fd; |
Brandon Williams | 9e5e0c2 | 2017-05-30 10:31:02 -0700 | [diff] [blame] | 301 | char *path = git_pathdup(NOTES_MERGE_WORKTREE "/%s", oid_to_hex(obj)); |
Nguyễn Thái Ngọc Duy | dcf6926 | 2014-11-30 15:24:27 +0700 | [diff] [blame] | 302 | if (safe_create_leading_directories_const(path)) |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 303 | die_errno("unable to create directory for '%s'", path); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 304 | |
René Scharfe | deb9c15 | 2016-07-07 22:08:30 +0200 | [diff] [blame] | 305 | fd = xopen(path, O_WRONLY | O_EXCL | O_CREAT, 0666); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 306 | |
| 307 | while (size > 0) { |
Jeff King | 634eb82 | 2017-09-13 13:17:44 -0400 | [diff] [blame] | 308 | ssize_t ret = write_in_full(fd, buf, size); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 309 | if (ret < 0) { |
| 310 | /* Ignore epipe */ |
| 311 | if (errno == EPIPE) |
| 312 | break; |
| 313 | die_errno("notes-merge"); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 314 | } |
| 315 | size -= ret; |
| 316 | buf += ret; |
| 317 | } |
| 318 | |
| 319 | close(fd); |
Jeff King | fcd12db | 2015-08-10 05:35:31 -0400 | [diff] [blame] | 320 | free(path); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 321 | } |
| 322 | |
Brandon Williams | 9e5e0c2 | 2017-05-30 10:31:02 -0700 | [diff] [blame] | 323 | static void write_note_to_worktree(const struct object_id *obj, |
| 324 | const struct object_id *note) |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 325 | { |
| 326 | enum object_type type; |
| 327 | unsigned long size; |
brian m. carlson | b4f5aca | 2018-03-12 02:27:53 +0000 | [diff] [blame] | 328 | void *buf = read_object_file(note, &type, &size); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 329 | |
| 330 | if (!buf) |
| 331 | die("cannot read note %s for object %s", |
Brandon Williams | 9e5e0c2 | 2017-05-30 10:31:02 -0700 | [diff] [blame] | 332 | oid_to_hex(note), oid_to_hex(obj)); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 333 | if (type != OBJ_BLOB) |
| 334 | die("blob expected in note %s for object %s", |
Brandon Williams | 9e5e0c2 | 2017-05-30 10:31:02 -0700 | [diff] [blame] | 335 | oid_to_hex(note), oid_to_hex(obj)); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 336 | write_buf_to_worktree(obj, buf, size); |
| 337 | free(buf); |
| 338 | } |
| 339 | |
| 340 | static int ll_merge_in_worktree(struct notes_merge_options *o, |
| 341 | struct notes_merge_pair *p) |
| 342 | { |
| 343 | mmbuffer_t result_buf; |
| 344 | mmfile_t base, local, remote; |
| 345 | int status; |
| 346 | |
brian m. carlson | d449347 | 2016-09-05 20:08:02 +0000 | [diff] [blame] | 347 | read_mmblob(&base, &p->base); |
| 348 | read_mmblob(&local, &p->local); |
| 349 | read_mmblob(&remote, &p->remote); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 350 | |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 351 | status = ll_merge(&result_buf, oid_to_hex(&p->obj), &base, NULL, |
Stephen Boyd | c2e86ad | 2011-03-22 00:51:05 -0700 | [diff] [blame] | 352 | &local, o->local_ref, &remote, o->remote_ref, NULL); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 353 | |
| 354 | free(base.ptr); |
| 355 | free(local.ptr); |
| 356 | free(remote.ptr); |
| 357 | |
| 358 | if ((status < 0) || !result_buf.ptr) |
| 359 | die("Failed to execute internal merge"); |
| 360 | |
Brandon Williams | 9e5e0c2 | 2017-05-30 10:31:02 -0700 | [diff] [blame] | 361 | write_buf_to_worktree(&p->obj, result_buf.ptr, result_buf.size); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 362 | free(result_buf.ptr); |
| 363 | |
| 364 | return status; |
| 365 | } |
| 366 | |
| 367 | static int merge_one_change_manual(struct notes_merge_options *o, |
| 368 | struct notes_merge_pair *p, |
| 369 | struct notes_tree *t) |
| 370 | { |
| 371 | const char *lref = o->local_ref ? o->local_ref : "local version"; |
| 372 | const char *rref = o->remote_ref ? o->remote_ref : "remote version"; |
| 373 | |
| 374 | trace_printf("\t\t\tmerge_one_change_manual(obj = %.7s, base = %.7s, " |
| 375 | "local = %.7s, remote = %.7s)\n", |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 376 | oid_to_hex(&p->obj), oid_to_hex(&p->base), |
| 377 | oid_to_hex(&p->local), oid_to_hex(&p->remote)); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 378 | |
Johan Herland | 443259c | 2010-11-09 22:49:53 +0100 | [diff] [blame] | 379 | /* add "Conflicts:" section to commit message first time through */ |
| 380 | if (!o->has_worktree) |
| 381 | strbuf_addstr(&(o->commit_msg), "\n\nConflicts:\n"); |
| 382 | |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 383 | strbuf_addf(&(o->commit_msg), "\t%s\n", oid_to_hex(&p->obj)); |
Johan Herland | 443259c | 2010-11-09 22:49:53 +0100 | [diff] [blame] | 384 | |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 385 | if (o->verbosity >= 2) |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 386 | printf("Auto-merging notes for %s\n", oid_to_hex(&p->obj)); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 387 | check_notes_merge_worktree(o); |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 388 | if (is_null_oid(&p->local)) { |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 389 | /* D/F conflict, checkout p->remote */ |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 390 | assert(!is_null_oid(&p->remote)); |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 391 | if (o->verbosity >= 1) |
| 392 | printf("CONFLICT (delete/modify): Notes for object %s " |
| 393 | "deleted in %s and modified in %s. Version from %s " |
| 394 | "left in tree.\n", |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 395 | oid_to_hex(&p->obj), lref, rref, rref); |
Brandon Williams | 9e5e0c2 | 2017-05-30 10:31:02 -0700 | [diff] [blame] | 396 | write_note_to_worktree(&p->obj, &p->remote); |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 397 | } else if (is_null_oid(&p->remote)) { |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 398 | /* D/F conflict, checkout p->local */ |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 399 | assert(!is_null_oid(&p->local)); |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 400 | if (o->verbosity >= 1) |
| 401 | printf("CONFLICT (delete/modify): Notes for object %s " |
| 402 | "deleted in %s and modified in %s. Version from %s " |
| 403 | "left in tree.\n", |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 404 | oid_to_hex(&p->obj), rref, lref, lref); |
Brandon Williams | 9e5e0c2 | 2017-05-30 10:31:02 -0700 | [diff] [blame] | 405 | write_note_to_worktree(&p->obj, &p->local); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 406 | } else { |
| 407 | /* "regular" conflict, checkout result of ll_merge() */ |
| 408 | const char *reason = "content"; |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 409 | if (is_null_oid(&p->base)) |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 410 | reason = "add/add"; |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 411 | assert(!is_null_oid(&p->local)); |
| 412 | assert(!is_null_oid(&p->remote)); |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 413 | if (o->verbosity >= 1) |
| 414 | printf("CONFLICT (%s): Merge conflict in notes for " |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 415 | "object %s\n", reason, |
| 416 | oid_to_hex(&p->obj)); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 417 | ll_merge_in_worktree(o, p); |
| 418 | } |
| 419 | |
| 420 | trace_printf("\t\t\tremoving from partial merge result\n"); |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 421 | remove_note(t, p->obj.hash); |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 422 | |
| 423 | return 1; |
| 424 | } |
| 425 | |
Johan Herland | 3228e67 | 2010-11-15 00:55:12 +0100 | [diff] [blame] | 426 | static int merge_one_change(struct notes_merge_options *o, |
| 427 | struct notes_merge_pair *p, struct notes_tree *t) |
| 428 | { |
| 429 | /* |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 430 | * Return 0 if change is successfully resolved (stored in notes_tree). |
| 431 | * Return 1 is change results in a conflict (NOT stored in notes_tree, |
| 432 | * but instead written to NOTES_MERGE_WORKTREE with conflict markers). |
Johan Herland | 3228e67 | 2010-11-15 00:55:12 +0100 | [diff] [blame] | 433 | */ |
| 434 | switch (o->strategy) { |
| 435 | case NOTES_MERGE_RESOLVE_MANUAL: |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 436 | return merge_one_change_manual(o, p, t); |
Johan Herland | 3228e67 | 2010-11-15 00:55:12 +0100 | [diff] [blame] | 437 | case NOTES_MERGE_RESOLVE_OURS: |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 438 | if (o->verbosity >= 2) |
| 439 | printf("Using local notes for %s\n", |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 440 | oid_to_hex(&p->obj)); |
Johan Herland | 3228e67 | 2010-11-15 00:55:12 +0100 | [diff] [blame] | 441 | /* nothing to do */ |
| 442 | return 0; |
| 443 | case NOTES_MERGE_RESOLVE_THEIRS: |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 444 | if (o->verbosity >= 2) |
| 445 | printf("Using remote notes for %s\n", |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 446 | oid_to_hex(&p->obj)); |
brian m. carlson | 5ee8a95 | 2017-05-30 10:30:43 -0700 | [diff] [blame] | 447 | if (add_note(t, &p->obj, &p->remote, combine_notes_overwrite)) |
Johannes Schindelin | 033abf9 | 2018-05-02 11:38:39 +0200 | [diff] [blame] | 448 | BUG("combine_notes_overwrite failed"); |
Johan Herland | 3228e67 | 2010-11-15 00:55:12 +0100 | [diff] [blame] | 449 | return 0; |
| 450 | case NOTES_MERGE_RESOLVE_UNION: |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 451 | if (o->verbosity >= 2) |
| 452 | printf("Concatenating local and remote notes for %s\n", |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 453 | oid_to_hex(&p->obj)); |
brian m. carlson | 5ee8a95 | 2017-05-30 10:30:43 -0700 | [diff] [blame] | 454 | if (add_note(t, &p->obj, &p->remote, combine_notes_concatenate)) |
Johan Herland | 3228e67 | 2010-11-15 00:55:12 +0100 | [diff] [blame] | 455 | die("failed to concatenate notes " |
| 456 | "(combine_notes_concatenate)"); |
| 457 | return 0; |
Johan Herland | a6a0909 | 2010-11-15 00:57:17 +0100 | [diff] [blame] | 458 | case NOTES_MERGE_RESOLVE_CAT_SORT_UNIQ: |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 459 | if (o->verbosity >= 2) |
| 460 | printf("Concatenating unique lines in local and remote " |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 461 | "notes for %s\n", oid_to_hex(&p->obj)); |
brian m. carlson | 5ee8a95 | 2017-05-30 10:30:43 -0700 | [diff] [blame] | 462 | if (add_note(t, &p->obj, &p->remote, combine_notes_cat_sort_uniq)) |
Johan Herland | a6a0909 | 2010-11-15 00:57:17 +0100 | [diff] [blame] | 463 | die("failed to concatenate notes " |
| 464 | "(combine_notes_cat_sort_uniq)"); |
| 465 | return 0; |
Johan Herland | 3228e67 | 2010-11-15 00:55:12 +0100 | [diff] [blame] | 466 | } |
| 467 | die("Unknown strategy (%i).", o->strategy); |
| 468 | } |
| 469 | |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 470 | static int merge_changes(struct notes_merge_options *o, |
| 471 | struct notes_merge_pair *changes, int *num_changes, |
| 472 | struct notes_tree *t) |
| 473 | { |
| 474 | int i, conflicts = 0; |
| 475 | |
| 476 | trace_printf("\tmerge_changes(num_changes = %i)\n", *num_changes); |
| 477 | for (i = 0; i < *num_changes; i++) { |
| 478 | struct notes_merge_pair *p = changes + i; |
| 479 | trace_printf("\t\t%.7s: %.7s -> %.7s/%.7s\n", |
brian m. carlson | e910bb1 | 2016-09-05 20:08:01 +0000 | [diff] [blame] | 480 | oid_to_hex(&p->obj), oid_to_hex(&p->base), |
| 481 | oid_to_hex(&p->local), |
| 482 | oid_to_hex(&p->remote)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 483 | |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 484 | if (oideq(&p->base, &p->remote)) { |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 485 | /* no remote change; nothing to do */ |
| 486 | trace_printf("\t\t\tskipping (no remote change)\n"); |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 487 | } else if (oideq(&p->local, &p->remote)) { |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 488 | /* same change in local and remote; nothing to do */ |
| 489 | trace_printf("\t\t\tskipping (local == remote)\n"); |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 490 | } else if (oideq(&p->local, &uninitialized) || |
| 491 | oideq(&p->local, &p->base)) { |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 492 | /* no local change; adopt remote change */ |
| 493 | trace_printf("\t\t\tno local change, adopted remote\n"); |
brian m. carlson | 5ee8a95 | 2017-05-30 10:30:43 -0700 | [diff] [blame] | 494 | if (add_note(t, &p->obj, &p->remote, |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 495 | combine_notes_overwrite)) |
Johannes Schindelin | 033abf9 | 2018-05-02 11:38:39 +0200 | [diff] [blame] | 496 | BUG("combine_notes_overwrite failed"); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 497 | } else { |
| 498 | /* need file-level merge between local and remote */ |
| 499 | trace_printf("\t\t\tneed content-level merge\n"); |
Johan Herland | 3228e67 | 2010-11-15 00:55:12 +0100 | [diff] [blame] | 500 | conflicts += merge_one_change(o, p, t); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 501 | } |
| 502 | } |
| 503 | |
| 504 | return conflicts; |
| 505 | } |
| 506 | |
| 507 | static int merge_from_diffs(struct notes_merge_options *o, |
Brandon Williams | 9d6babb | 2017-05-30 10:30:59 -0700 | [diff] [blame] | 508 | const struct object_id *base, |
| 509 | const struct object_id *local, |
| 510 | const struct object_id *remote, |
| 511 | struct notes_tree *t) |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 512 | { |
| 513 | struct notes_merge_pair *changes; |
| 514 | int num_changes, conflicts; |
| 515 | |
| 516 | trace_printf("\tmerge_from_diffs(base = %.7s, local = %.7s, " |
Brandon Williams | 9d6babb | 2017-05-30 10:30:59 -0700 | [diff] [blame] | 517 | "remote = %.7s)\n", oid_to_hex(base), oid_to_hex(local), |
| 518 | oid_to_hex(remote)); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 519 | |
| 520 | changes = diff_tree_remote(o, base, remote, &num_changes); |
| 521 | diff_tree_local(o, changes, num_changes, base, local); |
| 522 | |
| 523 | conflicts = merge_changes(o, changes, &num_changes, t); |
| 524 | free(changes); |
| 525 | |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 526 | if (o->verbosity >= 4) |
Nguyễn Thái Ngọc Duy | 2ca0c53 | 2012-06-07 19:05:13 +0700 | [diff] [blame] | 527 | printf(t->dirty ? |
| 528 | "Merge result: %i unmerged notes and a dirty notes tree\n" : |
| 529 | "Merge result: %i unmerged notes and a clean notes tree\n", |
| 530 | conflicts); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 531 | |
| 532 | return conflicts ? -1 : 1; |
| 533 | } |
| 534 | |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 535 | int notes_merge(struct notes_merge_options *o, |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 536 | struct notes_tree *local_tree, |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 537 | struct object_id *result_oid) |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 538 | { |
brian m. carlson | 1e43ed9 | 2017-05-06 22:10:09 +0000 | [diff] [blame] | 539 | struct object_id local_oid, remote_oid; |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 540 | struct commit *local, *remote; |
| 541 | struct commit_list *bases = NULL; |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 542 | const struct object_id *base_oid, *base_tree_oid; |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 543 | int result = 0; |
| 544 | |
| 545 | assert(o->local_ref && o->remote_ref); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 546 | assert(!strcmp(o->local_ref, local_tree->ref)); |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 547 | oidclr(result_oid); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 548 | |
| 549 | trace_printf("notes_merge(o->local_ref = %s, o->remote_ref = %s)\n", |
| 550 | o->local_ref, o->remote_ref); |
| 551 | |
| 552 | /* Dereference o->local_ref into local_sha1 */ |
brian m. carlson | 34c290a | 2017-10-15 22:06:56 +0000 | [diff] [blame] | 553 | if (read_ref_full(o->local_ref, 0, &local_oid, NULL)) |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 554 | die("Failed to resolve local notes ref '%s'", o->local_ref); |
Michael Haggerty | 8d9c501 | 2011-09-15 23:10:25 +0200 | [diff] [blame] | 555 | else if (!check_refname_format(o->local_ref, 0) && |
brian m. carlson | 1e43ed9 | 2017-05-06 22:10:09 +0000 | [diff] [blame] | 556 | is_null_oid(&local_oid)) |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 557 | local = NULL; /* local_oid == null_oid indicates unborn ref */ |
Stefan Beller | 2122f67 | 2018-06-28 18:21:58 -0700 | [diff] [blame] | 558 | else if (!(local = lookup_commit_reference(the_repository, &local_oid))) |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 559 | die("Could not parse local commit %s (%s)", |
brian m. carlson | 1e43ed9 | 2017-05-06 22:10:09 +0000 | [diff] [blame] | 560 | oid_to_hex(&local_oid), o->local_ref); |
| 561 | trace_printf("\tlocal commit: %.7s\n", oid_to_hex(&local_oid)); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 562 | |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 563 | /* Dereference o->remote_ref into remote_oid */ |
brian m. carlson | 1e43ed9 | 2017-05-06 22:10:09 +0000 | [diff] [blame] | 564 | if (get_oid(o->remote_ref, &remote_oid)) { |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 565 | /* |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 566 | * Failed to get remote_oid. If o->remote_ref looks like an |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 567 | * unborn ref, perform the merge using an empty notes tree. |
| 568 | */ |
Michael Haggerty | 8d9c501 | 2011-09-15 23:10:25 +0200 | [diff] [blame] | 569 | if (!check_refname_format(o->remote_ref, 0)) { |
brian m. carlson | 1e43ed9 | 2017-05-06 22:10:09 +0000 | [diff] [blame] | 570 | oidclr(&remote_oid); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 571 | remote = NULL; |
| 572 | } else { |
| 573 | die("Failed to resolve remote notes ref '%s'", |
| 574 | o->remote_ref); |
| 575 | } |
Stefan Beller | 2122f67 | 2018-06-28 18:21:58 -0700 | [diff] [blame] | 576 | } else if (!(remote = lookup_commit_reference(the_repository, &remote_oid))) { |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 577 | die("Could not parse remote commit %s (%s)", |
brian m. carlson | 1e43ed9 | 2017-05-06 22:10:09 +0000 | [diff] [blame] | 578 | oid_to_hex(&remote_oid), o->remote_ref); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 579 | } |
brian m. carlson | 1e43ed9 | 2017-05-06 22:10:09 +0000 | [diff] [blame] | 580 | trace_printf("\tremote commit: %.7s\n", oid_to_hex(&remote_oid)); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 581 | |
| 582 | if (!local && !remote) |
| 583 | die("Cannot merge empty notes ref (%s) into empty notes ref " |
| 584 | "(%s)", o->remote_ref, o->local_ref); |
| 585 | if (!local) { |
| 586 | /* result == remote commit */ |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 587 | oidcpy(result_oid, &remote_oid); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 588 | goto found_result; |
| 589 | } |
| 590 | if (!remote) { |
| 591 | /* result == local commit */ |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 592 | oidcpy(result_oid, &local_oid); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 593 | goto found_result; |
| 594 | } |
| 595 | assert(local && remote); |
| 596 | |
| 597 | /* Find merge bases */ |
Junio C Hamano | 2ce406c | 2014-10-30 12:20:44 -0700 | [diff] [blame] | 598 | bases = get_merge_bases(local, remote); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 599 | if (!bases) { |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 600 | base_oid = &null_oid; |
brian m. carlson | eb0ccfd | 2017-11-12 21:28:54 +0000 | [diff] [blame] | 601 | base_tree_oid = the_hash_algo->empty_tree; |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 602 | if (o->verbosity >= 4) |
| 603 | printf("No merge base found; doing history-less merge\n"); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 604 | } else if (!bases->next) { |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 605 | base_oid = &bases->item->object.oid; |
Derrick Stolee | 2e27bd7 | 2018-04-06 19:09:38 +0000 | [diff] [blame] | 606 | base_tree_oid = get_commit_tree_oid(bases->item); |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 607 | if (o->verbosity >= 4) |
| 608 | printf("One merge base found (%.7s)\n", |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 609 | oid_to_hex(base_oid)); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 610 | } else { |
| 611 | /* TODO: How to handle multiple merge-bases? */ |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 612 | base_oid = &bases->item->object.oid; |
Derrick Stolee | 2e27bd7 | 2018-04-06 19:09:38 +0000 | [diff] [blame] | 613 | base_tree_oid = get_commit_tree_oid(bases->item); |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 614 | if (o->verbosity >= 3) |
| 615 | printf("Multiple merge bases found. Using the first " |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 616 | "(%.7s)\n", oid_to_hex(base_oid)); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 617 | } |
| 618 | |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 619 | if (o->verbosity >= 4) |
| 620 | printf("Merging remote commit %.7s into local commit %.7s with " |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 621 | "merge-base %.7s\n", oid_to_hex(&remote->object.oid), |
| 622 | oid_to_hex(&local->object.oid), |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 623 | oid_to_hex(base_oid)); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 624 | |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 625 | if (oideq(&remote->object.oid, base_oid)) { |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 626 | /* Already merged; result == local commit */ |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 627 | if (o->verbosity >= 2) |
Martin Ågren | 7560f54 | 2017-08-23 19:49:35 +0200 | [diff] [blame] | 628 | printf("Already up to date!\n"); |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 629 | oidcpy(result_oid, &local->object.oid); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 630 | goto found_result; |
| 631 | } |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 632 | if (oideq(&local->object.oid, base_oid)) { |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 633 | /* Fast-forward; result == remote commit */ |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 634 | if (o->verbosity >= 2) |
| 635 | printf("Fast-forward\n"); |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 636 | oidcpy(result_oid, &remote->object.oid); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 637 | goto found_result; |
| 638 | } |
| 639 | |
Derrick Stolee | 2e27bd7 | 2018-04-06 19:09:38 +0000 | [diff] [blame] | 640 | result = merge_from_diffs(o, base_tree_oid, |
| 641 | get_commit_tree_oid(local), |
| 642 | get_commit_tree_oid(remote), local_tree); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 643 | |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 644 | if (result != 0) { /* non-trivial merge (with or without conflicts) */ |
| 645 | /* Commit (partial) result */ |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 646 | struct commit_list *parents = NULL; |
| 647 | commit_list_insert(remote, &parents); /* LIFO order */ |
| 648 | commit_list_insert(local, &parents); |
Patryk Obara | 5078f34 | 2018-01-28 01:13:16 +0100 | [diff] [blame] | 649 | create_notes_commit(local_tree, parents, o->commit_msg.buf, |
| 650 | o->commit_msg.len, result_oid); |
Johan Herland | 2085b16 | 2010-11-15 00:54:11 +0100 | [diff] [blame] | 651 | } |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 652 | |
| 653 | found_result: |
| 654 | free_commit_list(bases); |
Johan Herland | 443259c | 2010-11-09 22:49:53 +0100 | [diff] [blame] | 655 | strbuf_release(&(o->commit_msg)); |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 656 | trace_printf("notes_merge(): result = %i, result_oid = %.7s\n", |
| 657 | result, oid_to_hex(result_oid)); |
Johan Herland | 75ef3f4 | 2010-11-09 22:49:46 +0100 | [diff] [blame] | 658 | return result; |
| 659 | } |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 660 | |
| 661 | int notes_merge_commit(struct notes_merge_options *o, |
| 662 | struct notes_tree *partial_tree, |
| 663 | struct commit *partial_commit, |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 664 | struct object_id *result_oid) |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 665 | { |
| 666 | /* |
| 667 | * Iterate through files in .git/NOTES_MERGE_WORKTREE and add all |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 668 | * found notes to 'partial_tree'. Write the updated notes tree to |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 669 | * the DB, and commit the resulting tree object while reusing the |
| 670 | * commit message and parents from 'partial_commit'. |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 671 | * Finally store the new commit object OID into 'result_oid'. |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 672 | */ |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 673 | DIR *dir; |
| 674 | struct dirent *e; |
| 675 | struct strbuf path = STRBUF_INIT; |
Jeff King | 8597ea3 | 2014-06-10 17:44:13 -0400 | [diff] [blame] | 676 | const char *buffer = get_commit_buffer(partial_commit, NULL); |
Jeff King | bc6b8fc | 2014-06-10 17:41:51 -0400 | [diff] [blame] | 677 | const char *msg = strstr(buffer, "\n\n"); |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 678 | int baselen; |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 679 | |
Jeff King | 8c2ca3a | 2017-04-20 17:09:30 -0400 | [diff] [blame] | 680 | git_path_buf(&path, NOTES_MERGE_WORKTREE); |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 681 | if (o->verbosity >= 3) |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 682 | printf("Committing notes in notes merge worktree at %s\n", |
| 683 | path.buf); |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 684 | |
| 685 | if (!msg || msg[2] == '\0') |
| 686 | die("partial notes commit has empty message"); |
| 687 | msg += 2; |
| 688 | |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 689 | dir = opendir(path.buf); |
| 690 | if (!dir) |
| 691 | die_errno("could not open %s", path.buf); |
| 692 | |
| 693 | strbuf_addch(&path, '/'); |
| 694 | baselen = path.len; |
| 695 | while ((e = readdir(dir)) != NULL) { |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 696 | struct stat st; |
brian m. carlson | 5ee8a95 | 2017-05-30 10:30:43 -0700 | [diff] [blame] | 697 | struct object_id obj_oid, blob_oid; |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 698 | |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 699 | if (is_dot_or_dotdot(e->d_name)) |
| 700 | continue; |
| 701 | |
brian m. carlson | 5ee8a95 | 2017-05-30 10:30:43 -0700 | [diff] [blame] | 702 | if (get_oid_hex(e->d_name, &obj_oid)) { |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 703 | if (o->verbosity >= 3) |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 704 | printf("Skipping non-SHA1 entry '%s%s'\n", |
| 705 | path.buf, e->d_name); |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 706 | continue; |
| 707 | } |
| 708 | |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 709 | strbuf_addstr(&path, e->d_name); |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 710 | /* write file as blob, and add to partial_tree */ |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 711 | if (stat(path.buf, &st)) |
| 712 | die_errno("Failed to stat '%s'", path.buf); |
Patryk Obara | 98e019b | 2017-08-20 22:09:28 +0200 | [diff] [blame] | 713 | if (index_path(&blob_oid, path.buf, &st, HASH_WRITE_OBJECT)) |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 714 | die("Failed to write blob object from '%s'", path.buf); |
brian m. carlson | 5ee8a95 | 2017-05-30 10:30:43 -0700 | [diff] [blame] | 715 | if (add_note(partial_tree, &obj_oid, &blob_oid, NULL)) |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 716 | die("Failed to add resolved note '%s' to notes tree", |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 717 | path.buf); |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 718 | if (o->verbosity >= 4) |
| 719 | printf("Added resolved note for object %s: %s\n", |
brian m. carlson | 5ee8a95 | 2017-05-30 10:30:43 -0700 | [diff] [blame] | 720 | oid_to_hex(&obj_oid), oid_to_hex(&blob_oid)); |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 721 | strbuf_setlen(&path, baselen); |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 722 | } |
| 723 | |
Patryk Obara | 5078f34 | 2018-01-28 01:13:16 +0100 | [diff] [blame] | 724 | create_notes_commit(partial_tree, partial_commit->parents, msg, |
| 725 | strlen(msg), result_oid); |
Jeff King | bc6b8fc | 2014-06-10 17:41:51 -0400 | [diff] [blame] | 726 | unuse_commit_buffer(partial_commit, buffer); |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 727 | if (o->verbosity >= 4) |
| 728 | printf("Finalized notes merge commit: %s\n", |
Brandon Williams | 5237e0e | 2017-05-30 10:30:58 -0700 | [diff] [blame] | 729 | oid_to_hex(result_oid)); |
Johan Herland | a0be62c | 2012-03-12 15:57:13 +0100 | [diff] [blame] | 730 | strbuf_release(&path); |
| 731 | closedir(dir); |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 732 | return 0; |
| 733 | } |
| 734 | |
| 735 | int notes_merge_abort(struct notes_merge_options *o) |
| 736 | { |
Johan Herland | dabba59 | 2012-03-15 15:58:56 +0100 | [diff] [blame] | 737 | /* |
| 738 | * Remove all files within .git/NOTES_MERGE_WORKTREE. We do not remove |
| 739 | * the .git/NOTES_MERGE_WORKTREE directory itself, since it might be |
| 740 | * the current working directory of the user. |
| 741 | */ |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 742 | struct strbuf buf = STRBUF_INIT; |
| 743 | int ret; |
| 744 | |
Jeff King | 8c2ca3a | 2017-04-20 17:09:30 -0400 | [diff] [blame] | 745 | git_path_buf(&buf, NOTES_MERGE_WORKTREE); |
Jonathan Nieder | 5f9f8d1 | 2011-11-17 19:27:46 -0600 | [diff] [blame] | 746 | if (o->verbosity >= 3) |
Johan Herland | dabba59 | 2012-03-15 15:58:56 +0100 | [diff] [blame] | 747 | printf("Removing notes merge worktree at %s/*\n", buf.buf); |
| 748 | ret = remove_dir_recursively(&buf, REMOVE_DIR_KEEP_TOPLEVEL); |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 749 | strbuf_release(&buf); |
| 750 | return ret; |
| 751 | } |