2 * Low level 3-way in-core file merge.
4 * Copyright (c) 2007 Junio C Hamano
9 #include "xdiff-interface.h"
10 #include "run-command.h"
13 struct ll_merge_driver;
15 typedef int (*ll_merge_fn)(const struct ll_merge_driver *,
19 mmfile_t *src1, const char *name1,
20 mmfile_t *src2, const char *name2,
21 int virtual_ancestor);
23 struct ll_merge_driver {
25 const char *description;
27 const char *recursive;
28 struct ll_merge_driver *next;
35 static int ll_binary_merge(const struct ll_merge_driver *drv_unused,
37 const char *path_unused,
39 mmfile_t *src1, const char *name1,
40 mmfile_t *src2, const char *name2,
44 * The tentative merge result is "ours" for the final round,
45 * or common ancestor for an internal merge. Still return
46 * "conflicted merge" status.
48 mmfile_t *stolen = virtual_ancestor ? orig : src1;
50 result->ptr = stolen->ptr;
51 result->size = stolen->size;
56 static int ll_xdl_merge(const struct ll_merge_driver *drv_unused,
58 const char *path_unused,
60 mmfile_t *src1, const char *name1,
61 mmfile_t *src2, const char *name2,
67 if (buffer_is_binary(orig->ptr, orig->size) ||
68 buffer_is_binary(src1->ptr, src1->size) ||
69 buffer_is_binary(src2->ptr, src2->size)) {
70 warning("Cannot merge binary files: %s vs. %s\n",
72 return ll_binary_merge(drv_unused, result,
79 memset(&xpp, 0, sizeof(xpp));
80 if (git_xmerge_style >= 0)
81 style = git_xmerge_style;
82 return xdl_merge(orig,
85 &xpp, XDL_MERGE_ZEALOUS | style,
89 static int ll_union_merge(const struct ll_merge_driver *drv_unused,
91 const char *path_unused,
93 mmfile_t *src1, const char *name1,
94 mmfile_t *src2, const char *name2,
99 const int marker_size = 7;
100 int status, saved_style;
102 /* We have to force the RCS "merge" style */
103 saved_style = git_xmerge_style;
104 git_xmerge_style = 0;
105 status = ll_xdl_merge(drv_unused, result, path_unused,
106 orig, src1, NULL, src2, NULL,
108 git_xmerge_style = saved_style;
112 src = dst = result->ptr;
115 if ((marker_size < size) &&
116 (*src == '<' || *src == '=' || *src == '>')) {
119 for (i = 0; i < marker_size; i++)
122 if (src[marker_size] != '\n')
124 src += marker_size + 1;
125 size -= marker_size + 1;
133 } while (ch != '\n' && size);
135 result->size = dst - result->ptr;
139 #define LL_BINARY_MERGE 0
140 #define LL_TEXT_MERGE 1
141 #define LL_UNION_MERGE 2
142 static struct ll_merge_driver ll_merge_drv[] = {
143 { "binary", "built-in binary merge", ll_binary_merge },
144 { "text", "built-in 3-way text merge", ll_xdl_merge },
145 { "union", "built-in union merge", ll_union_merge },
148 static void create_temp(mmfile_t *src, char *path)
152 strcpy(path, ".merge_file_XXXXXX");
154 if (write_in_full(fd, src->ptr, src->size) != src->size)
155 die("unable to write temp-file");
160 * User defined low-level merge driver support.
162 static int ll_ext_merge(const struct ll_merge_driver *fn,
166 mmfile_t *src1, const char *name1,
167 mmfile_t *src2, const char *name2,
168 int virtual_ancestor)
171 struct strbuf cmd = STRBUF_INIT;
172 struct strbuf_expand_dict_entry dict[] = {
178 struct child_process child;
179 const char *args[20];
183 if (fn->cmdline == NULL)
184 die("custom merge driver %s lacks command line.", fn->name);
188 create_temp(orig, temp[0]);
189 create_temp(src1, temp[1]);
190 create_temp(src2, temp[2]);
192 strbuf_expand(&cmd, fn->cmdline, strbuf_expand_dict_cb, &dict);
194 memset(&child, 0, sizeof(child));
201 status = run_command(&child);
202 if (status < -ERR_RUN_COMMAND_FORK)
203 ; /* failure in run-command */
206 fd = open(temp[1], O_RDONLY);
211 result->size = st.st_size;
212 result->ptr = xmalloc(result->size + 1);
213 if (read_in_full(fd, result->ptr, result->size) != result->size) {
221 for (i = 0; i < 3; i++)
223 strbuf_release(&cmd);
228 * merge.default and merge.driver configuration items
230 static struct ll_merge_driver *ll_user_merge, **ll_user_merge_tail;
231 static const char *default_ll_merge;
233 static int read_merge_config(const char *var, const char *value, void *cb)
235 struct ll_merge_driver *fn;
236 const char *ep, *name;
239 if (!strcmp(var, "merge.default")) {
241 default_ll_merge = strdup(value);
246 * We are not interested in anything but "merge.<name>.variable";
247 * especially, we do not want to look at variables such as
248 * "merge.summary", "merge.tool", and "merge.verbosity".
250 if (prefixcmp(var, "merge.") || (ep = strrchr(var, '.')) == var + 5)
254 * Find existing one as we might be processing merge.<name>.var2
255 * after seeing merge.<name>.var1.
259 for (fn = ll_user_merge; fn; fn = fn->next)
260 if (!strncmp(fn->name, name, namelen) && !fn->name[namelen])
263 fn = xcalloc(1, sizeof(struct ll_merge_driver));
264 fn->name = xmemdupz(name, namelen);
265 fn->fn = ll_ext_merge;
266 *ll_user_merge_tail = fn;
267 ll_user_merge_tail = &(fn->next);
272 if (!strcmp("name", ep)) {
274 return error("%s: lacks value", var);
275 fn->description = strdup(value);
279 if (!strcmp("driver", ep)) {
281 return error("%s: lacks value", var);
283 * merge.<name>.driver specifies the command line:
287 * The command-line will be interpolated with the following
288 * tokens and is given to the shell:
290 * %O - temporary file name for the merge base.
291 * %A - temporary file name for our version.
292 * %B - temporary file name for the other branches' version.
294 * The external merge driver should write the results in the
295 * file named by %A, and signal that it has done with zero exit
298 fn->cmdline = strdup(value);
302 if (!strcmp("recursive", ep)) {
304 return error("%s: lacks value", var);
305 fn->recursive = strdup(value);
312 static void initialize_ll_merge(void)
314 if (ll_user_merge_tail)
316 ll_user_merge_tail = &ll_user_merge;
317 git_config(read_merge_config, NULL);
320 static const struct ll_merge_driver *find_ll_merge_driver(const char *merge_attr)
322 struct ll_merge_driver *fn;
326 initialize_ll_merge();
328 if (ATTR_TRUE(merge_attr))
329 return &ll_merge_drv[LL_TEXT_MERGE];
330 else if (ATTR_FALSE(merge_attr))
331 return &ll_merge_drv[LL_BINARY_MERGE];
332 else if (ATTR_UNSET(merge_attr)) {
333 if (!default_ll_merge)
334 return &ll_merge_drv[LL_TEXT_MERGE];
336 name = default_ll_merge;
341 for (fn = ll_user_merge; fn; fn = fn->next)
342 if (!strcmp(fn->name, name))
345 for (i = 0; i < ARRAY_SIZE(ll_merge_drv); i++)
346 if (!strcmp(ll_merge_drv[i].name, name))
347 return &ll_merge_drv[i];
349 /* default to the 3-way */
350 return &ll_merge_drv[LL_TEXT_MERGE];
353 static const char *git_path_check_merge(const char *path)
355 static struct git_attr_check attr_merge_check;
357 if (!attr_merge_check.attr)
358 attr_merge_check.attr = git_attr("merge", 5);
360 if (git_checkattr(path, 1, &attr_merge_check))
362 return attr_merge_check.value;
365 int ll_merge(mmbuffer_t *result_buf,
368 mmfile_t *ours, const char *our_label,
369 mmfile_t *theirs, const char *their_label,
370 int virtual_ancestor)
372 const char *ll_driver_name;
373 const struct ll_merge_driver *driver;
375 ll_driver_name = git_path_check_merge(path);
376 driver = find_ll_merge_driver(ll_driver_name);
378 if (virtual_ancestor && driver->recursive)
379 driver = find_ll_merge_driver(driver->recursive);
380 return driver->fn(driver, result_buf, path,
383 theirs, their_label, virtual_ancestor);