blob: 96edb97a8327ba64cccf64bfa341e94d9f903e94 [file] [log] [blame]
Peter Hagervallbaffc0e2007-07-15 01:14:45 +02001#include "builtin.h"
Johannes Schindelinba1f5f32006-12-06 16:26:06 +01002#include "cache.h"
3#include "xdiff/xdiff.h"
Johannes Schindelin7cab5882006-12-20 17:37:07 +01004#include "xdiff-interface.h"
Pierre Habouzitd2496102008-10-02 14:59:20 +02005#include "parse-options.h"
Johannes Schindelinba1f5f32006-12-06 16:26:06 +01006
Pierre Habouzitd2496102008-10-02 14:59:20 +02007static const char *const merge_file_usage[] = {
8 "git merge-file [options] [-L name1 [-L orig [-L name2]]] file1 orig_file file2",
9 NULL
10};
11
12static int label_cb(const struct option *opt, const char *arg, int unset)
13{
14 static int label_count = 0;
15 const char **names = (const char **)opt->value;
16
17 if (label_count >= 3)
18 return error("too many labels on the command line");
19 names[label_count++] = arg;
20 return 0;
21}
Johannes Schindelinba1f5f32006-12-06 16:26:06 +010022
Peter Hagervallbaffc0e2007-07-15 01:14:45 +020023int cmd_merge_file(int argc, const char **argv, const char *prefix)
Johannes Schindelinba1f5f32006-12-06 16:26:06 +010024{
Pierre Habouzitd2496102008-10-02 14:59:20 +020025 const char *names[3] = { NULL, NULL, NULL };
Johannes Schindelinba1f5f32006-12-06 16:26:06 +010026 mmfile_t mmfs[3];
27 mmbuffer_t result = {NULL, 0};
28 xpparam_t xpp = {XDF_NEED_MINIMAL};
Johannes Schindelinfbe0b242006-12-06 16:45:42 +010029 int ret = 0, i = 0, to_stdout = 0;
Junio C Hamanoe0af48e2008-08-28 01:10:04 -070030 int merge_level = XDL_MERGE_ZEALOUS_ALNUM;
Pierre Habouzitd2496102008-10-02 14:59:20 +020031 int merge_style = 0, quiet = 0;
Junio C Hamanob5412482008-08-29 10:49:56 -070032 int nongit;
33
Pierre Habouzitd2496102008-10-02 14:59:20 +020034 struct option options[] = {
35 OPT_BOOLEAN('p', "stdout", &to_stdout, "send results to standard output"),
36 OPT_SET_INT(0, "diff3", &merge_style, "use a diff3 based merge", XDL_MERGE_DIFF3),
37 OPT__QUIET(&quiet),
38 OPT_CALLBACK('L', NULL, names, "name",
39 "set labels for file1/orig_file/file2", &label_cb),
40 OPT_END(),
41 };
42
Junio C Hamanob5412482008-08-29 10:49:56 -070043 prefix = setup_git_directory_gently(&nongit);
44 if (!nongit) {
45 /* Read the configuration file */
46 git_config(git_xmerge_config, NULL);
47 if (0 <= git_xmerge_style)
48 merge_style = git_xmerge_style;
49 }
Johannes Schindelinba1f5f32006-12-06 16:26:06 +010050
Pierre Habouzitd2496102008-10-02 14:59:20 +020051 argc = parse_options(argc, argv, options, merge_file_usage, 0);
52 if (argc != 3)
53 usage_with_options(merge_file_usage, options);
René Scharfe4deba8b2008-12-26 11:17:04 +010054 if (quiet) {
55 if (!freopen("/dev/null", "w", stderr))
56 return error("failed to redirect stderr to /dev/null: "
57 "%s\n", strerror(errno));
58 }
Johannes Schindelinba1f5f32006-12-06 16:26:06 +010059
Johannes Schindelin57719072007-06-05 03:37:13 +010060 for (i = 0; i < 3; i++) {
Pierre Habouzitd2496102008-10-02 14:59:20 +020061 if (!names[i])
62 names[i] = argv[i];
63 if (read_mmfile(mmfs + i, argv[i]))
Johannes Schindelinba1f5f32006-12-06 16:26:06 +010064 return -1;
Johannes Schindelin57719072007-06-05 03:37:13 +010065 if (buffer_is_binary(mmfs[i].ptr, mmfs[i].size))
66 return error("Cannot merge binary files: %s\n",
Pierre Habouzitd2496102008-10-02 14:59:20 +020067 argv[i]);
Johannes Schindelin57719072007-06-05 03:37:13 +010068 }
Johannes Schindelinba1f5f32006-12-06 16:26:06 +010069
70 ret = xdl_merge(mmfs + 1, mmfs + 0, names[0], mmfs + 2, names[2],
Junio C Hamanoe0af48e2008-08-28 01:10:04 -070071 &xpp, merge_level | merge_style, &result);
Johannes Schindelinba1f5f32006-12-06 16:26:06 +010072
73 for (i = 0; i < 3; i++)
74 free(mmfs[i].ptr);
75
76 if (ret >= 0) {
Pierre Habouzitd2496102008-10-02 14:59:20 +020077 const char *filename = argv[0];
Johannes Schindelinfbe0b242006-12-06 16:45:42 +010078 FILE *f = to_stdout ? stdout : fopen(filename, "wb");
Johannes Schindelinba1f5f32006-12-06 16:26:06 +010079
80 if (!f)
81 ret = error("Could not open %s for writing", filename);
Johannes Schindelin381b8512008-03-13 16:19:35 +010082 else if (result.size &&
83 fwrite(result.ptr, result.size, 1, f) != 1)
Johannes Schindelinba1f5f32006-12-06 16:26:06 +010084 ret = error("Could not write to %s", filename);
85 else if (fclose(f))
86 ret = error("Could not close %s", filename);
87 free(result.ptr);
88 }
89
90 return ret;
91}