merge-file.c 3.0 KB
Newer Older
1
#include "builtin.h"
2 3
#include "cache.h"
#include "xdiff/xdiff.h"
4
#include "xdiff-interface.h"
5
#include "parse-options.h"
6

7
static const char *const merge_file_usage[] = {
8
	N_("git merge-file [options] [-L name1 [-L orig [-L name2]]] file1 orig_file file2"),
9 10 11 12 13 14 15 16 17 18 19 20 21
	NULL
};

static int label_cb(const struct option *opt, const char *arg, int unset)
{
	static int label_count = 0;
	const char **names = (const char **)opt->value;

	if (label_count >= 3)
		return error("too many labels on the command line");
	names[label_count++] = arg;
	return 0;
}
22

23
int cmd_merge_file(int argc, const char **argv, const char *prefix)
24
{
25
	const char *names[3] = { NULL, NULL, NULL };
26 27
	mmfile_t mmfs[3];
	mmbuffer_t result = {NULL, 0};
R
René Scharfe 已提交
28
	xmparam_t xmp = {{0}};
29
	int ret = 0, i = 0, to_stdout = 0;
30
	int quiet = 0;
31
	int prefixlen = 0;
32
	struct option options[] = {
33 34 35
		OPT_BOOLEAN('p', "stdout", &to_stdout, N_("send results to standard output")),
		OPT_SET_INT(0, "diff3", &xmp.style, N_("use a diff3 based merge"), XDL_MERGE_DIFF3),
		OPT_SET_INT(0, "ours", &xmp.favor, N_("for conflicts, use our version"),
J
Junio C Hamano 已提交
36
			    XDL_MERGE_FAVOR_OURS),
37
		OPT_SET_INT(0, "theirs", &xmp.favor, N_("for conflicts, use their version"),
J
Junio C Hamano 已提交
38
			    XDL_MERGE_FAVOR_THEIRS),
39
		OPT_SET_INT(0, "union", &xmp.favor, N_("for conflicts, use a union version"),
40
			    XDL_MERGE_FAVOR_UNION),
41
		OPT_INTEGER(0, "marker-size", &xmp.marker_size,
42 43 44 45
			    N_("for conflicts, use this marker size")),
		OPT__QUIET(&quiet, N_("do not warn about conflicts")),
		OPT_CALLBACK('L', NULL, names, N_("name"),
			     N_("set labels for file1/orig_file/file2"), &label_cb),
46 47 48
		OPT_END(),
	};

49 50 51 52
	xmp.level = XDL_MERGE_ZEALOUS_ALNUM;
	xmp.style = 0;
	xmp.favor = 0;

53
	if (startup_info->have_repository) {
54 55 56
		/* Read the configuration file */
		git_config(git_xmerge_config, NULL);
		if (0 <= git_xmerge_style)
57
			xmp.style = git_xmerge_style;
58
	}
59

60
	argc = parse_options(argc, argv, prefix, options, merge_file_usage, 0);
61 62
	if (argc != 3)
		usage_with_options(merge_file_usage, options);
63 64 65
	if (quiet) {
		if (!freopen("/dev/null", "w", stderr))
			return error("failed to redirect stderr to /dev/null: "
66
				     "%s", strerror(errno));
67
	}
68

69 70 71
	if (prefix)
		prefixlen = strlen(prefix);

72
	for (i = 0; i < 3; i++) {
73
		const char *fname = prefix_filename(prefix, prefixlen, argv[i]);
74 75
		if (!names[i])
			names[i] = argv[i];
76
		if (read_mmfile(mmfs + i, fname))
77
			return -1;
78
		if (buffer_is_binary(mmfs[i].ptr, mmfs[i].size))
79
			return error("Cannot merge binary files: %s",
80
					argv[i]);
81
	}
82

83
	xmp.ancestor = names[1];
84 85 86
	xmp.file1 = names[0];
	xmp.file2 = names[2];
	ret = xdl_merge(mmfs + 1, mmfs + 0, mmfs + 2, &xmp, &result);
87 88 89 90 91

	for (i = 0; i < 3; i++)
		free(mmfs[i].ptr);

	if (ret >= 0) {
92
		const char *filename = argv[0];
93
		FILE *f = to_stdout ? stdout : fopen(filename, "wb");
94 95 96

		if (!f)
			ret = error("Could not open %s for writing", filename);
97 98
		else if (result.size &&
			 fwrite(result.ptr, result.size, 1, f) != 1)
99 100 101 102 103 104 105 106
			ret = error("Could not write to %s", filename);
		else if (fclose(f))
			ret = error("Could not close %s", filename);
		free(result.ptr);
	}

	return ret;
}