1 #define USE_THE_INDEX_COMPATIBILITY_MACROS
4 #include "xdiff-interface.h"
5 #include "object-store.h"
6 #include "repository.h"
9 #include "merge-blobs.h"
11 static const char merge_tree_usage
[] = "git merge-tree <base-tree> <branch1> <branch2>";
14 struct merge_list
*next
;
15 struct merge_list
*link
; /* other stages for this object */
17 unsigned int stage
: 2;
23 static struct merge_list
*merge_result
, **merge_result_end
= &merge_result
;
25 static void add_merge_entry(struct merge_list
*entry
)
27 *merge_result_end
= entry
;
28 merge_result_end
= &entry
->next
;
31 static void merge_trees(struct tree_desc t
[3], const char *base
);
33 static const char *explanation(struct merge_list
*entry
)
35 switch (entry
->stage
) {
39 return "added in remote";
42 return "added in both";
43 return "added in local";
49 return "removed in both";
52 return "changed in both";
54 if (entry
->stage
== 3)
55 return "removed in local";
56 return "removed in remote";
59 static void *result(struct merge_list
*entry
, unsigned long *size
)
61 enum object_type type
;
62 struct blob
*base
, *our
, *their
;
63 const char *path
= entry
->path
;
66 return read_object_file(&entry
->blob
->object
.oid
, &type
, size
);
68 if (entry
->stage
== 1) {
73 if (entry
&& entry
->stage
== 2) {
80 return merge_blobs(the_repository
->index
, path
,
81 base
, our
, their
, size
);
84 static void *origin(struct merge_list
*entry
, unsigned long *size
)
86 enum object_type type
;
88 if (entry
->stage
== 2)
89 return read_object_file(&entry
->blob
->object
.oid
,
96 static int show_outf(void *priv_
, mmbuffer_t
*mb
, int nbuf
)
99 for (i
= 0; i
< nbuf
; i
++)
100 printf("%.*s", (int) mb
[i
].size
, mb
[i
].ptr
);
104 static void show_diff(struct merge_list
*entry
)
113 memset(&xecfg
, 0, sizeof(xecfg
));
116 ecb
.out_line
= show_outf
;
119 src
.ptr
= origin(entry
, &size
);
123 dst
.ptr
= result(entry
, &size
);
127 if (xdi_diff(&src
, &dst
, &xpp
, &xecfg
, &ecb
))
128 die("unable to generate diff");
133 static void show_result_list(struct merge_list
*entry
)
135 printf("%s\n", explanation(entry
));
137 struct merge_list
*link
= entry
->link
;
138 static const char *desc
[4] = { "result", "base", "our", "their" };
139 printf(" %-6s %o %s %s\n", desc
[entry
->stage
], entry
->mode
, oid_to_hex(&entry
->blob
->object
.oid
), entry
->path
);
144 static void show_result(void)
146 struct merge_list
*walk
;
150 show_result_list(walk
);
156 /* An empty entry never compares same, not even to another empty entry */
157 static int same_entry(struct name_entry
*a
, struct name_entry
*b
)
159 return !is_null_oid(&a
->oid
) &&
160 !is_null_oid(&b
->oid
) &&
161 oideq(&a
->oid
, &b
->oid
) &&
165 static int both_empty(struct name_entry
*a
, struct name_entry
*b
)
167 return is_null_oid(&a
->oid
) && is_null_oid(&b
->oid
);
170 static struct merge_list
*create_entry(unsigned stage
, unsigned mode
, const struct object_id
*oid
, const char *path
)
172 struct merge_list
*res
= xcalloc(1, sizeof(*res
));
177 res
->blob
= lookup_blob(the_repository
, oid
);
181 static char *traverse_path(const struct traverse_info
*info
, const struct name_entry
*n
)
183 struct strbuf buf
= STRBUF_INIT
;
184 strbuf_make_traverse_path(&buf
, info
, n
->path
, n
->pathlen
);
185 return strbuf_detach(&buf
, NULL
);
188 static void resolve(const struct traverse_info
*info
, struct name_entry
*ours
, struct name_entry
*result
)
190 struct merge_list
*orig
, *final
;
193 /* If it's already ours, don't bother showing it */
197 path
= traverse_path(info
, result
);
198 orig
= create_entry(2, ours
->mode
, &ours
->oid
, path
);
199 final
= create_entry(0, result
->mode
, &result
->oid
, path
);
203 add_merge_entry(final
);
206 static void unresolved_directory(const struct traverse_info
*info
,
207 struct name_entry n
[3])
209 struct repository
*r
= the_repository
;
211 struct name_entry
*p
;
212 struct tree_desc t
[3];
213 void *buf0
, *buf1
, *buf2
;
215 for (p
= n
; p
< n
+ 3; p
++) {
216 if (p
->mode
&& S_ISDIR(p
->mode
))
220 return; /* there is no tree here */
222 newbase
= traverse_path(info
, p
);
224 #define ENTRY_OID(e) (((e)->mode && S_ISDIR((e)->mode)) ? &(e)->oid : NULL)
225 buf0
= fill_tree_descriptor(r
, t
+ 0, ENTRY_OID(n
+ 0));
226 buf1
= fill_tree_descriptor(r
, t
+ 1, ENTRY_OID(n
+ 1));
227 buf2
= fill_tree_descriptor(r
, t
+ 2, ENTRY_OID(n
+ 2));
230 merge_trees(t
, newbase
);
239 static struct merge_list
*link_entry(unsigned stage
, const struct traverse_info
*info
, struct name_entry
*n
, struct merge_list
*entry
)
242 struct merge_list
*link
;
249 path
= traverse_path(info
, n
);
250 link
= create_entry(stage
, n
->mode
, &n
->oid
, path
);
255 static void unresolved(const struct traverse_info
*info
, struct name_entry n
[3])
257 struct merge_list
*entry
= NULL
;
259 unsigned dirmask
= 0, mask
= 0;
261 for (i
= 0; i
< 3; i
++) {
264 * Treat missing entries as directories so that we return
265 * after unresolved_directory has handled this.
267 if (!n
[i
].mode
|| S_ISDIR(n
[i
].mode
))
271 unresolved_directory(info
, n
);
276 if (n
[2].mode
&& !S_ISDIR(n
[2].mode
))
277 entry
= link_entry(3, info
, n
+ 2, entry
);
278 if (n
[1].mode
&& !S_ISDIR(n
[1].mode
))
279 entry
= link_entry(2, info
, n
+ 1, entry
);
280 if (n
[0].mode
&& !S_ISDIR(n
[0].mode
))
281 entry
= link_entry(1, info
, n
+ 0, entry
);
283 add_merge_entry(entry
);
287 * Merge two trees together (t[1] and t[2]), using a common base (t[0])
290 * This walks the (sorted) trees in lock-step, checking every possible
291 * name. Note that directories automatically sort differently from other
292 * files (see "base_name_compare"), so you'll never see file/directory
293 * conflicts, because they won't ever compare the same.
295 * IOW, if a directory changes to a filename, it will automatically be
296 * seen as the directory going away, and the filename being created.
298 * Think of this as a three-way diff.
300 * The output will be either:
302 * "0 mode sha1 filename"
303 * NOTE NOTE NOTE! FIXME! We really really need to walk the index
304 * in parallel with this too!
307 * "1 mode sha1 filename"
308 * "2 mode sha1 filename"
309 * "3 mode sha1 filename"
310 * where not all of the 1/2/3 lines may exist, of course.
312 * The successful merge rules are the same as for the three-way merge
315 static int threeway_callback(int n
, unsigned long mask
, unsigned long dirmask
, struct name_entry
*entry
, struct traverse_info
*info
)
318 if (same_entry(entry
+1, entry
+2) || both_empty(entry
+1, entry
+2)) {
319 /* Modified, added or removed identically */
320 resolve(info
, NULL
, entry
+1);
324 if (same_entry(entry
+0, entry
+1)) {
325 if (!is_null_oid(&entry
[2].oid
) && !S_ISDIR(entry
[2].mode
)) {
326 /* We did not touch, they modified -- take theirs */
327 resolve(info
, entry
+1, entry
+2);
331 * If we did not touch a directory but they made it
332 * into a file, we fall through and unresolved()
333 * recurses down. Likewise for the opposite case.
337 if (same_entry(entry
+0, entry
+2) || both_empty(entry
+0, entry
+2)) {
338 /* We added, modified or removed, they did not touch -- take ours */
339 resolve(info
, NULL
, entry
+1);
343 unresolved(info
, entry
);
347 static void merge_trees(struct tree_desc t
[3], const char *base
)
349 struct traverse_info info
;
351 setup_traverse_info(&info
, base
);
352 info
.fn
= threeway_callback
;
353 traverse_trees(&the_index
, 3, t
, &info
);
356 static void *get_tree_descriptor(struct repository
*r
,
357 struct tree_desc
*desc
,
360 struct object_id oid
;
363 if (repo_get_oid(r
, rev
, &oid
))
364 die("unknown rev %s", rev
);
365 buf
= fill_tree_descriptor(r
, desc
, &oid
);
367 die("%s is not a tree", rev
);
371 int cmd_merge_tree(int argc
, const char **argv
, const char *prefix
)
373 struct repository
*r
= the_repository
;
374 struct tree_desc t
[3];
375 void *buf1
, *buf2
, *buf3
;
378 usage(merge_tree_usage
);
380 buf1
= get_tree_descriptor(r
, t
+0, argv
[1]);
381 buf2
= get_tree_descriptor(r
, t
+1, argv
[2]);
382 buf3
= get_tree_descriptor(r
, t
+2, argv
[3]);