blob: a9983dd78ad5cd1e364f0e00c259bdb7e6f151f0 [file] [log] [blame]
Linus Torvalds75118b12005-04-17 19:52:54 -07001#include "cache.h"
2
David Rientjes96f1e582006-08-15 10:23:48 -07003static const char *pgm;
James Bottomleye2b6a9d2005-04-23 20:50:10 -07004static const char *arguments[8];
Petr Baudisbbd14cb2005-07-29 14:53:38 +02005static int one_shot, quiet;
Petr Baudis8c599262005-04-19 04:16:15 +02006static int err;
Linus Torvalds75118b12005-04-17 19:52:54 -07007
8static void run_program(void)
9{
David Rientjes6f002f92006-08-15 10:40:06 -070010 pid_t pid = fork();
11 int status;
Linus Torvalds75118b12005-04-17 19:52:54 -070012
13 if (pid < 0)
14 die("unable to fork");
15 if (!pid) {
16 execlp(pgm, arguments[0],
17 arguments[1],
18 arguments[2],
19 arguments[3],
20 arguments[4],
James Bottomleye2b6a9d2005-04-23 20:50:10 -070021 arguments[5],
22 arguments[6],
23 arguments[7],
Linus Torvalds75118b12005-04-17 19:52:54 -070024 NULL);
25 die("unable to execute '%s'", pgm);
26 }
Petr Baudis2a459252005-05-11 04:44:59 +020027 if (waitpid(pid, &status, 0) < 0 || !WIFEXITED(status) || WEXITSTATUS(status)) {
Petr Baudisbbd14cb2005-07-29 14:53:38 +020028 if (one_shot) {
Petr Baudis2a459252005-05-11 04:44:59 +020029 err++;
Petr Baudisbbd14cb2005-07-29 14:53:38 +020030 } else {
Petr Baudisb32e9862005-08-05 00:31:12 +020031 if (!quiet)
Petr Baudisbbd14cb2005-07-29 14:53:38 +020032 die("merge program failed");
33 exit(1);
34 }
Petr Baudis2a459252005-05-11 04:44:59 +020035 }
Linus Torvalds75118b12005-04-17 19:52:54 -070036}
37
Linus Torvalds75118b12005-04-17 19:52:54 -070038static int merge_entry(int pos, const char *path)
39{
40 int found;
41
42 if (pos >= active_nr)
Junio C Hamano215a7ad2005-09-07 17:26:23 -070043 die("git-merge-index: %s not in the cache", path);
Linus Torvalds75118b12005-04-17 19:52:54 -070044 arguments[0] = pgm;
45 arguments[1] = "";
46 arguments[2] = "";
47 arguments[3] = "";
48 arguments[4] = path;
James Bottomleye2b6a9d2005-04-23 20:50:10 -070049 arguments[5] = "";
50 arguments[6] = "";
51 arguments[7] = "";
Linus Torvalds75118b12005-04-17 19:52:54 -070052 found = 0;
53 do {
Linus Torvaldse3b4be72005-04-18 14:17:58 -070054 static char hexbuf[4][60];
James Bottomleye2b6a9d2005-04-23 20:50:10 -070055 static char ownbuf[4][60];
Linus Torvalds75118b12005-04-17 19:52:54 -070056 struct cache_entry *ce = active_cache[pos];
57 int stage = ce_stage(ce);
58
59 if (strcmp(ce->name, path))
60 break;
61 found++;
Linus Torvaldse3b4be72005-04-18 14:17:58 -070062 strcpy(hexbuf[stage], sha1_to_hex(ce->sha1));
James Bottomleye2b6a9d2005-04-23 20:50:10 -070063 sprintf(ownbuf[stage], "%o", ntohl(ce->ce_mode) & (~S_IFMT));
Linus Torvaldse3b4be72005-04-18 14:17:58 -070064 arguments[stage] = hexbuf[stage];
James Bottomleye2b6a9d2005-04-23 20:50:10 -070065 arguments[stage + 4] = ownbuf[stage];
Linus Torvalds75118b12005-04-17 19:52:54 -070066 } while (++pos < active_nr);
67 if (!found)
Junio C Hamano215a7ad2005-09-07 17:26:23 -070068 die("git-merge-index: %s not in the cache", path);
Linus Torvalds75118b12005-04-17 19:52:54 -070069 run_program();
70 return found;
71}
72
73static void merge_file(const char *path)
74{
75 int pos = cache_name_pos(path, strlen(path));
76
77 /*
78 * If it already exists in the cache as stage0, it's
79 * already merged and there is nothing to do.
80 */
81 if (pos < 0)
82 merge_entry(-pos-1, path);
83}
84
85static void merge_all(void)
86{
87 int i;
88 for (i = 0; i < active_nr; i++) {
89 struct cache_entry *ce = active_cache[i];
90 if (!ce_stage(ce))
91 continue;
92 i += merge_entry(i, ce->name)-1;
93 }
94}
95
96int main(int argc, char **argv)
97{
98 int i, force_file = 0;
99
Junio C Hamanof0b73672006-06-19 18:25:21 -0700100 /* Without this we cannot rely on waitpid() to tell
101 * what happened to our children.
102 */
103 signal(SIGCHLD, SIG_DFL);
104
Linus Torvalds75118b12005-04-17 19:52:54 -0700105 if (argc < 3)
Junio C Hamano215a7ad2005-09-07 17:26:23 -0700106 usage("git-merge-index [-o] [-q] <merge-program> (-a | <filename>*)");
Linus Torvalds75118b12005-04-17 19:52:54 -0700107
Junio C Hamano53228a52005-11-26 00:50:02 -0800108 setup_git_directory();
Linus Torvalds75118b12005-04-17 19:52:54 -0700109 read_cache();
110
Petr Baudis2a459252005-05-11 04:44:59 +0200111 i = 1;
Petr Baudisbbd14cb2005-07-29 14:53:38 +0200112 if (!strcmp(argv[i], "-o")) {
Petr Baudis2a459252005-05-11 04:44:59 +0200113 one_shot = 1;
114 i++;
115 }
Petr Baudisbbd14cb2005-07-29 14:53:38 +0200116 if (!strcmp(argv[i], "-q")) {
117 quiet = 1;
118 i++;
119 }
Petr Baudis2a459252005-05-11 04:44:59 +0200120 pgm = argv[i++];
121 for (; i < argc; i++) {
Linus Torvalds75118b12005-04-17 19:52:54 -0700122 char *arg = argv[i];
123 if (!force_file && *arg == '-') {
124 if (!strcmp(arg, "--")) {
125 force_file = 1;
126 continue;
127 }
128 if (!strcmp(arg, "-a")) {
129 merge_all();
130 continue;
131 }
Junio C Hamano215a7ad2005-09-07 17:26:23 -0700132 die("git-merge-index: unknown option %s", arg);
Linus Torvalds75118b12005-04-17 19:52:54 -0700133 }
134 merge_file(arg);
135 }
Petr Baudisb32e9862005-08-05 00:31:12 +0200136 if (err && !quiet)
Petr Baudis8c599262005-04-19 04:16:15 +0200137 die("merge program failed");
Petr Baudisbbd14cb2005-07-29 14:53:38 +0200138 return err;
Linus Torvalds75118b12005-04-17 19:52:54 -0700139}