blob: 6c6f595fbc7da09a41228e09cd2c5ef48b91f3f0 [file] [log] [blame]
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001/*
2 * Recursive Merge algorithm stolen from git-merge-recursive.py by
3 * Fredrik Kuivinen.
4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006
5 */
Johannes Schindelin6d297f82006-07-08 18:42:41 +02006#include "cache.h"
7#include "cache-tree.h"
8#include "commit.h"
9#include "blob.h"
10#include "tree-walk.h"
11#include "diff.h"
12#include "diffcore.h"
13#include "run-command.h"
14#include "tag.h"
Johannes Schindelin7a85b842006-07-30 20:27:10 +020015#include "unpack-trees.h"
Johannes Schindelin6d297f82006-07-08 18:42:41 +020016#include "path-list.h"
Junio C Hamanoc2b4fae2006-11-29 12:07:37 -080017#include "xdiff-interface.h"
Junio C Hamanof3ef6b62007-04-17 22:51:45 -070018#include "interpolate.h"
Junio C Hamanoa129d962007-04-16 22:59:18 -070019#include "attr.h"
Johannes Schindelin6d297f82006-07-08 18:42:41 +020020
Junio C Hamano68faf682007-02-15 16:32:45 -080021static int subtree_merge;
22
23static struct tree *shift_tree_object(struct tree *one, struct tree *two)
24{
25 unsigned char shifted[20];
26
27 /*
28 * NEEDSWORK: this limits the recursion depth to hardcoded
29 * value '2' to avoid excessive overhead.
30 */
31 shift_tree(one->object.sha1, two->object.sha1, shifted, 2);
32 if (!hashcmp(two->object.sha1, shifted))
33 return two;
34 return lookup_tree(shifted);
35}
36
Johannes Schindelin6d297f82006-07-08 18:42:41 +020037/*
38 * A virtual commit has
39 * - (const char *)commit->util set to the name, and
40 * - *(int *)commit->object.sha1 set to the virtual id.
41 */
Johannes Schindelin6d297f82006-07-08 18:42:41 +020042
43static unsigned commit_list_count(const struct commit_list *l)
44{
45 unsigned c = 0;
46 for (; l; l = l->next )
47 c++;
48 return c;
49}
50
51static struct commit *make_virtual_commit(struct tree *tree, const char *comment)
52{
53 struct commit *commit = xcalloc(1, sizeof(struct commit));
54 static unsigned virtual_id = 1;
55 commit->tree = tree;
56 commit->util = (void*)comment;
57 *(int*)commit->object.sha1 = virtual_id++;
Johannes Schindelinc1f30892006-07-31 12:42:35 +020058 /* avoid warnings */
59 commit->object.parsed = 1;
Johannes Schindelin6d297f82006-07-08 18:42:41 +020060 return commit;
61}
62
63/*
Johannes Schindelin3058e932006-07-27 19:14:17 +020064 * Since we use get_tree_entry(), which does not put the read object into
65 * the object pool, we cannot rely on a == b.
Johannes Schindelin6d297f82006-07-08 18:42:41 +020066 */
67static int sha_eq(const unsigned char *a, const unsigned char *b)
68{
Johannes Schindelin3af244c2006-07-27 13:17:07 +020069 if (!a && !b)
Johannes Schindelin6d297f82006-07-08 18:42:41 +020070 return 2;
Junio C Hamano87cb0042006-08-23 14:31:20 -070071 return a && b && hashcmp(a, b) == 0;
Johannes Schindelin6d297f82006-07-08 18:42:41 +020072}
73
Johannes Schindelin6d297f82006-07-08 18:42:41 +020074/*
Johannes Schindelin3058e932006-07-27 19:14:17 +020075 * Since we want to write the index eventually, we cannot reuse the index
76 * for these (temporary) data.
Johannes Schindelin6d297f82006-07-08 18:42:41 +020077 */
78struct stage_data
79{
80 struct
81 {
82 unsigned mode;
83 unsigned char sha[20];
84 } stages[4];
85 unsigned processed:1;
86};
87
Johannes Schindelin5a753612006-07-27 19:12:29 +020088static struct path_list current_file_set = {NULL, 0, 0, 1};
89static struct path_list current_directory_set = {NULL, 0, 0, 1};
Johannes Schindelin6d297f82006-07-08 18:42:41 +020090
Shawn O. Pearce63889632007-01-14 00:28:33 -050091static int call_depth = 0;
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -050092static int verbosity = 2;
Lars Hjemlidf3a02f2007-09-25 08:36:38 +020093static int rename_limit = -1;
Shawn O. Pearce66a155b2007-01-14 00:28:53 -050094static int buffer_output = 1;
Pierre Habouzit19247e52007-09-20 10:43:11 +020095static struct strbuf obuf = STRBUF_INIT;
Johannes Schindelin6d297f82006-07-08 18:42:41 +020096
Pierre Habouzit19247e52007-09-20 10:43:11 +020097static int show(int v)
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -050098{
99 return (!call_depth && verbosity >= v) || verbosity >= 5;
100}
101
Junio C Hamanob79d18c2007-06-13 01:22:51 -0700102static void flush_output(void)
Shawn O. Pearce66a155b2007-01-14 00:28:53 -0500103{
Pierre Habouzit19247e52007-09-20 10:43:11 +0200104 if (obuf.len) {
105 fputs(obuf.buf, stdout);
106 strbuf_reset(&obuf);
Shawn O. Pearce66a155b2007-01-14 00:28:53 -0500107 }
Pierre Habouzit19247e52007-09-20 10:43:11 +0200108}
109
110static void output(int v, const char *fmt, ...)
111{
112 int len;
113 va_list ap;
114
115 if (!show(v))
116 return;
117
118 strbuf_grow(&obuf, call_depth * 2 + 2);
119 memset(obuf.buf + obuf.len, ' ', call_depth * 2);
120 strbuf_setlen(&obuf, obuf.len + call_depth * 2);
121
122 va_start(ap, fmt);
123 len = vsnprintf(obuf.buf + obuf.len, strbuf_avail(&obuf), fmt, ap);
124 va_end(ap);
125
126 if (len < 0)
127 len = 0;
128 if (len >= strbuf_avail(&obuf)) {
129 strbuf_grow(&obuf, len + 2);
130 va_start(ap, fmt);
131 len = vsnprintf(obuf.buf + obuf.len, strbuf_avail(&obuf), fmt, ap);
132 va_end(ap);
133 if (len >= strbuf_avail(&obuf)) {
134 die("this should not happen, your snprintf is broken");
135 }
136 }
137 strbuf_setlen(&obuf, obuf.len + len);
138 strbuf_add(&obuf, "\n", 1);
139 if (!buffer_output)
140 flush_output();
Shawn O. Pearce66a155b2007-01-14 00:28:53 -0500141}
142
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200143static void output_commit_title(struct commit *commit)
144{
145 int i;
Shawn O. Pearce66a155b2007-01-14 00:28:53 -0500146 flush_output();
Shawn O. Pearce63889632007-01-14 00:28:33 -0500147 for (i = call_depth; i--;)
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200148 fputs(" ", stdout);
149 if (commit->util)
150 printf("virtual %s\n", (char *)commit->util);
151 else {
Junio C Hamano9926ba92006-10-23 00:36:22 -0700152 printf("%s ", find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV));
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200153 if (parse_commit(commit) != 0)
154 printf("(bad commit)\n");
155 else {
156 const char *s;
157 int len;
158 for (s = commit->buffer; *s; s++)
159 if (*s == '\n' && s[1] == '\n') {
160 s += 2;
161 break;
162 }
163 for (len = 0; s[len] && '\n' != s[len]; len++)
164 ; /* do nothing */
165 printf("%.*s\n", len, s);
166 }
167 }
168}
169
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200170static int add_cacheinfo(unsigned int mode, const unsigned char *sha1,
171 const char *path, int stage, int refresh, int options)
172{
173 struct cache_entry *ce;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200174 ce = make_cache_entry(mode, sha1 ? sha1 : null_sha1, path, stage, refresh);
175 if (!ce)
Junio C Hamano04241382007-04-01 21:13:27 -0700176 return error("addinfo_cache failed for path '%s'", path);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200177 return add_cache_entry(ce, options);
178}
179
180/*
181 * This is a global variable which is used in a number of places but
182 * only written to in the 'merge' function.
183 *
184 * index_only == 1 => Don't leave any non-stage 0 entries in the cache and
185 * don't update the working directory.
186 * 0 => Leave unmerged entries in the cache and update
187 * the working directory.
188 */
189static int index_only = 0;
190
Linus Torvalds933bf402007-08-09 22:21:29 -0700191static void init_tree_desc_from_tree(struct tree_desc *desc, struct tree *tree)
192{
193 parse_tree(tree);
194 init_tree_desc(desc, tree->buffer, tree->size);
195}
196
Johannes Schindelin7a85b842006-07-30 20:27:10 +0200197static int git_merge_trees(int index_only,
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200198 struct tree *common,
199 struct tree *head,
200 struct tree *merge)
201{
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200202 int rc;
Linus Torvalds933bf402007-08-09 22:21:29 -0700203 struct tree_desc t[3];
Johannes Schindelin7a85b842006-07-30 20:27:10 +0200204 struct unpack_trees_options opts;
205
Johannes Schindelin7a85b842006-07-30 20:27:10 +0200206 memset(&opts, 0, sizeof(opts));
207 if (index_only)
208 opts.index_only = 1;
209 else
210 opts.update = 1;
211 opts.merge = 1;
212 opts.head_idx = 2;
213 opts.fn = threeway_merge;
214
Linus Torvalds933bf402007-08-09 22:21:29 -0700215 init_tree_desc_from_tree(t+0, common);
216 init_tree_desc_from_tree(t+1, head);
217 init_tree_desc_from_tree(t+2, merge);
Johannes Schindelin7a85b842006-07-30 20:27:10 +0200218
Linus Torvalds933bf402007-08-09 22:21:29 -0700219 rc = unpack_trees(3, t, &opts);
Johannes Schindelin7a85b842006-07-30 20:27:10 +0200220 cache_tree_free(&active_cache_tree);
Johannes Schindelin7a85b842006-07-30 20:27:10 +0200221 return rc;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200222}
223
Junio C Hamano8b944b52007-01-10 11:20:58 -0800224static int unmerged_index(void)
225{
226 int i;
227 for (i = 0; i < active_nr; i++) {
228 struct cache_entry *ce = active_cache[i];
229 if (ce_stage(ce))
230 return 1;
231 }
232 return 0;
233}
234
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200235static struct tree *git_write_tree(void)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200236{
Johannes Schindelin5b982f82006-08-09 15:04:16 +0200237 struct tree *result = NULL;
238
Alex Riesena97e4072007-03-31 13:49:38 +0200239 if (unmerged_index()) {
240 int i;
241 output(0, "There are unmerged index entries:");
242 for (i = 0; i < active_nr; i++) {
243 struct cache_entry *ce = active_cache[i];
244 if (ce_stage(ce))
245 output(0, "%d %.*s", ce_stage(ce), ce_namelen(ce), ce->name);
246 }
Junio C Hamano8b944b52007-01-10 11:20:58 -0800247 return NULL;
Alex Riesena97e4072007-03-31 13:49:38 +0200248 }
Johannes Schindelin5b982f82006-08-09 15:04:16 +0200249
250 if (!active_cache_tree)
251 active_cache_tree = cache_tree();
252
253 if (!cache_tree_fully_valid(active_cache_tree) &&
Junio C Hamano8b944b52007-01-10 11:20:58 -0800254 cache_tree_update(active_cache_tree,
255 active_cache, active_nr, 0, 0) < 0)
Johannes Schindelin5b982f82006-08-09 15:04:16 +0200256 die("error building trees");
257
258 result = lookup_tree(active_cache_tree->sha1);
259
Johannes Schindelin5b982f82006-08-09 15:04:16 +0200260 return result;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200261}
262
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200263static int save_files_dirs(const unsigned char *sha1,
264 const char *base, int baselen, const char *path,
265 unsigned int mode, int stage)
266{
267 int len = strlen(path);
Jonas Fonseca2d7320d2006-09-01 00:32:39 +0200268 char *newpath = xmalloc(baselen + len + 1);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200269 memcpy(newpath, base, baselen);
270 memcpy(newpath + baselen, path, len);
271 newpath[baselen + len] = '\0';
272
273 if (S_ISDIR(mode))
Johannes Schindelin5a753612006-07-27 19:12:29 +0200274 path_list_insert(newpath, &current_directory_set);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200275 else
Johannes Schindelin5a753612006-07-27 19:12:29 +0200276 path_list_insert(newpath, &current_file_set);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200277 free(newpath);
278
279 return READ_TREE_RECURSIVE;
280}
281
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200282static int get_files_dirs(struct tree *tree)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200283{
284 int n;
Johannes Schindelinbd669982006-07-27 19:12:51 +0200285 if (read_tree_recursive(tree, "", 0, 0, NULL, save_files_dirs) != 0)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200286 return 0;
Johannes Schindelin5a753612006-07-27 19:12:29 +0200287 n = current_file_set.nr + current_directory_set.nr;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200288 return n;
289}
290
291/*
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200292 * Returns a index_entry instance which doesn't have to correspond to
293 * a real cache entry in Git's index.
294 */
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200295static struct stage_data *insert_stage_data(const char *path,
296 struct tree *o, struct tree *a, struct tree *b,
297 struct path_list *entries)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200298{
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200299 struct path_list_item *item;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200300 struct stage_data *e = xcalloc(1, sizeof(struct stage_data));
301 get_tree_entry(o->object.sha1, path,
302 e->stages[1].sha, &e->stages[1].mode);
303 get_tree_entry(a->object.sha1, path,
304 e->stages[2].sha, &e->stages[2].mode);
305 get_tree_entry(b->object.sha1, path,
306 e->stages[3].sha, &e->stages[3].mode);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200307 item = path_list_insert(path, entries);
308 item->util = e;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200309 return e;
310}
311
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200312/*
Johannes Schindelin5a753612006-07-27 19:12:29 +0200313 * Create a dictionary mapping file names to stage_data objects. The
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200314 * dictionary contains one entry for every path with a non-zero stage entry.
315 */
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200316static struct path_list *get_unmerged(void)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200317{
318 struct path_list *unmerged = xcalloc(1, sizeof(struct path_list));
319 int i;
320
321 unmerged->strdup_paths = 1;
Junio C Hamano8b944b52007-01-10 11:20:58 -0800322
Shawn O. Pearcead57cbc2007-04-20 02:37:18 -0400323 for (i = 0; i < active_nr; i++) {
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200324 struct path_list_item *item;
325 struct stage_data *e;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200326 struct cache_entry *ce = active_cache[i];
327 if (!ce_stage(ce))
328 continue;
329
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200330 item = path_list_lookup(ce->name, unmerged);
331 if (!item) {
332 item = path_list_insert(ce->name, unmerged);
333 item->util = xcalloc(1, sizeof(struct stage_data));
334 }
335 e = item->util;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200336 e->stages[ce_stage(ce)].mode = ntohl(ce->ce_mode);
Shawn Pearce8da71492006-08-23 02:49:00 -0400337 hashcpy(e->stages[ce_stage(ce)].sha, ce->sha1);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200338 }
339
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200340 return unmerged;
341}
342
343struct rename
344{
345 struct diff_filepair *pair;
346 struct stage_data *src_entry;
347 struct stage_data *dst_entry;
348 unsigned processed:1;
349};
350
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200351/*
Pavel Roskin3dff5372007-02-03 23:49:16 -0500352 * Get information of all renames which occurred between 'o_tree' and
Johannes Schindelin5a753612006-07-27 19:12:29 +0200353 * 'tree'. We need the three trees in the merge ('o_tree', 'a_tree' and
354 * 'b_tree') to be able to associate the correct cache entries with
355 * the rename information. 'tree' is always equal to either a_tree or b_tree.
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200356 */
357static struct path_list *get_renames(struct tree *tree,
Johannes Schindelin5a753612006-07-27 19:12:29 +0200358 struct tree *o_tree,
359 struct tree *a_tree,
360 struct tree *b_tree,
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200361 struct path_list *entries)
362{
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200363 int i;
364 struct path_list *renames;
365 struct diff_options opts;
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200366
367 renames = xcalloc(1, sizeof(struct path_list));
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200368 diff_setup(&opts);
369 opts.recursive = 1;
370 opts.detect_rename = DIFF_DETECT_RENAME;
Lars Hjemlidf3a02f2007-09-25 08:36:38 +0200371 opts.rename_limit = rename_limit;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200372 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
373 if (diff_setup_done(&opts) < 0)
374 die("diff setup failed");
Johannes Schindelin5a753612006-07-27 19:12:29 +0200375 diff_tree_sha1(o_tree->object.sha1, tree->object.sha1, "", &opts);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200376 diffcore_std(&opts);
377 for (i = 0; i < diff_queued_diff.nr; ++i) {
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200378 struct path_list_item *item;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200379 struct rename *re;
380 struct diff_filepair *pair = diff_queued_diff.queue[i];
381 if (pair->status != 'R') {
382 diff_free_filepair(pair);
383 continue;
384 }
385 re = xmalloc(sizeof(*re));
386 re->processed = 0;
387 re->pair = pair;
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200388 item = path_list_lookup(re->pair->one->path, entries);
389 if (!item)
390 re->src_entry = insert_stage_data(re->pair->one->path,
Johannes Schindelin5a753612006-07-27 19:12:29 +0200391 o_tree, a_tree, b_tree, entries);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200392 else
393 re->src_entry = item->util;
394
395 item = path_list_lookup(re->pair->two->path, entries);
396 if (!item)
397 re->dst_entry = insert_stage_data(re->pair->two->path,
Johannes Schindelin5a753612006-07-27 19:12:29 +0200398 o_tree, a_tree, b_tree, entries);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200399 else
400 re->dst_entry = item->util;
401 item = path_list_insert(pair->one->path, renames);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200402 item->util = re;
403 }
404 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
405 diff_queued_diff.nr = 0;
406 diff_flush(&opts);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200407 return renames;
408}
409
Junio C Hamano9fe0d872006-10-23 00:46:15 -0700410static int update_stages(const char *path, struct diff_filespec *o,
411 struct diff_filespec *a, struct diff_filespec *b,
412 int clear)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200413{
414 int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE;
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200415 if (clear)
416 if (remove_file_from_cache(path))
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200417 return -1;
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200418 if (o)
419 if (add_cacheinfo(o->mode, o->sha1, path, 1, 0, options))
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200420 return -1;
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200421 if (a)
422 if (add_cacheinfo(a->mode, a->sha1, path, 2, 0, options))
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200423 return -1;
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200424 if (b)
425 if (add_cacheinfo(b->mode, b->sha1, path, 3, 0, options))
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200426 return -1;
427 return 0;
428}
429
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200430static int remove_path(const char *name)
431{
Pierre Habouzit182af832007-09-16 00:32:36 +0200432 int ret;
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200433 char *slash, *dirs;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200434
435 ret = unlink(name);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200436 if (ret)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200437 return ret;
Pierre Habouzit182af832007-09-16 00:32:36 +0200438 dirs = xstrdup(name);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200439 while ((slash = strrchr(name, '/'))) {
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200440 *slash = '\0';
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200441 if (rmdir(name) != 0)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200442 break;
443 }
444 free(dirs);
445 return ret;
446}
447
Junio C Hamano65ac6e92006-10-27 14:08:14 -0700448static int remove_file(int clean, const char *path, int no_wd)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200449{
Johannes Schindelin5a753612006-07-27 19:12:29 +0200450 int update_cache = index_only || clean;
Junio C Hamano65ac6e92006-10-27 14:08:14 -0700451 int update_working_directory = !index_only && !no_wd;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200452
Johannes Schindelin5a753612006-07-27 19:12:29 +0200453 if (update_cache) {
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200454 if (remove_file_from_cache(path))
455 return -1;
456 }
Junio C Hamano65ac6e92006-10-27 14:08:14 -0700457 if (update_working_directory) {
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200458 unlink(path);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200459 if (errno != ENOENT || errno != EISDIR)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200460 return -1;
461 remove_path(path);
462 }
463 return 0;
464}
465
466static char *unique_path(const char *path, const char *branch)
467{
468 char *newpath = xmalloc(strlen(path) + 1 + strlen(branch) + 8 + 1);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200469 int suffix = 0;
470 struct stat st;
Johannes Schindelinf59aac42006-07-30 18:35:21 +0200471 char *p = newpath + strlen(path);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200472 strcpy(newpath, path);
Johannes Schindelinf59aac42006-07-30 18:35:21 +0200473 *(p++) = '~';
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200474 strcpy(p, branch);
475 for (; *p; ++p)
476 if ('/' == *p)
477 *p = '_';
Johannes Schindelin5a753612006-07-27 19:12:29 +0200478 while (path_list_has_path(&current_file_set, newpath) ||
479 path_list_has_path(&current_directory_set, newpath) ||
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200480 lstat(newpath, &st) == 0)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200481 sprintf(p, "_%d", suffix++);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200482
Johannes Schindelin5a753612006-07-27 19:12:29 +0200483 path_list_insert(newpath, &current_file_set);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200484 return newpath;
485}
486
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200487static int mkdir_p(const char *path, unsigned long mode)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200488{
Shawn Pearce9befac42006-09-02 00:16:31 -0400489 /* path points to cache entries, so xstrdup before messing with it */
490 char *buf = xstrdup(path);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200491 int result = safe_create_leading_directories(buf);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200492 free(buf);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200493 return result;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200494}
495
496static void flush_buffer(int fd, const char *buf, unsigned long size)
497{
498 while (size > 0) {
Andy Whitcroft93822c22007-01-08 15:58:23 +0000499 long ret = write_in_full(fd, buf, size);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200500 if (ret < 0) {
501 /* Ignore epipe */
502 if (errno == EPIPE)
503 break;
504 die("merge-recursive: %s", strerror(errno));
505 } else if (!ret) {
506 die("merge-recursive: disk full?");
507 }
508 size -= ret;
509 buf += ret;
510 }
511}
512
Linus Torvalds851c6032007-04-19 22:48:21 -0700513static int make_room_for_path(const char *path)
514{
515 int status;
516 const char *msg = "failed to create path '%s'%s";
517
518 status = mkdir_p(path, 0777);
519 if (status) {
520 if (status == -3) {
521 /* something else exists */
522 error(msg, path, ": perhaps a D/F conflict?");
523 return -1;
524 }
525 die(msg, path, "");
526 }
527
528 /* Successful unlink is good.. */
529 if (!unlink(path))
530 return 0;
531 /* .. and so is no existing file */
532 if (errno == ENOENT)
533 return 0;
534 /* .. but not some other error (who really cares what?) */
535 return error(msg, path, ": perhaps a D/F conflict?");
536}
537
Junio C Hamano9fe0d872006-10-23 00:46:15 -0700538static void update_file_flags(const unsigned char *sha,
539 unsigned mode,
540 const char *path,
541 int update_cache,
542 int update_wd)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200543{
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200544 if (index_only)
545 update_wd = 0;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200546
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200547 if (update_wd) {
Nicolas Pitre21666f12007-02-26 14:55:59 -0500548 enum object_type type;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200549 void *buf;
550 unsigned long size;
551
Nicolas Pitre21666f12007-02-26 14:55:59 -0500552 buf = read_sha1_file(sha, &type, &size);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200553 if (!buf)
554 die("cannot read object %s '%s'", sha1_to_hex(sha), path);
Nicolas Pitre21666f12007-02-26 14:55:59 -0500555 if (type != OBJ_BLOB)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200556 die("blob expected for %s '%s'", sha1_to_hex(sha), path);
557
Linus Torvalds851c6032007-04-19 22:48:21 -0700558 if (make_room_for_path(path) < 0) {
559 update_wd = 0;
560 goto update_index;
561 }
Johannes Sixt723024d2007-03-03 20:32:46 +0100562 if (S_ISREG(mode) || (!has_symlinks && S_ISLNK(mode))) {
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200563 int fd;
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200564 if (mode & 0100)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200565 mode = 0777;
566 else
567 mode = 0666;
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200568 fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode);
569 if (fd < 0)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200570 die("failed to open %s: %s", path, strerror(errno));
571 flush_buffer(fd, buf, size);
572 close(fd);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200573 } else if (S_ISLNK(mode)) {
Pierre Habouzit182af832007-09-16 00:32:36 +0200574 char *lnk = xmemdupz(buf, size);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200575 mkdir_p(path, 0777);
Junio C Hamano17cd29b2007-02-25 18:42:07 -0800576 unlink(path);
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200577 symlink(lnk, path);
Johannes Sixt723024d2007-03-03 20:32:46 +0100578 free(lnk);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200579 } else
580 die("do not know what to do with %06o %s '%s'",
581 mode, sha1_to_hex(sha), path);
582 }
Junio C Hamano4d508952007-04-07 06:41:13 -0700583 update_index:
Johannes Schindelin3af244c2006-07-27 13:17:07 +0200584 if (update_cache)
585 add_cacheinfo(mode, sha, path, 0, update_wd, ADD_CACHE_OK_TO_ADD);
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200586}
587
Junio C Hamano9fe0d872006-10-23 00:46:15 -0700588static void update_file(int clean,
589 const unsigned char *sha,
590 unsigned mode,
591 const char *path)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200592{
593 update_file_flags(sha, mode, path, index_only || clean, !index_only);
594}
595
596/* Low level file merging, update and removal */
597
598struct merge_file_info
599{
600 unsigned char sha[20];
601 unsigned mode;
602 unsigned clean:1,
603 merge:1;
604};
605
Junio C Hamanoc2b4fae2006-11-29 12:07:37 -0800606static void fill_mm(const unsigned char *sha1, mmfile_t *mm)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200607{
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200608 unsigned long size;
Nicolas Pitre21666f12007-02-26 14:55:59 -0500609 enum object_type type;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200610
Johannes Schindelinf9538312006-12-13 04:05:39 +0100611 if (!hashcmp(sha1, null_sha1)) {
612 mm->ptr = xstrdup("");
613 mm->size = 0;
614 return;
615 }
616
Nicolas Pitre21666f12007-02-26 14:55:59 -0500617 mm->ptr = read_sha1_file(sha1, &type, &size);
618 if (!mm->ptr || type != OBJ_BLOB)
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200619 die("unable to read blob object %s", sha1_to_hex(sha1));
Junio C Hamanoc2b4fae2006-11-29 12:07:37 -0800620 mm->size = size;
Johannes Schindelin6d297f82006-07-08 18:42:41 +0200621}
622
Junio C Hamano153920d2007-04-18 11:27:32 -0700623/*
624 * Customizable low-level merge drivers support.
625 */
626
627struct ll_merge_driver;
628typedef int (*ll_merge_fn)(const struct ll_merge_driver *,
629 const char *path,
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700630 mmfile_t *orig,
Junio C Hamanoa129d962007-04-16 22:59:18 -0700631 mmfile_t *src1, const char *name1,
632 mmfile_t *src2, const char *name2,
633 mmbuffer_t *result);
634
Junio C Hamano153920d2007-04-18 11:27:32 -0700635struct ll_merge_driver {
636 const char *name;
637 const char *description;
638 ll_merge_fn fn;
Junio C Hamano30864862007-04-18 12:18:25 -0700639 const char *recursive;
Junio C Hamano153920d2007-04-18 11:27:32 -0700640 struct ll_merge_driver *next;
641 char *cmdline;
642};
643
644/*
645 * Built-in low-levels
646 */
Junio C Hamanob7986712007-08-14 15:33:07 -0700647static int ll_binary_merge(const struct ll_merge_driver *drv_unused,
648 const char *path_unused,
649 mmfile_t *orig,
650 mmfile_t *src1, const char *name1,
651 mmfile_t *src2, const char *name2,
652 mmbuffer_t *result)
653{
654 /*
655 * The tentative merge result is "ours" for the final round,
656 * or common ancestor for an internal merge. Still return
657 * "conflicted merge" status.
658 */
659 mmfile_t *stolen = index_only ? orig : src1;
660
661 result->ptr = stolen->ptr;
662 result->size = stolen->size;
663 stolen->ptr = NULL;
664 return 1;
665}
666
Junio C Hamano153920d2007-04-18 11:27:32 -0700667static int ll_xdl_merge(const struct ll_merge_driver *drv_unused,
668 const char *path_unused,
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700669 mmfile_t *orig,
Junio C Hamanoa129d962007-04-16 22:59:18 -0700670 mmfile_t *src1, const char *name1,
671 mmfile_t *src2, const char *name2,
672 mmbuffer_t *result)
673{
674 xpparam_t xpp;
675
Johannes Schindelin9f308552007-06-05 03:36:49 +0100676 if (buffer_is_binary(orig->ptr, orig->size) ||
Junio C Hamanob7986712007-08-14 15:33:07 -0700677 buffer_is_binary(src1->ptr, src1->size) ||
678 buffer_is_binary(src2->ptr, src2->size)) {
679 warning("Cannot merge binary files: %s vs. %s\n",
Johannes Schindelin9f308552007-06-05 03:36:49 +0100680 name1, name2);
Junio C Hamanob7986712007-08-14 15:33:07 -0700681 return ll_binary_merge(drv_unused, path_unused,
682 orig, src1, name1,
683 src2, name2,
684 result);
685 }
Johannes Schindelin9f308552007-06-05 03:36:49 +0100686
Junio C Hamanoa129d962007-04-16 22:59:18 -0700687 memset(&xpp, 0, sizeof(xpp));
688 return xdl_merge(orig,
689 src1, name1,
690 src2, name2,
691 &xpp, XDL_MERGE_ZEALOUS,
692 result);
693}
694
Junio C Hamano153920d2007-04-18 11:27:32 -0700695static int ll_union_merge(const struct ll_merge_driver *drv_unused,
696 const char *path_unused,
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700697 mmfile_t *orig,
Junio C Hamanoa129d962007-04-16 22:59:18 -0700698 mmfile_t *src1, const char *name1,
699 mmfile_t *src2, const char *name2,
700 mmbuffer_t *result)
701{
702 char *src, *dst;
703 long size;
704 const int marker_size = 7;
705
Junio C Hamano153920d2007-04-18 11:27:32 -0700706 int status = ll_xdl_merge(drv_unused, path_unused,
707 orig, src1, NULL, src2, NULL, result);
Junio C Hamanoa129d962007-04-16 22:59:18 -0700708 if (status <= 0)
709 return status;
710 size = result->size;
711 src = dst = result->ptr;
712 while (size) {
713 char ch;
714 if ((marker_size < size) &&
715 (*src == '<' || *src == '=' || *src == '>')) {
716 int i;
717 ch = *src;
718 for (i = 0; i < marker_size; i++)
719 if (src[i] != ch)
720 goto not_a_marker;
721 if (src[marker_size] != '\n')
722 goto not_a_marker;
723 src += marker_size + 1;
724 size -= marker_size + 1;
725 continue;
726 }
727 not_a_marker:
728 do {
729 ch = *src++;
730 *dst++ = ch;
731 size--;
732 } while (ch != '\n' && size);
733 }
734 result->size = dst - result->ptr;
735 return 0;
736}
737
Junio C Hamano153920d2007-04-18 11:27:32 -0700738#define LL_BINARY_MERGE 0
739#define LL_TEXT_MERGE 1
740#define LL_UNION_MERGE 2
741static struct ll_merge_driver ll_merge_drv[] = {
742 { "binary", "built-in binary merge", ll_binary_merge },
743 { "text", "built-in 3-way text merge", ll_xdl_merge },
744 { "union", "built-in union merge", ll_union_merge },
Junio C Hamanoa129d962007-04-16 22:59:18 -0700745};
746
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700747static void create_temp(mmfile_t *src, char *path)
Junio C Hamanoa129d962007-04-16 22:59:18 -0700748{
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700749 int fd;
750
751 strcpy(path, ".merge_file_XXXXXX");
Luiz Fernando N. Capitulino7647b172007-08-14 16:45:58 -0300752 fd = xmkstemp(path);
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700753 if (write_in_full(fd, src->ptr, src->size) != src->size)
754 die("unable to write temp-file");
755 close(fd);
756}
757
Junio C Hamano153920d2007-04-18 11:27:32 -0700758/*
759 * User defined low-level merge driver support.
760 */
761static int ll_ext_merge(const struct ll_merge_driver *fn,
762 const char *path,
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700763 mmfile_t *orig,
764 mmfile_t *src1, const char *name1,
765 mmfile_t *src2, const char *name2,
766 mmbuffer_t *result)
767{
768 char temp[3][50];
769 char cmdbuf[2048];
770 struct interp table[] = {
771 { "%O" },
772 { "%A" },
773 { "%B" },
774 };
775 struct child_process child;
776 const char *args[20];
777 int status, fd, i;
778 struct stat st;
779
Junio C Hamano15ba3af2007-04-18 19:05:57 -0700780 if (fn->cmdline == NULL)
781 die("custom merge driver %s lacks command line.", fn->name);
782
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700783 result->ptr = NULL;
784 result->size = 0;
785 create_temp(orig, temp[0]);
786 create_temp(src1, temp[1]);
787 create_temp(src2, temp[2]);
788
789 interp_set_entry(table, 0, temp[0]);
790 interp_set_entry(table, 1, temp[1]);
791 interp_set_entry(table, 2, temp[2]);
792
Junio C Hamano153920d2007-04-18 11:27:32 -0700793 output(1, "merging %s using %s", path,
794 fn->description ? fn->description : fn->name);
795
796 interpolate(cmdbuf, sizeof(cmdbuf), fn->cmdline, table, 3);
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700797
798 memset(&child, 0, sizeof(child));
799 child.argv = args;
800 args[0] = "sh";
801 args[1] = "-c";
802 args[2] = cmdbuf;
803 args[3] = NULL;
804
805 status = run_command(&child);
806 if (status < -ERR_RUN_COMMAND_FORK)
807 ; /* failure in run-command */
808 else
809 status = -status;
810 fd = open(temp[1], O_RDONLY);
811 if (fd < 0)
812 goto bad;
813 if (fstat(fd, &st))
814 goto close_bad;
815 result->size = st.st_size;
816 result->ptr = xmalloc(result->size + 1);
817 if (read_in_full(fd, result->ptr, result->size) != result->size) {
818 free(result->ptr);
819 result->ptr = NULL;
820 result->size = 0;
821 }
822 close_bad:
823 close(fd);
824 bad:
825 for (i = 0; i < 3; i++)
826 unlink(temp[i]);
827 return status;
828}
829
830/*
831 * merge.default and merge.driver configuration items
832 */
Junio C Hamano153920d2007-04-18 11:27:32 -0700833static struct ll_merge_driver *ll_user_merge, **ll_user_merge_tail;
Junio C Hamanobe89cb22007-04-18 01:47:21 -0700834static const char *default_ll_merge;
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700835
836static int read_merge_config(const char *var, const char *value)
837{
Junio C Hamano153920d2007-04-18 11:27:32 -0700838 struct ll_merge_driver *fn;
839 const char *ep, *name;
840 int namelen;
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700841
Junio C Hamanobe89cb22007-04-18 01:47:21 -0700842 if (!strcmp(var, "merge.default")) {
Junio C Hamano153920d2007-04-18 11:27:32 -0700843 if (value)
844 default_ll_merge = strdup(value);
Junio C Hamanobe89cb22007-04-18 01:47:21 -0700845 return 0;
846 }
847
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700848 /*
Junio C Hamano153920d2007-04-18 11:27:32 -0700849 * We are not interested in anything but "merge.<name>.variable";
850 * especially, we do not want to look at variables such as
851 * "merge.summary", "merge.tool", and "merge.verbosity".
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700852 */
Junio C Hamano15ba3af2007-04-18 19:05:57 -0700853 if (prefixcmp(var, "merge.") || (ep = strrchr(var, '.')) == var + 5)
Junio C Hamano153920d2007-04-18 11:27:32 -0700854 return 0;
855
856 /*
857 * Find existing one as we might be processing merge.<name>.var2
858 * after seeing merge.<name>.var1.
859 */
860 name = var + 6;
861 namelen = ep - name;
862 for (fn = ll_user_merge; fn; fn = fn->next)
863 if (!strncmp(fn->name, name, namelen) && !fn->name[namelen])
864 break;
865 if (!fn) {
Junio C Hamano153920d2007-04-18 11:27:32 -0700866 fn = xcalloc(1, sizeof(struct ll_merge_driver));
Pierre Habouzit182af832007-09-16 00:32:36 +0200867 fn->name = xmemdupz(name, namelen);
Junio C Hamano153920d2007-04-18 11:27:32 -0700868 fn->fn = ll_ext_merge;
Junio C Hamano153920d2007-04-18 11:27:32 -0700869 *ll_user_merge_tail = fn;
Junio C Hamanoe87b1c92007-04-21 00:05:31 -0700870 ll_user_merge_tail = &(fn->next);
Junio C Hamano153920d2007-04-18 11:27:32 -0700871 }
872
873 ep++;
874
875 if (!strcmp("name", ep)) {
876 if (!value)
877 return error("%s: lacks value", var);
878 fn->description = strdup(value);
879 return 0;
880 }
881
882 if (!strcmp("driver", ep)) {
883 if (!value)
884 return error("%s: lacks value", var);
885 /*
886 * merge.<name>.driver specifies the command line:
887 *
888 * command-line
889 *
890 * The command-line will be interpolated with the following
891 * tokens and is given to the shell:
892 *
893 * %O - temporary file name for the merge base.
894 * %A - temporary file name for our version.
895 * %B - temporary file name for the other branches' version.
896 *
897 * The external merge driver should write the results in the
898 * file named by %A, and signal that it has done with zero exit
899 * status.
900 */
901 fn->cmdline = strdup(value);
902 return 0;
903 }
904
Junio C Hamano30864862007-04-18 12:18:25 -0700905 if (!strcmp("recursive", ep)) {
906 if (!value)
907 return error("%s: lacks value", var);
908 fn->recursive = strdup(value);
909 return 0;
910 }
911
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700912 return 0;
913}
914
915static void initialize_ll_merge(void)
916{
Junio C Hamano153920d2007-04-18 11:27:32 -0700917 if (ll_user_merge_tail)
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700918 return;
Junio C Hamano153920d2007-04-18 11:27:32 -0700919 ll_user_merge_tail = &ll_user_merge;
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700920 git_config(read_merge_config);
921}
922
Junio C Hamanoa5e92ab2007-04-18 16:16:37 -0700923static const struct ll_merge_driver *find_ll_merge_driver(const char *merge_attr)
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700924{
Junio C Hamano153920d2007-04-18 11:27:32 -0700925 struct ll_merge_driver *fn;
Junio C Hamanoa129d962007-04-16 22:59:18 -0700926 const char *name;
927 int i;
928
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700929 initialize_ll_merge();
930
931 if (ATTR_TRUE(merge_attr))
Junio C Hamano153920d2007-04-18 11:27:32 -0700932 return &ll_merge_drv[LL_TEXT_MERGE];
Junio C Hamanoa129d962007-04-16 22:59:18 -0700933 else if (ATTR_FALSE(merge_attr))
Junio C Hamano153920d2007-04-18 11:27:32 -0700934 return &ll_merge_drv[LL_BINARY_MERGE];
Junio C Hamanobe89cb22007-04-18 01:47:21 -0700935 else if (ATTR_UNSET(merge_attr)) {
936 if (!default_ll_merge)
Junio C Hamano153920d2007-04-18 11:27:32 -0700937 return &ll_merge_drv[LL_TEXT_MERGE];
Junio C Hamanobe89cb22007-04-18 01:47:21 -0700938 else
939 name = default_ll_merge;
940 }
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700941 else
942 name = merge_attr;
Junio C Hamanoa129d962007-04-16 22:59:18 -0700943
Junio C Hamano153920d2007-04-18 11:27:32 -0700944 for (fn = ll_user_merge; fn; fn = fn->next)
945 if (!strcmp(fn->name, name))
946 return fn;
Junio C Hamanof3ef6b62007-04-17 22:51:45 -0700947
Junio C Hamano153920d2007-04-18 11:27:32 -0700948 for (i = 0; i < ARRAY_SIZE(ll_merge_drv); i++)
949 if (!strcmp(ll_merge_drv[i].name, name))
950 return &ll_merge_drv[i];
Junio C Hamanoa129d962007-04-16 22:59:18 -0700951
952 /* default to the 3-way */
Junio C Hamano153920d2007-04-18 11:27:32 -0700953 return &ll_merge_drv[LL_TEXT_MERGE];
Junio C Hamanoa129d962007-04-16 22:59:18 -0700954}
955
Junio C Hamanoa5e92ab2007-04-18 16:16:37 -0700956static const char *git_path_check_merge(const char *path)
Junio C Hamanoa129d962007-04-16 22:59:18 -0700957{
958 static struct git_attr_check attr_merge_check;
959
960 if (!attr_merge_check.attr)
961 attr_merge_check.attr = git_attr("merge", 5);
962
963 if (git_checkattr(path, 1, &attr_merge_check))
Junio C Hamanoa5e92ab2007-04-18 16:16:37 -0700964 return NULL;
Junio C Hamanoa129d962007-04-16 22:59:18 -0700965 return attr_merge_check.value;
966}
967
Junio C Hamano3e5261a2007-04-16 21:58:01 -0700968static int ll_merge(mmbuffer_t *result_buf,
969 struct diff_filespec *o,
970 struct diff_filespec *a,
971 struct diff_filespec *b,
972 const char *branch1,
973 const char *branch2)
974{
975 mmfile_t orig, src1, src2;
Junio C Hamano3e5261a2007-04-16 21:58:01 -0700976 char *name1, *name2;
977 int merge_status;
Junio C Hamanoa5e92ab2007-04-18 16:16:37 -0700978 const char *ll_driver_name;
Junio C Hamano153920d2007-04-18 11:27:32 -0700979 const struct ll_merge_driver *driver;
Junio C Hamano3e5261a2007-04-16 21:58:01 -0700980
981 name1 = xstrdup(mkpath("%s:%s", branch1, a->path));
982 name2 = xstrdup(mkpath("%s:%s", branch2, b->path));
983
984 fill_mm(o->sha1, &orig);
985 fill_mm(a->sha1, &src1);
986 fill_mm(b->sha1, &src2);
987
Junio C Hamanoa5e92ab2007-04-18 16:16:37 -0700988 ll_driver_name = git_path_check_merge(a->path);
989 driver = find_ll_merge_driver(ll_driver_name);
Junio C Hamanoa129d962007-04-16 22:59:18 -0700990
Junio C Hamanod56dbd62007-04-18 19:22:57 -0700991 if (index_only && driver->recursive)
992 driver = find_ll_merge_driver(driver->recursive);
Junio C Hamano153920d2007-04-18 11:27:32 -0700993 merge_status = driver->fn(driver, a->path,
994 &orig, &src1, name1, &src2, name2,
995 result_buf);
Junio C Hamanoa129d962007-04-16 22:59:18 -0700996
Junio C Hamano3e5261a2007-04-16 21:58:01 -0700997 free(name1);
998 free(name2);
999 free(orig.ptr);
1000 free(src1.ptr);
1001 free(src2.ptr);
1002 return merge_status;
1003}
1004
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001005static struct merge_file_info merge_file(struct diff_filespec *o,
1006 struct diff_filespec *a, struct diff_filespec *b,
Johannes Schindelinc1d20842006-07-27 19:13:47 +02001007 const char *branch1, const char *branch2)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001008{
1009 struct merge_file_info result;
1010 result.merge = 0;
1011 result.clean = 1;
1012
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001013 if ((S_IFMT & a->mode) != (S_IFMT & b->mode)) {
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001014 result.clean = 0;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001015 if (S_ISREG(a->mode)) {
1016 result.mode = a->mode;
Shawn Pearce8da71492006-08-23 02:49:00 -04001017 hashcpy(result.sha, a->sha1);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001018 } else {
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001019 result.mode = b->mode;
Shawn Pearce8da71492006-08-23 02:49:00 -04001020 hashcpy(result.sha, b->sha1);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001021 }
1022 } else {
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001023 if (!sha_eq(a->sha1, o->sha1) && !sha_eq(b->sha1, o->sha1))
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001024 result.merge = 1;
1025
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001026 result.mode = a->mode == o->mode ? b->mode: a->mode;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001027
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001028 if (sha_eq(a->sha1, o->sha1))
Shawn Pearce8da71492006-08-23 02:49:00 -04001029 hashcpy(result.sha, b->sha1);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001030 else if (sha_eq(b->sha1, o->sha1))
Shawn Pearce8da71492006-08-23 02:49:00 -04001031 hashcpy(result.sha, a->sha1);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001032 else if (S_ISREG(a->mode)) {
Junio C Hamanoc2b4fae2006-11-29 12:07:37 -08001033 mmbuffer_t result_buf;
Junio C Hamanoc2b4fae2006-11-29 12:07:37 -08001034 int merge_status;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001035
Junio C Hamano3e5261a2007-04-16 21:58:01 -07001036 merge_status = ll_merge(&result_buf, o, a, b,
1037 branch1, branch2);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001038
Junio C Hamanoc2b4fae2006-11-29 12:07:37 -08001039 if ((merge_status < 0) || !result_buf.ptr)
1040 die("Failed to execute internal merge");
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001041
Junio C Hamanoc2b4fae2006-11-29 12:07:37 -08001042 if (write_sha1_file(result_buf.ptr, result_buf.size,
1043 blob_type, result.sha))
1044 die("Unable to add %s to database",
1045 a->path);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001046
Junio C Hamanoc2b4fae2006-11-29 12:07:37 -08001047 free(result_buf.ptr);
1048 result.clean = (merge_status == 0);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001049 } else {
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001050 if (!(S_ISLNK(a->mode) || S_ISLNK(b->mode)))
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001051 die("cannot merge modes?");
1052
Shawn Pearce8da71492006-08-23 02:49:00 -04001053 hashcpy(result.sha, a->sha1);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001054
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001055 if (!sha_eq(a->sha1, b->sha1))
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001056 result.clean = 0;
1057 }
1058 }
1059
1060 return result;
1061}
1062
1063static void conflict_rename_rename(struct rename *ren1,
1064 const char *branch1,
1065 struct rename *ren2,
1066 const char *branch2)
1067{
1068 char *del[2];
1069 int delp = 0;
1070 const char *ren1_dst = ren1->pair->two->path;
1071 const char *ren2_dst = ren2->pair->two->path;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001072 const char *dst_name1 = ren1_dst;
1073 const char *dst_name2 = ren2_dst;
1074 if (path_list_has_path(&current_directory_set, ren1_dst)) {
1075 dst_name1 = del[delp++] = unique_path(ren1_dst, branch1);
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001076 output(1, "%s is a directory in %s added as %s instead",
Johannes Schindelin5a753612006-07-27 19:12:29 +02001077 ren1_dst, branch2, dst_name1);
Junio C Hamano65ac6e92006-10-27 14:08:14 -07001078 remove_file(0, ren1_dst, 0);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001079 }
Johannes Schindelin5a753612006-07-27 19:12:29 +02001080 if (path_list_has_path(&current_directory_set, ren2_dst)) {
1081 dst_name2 = del[delp++] = unique_path(ren2_dst, branch2);
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001082 output(1, "%s is a directory in %s added as %s instead",
Johannes Schindelin5a753612006-07-27 19:12:29 +02001083 ren2_dst, branch1, dst_name2);
Junio C Hamano65ac6e92006-10-27 14:08:14 -07001084 remove_file(0, ren2_dst, 0);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001085 }
Alex Riesena97e4072007-03-31 13:49:38 +02001086 if (index_only) {
1087 remove_file_from_cache(dst_name1);
1088 remove_file_from_cache(dst_name2);
1089 /*
1090 * Uncomment to leave the conflicting names in the resulting tree
1091 *
1092 * update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, dst_name1);
1093 * update_file(0, ren2->pair->two->sha1, ren2->pair->two->mode, dst_name2);
1094 */
1095 } else {
1096 update_stages(dst_name1, NULL, ren1->pair->two, NULL, 1);
1097 update_stages(dst_name2, NULL, NULL, ren2->pair->two, 1);
1098 }
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001099 while (delp--)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001100 free(del[delp]);
1101}
1102
1103static void conflict_rename_dir(struct rename *ren1,
1104 const char *branch1)
1105{
Johannes Schindelin5a753612006-07-27 19:12:29 +02001106 char *new_path = unique_path(ren1->pair->two->path, branch1);
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001107 output(1, "Renamed %s to %s instead", ren1->pair->one->path, new_path);
Junio C Hamano65ac6e92006-10-27 14:08:14 -07001108 remove_file(0, ren1->pair->two->path, 0);
Johannes Schindelin5a753612006-07-27 19:12:29 +02001109 update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, new_path);
1110 free(new_path);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001111}
1112
1113static void conflict_rename_rename_2(struct rename *ren1,
1114 const char *branch1,
1115 struct rename *ren2,
1116 const char *branch2)
1117{
Johannes Schindelin5a753612006-07-27 19:12:29 +02001118 char *new_path1 = unique_path(ren1->pair->two->path, branch1);
1119 char *new_path2 = unique_path(ren2->pair->two->path, branch2);
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001120 output(1, "Renamed %s to %s and %s to %s instead",
Johannes Schindelin5a753612006-07-27 19:12:29 +02001121 ren1->pair->one->path, new_path1,
1122 ren2->pair->one->path, new_path2);
Junio C Hamano65ac6e92006-10-27 14:08:14 -07001123 remove_file(0, ren1->pair->two->path, 0);
Johannes Schindelin5a753612006-07-27 19:12:29 +02001124 update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, new_path1);
1125 update_file(0, ren2->pair->two->sha1, ren2->pair->two->mode, new_path2);
1126 free(new_path2);
1127 free(new_path1);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001128}
1129
Johannes Schindelin5a753612006-07-27 19:12:29 +02001130static int process_renames(struct path_list *a_renames,
1131 struct path_list *b_renames,
1132 const char *a_branch,
1133 const char *b_branch)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001134{
Johannes Schindelin5a753612006-07-27 19:12:29 +02001135 int clean_merge = 1, i, j;
1136 struct path_list a_by_dst = {NULL, 0, 0, 0}, b_by_dst = {NULL, 0, 0, 0};
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001137 const struct rename *sre;
1138
Johannes Schindelin5a753612006-07-27 19:12:29 +02001139 for (i = 0; i < a_renames->nr; i++) {
1140 sre = a_renames->items[i].util;
1141 path_list_insert(sre->pair->two->path, &a_by_dst)->util
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001142 = sre->dst_entry;
1143 }
Johannes Schindelin5a753612006-07-27 19:12:29 +02001144 for (i = 0; i < b_renames->nr; i++) {
1145 sre = b_renames->items[i].util;
1146 path_list_insert(sre->pair->two->path, &b_by_dst)->util
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001147 = sre->dst_entry;
1148 }
1149
Johannes Schindelin5a753612006-07-27 19:12:29 +02001150 for (i = 0, j = 0; i < a_renames->nr || j < b_renames->nr;) {
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001151 int compare;
1152 char *src;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001153 struct path_list *renames1, *renames2, *renames2Dst;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001154 struct rename *ren1 = NULL, *ren2 = NULL;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001155 const char *branch1, *branch2;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001156 const char *ren1_src, *ren1_dst;
1157
Johannes Schindelin5a753612006-07-27 19:12:29 +02001158 if (i >= a_renames->nr) {
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001159 compare = 1;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001160 ren2 = b_renames->items[j++].util;
1161 } else if (j >= b_renames->nr) {
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001162 compare = -1;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001163 ren1 = a_renames->items[i++].util;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001164 } else {
Johannes Schindelin5a753612006-07-27 19:12:29 +02001165 compare = strcmp(a_renames->items[i].path,
1166 b_renames->items[j].path);
Johannes Schindelin3d234d02006-08-04 18:21:41 +02001167 if (compare <= 0)
1168 ren1 = a_renames->items[i++].util;
1169 if (compare >= 0)
1170 ren2 = b_renames->items[j++].util;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001171 }
1172
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001173 /* TODO: refactor, so that 1/2 are not needed */
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001174 if (ren1) {
Johannes Schindelin5a753612006-07-27 19:12:29 +02001175 renames1 = a_renames;
1176 renames2 = b_renames;
1177 renames2Dst = &b_by_dst;
1178 branch1 = a_branch;
1179 branch2 = b_branch;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001180 } else {
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001181 struct rename *tmp;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001182 renames1 = b_renames;
1183 renames2 = a_renames;
1184 renames2Dst = &a_by_dst;
1185 branch1 = b_branch;
1186 branch2 = a_branch;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001187 tmp = ren2;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001188 ren2 = ren1;
1189 ren1 = tmp;
1190 }
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001191 src = ren1->pair->one->path;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001192
1193 ren1->dst_entry->processed = 1;
1194 ren1->src_entry->processed = 1;
1195
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001196 if (ren1->processed)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001197 continue;
1198 ren1->processed = 1;
1199
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001200 ren1_src = ren1->pair->one->path;
1201 ren1_dst = ren1->pair->two->path;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001202
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001203 if (ren2) {
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001204 const char *ren2_src = ren2->pair->one->path;
1205 const char *ren2_dst = ren2->pair->two->path;
1206 /* Renamed in 1 and renamed in 2 */
1207 if (strcmp(ren1_src, ren2_src) != 0)
1208 die("ren1.src != ren2.src");
1209 ren2->dst_entry->processed = 1;
1210 ren2->processed = 1;
1211 if (strcmp(ren1_dst, ren2_dst) != 0) {
Johannes Schindelin5a753612006-07-27 19:12:29 +02001212 clean_merge = 0;
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001213 output(1, "CONFLICT (rename/rename): "
Alex Riesena97e4072007-03-31 13:49:38 +02001214 "Rename \"%s\"->\"%s\" in branch \"%s\" "
1215 "rename \"%s\"->\"%s\" in \"%s\"%s",
Johannes Schindelin5a753612006-07-27 19:12:29 +02001216 src, ren1_dst, branch1,
Alex Riesena97e4072007-03-31 13:49:38 +02001217 src, ren2_dst, branch2,
1218 index_only ? " (left unresolved)": "");
1219 if (index_only) {
1220 remove_file_from_cache(src);
1221 update_file(0, ren1->pair->one->sha1,
1222 ren1->pair->one->mode, src);
1223 }
Johannes Schindelin5a753612006-07-27 19:12:29 +02001224 conflict_rename_rename(ren1, branch1, ren2, branch2);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001225 } else {
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001226 struct merge_file_info mfi;
Junio C Hamano65ac6e92006-10-27 14:08:14 -07001227 remove_file(1, ren1_src, 1);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001228 mfi = merge_file(ren1->pair->one,
1229 ren1->pair->two,
1230 ren2->pair->two,
Johannes Schindelin5a753612006-07-27 19:12:29 +02001231 branch1,
1232 branch2);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001233 if (mfi.merge || !mfi.clean)
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001234 output(1, "Renamed %s->%s", src, ren1_dst);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001235
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001236 if (mfi.merge)
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001237 output(2, "Auto-merged %s", ren1_dst);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001238
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001239 if (!mfi.clean) {
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001240 output(1, "CONFLICT (content): merge conflict in %s",
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001241 ren1_dst);
Johannes Schindelin5a753612006-07-27 19:12:29 +02001242 clean_merge = 0;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001243
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001244 if (!index_only)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001245 update_stages(ren1_dst,
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001246 ren1->pair->one,
1247 ren1->pair->two,
1248 ren2->pair->two,
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001249 1 /* clear */);
1250 }
1251 update_file(mfi.clean, mfi.sha, mfi.mode, ren1_dst);
1252 }
1253 } else {
1254 /* Renamed in 1, maybe changed in 2 */
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001255 struct path_list_item *item;
1256 /* we only use sha1 and mode of these */
1257 struct diff_filespec src_other, dst_other;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001258 int try_merge, stage = a_renames == renames1 ? 3: 2;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001259
Shawn O. Pearce183d7972007-02-04 00:45:54 -05001260 remove_file(1, ren1_src, index_only || stage == 3);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001261
Junio C Hamano87cb0042006-08-23 14:31:20 -07001262 hashcpy(src_other.sha1, ren1->src_entry->stages[stage].sha);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001263 src_other.mode = ren1->src_entry->stages[stage].mode;
Junio C Hamano87cb0042006-08-23 14:31:20 -07001264 hashcpy(dst_other.sha1, ren1->dst_entry->stages[stage].sha);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001265 dst_other.mode = ren1->dst_entry->stages[stage].mode;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001266
Johannes Schindelin5a753612006-07-27 19:12:29 +02001267 try_merge = 0;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001268
Johannes Schindelin5a753612006-07-27 19:12:29 +02001269 if (path_list_has_path(&current_directory_set, ren1_dst)) {
1270 clean_merge = 0;
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001271 output(1, "CONFLICT (rename/directory): Renamed %s->%s in %s "
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001272 " directory %s added in %s",
Johannes Schindelin5a753612006-07-27 19:12:29 +02001273 ren1_src, ren1_dst, branch1,
1274 ren1_dst, branch2);
1275 conflict_rename_dir(ren1, branch1);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001276 } else if (sha_eq(src_other.sha1, null_sha1)) {
Johannes Schindelin5a753612006-07-27 19:12:29 +02001277 clean_merge = 0;
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001278 output(1, "CONFLICT (rename/delete): Renamed %s->%s in %s "
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001279 "and deleted in %s",
Johannes Schindelin5a753612006-07-27 19:12:29 +02001280 ren1_src, ren1_dst, branch1,
1281 branch2);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001282 update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, ren1_dst);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001283 } else if (!sha_eq(dst_other.sha1, null_sha1)) {
Johannes Schindelin5a753612006-07-27 19:12:29 +02001284 const char *new_path;
1285 clean_merge = 0;
1286 try_merge = 1;
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001287 output(1, "CONFLICT (rename/add): Renamed %s->%s in %s. "
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001288 "%s added in %s",
Johannes Schindelin5a753612006-07-27 19:12:29 +02001289 ren1_src, ren1_dst, branch1,
1290 ren1_dst, branch2);
1291 new_path = unique_path(ren1_dst, branch2);
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001292 output(1, "Added as %s instead", new_path);
Johannes Schindelin5a753612006-07-27 19:12:29 +02001293 update_file(0, dst_other.sha1, dst_other.mode, new_path);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001294 } else if ((item = path_list_lookup(ren1_dst, renames2Dst))) {
1295 ren2 = item->util;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001296 clean_merge = 0;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001297 ren2->processed = 1;
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001298 output(1, "CONFLICT (rename/rename): Renamed %s->%s in %s. "
1299 "Renamed %s->%s in %s",
Johannes Schindelin5a753612006-07-27 19:12:29 +02001300 ren1_src, ren1_dst, branch1,
1301 ren2->pair->one->path, ren2->pair->two->path, branch2);
1302 conflict_rename_rename_2(ren1, branch1, ren2, branch2);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001303 } else
Johannes Schindelin5a753612006-07-27 19:12:29 +02001304 try_merge = 1;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001305
Johannes Schindelin5a753612006-07-27 19:12:29 +02001306 if (try_merge) {
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001307 struct diff_filespec *o, *a, *b;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001308 struct merge_file_info mfi;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001309 src_other.path = (char *)ren1_src;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001310
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001311 o = ren1->pair->one;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001312 if (a_renames == renames1) {
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001313 a = ren1->pair->two;
1314 b = &src_other;
1315 } else {
1316 b = ren1->pair->two;
1317 a = &src_other;
1318 }
1319 mfi = merge_file(o, a, b,
Johannes Schindelin5a753612006-07-27 19:12:29 +02001320 a_branch, b_branch);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001321
Alex Riesen0d5e6c92007-04-26 21:13:49 +02001322 if (mfi.clean &&
Alex Riesenc135ee82007-04-25 22:06:59 +02001323 sha_eq(mfi.sha, ren1->pair->two->sha1) &&
1324 mfi.mode == ren1->pair->two->mode)
Alex Riesen8a359812007-04-25 22:07:45 +02001325 /*
1326 * This messaged is part of
1327 * t6022 test. If you change
1328 * it update the test too.
1329 */
Alex Riesenc135ee82007-04-25 22:06:59 +02001330 output(3, "Skipped %s (merged same as existing)", ren1_dst);
1331 else {
1332 if (mfi.merge || !mfi.clean)
1333 output(1, "Renamed %s => %s", ren1_src, ren1_dst);
1334 if (mfi.merge)
1335 output(2, "Auto-merged %s", ren1_dst);
1336 if (!mfi.clean) {
1337 output(1, "CONFLICT (rename/modify): Merge conflict in %s",
1338 ren1_dst);
1339 clean_merge = 0;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001340
Alex Riesenc135ee82007-04-25 22:06:59 +02001341 if (!index_only)
1342 update_stages(ren1_dst,
1343 o, a, b, 1);
1344 }
1345 update_file(mfi.clean, mfi.sha, mfi.mode, ren1_dst);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001346 }
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001347 }
1348 }
1349 }
Johannes Schindelin5a753612006-07-27 19:12:29 +02001350 path_list_clear(&a_by_dst, 0);
1351 path_list_clear(&b_by_dst, 0);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001352
Johannes Schindelin5a753612006-07-27 19:12:29 +02001353 return clean_merge;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001354}
1355
Junio C Hamanoac7f0f42007-04-07 05:52:57 -07001356static unsigned char *stage_sha(const unsigned char *sha, unsigned mode)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001357{
Junio C Hamanoac7f0f42007-04-07 05:52:57 -07001358 return (is_null_sha1(sha) || mode == 0) ? NULL: (unsigned char *)sha;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001359}
1360
1361/* Per entry merge function */
1362static int process_entry(const char *path, struct stage_data *entry,
Johannes Schindelinc1d20842006-07-27 19:13:47 +02001363 const char *branch1,
1364 const char *branch2)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001365{
1366 /*
1367 printf("processing entry, clean cache: %s\n", index_only ? "yes": "no");
1368 print_index_entry("\tpath: ", entry);
1369 */
Johannes Schindelin5a753612006-07-27 19:12:29 +02001370 int clean_merge = 1;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001371 unsigned o_mode = entry->stages[1].mode;
1372 unsigned a_mode = entry->stages[2].mode;
1373 unsigned b_mode = entry->stages[3].mode;
Junio C Hamanoac7f0f42007-04-07 05:52:57 -07001374 unsigned char *o_sha = stage_sha(entry->stages[1].sha, o_mode);
1375 unsigned char *a_sha = stage_sha(entry->stages[2].sha, a_mode);
1376 unsigned char *b_sha = stage_sha(entry->stages[3].sha, b_mode);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001377
Johannes Schindelin5a753612006-07-27 19:12:29 +02001378 if (o_sha && (!a_sha || !b_sha)) {
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001379 /* Case A: Deleted in one */
Johannes Schindelin5a753612006-07-27 19:12:29 +02001380 if ((!a_sha && !b_sha) ||
1381 (sha_eq(a_sha, o_sha) && !b_sha) ||
1382 (!a_sha && sha_eq(b_sha, o_sha))) {
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001383 /* Deleted in both or deleted in one and
1384 * unchanged in the other */
Johannes Schindelin5a753612006-07-27 19:12:29 +02001385 if (a_sha)
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001386 output(2, "Removed %s", path);
Junio C Hamano65ac6e92006-10-27 14:08:14 -07001387 /* do not touch working file if it did not exist */
1388 remove_file(1, path, !a_sha);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001389 } else {
1390 /* Deleted in one and changed in the other */
Johannes Schindelin5a753612006-07-27 19:12:29 +02001391 clean_merge = 0;
1392 if (!a_sha) {
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001393 output(1, "CONFLICT (delete/modify): %s deleted in %s "
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001394 "and modified in %s. Version %s of %s left in tree.",
Johannes Schindelinc1d20842006-07-27 19:13:47 +02001395 path, branch1,
1396 branch2, branch2, path);
Johannes Schindelin5a753612006-07-27 19:12:29 +02001397 update_file(0, b_sha, b_mode, path);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001398 } else {
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001399 output(1, "CONFLICT (delete/modify): %s deleted in %s "
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001400 "and modified in %s. Version %s of %s left in tree.",
Johannes Schindelinc1d20842006-07-27 19:13:47 +02001401 path, branch2,
1402 branch1, branch1, path);
Johannes Schindelin5a753612006-07-27 19:12:29 +02001403 update_file(0, a_sha, a_mode, path);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001404 }
1405 }
1406
Johannes Schindelin5a753612006-07-27 19:12:29 +02001407 } else if ((!o_sha && a_sha && !b_sha) ||
1408 (!o_sha && !a_sha && b_sha)) {
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001409 /* Case B: Added in one. */
Johannes Schindelin5a753612006-07-27 19:12:29 +02001410 const char *add_branch;
1411 const char *other_branch;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001412 unsigned mode;
1413 const unsigned char *sha;
1414 const char *conf;
1415
Johannes Schindelin5a753612006-07-27 19:12:29 +02001416 if (a_sha) {
Johannes Schindelinc1d20842006-07-27 19:13:47 +02001417 add_branch = branch1;
1418 other_branch = branch2;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001419 mode = a_mode;
1420 sha = a_sha;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001421 conf = "file/directory";
1422 } else {
Johannes Schindelinc1d20842006-07-27 19:13:47 +02001423 add_branch = branch2;
1424 other_branch = branch1;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001425 mode = b_mode;
1426 sha = b_sha;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001427 conf = "directory/file";
1428 }
Johannes Schindelin5a753612006-07-27 19:12:29 +02001429 if (path_list_has_path(&current_directory_set, path)) {
1430 const char *new_path = unique_path(path, add_branch);
1431 clean_merge = 0;
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001432 output(1, "CONFLICT (%s): There is a directory with name %s in %s. "
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001433 "Added %s as %s",
Johannes Schindelin5a753612006-07-27 19:12:29 +02001434 conf, path, other_branch, path, new_path);
Junio C Hamano65ac6e92006-10-27 14:08:14 -07001435 remove_file(0, path, 0);
Johannes Schindelin5a753612006-07-27 19:12:29 +02001436 update_file(0, sha, mode, new_path);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001437 } else {
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001438 output(2, "Added %s", path);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001439 update_file(1, sha, mode, path);
1440 }
Johannes Schindelinf9538312006-12-13 04:05:39 +01001441 } else if (a_sha && b_sha) {
1442 /* Case C: Added in both (check for same permissions) and */
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001443 /* case D: Modified in both, but differently. */
Johannes Schindelinf9538312006-12-13 04:05:39 +01001444 const char *reason = "content";
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001445 struct merge_file_info mfi;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001446 struct diff_filespec o, a, b;
1447
Johannes Schindelinf9538312006-12-13 04:05:39 +01001448 if (!o_sha) {
1449 reason = "add/add";
1450 o_sha = (unsigned char *)null_sha1;
1451 }
Shawn O. Pearce89f40be2007-01-14 03:11:28 -05001452 output(2, "Auto-merged %s", path);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001453 o.path = a.path = b.path = (char *)path;
Shawn Pearce8da71492006-08-23 02:49:00 -04001454 hashcpy(o.sha1, o_sha);
Johannes Schindelin5a753612006-07-27 19:12:29 +02001455 o.mode = o_mode;
Shawn Pearce8da71492006-08-23 02:49:00 -04001456 hashcpy(a.sha1, a_sha);
Johannes Schindelin5a753612006-07-27 19:12:29 +02001457 a.mode = a_mode;
Shawn Pearce8da71492006-08-23 02:49:00 -04001458 hashcpy(b.sha1, b_sha);
Johannes Schindelin5a753612006-07-27 19:12:29 +02001459 b.mode = b_mode;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001460
1461 mfi = merge_file(&o, &a, &b,
Johannes Schindelinc1d20842006-07-27 19:13:47 +02001462 branch1, branch2);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001463
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001464 if (mfi.clean)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001465 update_file(1, mfi.sha, mfi.mode, path);
1466 else {
Johannes Schindelin5a753612006-07-27 19:12:29 +02001467 clean_merge = 0;
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001468 output(1, "CONFLICT (%s): Merge conflict in %s",
Johannes Schindelinf9538312006-12-13 04:05:39 +01001469 reason, path);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001470
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001471 if (index_only)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001472 update_file(0, mfi.sha, mfi.mode, path);
1473 else
1474 update_file_flags(mfi.sha, mfi.mode, path,
Johannes Schindelin5a753612006-07-27 19:12:29 +02001475 0 /* update_cache */, 1 /* update_working_directory */);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001476 }
Junio C Hamanoac7f0f42007-04-07 05:52:57 -07001477 } else if (!o_sha && !a_sha && !b_sha) {
1478 /*
1479 * this entry was deleted altogether. a_mode == 0 means
1480 * we had that path and want to actively remove it.
1481 */
1482 remove_file(1, path, !a_mode);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001483 } else
1484 die("Fatal merge failure, shouldn't happen.");
1485
Johannes Schindelin5a753612006-07-27 19:12:29 +02001486 return clean_merge;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001487}
1488
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001489static int merge_trees(struct tree *head,
1490 struct tree *merge,
1491 struct tree *common,
Johannes Schindelinc1d20842006-07-27 19:13:47 +02001492 const char *branch1,
1493 const char *branch2,
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001494 struct tree **result)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001495{
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001496 int code, clean;
Junio C Hamano68faf682007-02-15 16:32:45 -08001497
1498 if (subtree_merge) {
1499 merge = shift_tree_object(head, merge);
1500 common = shift_tree_object(head, common);
1501 }
1502
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001503 if (sha_eq(common->object.sha1, merge->object.sha1)) {
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001504 output(0, "Already uptodate!");
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001505 *result = head;
1506 return 1;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001507 }
1508
Johannes Schindelin7a85b842006-07-30 20:27:10 +02001509 code = git_merge_trees(index_only, common, head, merge);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001510
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001511 if (code != 0)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001512 die("merging of trees %s and %s failed",
1513 sha1_to_hex(head->object.sha1),
1514 sha1_to_hex(merge->object.sha1));
1515
Junio C Hamano8b944b52007-01-10 11:20:58 -08001516 if (unmerged_index()) {
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001517 struct path_list *entries, *re_head, *re_merge;
1518 int i;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001519 path_list_clear(&current_file_set, 1);
1520 path_list_clear(&current_directory_set, 1);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001521 get_files_dirs(head);
1522 get_files_dirs(merge);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001523
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001524 entries = get_unmerged();
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001525 re_head = get_renames(head, common, head, merge, entries);
1526 re_merge = get_renames(merge, common, head, merge, entries);
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001527 clean = process_renames(re_head, re_merge,
Johannes Schindelinc1d20842006-07-27 19:13:47 +02001528 branch1, branch2);
Shawn O. Pearcead57cbc2007-04-20 02:37:18 -04001529 for (i = 0; i < entries->nr; i++) {
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001530 const char *path = entries->items[i].path;
1531 struct stage_data *e = entries->items[i].util;
Shawn O. Pearce3f6ee2d2007-01-14 00:28:58 -05001532 if (!e->processed
1533 && !process_entry(path, e, branch1, branch2))
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001534 clean = 0;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001535 }
1536
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001537 path_list_clear(re_merge, 0);
1538 path_list_clear(re_head, 0);
1539 path_list_clear(entries, 1);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001540
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001541 }
Junio C Hamano1cf716a2007-01-12 12:05:58 -08001542 else
1543 clean = 1;
1544
Junio C Hamano8b944b52007-01-10 11:20:58 -08001545 if (index_only)
1546 *result = git_write_tree();
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001547
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001548 return clean;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001549}
1550
Johannes Schindelin8918b0c2006-08-09 22:30:58 +02001551static struct commit_list *reverse_commit_list(struct commit_list *list)
1552{
1553 struct commit_list *next = NULL, *current, *backup;
1554 for (current = list; current; current = backup) {
1555 backup = current->next;
1556 current->next = next;
1557 next = current;
1558 }
1559 return next;
1560}
1561
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001562/*
1563 * Merge the commits h1 and h2, return the resulting virtual
Pavel Roskin3dff5372007-02-03 23:49:16 -05001564 * commit object and a flag indicating the cleanness of the merge.
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001565 */
Junio C Hamano65ac6e92006-10-27 14:08:14 -07001566static int merge(struct commit *h1,
1567 struct commit *h2,
1568 const char *branch1,
1569 const char *branch2,
Junio C Hamano8b944b52007-01-10 11:20:58 -08001570 struct commit_list *ca,
Junio C Hamano65ac6e92006-10-27 14:08:14 -07001571 struct commit **result)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001572{
Junio C Hamano8b944b52007-01-10 11:20:58 -08001573 struct commit_list *iter;
Johannes Schindelin5a753612006-07-27 19:12:29 +02001574 struct commit *merged_common_ancestors;
Junio C Hamanof120ae22007-10-29 12:00:55 -07001575 struct tree *mrtree = mrtree;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001576 int clean;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001577
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001578 if (show(4)) {
1579 output(4, "Merging:");
1580 output_commit_title(h1);
1581 output_commit_title(h2);
1582 }
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001583
Junio C Hamano8b944b52007-01-10 11:20:58 -08001584 if (!ca) {
1585 ca = get_merge_bases(h1, h2, 1);
1586 ca = reverse_commit_list(ca);
1587 }
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001588
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001589 if (show(5)) {
1590 output(5, "found %u common ancestor(s):", commit_list_count(ca));
1591 for (iter = ca; iter; iter = iter->next)
1592 output_commit_title(iter->item);
1593 }
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001594
Johannes Schindelin5a753612006-07-27 19:12:29 +02001595 merged_common_ancestors = pop_commit(&ca);
Johannes Schindelin934d9a22006-08-09 18:43:03 +02001596 if (merged_common_ancestors == NULL) {
1597 /* if there is no common ancestor, make an empty tree */
1598 struct tree *tree = xcalloc(1, sizeof(struct tree));
Johannes Schindelin934d9a22006-08-09 18:43:03 +02001599
1600 tree->object.parsed = 1;
1601 tree->object.type = OBJ_TREE;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001602 pretend_sha1_file(NULL, 0, OBJ_TREE, tree->object.sha1);
Johannes Schindelin934d9a22006-08-09 18:43:03 +02001603 merged_common_ancestors = make_virtual_commit(tree, "ancestor");
1604 }
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001605
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001606 for (iter = ca; iter; iter = iter->next) {
Shawn O. Pearce63889632007-01-14 00:28:33 -05001607 call_depth++;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001608 /*
1609 * When the merge fails, the result contains files
1610 * with conflict markers. The cleanness flag is
Pavel Roskin3dff5372007-02-03 23:49:16 -05001611 * ignored, it was never actually used, as result of
1612 * merge_trees has always overwritten it: the committed
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001613 * "conflicts" were already resolved.
1614 */
Junio C Hamano8b944b52007-01-10 11:20:58 -08001615 discard_cache();
Johannes Schindelin5a753612006-07-27 19:12:29 +02001616 merge(merged_common_ancestors, iter->item,
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001617 "Temporary merge branch 1",
1618 "Temporary merge branch 2",
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001619 NULL,
Johannes Schindelin5a753612006-07-27 19:12:29 +02001620 &merged_common_ancestors);
Shawn O. Pearce63889632007-01-14 00:28:33 -05001621 call_depth--;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001622
Johannes Schindelin5a753612006-07-27 19:12:29 +02001623 if (!merged_common_ancestors)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001624 die("merge returned no commit");
1625 }
1626
Junio C Hamano8b944b52007-01-10 11:20:58 -08001627 discard_cache();
Shawn O. Pearce63889632007-01-14 00:28:33 -05001628 if (!call_depth) {
Junio C Hamano8b944b52007-01-10 11:20:58 -08001629 read_cache();
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001630 index_only = 0;
Junio C Hamano8b944b52007-01-10 11:20:58 -08001631 } else
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001632 index_only = 1;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001633
Johannes Schindelin5a753612006-07-27 19:12:29 +02001634 clean = merge_trees(h1->tree, h2->tree, merged_common_ancestors->tree,
Johannes Schindelinc1d20842006-07-27 19:13:47 +02001635 branch1, branch2, &mrtree);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001636
Junio C Hamano8b944b52007-01-10 11:20:58 -08001637 if (index_only) {
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001638 *result = make_virtual_commit(mrtree, "merged tree");
1639 commit_list_insert(h1, &(*result)->parents);
1640 commit_list_insert(h2, &(*result)->parents->next);
Junio C Hamano8b944b52007-01-10 11:20:58 -08001641 }
Shawn O. Pearce66a155b2007-01-14 00:28:53 -05001642 flush_output();
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001643 return clean;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001644}
1645
Shawn O. Pearce7ba3c072006-12-28 02:35:20 -05001646static const char *better_branch_name(const char *branch)
1647{
1648 static char githead_env[8 + 40 + 1];
1649 char *name;
1650
1651 if (strlen(branch) != 40)
1652 return branch;
1653 sprintf(githead_env, "GITHEAD_%s", branch);
1654 name = getenv(githead_env);
1655 return name ? name : branch;
1656}
1657
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001658static struct commit *get_ref(const char *ref)
1659{
1660 unsigned char sha1[20];
1661 struct object *object;
1662
1663 if (get_sha1(ref, sha1))
1664 die("Could not resolve ref '%s'", ref);
1665 object = deref_tag(parse_object(sha1), ref, strlen(ref));
Shawn O. Pearcea970e842006-12-28 02:35:24 -05001666 if (object->type == OBJ_TREE)
1667 return make_virtual_commit((struct tree*)object,
1668 better_branch_name(ref));
Junio C Hamanobf6d3242006-07-13 23:38:11 -07001669 if (object->type != OBJ_COMMIT)
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001670 return NULL;
1671 if (parse_commit((struct commit *)object))
1672 die("Could not parse commit '%s'", sha1_to_hex(object->sha1));
1673 return (struct commit *)object;
1674}
1675
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001676static int merge_config(const char *var, const char *value)
1677{
1678 if (!strcasecmp(var, "merge.verbosity")) {
1679 verbosity = git_config_int(var, value);
1680 return 0;
1681 }
Lars Hjemlidf3a02f2007-09-25 08:36:38 +02001682 if (!strcasecmp(var, "diff.renamelimit")) {
1683 rename_limit = git_config_int(var, value);
1684 return 0;
1685 }
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001686 return git_default_config(var, value);
1687}
1688
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001689int main(int argc, char *argv[])
1690{
Junio C Hamano8b944b52007-01-10 11:20:58 -08001691 static const char *bases[20];
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001692 static unsigned bases_count = 0;
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001693 int i, clean;
1694 const char *branch1, *branch2;
1695 struct commit *result, *h1, *h2;
Junio C Hamano8b944b52007-01-10 11:20:58 -08001696 struct commit_list *ca = NULL;
1697 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
1698 int index_fd;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001699
Junio C Hamano68faf682007-02-15 16:32:45 -08001700 if (argv[0]) {
1701 int namelen = strlen(argv[0]);
1702 if (8 < namelen &&
1703 !strcmp(argv[0] + namelen - 8, "-subtree"))
1704 subtree_merge = 1;
1705 }
1706
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001707 git_config(merge_config);
1708 if (getenv("GIT_MERGE_VERBOSITY"))
1709 verbosity = strtol(getenv("GIT_MERGE_VERBOSITY"), NULL, 10);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001710
1711 if (argc < 4)
1712 die("Usage: %s <base>... -- <head> <remote> ...\n", argv[0]);
1713
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001714 for (i = 1; i < argc; ++i) {
1715 if (!strcmp(argv[i], "--"))
1716 break;
1717 if (bases_count < sizeof(bases)/sizeof(*bases))
1718 bases[bases_count++] = argv[i];
1719 }
1720 if (argc - i != 3) /* "--" "<head>" "<remote>" */
1721 die("Not handling anything other than two heads merge.");
Shawn O. Pearcead57cbc2007-04-20 02:37:18 -04001722 if (verbosity >= 5)
Shawn O. Pearce3f6ee2d2007-01-14 00:28:58 -05001723 buffer_output = 0;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001724
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001725 branch1 = argv[++i];
1726 branch2 = argv[++i];
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001727
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001728 h1 = get_ref(branch1);
1729 h2 = get_ref(branch2);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001730
Shawn O. Pearcee0ec1812006-12-23 03:44:47 -05001731 branch1 = better_branch_name(branch1);
1732 branch2 = better_branch_name(branch2);
Shawn O. Pearce3f6ee2d2007-01-14 00:28:58 -05001733
Shawn O. Pearce8c3275a2007-01-14 00:28:48 -05001734 if (show(3))
1735 printf("Merging %s with %s\n", branch1, branch2);
Shawn O. Pearcee0ec1812006-12-23 03:44:47 -05001736
Junio C Hamano30ca07a2007-03-31 23:09:02 -07001737 index_fd = hold_locked_index(lock, 1);
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001738
Junio C Hamano8b944b52007-01-10 11:20:58 -08001739 for (i = 0; i < bases_count; i++) {
1740 struct commit *ancestor = get_ref(bases[i]);
1741 ca = commit_list_insert(ancestor, &ca);
1742 }
Shawn O. Pearce63889632007-01-14 00:28:33 -05001743 clean = merge(h1, h2, branch1, branch2, ca, &result);
Junio C Hamano8b944b52007-01-10 11:20:58 -08001744
1745 if (active_cache_changed &&
1746 (write_cache(index_fd, active_cache, active_nr) ||
Junio C Hamano30ca07a2007-03-31 23:09:02 -07001747 close(index_fd) || commit_locked_index(lock)))
Junio C Hamano8b944b52007-01-10 11:20:58 -08001748 die ("unable to write %s", get_index_file());
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001749
Johannes Schindelin3af244c2006-07-27 13:17:07 +02001750 return clean ? 0: 1;
Johannes Schindelin6d297f82006-07-08 18:42:41 +02001751}