2007-12-24 09:36:00 +01:00
|
|
|
/*
|
|
|
|
* Low level 3-way in-core file merge.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 Junio C Hamano
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cache.h"
|
|
|
|
#include "attr.h"
|
|
|
|
#include "xdiff-interface.h"
|
|
|
|
#include "run-command.h"
|
|
|
|
#include "ll-merge.h"
|
2015-06-05 00:10:29 +02:00
|
|
|
#include "quote.h"
|
2007-12-24 09:36:00 +01:00
|
|
|
|
|
|
|
struct ll_merge_driver;
|
|
|
|
|
|
|
|
typedef int (*ll_merge_fn)(const struct ll_merge_driver *,
|
|
|
|
mmbuffer_t *result,
|
|
|
|
const char *path,
|
2010-03-21 01:38:58 +01:00
|
|
|
mmfile_t *orig, const char *orig_name,
|
2007-12-24 09:36:00 +01:00
|
|
|
mmfile_t *src1, const char *name1,
|
|
|
|
mmfile_t *src2, const char *name2,
|
2010-08-26 07:49:53 +02:00
|
|
|
const struct ll_merge_options *opts,
|
2010-01-16 07:37:32 +01:00
|
|
|
int marker_size);
|
2007-12-24 09:36:00 +01:00
|
|
|
|
|
|
|
struct ll_merge_driver {
|
|
|
|
const char *name;
|
|
|
|
const char *description;
|
|
|
|
ll_merge_fn fn;
|
|
|
|
const char *recursive;
|
|
|
|
struct ll_merge_driver *next;
|
|
|
|
char *cmdline;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Built-in low-levels
|
|
|
|
*/
|
|
|
|
static int ll_binary_merge(const struct ll_merge_driver *drv_unused,
|
|
|
|
mmbuffer_t *result,
|
ll-merge: warn about inability to merge binary files only when we can't
When a path being merged is auto detected to be a binary file, we
warned "Cannot merge binary files" before switching to activate the
binary ll-merge driver. When we are merging with the -Xours/theirs
option, however, we know what the "clean" merge result is, and the
warning is inappropriate.
In addition, when the path is explicitly marked as a binary file,
this warning was not issued, even though without -Xours/theirs, we
cannot cleanly automerge such a path, which was inconsistent.
Move the warning code from ll_xdl_merge() to ll_binary_merge(), and
issue the message only when we cannot cleanly automerge.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-09-12 11:01:52 +02:00
|
|
|
const char *path,
|
2010-03-21 01:38:58 +01:00
|
|
|
mmfile_t *orig, const char *orig_name,
|
2007-12-24 09:36:00 +01:00
|
|
|
mmfile_t *src1, const char *name1,
|
|
|
|
mmfile_t *src2, const char *name2,
|
2010-08-26 07:49:53 +02:00
|
|
|
const struct ll_merge_options *opts,
|
|
|
|
int marker_size)
|
2007-12-24 09:36:00 +01:00
|
|
|
{
|
2010-08-26 07:49:53 +02:00
|
|
|
mmfile_t *stolen;
|
|
|
|
assert(opts);
|
|
|
|
|
2007-12-24 09:36:00 +01:00
|
|
|
/*
|
2012-09-09 06:27:19 +02:00
|
|
|
* The tentative merge result is the or common ancestor for an internal merge.
|
2007-12-24 09:36:00 +01:00
|
|
|
*/
|
2012-09-09 06:27:19 +02:00
|
|
|
if (opts->virtual_ancestor) {
|
|
|
|
stolen = orig;
|
|
|
|
} else {
|
|
|
|
switch (opts->variant) {
|
|
|
|
default:
|
2012-09-15 06:39:56 +02:00
|
|
|
warning("Cannot merge binary files: %s (%s vs. %s)",
|
ll-merge: warn about inability to merge binary files only when we can't
When a path being merged is auto detected to be a binary file, we
warned "Cannot merge binary files" before switching to activate the
binary ll-merge driver. When we are merging with the -Xours/theirs
option, however, we know what the "clean" merge result is, and the
warning is inappropriate.
In addition, when the path is explicitly marked as a binary file,
this warning was not issued, even though without -Xours/theirs, we
cannot cleanly automerge such a path, which was inconsistent.
Move the warning code from ll_xdl_merge() to ll_binary_merge(), and
issue the message only when we cannot cleanly automerge.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-09-12 11:01:52 +02:00
|
|
|
path, name1, name2);
|
|
|
|
/* fallthru */
|
2012-09-09 06:27:19 +02:00
|
|
|
case XDL_MERGE_FAVOR_OURS:
|
|
|
|
stolen = src1;
|
|
|
|
break;
|
|
|
|
case XDL_MERGE_FAVOR_THEIRS:
|
|
|
|
stolen = src2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-12-24 09:36:00 +01:00
|
|
|
|
|
|
|
result->ptr = stolen->ptr;
|
|
|
|
result->size = stolen->size;
|
|
|
|
stolen->ptr = NULL;
|
2012-09-09 06:27:19 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* With -Xtheirs or -Xours, we have cleanly merged;
|
|
|
|
* otherwise we got a conflict.
|
|
|
|
*/
|
|
|
|
return (opts->variant ? 0 : 1);
|
2007-12-24 09:36:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ll_xdl_merge(const struct ll_merge_driver *drv_unused,
|
|
|
|
mmbuffer_t *result,
|
2009-07-01 22:18:04 +02:00
|
|
|
const char *path,
|
2010-03-21 01:38:58 +01:00
|
|
|
mmfile_t *orig, const char *orig_name,
|
2007-12-24 09:36:00 +01:00
|
|
|
mmfile_t *src1, const char *name1,
|
|
|
|
mmfile_t *src2, const char *name2,
|
2010-08-26 07:49:53 +02:00
|
|
|
const struct ll_merge_options *opts,
|
|
|
|
int marker_size)
|
2007-12-24 09:36:00 +01:00
|
|
|
{
|
2010-01-17 06:01:28 +01:00
|
|
|
xmparam_t xmp;
|
2010-08-26 07:49:53 +02:00
|
|
|
assert(opts);
|
2007-12-24 09:36:00 +01:00
|
|
|
|
|
|
|
if (buffer_is_binary(orig->ptr, orig->size) ||
|
|
|
|
buffer_is_binary(src1->ptr, src1->size) ||
|
|
|
|
buffer_is_binary(src2->ptr, src2->size)) {
|
|
|
|
return ll_binary_merge(drv_unused, result,
|
2009-07-01 22:18:04 +02:00
|
|
|
path,
|
2010-03-21 01:38:58 +01:00
|
|
|
orig, orig_name,
|
|
|
|
src1, name1,
|
2007-12-24 09:36:00 +01:00
|
|
|
src2, name2,
|
2010-08-26 07:49:53 +02:00
|
|
|
opts, marker_size);
|
2007-12-24 09:36:00 +01:00
|
|
|
}
|
|
|
|
|
2010-01-17 06:01:28 +01:00
|
|
|
memset(&xmp, 0, sizeof(xmp));
|
2010-03-01 22:46:26 +01:00
|
|
|
xmp.level = XDL_MERGE_ZEALOUS;
|
2010-08-26 07:49:53 +02:00
|
|
|
xmp.favor = opts->variant;
|
2010-08-26 07:50:45 +02:00
|
|
|
xmp.xpp.flags = opts->xdl_opts;
|
2008-08-29 19:59:16 +02:00
|
|
|
if (git_xmerge_style >= 0)
|
2010-03-01 22:46:26 +01:00
|
|
|
xmp.style = git_xmerge_style;
|
2010-01-16 07:37:32 +01:00
|
|
|
if (marker_size > 0)
|
|
|
|
xmp.marker_size = marker_size;
|
2010-03-21 01:38:58 +01:00
|
|
|
xmp.ancestor = orig_name;
|
2010-03-21 01:35:18 +01:00
|
|
|
xmp.file1 = name1;
|
|
|
|
xmp.file2 = name2;
|
|
|
|
return xdl_merge(orig, src1, src2, &xmp, result);
|
2007-12-24 09:36:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ll_union_merge(const struct ll_merge_driver *drv_unused,
|
|
|
|
mmbuffer_t *result,
|
|
|
|
const char *path_unused,
|
2010-03-21 01:38:58 +01:00
|
|
|
mmfile_t *orig, const char *orig_name,
|
2007-12-24 09:36:00 +01:00
|
|
|
mmfile_t *src1, const char *name1,
|
|
|
|
mmfile_t *src2, const char *name2,
|
2010-08-26 07:49:53 +02:00
|
|
|
const struct ll_merge_options *opts,
|
|
|
|
int marker_size)
|
2007-12-24 09:36:00 +01:00
|
|
|
{
|
2010-03-01 22:46:25 +01:00
|
|
|
/* Use union favor */
|
2010-08-26 07:49:53 +02:00
|
|
|
struct ll_merge_options o;
|
|
|
|
assert(opts);
|
|
|
|
o = *opts;
|
|
|
|
o.variant = XDL_MERGE_FAVOR_UNION;
|
2010-03-01 22:46:25 +01:00
|
|
|
return ll_xdl_merge(drv_unused, result, path_unused,
|
2010-03-21 01:38:58 +01:00
|
|
|
orig, NULL, src1, NULL, src2, NULL,
|
2010-08-26 07:49:53 +02:00
|
|
|
&o, marker_size);
|
2007-12-24 09:36:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#define LL_BINARY_MERGE 0
|
|
|
|
#define LL_TEXT_MERGE 1
|
|
|
|
#define LL_UNION_MERGE 2
|
|
|
|
static struct ll_merge_driver ll_merge_drv[] = {
|
|
|
|
{ "binary", "built-in binary merge", ll_binary_merge },
|
|
|
|
{ "text", "built-in 3-way text merge", ll_xdl_merge },
|
|
|
|
{ "union", "built-in union merge", ll_union_merge },
|
|
|
|
};
|
|
|
|
|
|
|
|
static void create_temp(mmfile_t *src, char *path)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
strcpy(path, ".merge_file_XXXXXX");
|
|
|
|
fd = xmkstemp(path);
|
|
|
|
if (write_in_full(fd, src->ptr, src->size) != src->size)
|
2009-06-27 17:58:47 +02:00
|
|
|
die_errno("unable to write temp-file");
|
2007-12-24 09:36:00 +01:00
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* User defined low-level merge driver support.
|
|
|
|
*/
|
|
|
|
static int ll_ext_merge(const struct ll_merge_driver *fn,
|
|
|
|
mmbuffer_t *result,
|
|
|
|
const char *path,
|
2010-03-21 01:38:58 +01:00
|
|
|
mmfile_t *orig, const char *orig_name,
|
2007-12-24 09:36:00 +01:00
|
|
|
mmfile_t *src1, const char *name1,
|
|
|
|
mmfile_t *src2, const char *name2,
|
2010-08-26 07:49:53 +02:00
|
|
|
const struct ll_merge_options *opts,
|
|
|
|
int marker_size)
|
2007-12-24 09:36:00 +01:00
|
|
|
{
|
2010-01-16 07:37:32 +01:00
|
|
|
char temp[4][50];
|
2008-11-23 00:13:00 +01:00
|
|
|
struct strbuf cmd = STRBUF_INIT;
|
2015-06-05 00:10:29 +02:00
|
|
|
struct strbuf_expand_dict_entry dict[6];
|
|
|
|
struct strbuf path_sq = STRBUF_INIT;
|
2009-12-30 11:53:57 +01:00
|
|
|
const char *args[] = { NULL, NULL };
|
2007-12-24 09:36:00 +01:00
|
|
|
int status, fd, i;
|
|
|
|
struct stat st;
|
2010-08-26 07:49:53 +02:00
|
|
|
assert(opts);
|
2007-12-24 09:36:00 +01:00
|
|
|
|
2015-06-05 00:10:29 +02:00
|
|
|
sq_quote_buf(&path_sq, path);
|
2010-05-14 11:31:33 +02:00
|
|
|
dict[0].placeholder = "O"; dict[0].value = temp[0];
|
|
|
|
dict[1].placeholder = "A"; dict[1].value = temp[1];
|
|
|
|
dict[2].placeholder = "B"; dict[2].value = temp[2];
|
|
|
|
dict[3].placeholder = "L"; dict[3].value = temp[3];
|
2015-06-05 00:10:29 +02:00
|
|
|
dict[4].placeholder = "P"; dict[4].value = path_sq.buf;
|
|
|
|
dict[5].placeholder = NULL; dict[5].value = NULL;
|
2010-05-14 11:31:33 +02:00
|
|
|
|
2007-12-24 09:36:00 +01:00
|
|
|
if (fn->cmdline == NULL)
|
|
|
|
die("custom merge driver %s lacks command line.", fn->name);
|
|
|
|
|
|
|
|
result->ptr = NULL;
|
|
|
|
result->size = 0;
|
|
|
|
create_temp(orig, temp[0]);
|
|
|
|
create_temp(src1, temp[1]);
|
|
|
|
create_temp(src2, temp[2]);
|
2010-01-16 07:37:32 +01:00
|
|
|
sprintf(temp[3], "%d", marker_size);
|
2007-12-24 09:36:00 +01:00
|
|
|
|
2008-11-23 00:13:00 +01:00
|
|
|
strbuf_expand(&cmd, fn->cmdline, strbuf_expand_dict_cb, &dict);
|
2007-12-24 09:36:00 +01:00
|
|
|
|
2009-12-30 11:53:57 +01:00
|
|
|
args[0] = cmd.buf;
|
|
|
|
status = run_command_v_opt(args, RUN_USING_SHELL);
|
2007-12-24 09:36:00 +01:00
|
|
|
fd = open(temp[1], O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
goto bad;
|
|
|
|
if (fstat(fd, &st))
|
|
|
|
goto close_bad;
|
|
|
|
result->size = st.st_size;
|
|
|
|
result->ptr = xmalloc(result->size + 1);
|
|
|
|
if (read_in_full(fd, result->ptr, result->size) != result->size) {
|
|
|
|
free(result->ptr);
|
|
|
|
result->ptr = NULL;
|
|
|
|
result->size = 0;
|
|
|
|
}
|
|
|
|
close_bad:
|
|
|
|
close(fd);
|
|
|
|
bad:
|
|
|
|
for (i = 0; i < 3; i++)
|
2009-04-29 23:22:56 +02:00
|
|
|
unlink_or_warn(temp[i]);
|
2008-11-23 00:13:00 +01:00
|
|
|
strbuf_release(&cmd);
|
2015-06-05 00:10:29 +02:00
|
|
|
strbuf_release(&path_sq);
|
2007-12-24 09:36:00 +01:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* merge.default and merge.driver configuration items
|
|
|
|
*/
|
|
|
|
static struct ll_merge_driver *ll_user_merge, **ll_user_merge_tail;
|
|
|
|
static const char *default_ll_merge;
|
|
|
|
|
2008-05-14 19:46:53 +02:00
|
|
|
static int read_merge_config(const char *var, const char *value, void *cb)
|
2007-12-24 09:36:00 +01:00
|
|
|
{
|
|
|
|
struct ll_merge_driver *fn;
|
2013-01-23 07:24:23 +01:00
|
|
|
const char *key, *name;
|
2007-12-24 09:36:00 +01:00
|
|
|
int namelen;
|
|
|
|
|
ll-merge.c: refactor `read_merge_config()` to use `git_config_string()`
There is one slight behavior change, previously "merge.default"
silently ignored a NULL value and didn't raise any error. But,
in the same function, all other values raise an error on a NULL
value. So to conform with other call sites in Git, a NULL value
for "merge.default" raises an error.
The the new config-set API is not very useful here, because much of
the function is dedicated to processing "merge.<name>.variable",
which the new API does not handle well. If it were for variables
like, "merge.summary", "merge.tool", and "merge.verbosity", we could
use the new API.
Signed-off-by: Tanay Abhra <tanayabh@gmail.com>
Reviewed-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-08-13 14:43:04 +02:00
|
|
|
if (!strcmp(var, "merge.default"))
|
|
|
|
return git_config_string(&default_ll_merge, var, value);
|
2007-12-24 09:36:00 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We are not interested in anything but "merge.<name>.variable";
|
|
|
|
* especially, we do not want to look at variables such as
|
|
|
|
* "merge.summary", "merge.tool", and "merge.verbosity".
|
|
|
|
*/
|
2013-01-23 07:24:23 +01:00
|
|
|
if (parse_config_key(var, "merge", &name, &namelen, &key) < 0 || !name)
|
2007-12-24 09:36:00 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find existing one as we might be processing merge.<name>.var2
|
|
|
|
* after seeing merge.<name>.var1.
|
|
|
|
*/
|
|
|
|
for (fn = ll_user_merge; fn; fn = fn->next)
|
|
|
|
if (!strncmp(fn->name, name, namelen) && !fn->name[namelen])
|
|
|
|
break;
|
|
|
|
if (!fn) {
|
|
|
|
fn = xcalloc(1, sizeof(struct ll_merge_driver));
|
|
|
|
fn->name = xmemdupz(name, namelen);
|
|
|
|
fn->fn = ll_ext_merge;
|
|
|
|
*ll_user_merge_tail = fn;
|
|
|
|
ll_user_merge_tail = &(fn->next);
|
|
|
|
}
|
|
|
|
|
ll-merge.c: refactor `read_merge_config()` to use `git_config_string()`
There is one slight behavior change, previously "merge.default"
silently ignored a NULL value and didn't raise any error. But,
in the same function, all other values raise an error on a NULL
value. So to conform with other call sites in Git, a NULL value
for "merge.default" raises an error.
The the new config-set API is not very useful here, because much of
the function is dedicated to processing "merge.<name>.variable",
which the new API does not handle well. If it were for variables
like, "merge.summary", "merge.tool", and "merge.verbosity", we could
use the new API.
Signed-off-by: Tanay Abhra <tanayabh@gmail.com>
Reviewed-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-08-13 14:43:04 +02:00
|
|
|
if (!strcmp("name", key))
|
|
|
|
return git_config_string(&fn->description, var, value);
|
2007-12-24 09:36:00 +01:00
|
|
|
|
2013-01-23 07:24:23 +01:00
|
|
|
if (!strcmp("driver", key)) {
|
2007-12-24 09:36:00 +01:00
|
|
|
if (!value)
|
|
|
|
return error("%s: lacks value", var);
|
|
|
|
/*
|
|
|
|
* merge.<name>.driver specifies the command line:
|
|
|
|
*
|
|
|
|
* command-line
|
|
|
|
*
|
|
|
|
* The command-line will be interpolated with the following
|
|
|
|
* tokens and is given to the shell:
|
|
|
|
*
|
|
|
|
* %O - temporary file name for the merge base.
|
|
|
|
* %A - temporary file name for our version.
|
|
|
|
* %B - temporary file name for the other branches' version.
|
2010-01-16 07:37:32 +01:00
|
|
|
* %L - conflict marker length
|
2015-06-05 00:10:29 +02:00
|
|
|
* %P - the original path (safely quoted for the shell)
|
2007-12-24 09:36:00 +01:00
|
|
|
*
|
|
|
|
* The external merge driver should write the results in the
|
|
|
|
* file named by %A, and signal that it has done with zero exit
|
|
|
|
* status.
|
|
|
|
*/
|
2009-06-14 21:47:54 +02:00
|
|
|
fn->cmdline = xstrdup(value);
|
2007-12-24 09:36:00 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
ll-merge.c: refactor `read_merge_config()` to use `git_config_string()`
There is one slight behavior change, previously "merge.default"
silently ignored a NULL value and didn't raise any error. But,
in the same function, all other values raise an error on a NULL
value. So to conform with other call sites in Git, a NULL value
for "merge.default" raises an error.
The the new config-set API is not very useful here, because much of
the function is dedicated to processing "merge.<name>.variable",
which the new API does not handle well. If it were for variables
like, "merge.summary", "merge.tool", and "merge.verbosity", we could
use the new API.
Signed-off-by: Tanay Abhra <tanayabh@gmail.com>
Reviewed-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-08-13 14:43:04 +02:00
|
|
|
if (!strcmp("recursive", key))
|
|
|
|
return git_config_string(&fn->recursive, var, value);
|
2007-12-24 09:36:00 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void initialize_ll_merge(void)
|
|
|
|
{
|
|
|
|
if (ll_user_merge_tail)
|
|
|
|
return;
|
|
|
|
ll_user_merge_tail = &ll_user_merge;
|
2008-05-14 19:46:53 +02:00
|
|
|
git_config(read_merge_config, NULL);
|
2007-12-24 09:36:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ll_merge_driver *find_ll_merge_driver(const char *merge_attr)
|
|
|
|
{
|
|
|
|
struct ll_merge_driver *fn;
|
|
|
|
const char *name;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
initialize_ll_merge();
|
|
|
|
|
|
|
|
if (ATTR_TRUE(merge_attr))
|
|
|
|
return &ll_merge_drv[LL_TEXT_MERGE];
|
|
|
|
else if (ATTR_FALSE(merge_attr))
|
|
|
|
return &ll_merge_drv[LL_BINARY_MERGE];
|
|
|
|
else if (ATTR_UNSET(merge_attr)) {
|
|
|
|
if (!default_ll_merge)
|
|
|
|
return &ll_merge_drv[LL_TEXT_MERGE];
|
|
|
|
else
|
|
|
|
name = default_ll_merge;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
name = merge_attr;
|
|
|
|
|
|
|
|
for (fn = ll_user_merge; fn; fn = fn->next)
|
|
|
|
if (!strcmp(fn->name, name))
|
|
|
|
return fn;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(ll_merge_drv); i++)
|
|
|
|
if (!strcmp(ll_merge_drv[i].name, name))
|
|
|
|
return &ll_merge_drv[i];
|
|
|
|
|
|
|
|
/* default to the 3-way */
|
|
|
|
return &ll_merge_drv[LL_TEXT_MERGE];
|
|
|
|
}
|
|
|
|
|
2010-01-16 07:37:32 +01:00
|
|
|
static int git_path_check_merge(const char *path, struct git_attr_check check[2])
|
2007-12-24 09:36:00 +01:00
|
|
|
{
|
2010-01-16 07:37:32 +01:00
|
|
|
if (!check[0].attr) {
|
|
|
|
check[0].attr = git_attr("merge");
|
|
|
|
check[1].attr = git_attr("conflict-marker-size");
|
|
|
|
}
|
2011-08-04 06:36:33 +02:00
|
|
|
return git_check_attr(path, 2, check);
|
2007-12-24 09:36:00 +01:00
|
|
|
}
|
|
|
|
|
2010-07-02 21:20:47 +02:00
|
|
|
static void normalize_file(mmfile_t *mm, const char *path)
|
|
|
|
{
|
|
|
|
struct strbuf strbuf = STRBUF_INIT;
|
|
|
|
if (renormalize_buffer(path, mm->ptr, mm->size, &strbuf)) {
|
|
|
|
free(mm->ptr);
|
|
|
|
mm->size = strbuf.len;
|
|
|
|
mm->ptr = strbuf_detach(&strbuf, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-24 09:36:00 +01:00
|
|
|
int ll_merge(mmbuffer_t *result_buf,
|
|
|
|
const char *path,
|
2010-03-21 01:38:58 +01:00
|
|
|
mmfile_t *ancestor, const char *ancestor_label,
|
2007-12-24 09:36:00 +01:00
|
|
|
mmfile_t *ours, const char *our_label,
|
|
|
|
mmfile_t *theirs, const char *their_label,
|
2010-08-26 07:49:53 +02:00
|
|
|
const struct ll_merge_options *opts)
|
2007-12-24 09:36:00 +01:00
|
|
|
{
|
2010-01-16 07:37:32 +01:00
|
|
|
static struct git_attr_check check[2];
|
2011-01-16 02:08:42 +01:00
|
|
|
static const struct ll_merge_options default_opts;
|
2010-01-16 07:37:32 +01:00
|
|
|
const char *ll_driver_name = NULL;
|
|
|
|
int marker_size = DEFAULT_CONFLICT_MARKER_SIZE;
|
2007-12-24 09:36:00 +01:00
|
|
|
const struct ll_merge_driver *driver;
|
|
|
|
|
2011-01-16 02:08:42 +01:00
|
|
|
if (!opts)
|
|
|
|
opts = &default_opts;
|
2010-08-26 07:49:53 +02:00
|
|
|
|
|
|
|
if (opts->renormalize) {
|
2010-07-02 21:20:47 +02:00
|
|
|
normalize_file(ancestor, path);
|
|
|
|
normalize_file(ours, path);
|
|
|
|
normalize_file(theirs, path);
|
|
|
|
}
|
2010-01-16 07:37:32 +01:00
|
|
|
if (!git_path_check_merge(path, check)) {
|
|
|
|
ll_driver_name = check[0].value;
|
|
|
|
if (check[1].value) {
|
|
|
|
marker_size = atoi(check[1].value);
|
|
|
|
if (marker_size <= 0)
|
|
|
|
marker_size = DEFAULT_CONFLICT_MARKER_SIZE;
|
|
|
|
}
|
|
|
|
}
|
2007-12-24 09:36:00 +01:00
|
|
|
driver = find_ll_merge_driver(ll_driver_name);
|
2010-08-26 07:49:53 +02:00
|
|
|
if (opts->virtual_ancestor && driver->recursive)
|
2007-12-24 09:36:00 +01:00
|
|
|
driver = find_ll_merge_driver(driver->recursive);
|
2010-03-21 01:38:58 +01:00
|
|
|
return driver->fn(driver, result_buf, path, ancestor, ancestor_label,
|
2010-01-16 07:37:32 +01:00
|
|
|
ours, our_label, theirs, their_label,
|
2010-08-26 07:49:53 +02:00
|
|
|
opts, marker_size);
|
2007-12-24 09:36:00 +01:00
|
|
|
}
|
2010-01-17 08:28:46 +01:00
|
|
|
|
|
|
|
int ll_merge_marker_size(const char *path)
|
|
|
|
{
|
|
|
|
static struct git_attr_check check;
|
|
|
|
int marker_size = DEFAULT_CONFLICT_MARKER_SIZE;
|
|
|
|
|
|
|
|
if (!check.attr)
|
|
|
|
check.attr = git_attr("conflict-marker-size");
|
2011-08-04 06:36:33 +02:00
|
|
|
if (!git_check_attr(path, 1, &check) && check.value) {
|
2010-01-17 08:28:46 +01:00
|
|
|
marker_size = atoi(check.value);
|
|
|
|
if (marker_size <= 0)
|
|
|
|
marker_size = DEFAULT_CONFLICT_MARKER_SIZE;
|
|
|
|
}
|
|
|
|
return marker_size;
|
2007-12-24 09:36:00 +01:00
|
|
|
}
|