blob: 5764e2b0ef06a3251d93e5535e85861ad3503fe9 [file] [log] [blame]
Johan Herland75ef3f42010-11-09 22:49:46 +01001#include "cache.h"
2#include "commit.h"
3#include "refs.h"
Stefan Bellercbd53a22018-05-15 16:42:15 -07004#include "object-store.h"
Stefan Beller2122f672018-06-28 18:21:58 -07005#include "repository.h"
Johan Herland2085b162010-11-15 00:54:11 +01006#include "diff.h"
7#include "diffcore.h"
Johan Herland809f38c2010-11-09 22:49:51 +01008#include "xdiff-interface.h"
9#include "ll-merge.h"
10#include "dir.h"
Johan Herland56881842010-11-09 22:49:47 +010011#include "notes.h"
Johan Herland75ef3f42010-11-09 22:49:46 +010012#include "notes-merge.h"
Johan Herland443259c2010-11-09 22:49:53 +010013#include "strbuf.h"
Johan Herlandbf9a05b2013-06-12 02:13:01 +020014#include "notes-utils.h"
Derrick Stolee64043552018-07-20 16:33:04 +000015#include "commit-reach.h"
Johan Herland75ef3f42010-11-09 22:49:46 +010016
Johan Herland2085b162010-11-15 00:54:11 +010017struct notes_merge_pair {
brian m. carlsone910bb12016-09-05 20:08:01 +000018 struct object_id obj, base, local, remote;
Johan Herland2085b162010-11-15 00:54:11 +010019};
20
Johan Herland75ef3f42010-11-09 22:49:46 +010021void init_notes_merge_options(struct notes_merge_options *o)
22{
23 memset(o, 0, sizeof(struct notes_merge_options));
Johan Herland443259c2010-11-09 22:49:53 +010024 strbuf_init(&(o->commit_msg), 0);
Johan Herland75ef3f42010-11-09 22:49:46 +010025 o->verbosity = NOTES_MERGE_VERBOSITY_DEFAULT;
26}
27
Brandon Williams4d778962017-05-30 10:31:01 -070028static int path_to_oid(const char *path, struct object_id *oid)
Johan Herland2085b162010-11-15 00:54:11 +010029{
Brandon Williams4d778962017-05-30 10:31:01 -070030 char hex_oid[GIT_SHA1_HEXSZ];
Johan Herland2085b162010-11-15 00:54:11 +010031 int i = 0;
Brandon Williams4d778962017-05-30 10:31:01 -070032 while (*path && i < GIT_SHA1_HEXSZ) {
Johan Herland2085b162010-11-15 00:54:11 +010033 if (*path != '/')
Brandon Williams4d778962017-05-30 10:31:01 -070034 hex_oid[i++] = *path;
Johan Herland2085b162010-11-15 00:54:11 +010035 path++;
36 }
Brandon Williams4d778962017-05-30 10:31:01 -070037 if (*path || i != GIT_SHA1_HEXSZ)
Johan Herland2085b162010-11-15 00:54:11 +010038 return -1;
Brandon Williams4d778962017-05-30 10:31:01 -070039 return get_oid_hex(hex_oid, oid);
Johan Herland2085b162010-11-15 00:54:11 +010040}
41
Brandon Williams4d778962017-05-30 10:31:01 -070042static int verify_notes_filepair(struct diff_filepair *p, struct object_id *oid)
Johan Herland2085b162010-11-15 00:54:11 +010043{
44 switch (p->status) {
45 case DIFF_STATUS_MODIFIED:
46 assert(p->one->mode == p->two->mode);
brian m. carlsona0d12c42016-06-24 23:09:23 +000047 assert(!is_null_oid(&p->one->oid));
48 assert(!is_null_oid(&p->two->oid));
Johan Herland2085b162010-11-15 00:54:11 +010049 break;
50 case DIFF_STATUS_ADDED:
brian m. carlsona0d12c42016-06-24 23:09:23 +000051 assert(is_null_oid(&p->one->oid));
Johan Herland2085b162010-11-15 00:54:11 +010052 break;
53 case DIFF_STATUS_DELETED:
brian m. carlsona0d12c42016-06-24 23:09:23 +000054 assert(is_null_oid(&p->two->oid));
Johan Herland2085b162010-11-15 00:54:11 +010055 break;
56 default:
57 return -1;
58 }
59 assert(!strcmp(p->one->path, p->two->path));
Brandon Williams4d778962017-05-30 10:31:01 -070060 return path_to_oid(p->one->path, oid);
Johan Herland2085b162010-11-15 00:54:11 +010061}
62
63static struct notes_merge_pair *find_notes_merge_pair_pos(
Brandon Williamsd7a7c702017-05-30 10:31:00 -070064 struct notes_merge_pair *list, int len, struct object_id *obj,
Johan Herland2085b162010-11-15 00:54:11 +010065 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 Williamsd7a7c702017-05-30 10:31:00 -070081 cmp = oidcmp(obj, &list[i].obj);
Johan Herland2085b162010-11-15 00:54:11 +010082 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é Scharfef331ab92017-07-15 22:00:45 +0200105 MOVE_ARRAY(list + i + 1, list + i, len - i);
Johan Herland2085b162010-11-15 00:54:11 +0100106 memset(list + i, 0, sizeof(struct notes_merge_pair));
107 }
108 }
109 last_index = i;
110 return list + i;
111}
112
brian m. carlsone910bb12016-09-05 20:08:01 +0000113static struct object_id uninitialized = {
Johan Herland2085b162010-11-15 00:54:11 +0100114 "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" \
brian m. carlsone910bb12016-09-05 20:08:01 +0000115 "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff"
116};
Johan Herland2085b162010-11-15 00:54:11 +0100117
118static struct notes_merge_pair *diff_tree_remote(struct notes_merge_options *o,
Brandon Williams9d6babb2017-05-30 10:30:59 -0700119 const struct object_id *base,
120 const struct object_id *remote,
Johan Herland2085b162010-11-15 00:54:11 +0100121 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 Williams9d6babb2017-05-30 10:30:59 -0700128 oid_to_hex(base), oid_to_hex(remote));
Johan Herland2085b162010-11-15 00:54:11 +0100129
130 diff_setup(&opt);
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700131 opt.flags.recursive = 1;
Johan Herland2085b162010-11-15 00:54:11 +0100132 opt.output_format = DIFF_FORMAT_NO_OUTPUT;
Thomas Rast28452652012-08-03 14:16:24 +0200133 diff_setup_done(&opt);
Brandon Williams66f414f2017-05-30 10:31:03 -0700134 diff_tree_oid(base, remote, "", &opt);
Johan Herland2085b162010-11-15 00:54:11 +0100135 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 Williamsd7a7c702017-05-30 10:31:00 -0700143 struct object_id obj;
Johan Herland2085b162010-11-15 00:54:11 +0100144
Brandon Williams4d778962017-05-30 10:31:01 -0700145 if (verify_notes_filepair(p, &obj)) {
Johan Herland2085b162010-11-15 00:54:11 +0100146 trace_printf("\t\tCannot merge entry '%s' (%c): "
147 "%.7s -> %.7s. Skipping!\n", p->one->path,
brian m. carlsona0d12c42016-06-24 23:09:23 +0000148 p->status, oid_to_hex(&p->one->oid),
149 oid_to_hex(&p->two->oid));
Johan Herland2085b162010-11-15 00:54:11 +0100150 continue;
151 }
Brandon Williamsd7a7c702017-05-30 10:31:00 -0700152 mp = find_notes_merge_pair_pos(changes, len, &obj, 1, &occupied);
Johan Herland2085b162010-11-15 00:54:11 +0100153 if (occupied) {
154 /* We've found an addition/deletion pair */
Jeff King4a7e27e2018-08-28 17:22:40 -0400155 assert(oideq(&mp->obj, &obj));
brian m. carlsona0d12c42016-06-24 23:09:23 +0000156 if (is_null_oid(&p->one->oid)) { /* addition */
brian m. carlsone910bb12016-09-05 20:08:01 +0000157 assert(is_null_oid(&mp->remote));
158 oidcpy(&mp->remote, &p->two->oid);
brian m. carlsona0d12c42016-06-24 23:09:23 +0000159 } else if (is_null_oid(&p->two->oid)) { /* deletion */
brian m. carlsone910bb12016-09-05 20:08:01 +0000160 assert(is_null_oid(&mp->base));
161 oidcpy(&mp->base, &p->one->oid);
Johan Herland2085b162010-11-15 00:54:11 +0100162 } else
163 assert(!"Invalid existing change recorded");
164 } else {
Brandon Williamsd7a7c702017-05-30 10:31:00 -0700165 oidcpy(&mp->obj, &obj);
brian m. carlsone910bb12016-09-05 20:08:01 +0000166 oidcpy(&mp->base, &p->one->oid);
167 oidcpy(&mp->local, &uninitialized);
168 oidcpy(&mp->remote, &p->two->oid);
Johan Herland2085b162010-11-15 00:54:11 +0100169 len++;
170 }
171 trace_printf("\t\tStored remote change for %s: %.7s -> %.7s\n",
brian m. carlsone910bb12016-09-05 20:08:01 +0000172 oid_to_hex(&mp->obj), oid_to_hex(&mp->base),
173 oid_to_hex(&mp->remote));
Johan Herland2085b162010-11-15 00:54:11 +0100174 }
175 diff_flush(&opt);
Junio C Hamanoed6e8032016-06-02 14:09:22 -0700176 clear_pathspec(&opt.pathspec);
Johan Herland2085b162010-11-15 00:54:11 +0100177
178 *num_changes = len;
179 return changes;
180}
181
182static void diff_tree_local(struct notes_merge_options *o,
183 struct notes_merge_pair *changes, int len,
Brandon Williams9d6babb2017-05-30 10:30:59 -0700184 const struct object_id *base,
185 const struct object_id *local)
Johan Herland2085b162010-11-15 00:54:11 +0100186{
187 struct diff_options opt;
188 int i;
189
190 trace_printf("\tdiff_tree_local(len = %i, base = %.7s, local = %.7s)\n",
Brandon Williams9d6babb2017-05-30 10:30:59 -0700191 len, oid_to_hex(base), oid_to_hex(local));
Johan Herland2085b162010-11-15 00:54:11 +0100192
193 diff_setup(&opt);
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700194 opt.flags.recursive = 1;
Johan Herland2085b162010-11-15 00:54:11 +0100195 opt.output_format = DIFF_FORMAT_NO_OUTPUT;
Thomas Rast28452652012-08-03 14:16:24 +0200196 diff_setup_done(&opt);
Brandon Williams66f414f2017-05-30 10:31:03 -0700197 diff_tree_oid(base, local, "", &opt);
Johan Herland2085b162010-11-15 00:54:11 +0100198 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 Williamsd7a7c702017-05-30 10:31:00 -0700204 struct object_id obj;
Johan Herland2085b162010-11-15 00:54:11 +0100205
Brandon Williams4d778962017-05-30 10:31:01 -0700206 if (verify_notes_filepair(p, &obj)) {
Johan Herland2085b162010-11-15 00:54:11 +0100207 trace_printf("\t\tCannot merge entry '%s' (%c): "
208 "%.7s -> %.7s. Skipping!\n", p->one->path,
brian m. carlsona0d12c42016-06-24 23:09:23 +0000209 p->status, oid_to_hex(&p->one->oid),
210 oid_to_hex(&p->two->oid));
Johan Herland2085b162010-11-15 00:54:11 +0100211 continue;
212 }
Brandon Williamsd7a7c702017-05-30 10:31:00 -0700213 mp = find_notes_merge_pair_pos(changes, len, &obj, 0, &match);
Johan Herland2085b162010-11-15 00:54:11 +0100214 if (!match) {
215 trace_printf("\t\tIgnoring local-only change for %s: "
Brandon Williamsd7a7c702017-05-30 10:31:00 -0700216 "%.7s -> %.7s\n", oid_to_hex(&obj),
brian m. carlsona0d12c42016-06-24 23:09:23 +0000217 oid_to_hex(&p->one->oid),
218 oid_to_hex(&p->two->oid));
Johan Herland2085b162010-11-15 00:54:11 +0100219 continue;
220 }
221
Jeff King4a7e27e2018-08-28 17:22:40 -0400222 assert(oideq(&mp->obj, &obj));
brian m. carlsona0d12c42016-06-24 23:09:23 +0000223 if (is_null_oid(&p->two->oid)) { /* deletion */
Johan Herland2085b162010-11-15 00:54:11 +0100224 /*
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 King4a7e27e2018-08-28 17:22:40 -0400233 if (oideq(&mp->local, &uninitialized))
brian m. carlsone910bb12016-09-05 20:08:01 +0000234 oidclr(&mp->local);
brian m. carlsona0d12c42016-06-24 23:09:23 +0000235 } else if (is_null_oid(&p->one->oid)) { /* addition */
Johan Herland2085b162010-11-15 00:54:11 +0100236 /*
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. carlsone910bb12016-09-05 20:08:01 +0000244 assert(is_null_oid(&mp->local) ||
Jeff King4a7e27e2018-08-28 17:22:40 -0400245 oideq(&mp->local, &uninitialized));
brian m. carlsone910bb12016-09-05 20:08:01 +0000246 oidcpy(&mp->local, &p->two->oid);
Johan Herland2085b162010-11-15 00:54:11 +0100247 } 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 King4a7e27e2018-08-28 17:22:40 -0400253 assert(oideq(&p->one->oid, &mp->base));
254 assert(oideq(&mp->local, &uninitialized));
brian m. carlsone910bb12016-09-05 20:08:01 +0000255 oidcpy(&mp->local, &p->two->oid);
Johan Herland2085b162010-11-15 00:54:11 +0100256 }
257 trace_printf("\t\tStored local change for %s: %.7s -> %.7s\n",
brian m. carlsone910bb12016-09-05 20:08:01 +0000258 oid_to_hex(&mp->obj), oid_to_hex(&mp->base),
259 oid_to_hex(&mp->local));
Johan Herland2085b162010-11-15 00:54:11 +0100260 }
261 diff_flush(&opt);
Junio C Hamanoed6e8032016-06-02 14:09:22 -0700262 clear_pathspec(&opt.pathspec);
Johan Herland2085b162010-11-15 00:54:11 +0100263}
264
Johan Herland809f38c2010-11-09 22:49:51 +0100265static 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 Herlanddabba592012-03-15 15:58:56 +0100272 if (file_exists(git_path(NOTES_MERGE_WORKTREE)) &&
273 !is_empty_dir(git_path(NOTES_MERGE_WORKTREE))) {
Johan Herland809f38c2010-11-09 22:49:51 +0100274 if (advice_resolve_conflict)
Vasco Almeidac041c6d2016-09-19 13:08:20 +0000275 die(_("You have not concluded your previous "
Johan Herland809f38c2010-11-09 22:49:51 +0100276 "notes merge (%s exists).\nPlease, use "
277 "'git notes merge --commit' or 'git notes "
Johan Herland6abb3652010-11-09 22:49:52 +0100278 "merge --abort' to commit/abort the "
Johan Herland809f38c2010-11-09 22:49:51 +0100279 "previous merge before you start a new "
Vasco Almeidac041c6d2016-09-19 13:08:20 +0000280 "notes merge."), git_path("NOTES_MERGE_*"));
Johan Herland809f38c2010-11-09 22:49:51 +0100281 else
Vasco Almeidac041c6d2016-09-19 13:08:20 +0000282 die(_("You have not concluded your notes merge "
283 "(%s exists)."), git_path("NOTES_MERGE_*"));
Johan Herland809f38c2010-11-09 22:49:51 +0100284 }
285
Nguyễn Thái Ngọc Duydcf69262014-11-30 15:24:27 +0700286 if (safe_create_leading_directories_const(git_path(
Johan Herland809f38c2010-11-09 22:49:51 +0100287 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 Williams9e5e0c22017-05-30 10:31:02 -0700297static void write_buf_to_worktree(const struct object_id *obj,
Johan Herland809f38c2010-11-09 22:49:51 +0100298 const char *buf, unsigned long size)
299{
300 int fd;
Brandon Williams9e5e0c22017-05-30 10:31:02 -0700301 char *path = git_pathdup(NOTES_MERGE_WORKTREE "/%s", oid_to_hex(obj));
Nguyễn Thái Ngọc Duydcf69262014-11-30 15:24:27 +0700302 if (safe_create_leading_directories_const(path))
Johan Herland809f38c2010-11-09 22:49:51 +0100303 die_errno("unable to create directory for '%s'", path);
Johan Herland809f38c2010-11-09 22:49:51 +0100304
René Scharfedeb9c152016-07-07 22:08:30 +0200305 fd = xopen(path, O_WRONLY | O_EXCL | O_CREAT, 0666);
Johan Herland809f38c2010-11-09 22:49:51 +0100306
307 while (size > 0) {
Jeff King634eb822017-09-13 13:17:44 -0400308 ssize_t ret = write_in_full(fd, buf, size);
Johan Herland809f38c2010-11-09 22:49:51 +0100309 if (ret < 0) {
310 /* Ignore epipe */
311 if (errno == EPIPE)
312 break;
313 die_errno("notes-merge");
Johan Herland809f38c2010-11-09 22:49:51 +0100314 }
315 size -= ret;
316 buf += ret;
317 }
318
319 close(fd);
Jeff Kingfcd12db2015-08-10 05:35:31 -0400320 free(path);
Johan Herland809f38c2010-11-09 22:49:51 +0100321}
322
Brandon Williams9e5e0c22017-05-30 10:31:02 -0700323static void write_note_to_worktree(const struct object_id *obj,
324 const struct object_id *note)
Johan Herland809f38c2010-11-09 22:49:51 +0100325{
326 enum object_type type;
327 unsigned long size;
brian m. carlsonb4f5aca2018-03-12 02:27:53 +0000328 void *buf = read_object_file(note, &type, &size);
Johan Herland809f38c2010-11-09 22:49:51 +0100329
330 if (!buf)
331 die("cannot read note %s for object %s",
Brandon Williams9e5e0c22017-05-30 10:31:02 -0700332 oid_to_hex(note), oid_to_hex(obj));
Johan Herland809f38c2010-11-09 22:49:51 +0100333 if (type != OBJ_BLOB)
334 die("blob expected in note %s for object %s",
Brandon Williams9e5e0c22017-05-30 10:31:02 -0700335 oid_to_hex(note), oid_to_hex(obj));
Johan Herland809f38c2010-11-09 22:49:51 +0100336 write_buf_to_worktree(obj, buf, size);
337 free(buf);
338}
339
340static 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. carlsond4493472016-09-05 20:08:02 +0000347 read_mmblob(&base, &p->base);
348 read_mmblob(&local, &p->local);
349 read_mmblob(&remote, &p->remote);
Johan Herland809f38c2010-11-09 22:49:51 +0100350
brian m. carlsone910bb12016-09-05 20:08:01 +0000351 status = ll_merge(&result_buf, oid_to_hex(&p->obj), &base, NULL,
Stephen Boydc2e86ad2011-03-22 00:51:05 -0700352 &local, o->local_ref, &remote, o->remote_ref, NULL);
Johan Herland809f38c2010-11-09 22:49:51 +0100353
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 Williams9e5e0c22017-05-30 10:31:02 -0700361 write_buf_to_worktree(&p->obj, result_buf.ptr, result_buf.size);
Johan Herland809f38c2010-11-09 22:49:51 +0100362 free(result_buf.ptr);
363
364 return status;
365}
366
367static 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. carlsone910bb12016-09-05 20:08:01 +0000376 oid_to_hex(&p->obj), oid_to_hex(&p->base),
377 oid_to_hex(&p->local), oid_to_hex(&p->remote));
Johan Herland809f38c2010-11-09 22:49:51 +0100378
Johan Herland443259c2010-11-09 22:49:53 +0100379 /* 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. carlsone910bb12016-09-05 20:08:01 +0000383 strbuf_addf(&(o->commit_msg), "\t%s\n", oid_to_hex(&p->obj));
Johan Herland443259c2010-11-09 22:49:53 +0100384
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600385 if (o->verbosity >= 2)
brian m. carlsone910bb12016-09-05 20:08:01 +0000386 printf("Auto-merging notes for %s\n", oid_to_hex(&p->obj));
Johan Herland809f38c2010-11-09 22:49:51 +0100387 check_notes_merge_worktree(o);
brian m. carlsone910bb12016-09-05 20:08:01 +0000388 if (is_null_oid(&p->local)) {
Johan Herland809f38c2010-11-09 22:49:51 +0100389 /* D/F conflict, checkout p->remote */
brian m. carlsone910bb12016-09-05 20:08:01 +0000390 assert(!is_null_oid(&p->remote));
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600391 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. carlsone910bb12016-09-05 20:08:01 +0000395 oid_to_hex(&p->obj), lref, rref, rref);
Brandon Williams9e5e0c22017-05-30 10:31:02 -0700396 write_note_to_worktree(&p->obj, &p->remote);
brian m. carlsone910bb12016-09-05 20:08:01 +0000397 } else if (is_null_oid(&p->remote)) {
Johan Herland809f38c2010-11-09 22:49:51 +0100398 /* D/F conflict, checkout p->local */
brian m. carlsone910bb12016-09-05 20:08:01 +0000399 assert(!is_null_oid(&p->local));
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600400 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. carlsone910bb12016-09-05 20:08:01 +0000404 oid_to_hex(&p->obj), rref, lref, lref);
Brandon Williams9e5e0c22017-05-30 10:31:02 -0700405 write_note_to_worktree(&p->obj, &p->local);
Johan Herland809f38c2010-11-09 22:49:51 +0100406 } else {
407 /* "regular" conflict, checkout result of ll_merge() */
408 const char *reason = "content";
brian m. carlsone910bb12016-09-05 20:08:01 +0000409 if (is_null_oid(&p->base))
Johan Herland809f38c2010-11-09 22:49:51 +0100410 reason = "add/add";
brian m. carlsone910bb12016-09-05 20:08:01 +0000411 assert(!is_null_oid(&p->local));
412 assert(!is_null_oid(&p->remote));
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600413 if (o->verbosity >= 1)
414 printf("CONFLICT (%s): Merge conflict in notes for "
brian m. carlsone910bb12016-09-05 20:08:01 +0000415 "object %s\n", reason,
416 oid_to_hex(&p->obj));
Johan Herland809f38c2010-11-09 22:49:51 +0100417 ll_merge_in_worktree(o, p);
418 }
419
420 trace_printf("\t\t\tremoving from partial merge result\n");
brian m. carlsone910bb12016-09-05 20:08:01 +0000421 remove_note(t, p->obj.hash);
Johan Herland809f38c2010-11-09 22:49:51 +0100422
423 return 1;
424}
425
Johan Herland3228e672010-11-15 00:55:12 +0100426static int merge_one_change(struct notes_merge_options *o,
427 struct notes_merge_pair *p, struct notes_tree *t)
428{
429 /*
Johan Herland809f38c2010-11-09 22:49:51 +0100430 * 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 Herland3228e672010-11-15 00:55:12 +0100433 */
434 switch (o->strategy) {
435 case NOTES_MERGE_RESOLVE_MANUAL:
Johan Herland809f38c2010-11-09 22:49:51 +0100436 return merge_one_change_manual(o, p, t);
Johan Herland3228e672010-11-15 00:55:12 +0100437 case NOTES_MERGE_RESOLVE_OURS:
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600438 if (o->verbosity >= 2)
439 printf("Using local notes for %s\n",
brian m. carlsone910bb12016-09-05 20:08:01 +0000440 oid_to_hex(&p->obj));
Johan Herland3228e672010-11-15 00:55:12 +0100441 /* nothing to do */
442 return 0;
443 case NOTES_MERGE_RESOLVE_THEIRS:
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600444 if (o->verbosity >= 2)
445 printf("Using remote notes for %s\n",
brian m. carlsone910bb12016-09-05 20:08:01 +0000446 oid_to_hex(&p->obj));
brian m. carlson5ee8a952017-05-30 10:30:43 -0700447 if (add_note(t, &p->obj, &p->remote, combine_notes_overwrite))
Johannes Schindelin033abf92018-05-02 11:38:39 +0200448 BUG("combine_notes_overwrite failed");
Johan Herland3228e672010-11-15 00:55:12 +0100449 return 0;
450 case NOTES_MERGE_RESOLVE_UNION:
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600451 if (o->verbosity >= 2)
452 printf("Concatenating local and remote notes for %s\n",
brian m. carlsone910bb12016-09-05 20:08:01 +0000453 oid_to_hex(&p->obj));
brian m. carlson5ee8a952017-05-30 10:30:43 -0700454 if (add_note(t, &p->obj, &p->remote, combine_notes_concatenate))
Johan Herland3228e672010-11-15 00:55:12 +0100455 die("failed to concatenate notes "
456 "(combine_notes_concatenate)");
457 return 0;
Johan Herlanda6a09092010-11-15 00:57:17 +0100458 case NOTES_MERGE_RESOLVE_CAT_SORT_UNIQ:
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600459 if (o->verbosity >= 2)
460 printf("Concatenating unique lines in local and remote "
brian m. carlsone910bb12016-09-05 20:08:01 +0000461 "notes for %s\n", oid_to_hex(&p->obj));
brian m. carlson5ee8a952017-05-30 10:30:43 -0700462 if (add_note(t, &p->obj, &p->remote, combine_notes_cat_sort_uniq))
Johan Herlanda6a09092010-11-15 00:57:17 +0100463 die("failed to concatenate notes "
464 "(combine_notes_cat_sort_uniq)");
465 return 0;
Johan Herland3228e672010-11-15 00:55:12 +0100466 }
467 die("Unknown strategy (%i).", o->strategy);
468}
469
Johan Herland2085b162010-11-15 00:54:11 +0100470static 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. carlsone910bb12016-09-05 20:08:01 +0000480 oid_to_hex(&p->obj), oid_to_hex(&p->base),
481 oid_to_hex(&p->local),
482 oid_to_hex(&p->remote));
Johan Herland2085b162010-11-15 00:54:11 +0100483
Jeff King4a7e27e2018-08-28 17:22:40 -0400484 if (oideq(&p->base, &p->remote)) {
Johan Herland2085b162010-11-15 00:54:11 +0100485 /* no remote change; nothing to do */
486 trace_printf("\t\t\tskipping (no remote change)\n");
Jeff King4a7e27e2018-08-28 17:22:40 -0400487 } else if (oideq(&p->local, &p->remote)) {
Johan Herland2085b162010-11-15 00:54:11 +0100488 /* same change in local and remote; nothing to do */
489 trace_printf("\t\t\tskipping (local == remote)\n");
Jeff King4a7e27e2018-08-28 17:22:40 -0400490 } else if (oideq(&p->local, &uninitialized) ||
491 oideq(&p->local, &p->base)) {
Johan Herland2085b162010-11-15 00:54:11 +0100492 /* no local change; adopt remote change */
493 trace_printf("\t\t\tno local change, adopted remote\n");
brian m. carlson5ee8a952017-05-30 10:30:43 -0700494 if (add_note(t, &p->obj, &p->remote,
Johan Herland2085b162010-11-15 00:54:11 +0100495 combine_notes_overwrite))
Johannes Schindelin033abf92018-05-02 11:38:39 +0200496 BUG("combine_notes_overwrite failed");
Johan Herland2085b162010-11-15 00:54:11 +0100497 } else {
498 /* need file-level merge between local and remote */
499 trace_printf("\t\t\tneed content-level merge\n");
Johan Herland3228e672010-11-15 00:55:12 +0100500 conflicts += merge_one_change(o, p, t);
Johan Herland2085b162010-11-15 00:54:11 +0100501 }
502 }
503
504 return conflicts;
505}
506
507static int merge_from_diffs(struct notes_merge_options *o,
Brandon Williams9d6babb2017-05-30 10:30:59 -0700508 const struct object_id *base,
509 const struct object_id *local,
510 const struct object_id *remote,
511 struct notes_tree *t)
Johan Herland2085b162010-11-15 00:54:11 +0100512{
513 struct notes_merge_pair *changes;
514 int num_changes, conflicts;
515
516 trace_printf("\tmerge_from_diffs(base = %.7s, local = %.7s, "
Brandon Williams9d6babb2017-05-30 10:30:59 -0700517 "remote = %.7s)\n", oid_to_hex(base), oid_to_hex(local),
518 oid_to_hex(remote));
Johan Herland2085b162010-11-15 00:54:11 +0100519
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 Nieder5f9f8d12011-11-17 19:27:46 -0600526 if (o->verbosity >= 4)
Nguyễn Thái Ngọc Duy2ca0c532012-06-07 19:05:13 +0700527 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 Herland2085b162010-11-15 00:54:11 +0100531
532 return conflicts ? -1 : 1;
533}
534
Johan Herland75ef3f42010-11-09 22:49:46 +0100535int notes_merge(struct notes_merge_options *o,
Johan Herland2085b162010-11-15 00:54:11 +0100536 struct notes_tree *local_tree,
Brandon Williams5237e0e2017-05-30 10:30:58 -0700537 struct object_id *result_oid)
Johan Herland75ef3f42010-11-09 22:49:46 +0100538{
brian m. carlson1e43ed92017-05-06 22:10:09 +0000539 struct object_id local_oid, remote_oid;
Johan Herland75ef3f42010-11-09 22:49:46 +0100540 struct commit *local, *remote;
541 struct commit_list *bases = NULL;
Brandon Williams5237e0e2017-05-30 10:30:58 -0700542 const struct object_id *base_oid, *base_tree_oid;
Johan Herland75ef3f42010-11-09 22:49:46 +0100543 int result = 0;
544
545 assert(o->local_ref && o->remote_ref);
Johan Herland2085b162010-11-15 00:54:11 +0100546 assert(!strcmp(o->local_ref, local_tree->ref));
Brandon Williams5237e0e2017-05-30 10:30:58 -0700547 oidclr(result_oid);
Johan Herland75ef3f42010-11-09 22:49:46 +0100548
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. carlson34c290a2017-10-15 22:06:56 +0000553 if (read_ref_full(o->local_ref, 0, &local_oid, NULL))
Johan Herland75ef3f42010-11-09 22:49:46 +0100554 die("Failed to resolve local notes ref '%s'", o->local_ref);
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200555 else if (!check_refname_format(o->local_ref, 0) &&
brian m. carlson1e43ed92017-05-06 22:10:09 +0000556 is_null_oid(&local_oid))
Brandon Williams5237e0e2017-05-30 10:30:58 -0700557 local = NULL; /* local_oid == null_oid indicates unborn ref */
Stefan Beller2122f672018-06-28 18:21:58 -0700558 else if (!(local = lookup_commit_reference(the_repository, &local_oid)))
Johan Herland75ef3f42010-11-09 22:49:46 +0100559 die("Could not parse local commit %s (%s)",
brian m. carlson1e43ed92017-05-06 22:10:09 +0000560 oid_to_hex(&local_oid), o->local_ref);
561 trace_printf("\tlocal commit: %.7s\n", oid_to_hex(&local_oid));
Johan Herland75ef3f42010-11-09 22:49:46 +0100562
Brandon Williams5237e0e2017-05-30 10:30:58 -0700563 /* Dereference o->remote_ref into remote_oid */
brian m. carlson1e43ed92017-05-06 22:10:09 +0000564 if (get_oid(o->remote_ref, &remote_oid)) {
Johan Herland75ef3f42010-11-09 22:49:46 +0100565 /*
Brandon Williams5237e0e2017-05-30 10:30:58 -0700566 * Failed to get remote_oid. If o->remote_ref looks like an
Johan Herland75ef3f42010-11-09 22:49:46 +0100567 * unborn ref, perform the merge using an empty notes tree.
568 */
Michael Haggerty8d9c5012011-09-15 23:10:25 +0200569 if (!check_refname_format(o->remote_ref, 0)) {
brian m. carlson1e43ed92017-05-06 22:10:09 +0000570 oidclr(&remote_oid);
Johan Herland75ef3f42010-11-09 22:49:46 +0100571 remote = NULL;
572 } else {
573 die("Failed to resolve remote notes ref '%s'",
574 o->remote_ref);
575 }
Stefan Beller2122f672018-06-28 18:21:58 -0700576 } else if (!(remote = lookup_commit_reference(the_repository, &remote_oid))) {
Johan Herland75ef3f42010-11-09 22:49:46 +0100577 die("Could not parse remote commit %s (%s)",
brian m. carlson1e43ed92017-05-06 22:10:09 +0000578 oid_to_hex(&remote_oid), o->remote_ref);
Johan Herland75ef3f42010-11-09 22:49:46 +0100579 }
brian m. carlson1e43ed92017-05-06 22:10:09 +0000580 trace_printf("\tremote commit: %.7s\n", oid_to_hex(&remote_oid));
Johan Herland75ef3f42010-11-09 22:49:46 +0100581
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 Williams5237e0e2017-05-30 10:30:58 -0700587 oidcpy(result_oid, &remote_oid);
Johan Herland75ef3f42010-11-09 22:49:46 +0100588 goto found_result;
589 }
590 if (!remote) {
591 /* result == local commit */
Brandon Williams5237e0e2017-05-30 10:30:58 -0700592 oidcpy(result_oid, &local_oid);
Johan Herland75ef3f42010-11-09 22:49:46 +0100593 goto found_result;
594 }
595 assert(local && remote);
596
597 /* Find merge bases */
Junio C Hamano2ce406c2014-10-30 12:20:44 -0700598 bases = get_merge_bases(local, remote);
Johan Herland75ef3f42010-11-09 22:49:46 +0100599 if (!bases) {
Brandon Williams5237e0e2017-05-30 10:30:58 -0700600 base_oid = &null_oid;
brian m. carlsoneb0ccfd2017-11-12 21:28:54 +0000601 base_tree_oid = the_hash_algo->empty_tree;
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600602 if (o->verbosity >= 4)
603 printf("No merge base found; doing history-less merge\n");
Johan Herland75ef3f42010-11-09 22:49:46 +0100604 } else if (!bases->next) {
Brandon Williams5237e0e2017-05-30 10:30:58 -0700605 base_oid = &bases->item->object.oid;
Derrick Stolee2e27bd72018-04-06 19:09:38 +0000606 base_tree_oid = get_commit_tree_oid(bases->item);
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600607 if (o->verbosity >= 4)
608 printf("One merge base found (%.7s)\n",
Brandon Williams5237e0e2017-05-30 10:30:58 -0700609 oid_to_hex(base_oid));
Johan Herland75ef3f42010-11-09 22:49:46 +0100610 } else {
611 /* TODO: How to handle multiple merge-bases? */
Brandon Williams5237e0e2017-05-30 10:30:58 -0700612 base_oid = &bases->item->object.oid;
Derrick Stolee2e27bd72018-04-06 19:09:38 +0000613 base_tree_oid = get_commit_tree_oid(bases->item);
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600614 if (o->verbosity >= 3)
615 printf("Multiple merge bases found. Using the first "
Brandon Williams5237e0e2017-05-30 10:30:58 -0700616 "(%.7s)\n", oid_to_hex(base_oid));
Johan Herland75ef3f42010-11-09 22:49:46 +0100617 }
618
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600619 if (o->verbosity >= 4)
620 printf("Merging remote commit %.7s into local commit %.7s with "
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000621 "merge-base %.7s\n", oid_to_hex(&remote->object.oid),
622 oid_to_hex(&local->object.oid),
Brandon Williams5237e0e2017-05-30 10:30:58 -0700623 oid_to_hex(base_oid));
Johan Herland75ef3f42010-11-09 22:49:46 +0100624
Jeff King4a7e27e2018-08-28 17:22:40 -0400625 if (oideq(&remote->object.oid, base_oid)) {
Johan Herland75ef3f42010-11-09 22:49:46 +0100626 /* Already merged; result == local commit */
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600627 if (o->verbosity >= 2)
Martin Ågren7560f542017-08-23 19:49:35 +0200628 printf("Already up to date!\n");
Brandon Williams5237e0e2017-05-30 10:30:58 -0700629 oidcpy(result_oid, &local->object.oid);
Johan Herland75ef3f42010-11-09 22:49:46 +0100630 goto found_result;
631 }
Jeff King4a7e27e2018-08-28 17:22:40 -0400632 if (oideq(&local->object.oid, base_oid)) {
Johan Herland75ef3f42010-11-09 22:49:46 +0100633 /* Fast-forward; result == remote commit */
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600634 if (o->verbosity >= 2)
635 printf("Fast-forward\n");
Brandon Williams5237e0e2017-05-30 10:30:58 -0700636 oidcpy(result_oid, &remote->object.oid);
Johan Herland75ef3f42010-11-09 22:49:46 +0100637 goto found_result;
638 }
639
Derrick Stolee2e27bd72018-04-06 19:09:38 +0000640 result = merge_from_diffs(o, base_tree_oid,
641 get_commit_tree_oid(local),
642 get_commit_tree_oid(remote), local_tree);
Johan Herland2085b162010-11-15 00:54:11 +0100643
Johan Herland809f38c2010-11-09 22:49:51 +0100644 if (result != 0) { /* non-trivial merge (with or without conflicts) */
645 /* Commit (partial) result */
Johan Herland2085b162010-11-15 00:54:11 +0100646 struct commit_list *parents = NULL;
647 commit_list_insert(remote, &parents); /* LIFO order */
648 commit_list_insert(local, &parents);
Patryk Obara5078f342018-01-28 01:13:16 +0100649 create_notes_commit(local_tree, parents, o->commit_msg.buf,
650 o->commit_msg.len, result_oid);
Johan Herland2085b162010-11-15 00:54:11 +0100651 }
Johan Herland75ef3f42010-11-09 22:49:46 +0100652
653found_result:
654 free_commit_list(bases);
Johan Herland443259c2010-11-09 22:49:53 +0100655 strbuf_release(&(o->commit_msg));
Brandon Williams5237e0e2017-05-30 10:30:58 -0700656 trace_printf("notes_merge(): result = %i, result_oid = %.7s\n",
657 result, oid_to_hex(result_oid));
Johan Herland75ef3f42010-11-09 22:49:46 +0100658 return result;
659}
Johan Herland6abb3652010-11-09 22:49:52 +0100660
661int notes_merge_commit(struct notes_merge_options *o,
662 struct notes_tree *partial_tree,
663 struct commit *partial_commit,
Brandon Williams5237e0e2017-05-30 10:30:58 -0700664 struct object_id *result_oid)
Johan Herland6abb3652010-11-09 22:49:52 +0100665{
666 /*
667 * Iterate through files in .git/NOTES_MERGE_WORKTREE and add all
Johan Herlanda0be62c2012-03-12 15:57:13 +0100668 * found notes to 'partial_tree'. Write the updated notes tree to
Johan Herland6abb3652010-11-09 22:49:52 +0100669 * the DB, and commit the resulting tree object while reusing the
670 * commit message and parents from 'partial_commit'.
Brandon Williams5237e0e2017-05-30 10:30:58 -0700671 * Finally store the new commit object OID into 'result_oid'.
Johan Herland6abb3652010-11-09 22:49:52 +0100672 */
Johan Herlanda0be62c2012-03-12 15:57:13 +0100673 DIR *dir;
674 struct dirent *e;
675 struct strbuf path = STRBUF_INIT;
Jeff King8597ea32014-06-10 17:44:13 -0400676 const char *buffer = get_commit_buffer(partial_commit, NULL);
Jeff Kingbc6b8fc2014-06-10 17:41:51 -0400677 const char *msg = strstr(buffer, "\n\n");
Johan Herlanda0be62c2012-03-12 15:57:13 +0100678 int baselen;
Johan Herland6abb3652010-11-09 22:49:52 +0100679
Jeff King8c2ca3a2017-04-20 17:09:30 -0400680 git_path_buf(&path, NOTES_MERGE_WORKTREE);
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600681 if (o->verbosity >= 3)
Johan Herlanda0be62c2012-03-12 15:57:13 +0100682 printf("Committing notes in notes merge worktree at %s\n",
683 path.buf);
Johan Herland6abb3652010-11-09 22:49:52 +0100684
685 if (!msg || msg[2] == '\0')
686 die("partial notes commit has empty message");
687 msg += 2;
688
Johan Herlanda0be62c2012-03-12 15:57:13 +0100689 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 Herland6abb3652010-11-09 22:49:52 +0100696 struct stat st;
brian m. carlson5ee8a952017-05-30 10:30:43 -0700697 struct object_id obj_oid, blob_oid;
Johan Herland6abb3652010-11-09 22:49:52 +0100698
Johan Herlanda0be62c2012-03-12 15:57:13 +0100699 if (is_dot_or_dotdot(e->d_name))
700 continue;
701
brian m. carlson5ee8a952017-05-30 10:30:43 -0700702 if (get_oid_hex(e->d_name, &obj_oid)) {
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600703 if (o->verbosity >= 3)
Johan Herlanda0be62c2012-03-12 15:57:13 +0100704 printf("Skipping non-SHA1 entry '%s%s'\n",
705 path.buf, e->d_name);
Johan Herland6abb3652010-11-09 22:49:52 +0100706 continue;
707 }
708
Johan Herlanda0be62c2012-03-12 15:57:13 +0100709 strbuf_addstr(&path, e->d_name);
Johan Herland6abb3652010-11-09 22:49:52 +0100710 /* write file as blob, and add to partial_tree */
Johan Herlanda0be62c2012-03-12 15:57:13 +0100711 if (stat(path.buf, &st))
712 die_errno("Failed to stat '%s'", path.buf);
Patryk Obara98e019b2017-08-20 22:09:28 +0200713 if (index_path(&blob_oid, path.buf, &st, HASH_WRITE_OBJECT))
Johan Herlanda0be62c2012-03-12 15:57:13 +0100714 die("Failed to write blob object from '%s'", path.buf);
brian m. carlson5ee8a952017-05-30 10:30:43 -0700715 if (add_note(partial_tree, &obj_oid, &blob_oid, NULL))
Johan Herland6abb3652010-11-09 22:49:52 +0100716 die("Failed to add resolved note '%s' to notes tree",
Johan Herlanda0be62c2012-03-12 15:57:13 +0100717 path.buf);
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600718 if (o->verbosity >= 4)
719 printf("Added resolved note for object %s: %s\n",
brian m. carlson5ee8a952017-05-30 10:30:43 -0700720 oid_to_hex(&obj_oid), oid_to_hex(&blob_oid));
Johan Herlanda0be62c2012-03-12 15:57:13 +0100721 strbuf_setlen(&path, baselen);
Johan Herland6abb3652010-11-09 22:49:52 +0100722 }
723
Patryk Obara5078f342018-01-28 01:13:16 +0100724 create_notes_commit(partial_tree, partial_commit->parents, msg,
725 strlen(msg), result_oid);
Jeff Kingbc6b8fc2014-06-10 17:41:51 -0400726 unuse_commit_buffer(partial_commit, buffer);
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600727 if (o->verbosity >= 4)
728 printf("Finalized notes merge commit: %s\n",
Brandon Williams5237e0e2017-05-30 10:30:58 -0700729 oid_to_hex(result_oid));
Johan Herlanda0be62c2012-03-12 15:57:13 +0100730 strbuf_release(&path);
731 closedir(dir);
Johan Herland6abb3652010-11-09 22:49:52 +0100732 return 0;
733}
734
735int notes_merge_abort(struct notes_merge_options *o)
736{
Johan Herlanddabba592012-03-15 15:58:56 +0100737 /*
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 Herland6abb3652010-11-09 22:49:52 +0100742 struct strbuf buf = STRBUF_INIT;
743 int ret;
744
Jeff King8c2ca3a2017-04-20 17:09:30 -0400745 git_path_buf(&buf, NOTES_MERGE_WORKTREE);
Jonathan Nieder5f9f8d12011-11-17 19:27:46 -0600746 if (o->verbosity >= 3)
Johan Herlanddabba592012-03-15 15:58:56 +0100747 printf("Removing notes merge worktree at %s/*\n", buf.buf);
748 ret = remove_dir_recursively(&buf, REMOVE_DIR_KEEP_TOPLEVEL);
Johan Herland6abb3652010-11-09 22:49:52 +0100749 strbuf_release(&buf);
750 return ret;
751}