blob: 75f54cac97f62ddaad736c2cd582cc6cdeaaebfa [file] [log] [blame]
Linus Torvaldsbc052d72008-03-06 12:26:14 -08001#define NO_THE_INDEX_COMPATIBILITY_MACROS
Johannes Schindelin16da1342006-07-30 20:25:18 +02002#include "cache.h"
Junio C Hamanof8a9d422006-12-04 16:00:46 -08003#include "dir.h"
Johannes Schindelin16da1342006-07-30 20:25:18 +02004#include "tree.h"
5#include "tree-walk.h"
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02006#include "cache-tree.h"
Johannes Schindelin16da1342006-07-30 20:25:18 +02007#include "unpack-trees.h"
Nicolas Pitre96a02f82007-04-18 14:27:45 -04008#include "progress.h"
Sven Verdoolaege0cf73752007-07-17 20:28:28 +02009#include "refs.h"
Junio C Hamano06f33c12009-03-13 21:24:08 -070010#include "attr.h"
Johannes Schindelin16da1342006-07-30 20:25:18 +020011
Junio C Hamano8ccba002008-05-17 12:03:49 -070012/*
13 * Error messages expected by scripts out of plumbing commands such as
14 * read-tree. Non-scripted Porcelain is not required to use these messages
15 * and in fact are encouraged to reword them to better suit their particular
16 * situation better. See how "git checkout" replaces not_uptodate_file to
17 * explain why it does not allow switching between branches when you have
18 * local changes, for example.
19 */
20static struct unpack_trees_error_msgs unpack_plumbing_errors = {
21 /* would_overwrite */
22 "Entry '%s' would be overwritten by merge. Cannot merge.",
23
24 /* not_uptodate_file */
25 "Entry '%s' not uptodate. Cannot merge.",
26
27 /* not_uptodate_dir */
28 "Updating '%s' would lose untracked files in it",
29
30 /* would_lose_untracked */
31 "Untracked working tree file '%s' would be %s by merge.",
32
33 /* bind_overlap */
34 "Entry '%s' overlaps with '%s'. Cannot bind.",
Nguyễn Thái Ngọc Duye800ec92009-08-20 20:47:09 +070035
36 /* sparse_not_uptodate_file */
37 "Entry '%s' not uptodate. Cannot update sparse checkout.",
38
39 /* would_lose_orphaned */
40 "Working tree file '%s' would be %s by sparse checkout update.",
Junio C Hamano8ccba002008-05-17 12:03:49 -070041};
42
43#define ERRORMSG(o,fld) \
44 ( ((o) && (o)->msgs.fld) \
45 ? ((o)->msgs.fld) \
46 : (unpack_plumbing_errors.fld) )
47
Linus Torvalds34110cd2008-03-06 18:12:28 -080048static void add_entry(struct unpack_trees_options *o, struct cache_entry *ce,
49 unsigned int set, unsigned int clear)
Linus Torvaldsb48d5a02007-08-10 12:15:54 -070050{
Linus Torvalds34110cd2008-03-06 18:12:28 -080051 unsigned int size = ce_size(ce);
52 struct cache_entry *new = xmalloc(size);
53
54 clear |= CE_HASHED | CE_UNHASHED;
55
56 memcpy(new, ce, size);
57 new->next = NULL;
58 new->ce_flags = (new->ce_flags & ~clear) | set;
Junio C Hamanoaab3b9a2009-03-12 00:02:12 -070059 add_index_entry(&o->result, new, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
Linus Torvaldsb48d5a02007-08-10 12:15:54 -070060}
61
Kjetil Barvik78478922009-02-09 21:54:07 +010062/*
63 * Unlink the last component and schedule the leading directories for
64 * removal, such that empty directories get removed.
Johannes Schindelin16da1342006-07-30 20:25:18 +020065 */
Linus Torvaldsc40641b2008-05-09 09:21:07 -070066static void unlink_entry(struct cache_entry *ce)
Johannes Schindelin16da1342006-07-30 20:25:18 +020067{
Kjetil Barvik57199892009-02-09 21:54:06 +010068 if (has_symlink_or_noent_leading_path(ce->name, ce_namelen(ce)))
Junio C Hamano16a4c612007-05-10 23:44:53 -070069 return;
Peter Collingbournec5e558a2010-01-11 02:59:54 +000070 if (S_ISGITLINK(ce->ce_mode)) {
71 if (rmdir(ce->name)) {
72 warning("unable to rmdir %s: %s",
73 ce->name, strerror(errno));
74 return;
75 }
76 }
77 else
78 if (unlink_or_warn(ce->name))
79 return;
Kjetil Barvik78478922009-02-09 21:54:07 +010080 schedule_dir_for_removal(ce->name, ce_namelen(ce));
Johannes Schindelin16da1342006-07-30 20:25:18 +020081}
82
Johannes Schindelin16da1342006-07-30 20:25:18 +020083static struct checkout state;
Junio C Hamanoc4758d32008-03-18 22:01:28 -070084static int check_updates(struct unpack_trees_options *o)
Johannes Schindelin16da1342006-07-30 20:25:18 +020085{
Nicolas Pitre96a02f82007-04-18 14:27:45 -040086 unsigned cnt = 0, total = 0;
Nicolas Pitredc6a0752007-10-30 14:57:32 -040087 struct progress *progress = NULL;
Linus Torvalds34110cd2008-03-06 18:12:28 -080088 struct index_state *index = &o->result;
Daniel Barkalow33ecf7e2008-02-07 11:39:59 -050089 int i;
Junio C Hamanoc4758d32008-03-18 22:01:28 -070090 int errs = 0;
Johannes Schindelin16da1342006-07-30 20:25:18 +020091
92 if (o->update && o->verbose_update) {
Linus Torvalds34110cd2008-03-06 18:12:28 -080093 for (total = cnt = 0; cnt < index->cache_nr; cnt++) {
94 struct cache_entry *ce = index->cache[cnt];
Nguyễn Thái Ngọc Duye663db22009-08-20 20:47:06 +070095 if (ce->ce_flags & (CE_UPDATE | CE_REMOVE | CE_WT_REMOVE))
Johannes Schindelin16da1342006-07-30 20:25:18 +020096 total++;
97 }
98
Nicolas Pitredc6a0752007-10-30 14:57:32 -040099 progress = start_progress_delay("Checking out files",
Linus Torvaldse8548642008-02-23 13:36:08 -0800100 total, 50, 1);
Johannes Schindelin16da1342006-07-30 20:25:18 +0200101 cnt = 0;
102 }
103
Junio C Hamano66985e62009-04-18 00:18:01 +0200104 if (o->update)
105 git_attr_set_direction(GIT_ATTR_CHECKOUT, &o->result);
Linus Torvalds34110cd2008-03-06 18:12:28 -0800106 for (i = 0; i < index->cache_nr; i++) {
107 struct cache_entry *ce = index->cache[i];
Johannes Schindelin16da1342006-07-30 20:25:18 +0200108
Nguyễn Thái Ngọc Duye663db22009-08-20 20:47:06 +0700109 if (ce->ce_flags & CE_WT_REMOVE) {
110 display_progress(progress, ++cnt);
111 if (o->update)
112 unlink_entry(ce);
113 continue;
114 }
115
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800116 if (ce->ce_flags & CE_REMOVE) {
Linus Torvalds1fa6ead2008-03-22 09:48:41 -0700117 display_progress(progress, ++cnt);
Johannes Schindelin16da1342006-07-30 20:25:18 +0200118 if (o->update)
Linus Torvaldsc40641b2008-05-09 09:21:07 -0700119 unlink_entry(ce);
Johannes Schindelin16da1342006-07-30 20:25:18 +0200120 }
Linus Torvalds1fa6ead2008-03-22 09:48:41 -0700121 }
Kjetil Barvik36419c82009-02-18 23:18:03 +0100122 remove_marked_cache_entries(&o->result);
Kjetil Barvik78478922009-02-09 21:54:07 +0100123 remove_scheduled_dirs();
Linus Torvalds1fa6ead2008-03-22 09:48:41 -0700124
125 for (i = 0; i < index->cache_nr; i++) {
126 struct cache_entry *ce = index->cache[i];
127
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800128 if (ce->ce_flags & CE_UPDATE) {
Linus Torvalds1fa6ead2008-03-22 09:48:41 -0700129 display_progress(progress, ++cnt);
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800130 ce->ce_flags &= ~CE_UPDATE;
Junio C Hamano16a4c612007-05-10 23:44:53 -0700131 if (o->update) {
Junio C Hamanoc4758d32008-03-18 22:01:28 -0700132 errs |= checkout_entry(ce, &state, NULL);
Junio C Hamano16a4c612007-05-10 23:44:53 -0700133 }
Johannes Schindelin16da1342006-07-30 20:25:18 +0200134 }
135 }
Nicolas Pitre4d4fcc52007-10-30 14:57:33 -0400136 stop_progress(&progress);
Junio C Hamano66985e62009-04-18 00:18:01 +0200137 if (o->update)
138 git_attr_set_direction(GIT_ATTR_CHECKIN, NULL);
Junio C Hamanoc4758d32008-03-18 22:01:28 -0700139 return errs != 0;
Johannes Schindelin16da1342006-07-30 20:25:18 +0200140}
141
Nguyễn Thái Ngọc Duye800ec92009-08-20 20:47:09 +0700142static int verify_uptodate_sparse(struct cache_entry *ce, struct unpack_trees_options *o);
143static int verify_absent_sparse(struct cache_entry *ce, const char *action, struct unpack_trees_options *o);
144
145static int will_have_skip_worktree(const struct cache_entry *ce, struct unpack_trees_options *o)
146{
147 const char *basename;
148
149 if (ce_stage(ce))
150 return 0;
151
152 basename = strrchr(ce->name, '/');
153 basename = basename ? basename+1 : ce->name;
154 return excluded_from_list(ce->name, ce_namelen(ce), basename, NULL, o->el) <= 0;
155}
156
157static int apply_sparse_checkout(struct cache_entry *ce, struct unpack_trees_options *o)
158{
159 int was_skip_worktree = ce_skip_worktree(ce);
160
161 if (will_have_skip_worktree(ce, o))
162 ce->ce_flags |= CE_SKIP_WORKTREE;
163 else
164 ce->ce_flags &= ~CE_SKIP_WORKTREE;
165
166 /*
167 * We only care about files getting into the checkout area
168 * If merge strategies want to remove some, go ahead, this
169 * flag will be removed eventually in unpack_trees() if it's
170 * outside checkout area.
171 */
172 if (ce->ce_flags & CE_REMOVE)
173 return 0;
174
175 if (!was_skip_worktree && ce_skip_worktree(ce)) {
176 /*
177 * If CE_UPDATE is set, verify_uptodate() must be called already
178 * also stat info may have lost after merged_entry() so calling
179 * verify_uptodate() again may fail
180 */
181 if (!(ce->ce_flags & CE_UPDATE) && verify_uptodate_sparse(ce, o))
182 return -1;
183 ce->ce_flags |= CE_WT_REMOVE;
184 }
185 if (was_skip_worktree && !ce_skip_worktree(ce)) {
186 if (verify_absent_sparse(ce, "overwritten", o))
187 return -1;
188 ce->ce_flags |= CE_UPDATE;
189 }
190 return 0;
191}
192
Linus Torvalds34110cd2008-03-06 18:12:28 -0800193static inline int call_unpack_fn(struct cache_entry **src, struct unpack_trees_options *o)
Linus Torvalds01904572008-03-05 20:15:44 -0800194{
Linus Torvalds34110cd2008-03-06 18:12:28 -0800195 int ret = o->fn(src, o);
196 if (ret > 0)
Linus Torvalds01904572008-03-05 20:15:44 -0800197 ret = 0;
Linus Torvalds01904572008-03-05 20:15:44 -0800198 return ret;
199}
200
Junio C Hamanoda165f42010-01-07 14:59:54 -0800201static void mark_ce_used(struct cache_entry *ce, struct unpack_trees_options *o)
202{
203 ce->ce_flags |= CE_UNPACKED;
204
205 if (o->cache_bottom < o->src_index->cache_nr &&
206 o->src_index->cache[o->cache_bottom] == ce) {
207 int bottom = o->cache_bottom;
208 while (bottom < o->src_index->cache_nr &&
209 o->src_index->cache[bottom]->ce_flags & CE_UNPACKED)
210 bottom++;
211 o->cache_bottom = bottom;
212 }
213}
214
215static void mark_all_ce_unused(struct index_state *index)
216{
217 int i;
218 for (i = 0; i < index->cache_nr; i++)
219 index->cache[i]->ce_flags &= ~CE_UNPACKED;
220}
221
222static int locate_in_src_index(struct cache_entry *ce,
223 struct unpack_trees_options *o)
224{
225 struct index_state *index = o->src_index;
226 int len = ce_namelen(ce);
227 int pos = index_name_pos(index, ce->name, len);
228 if (pos < 0)
229 pos = -1 - pos;
230 return pos;
231}
232
233/*
234 * We call unpack_index_entry() with an unmerged cache entry
235 * only in diff-index, and it wants a single callback. Skip
236 * the other unmerged entry with the same name.
237 */
238static void mark_ce_used_same_name(struct cache_entry *ce,
239 struct unpack_trees_options *o)
240{
241 struct index_state *index = o->src_index;
242 int len = ce_namelen(ce);
243 int pos;
244
245 for (pos = locate_in_src_index(ce, o); pos < index->cache_nr; pos++) {
246 struct cache_entry *next = index->cache[pos];
247 if (len != ce_namelen(next) ||
248 memcmp(ce->name, next->name, len))
249 break;
250 mark_ce_used(next, o);
251 }
252}
253
254static struct cache_entry *next_cache_entry(struct unpack_trees_options *o)
255{
256 const struct index_state *index = o->src_index;
257 int pos = o->cache_bottom;
258
259 while (pos < index->cache_nr) {
260 struct cache_entry *ce = index->cache[pos];
261 if (!(ce->ce_flags & CE_UNPACKED))
262 return ce;
263 pos++;
264 }
265 return NULL;
266}
267
268static void add_same_unmerged(struct cache_entry *ce,
269 struct unpack_trees_options *o)
270{
271 struct index_state *index = o->src_index;
272 int len = ce_namelen(ce);
273 int pos = index_name_pos(index, ce->name, len);
274
275 if (0 <= pos)
276 die("programming error in a caller of mark_ce_used_same_name");
277 for (pos = -pos - 1; pos < index->cache_nr; pos++) {
278 struct cache_entry *next = index->cache[pos];
279 if (len != ce_namelen(next) ||
280 memcmp(ce->name, next->name, len))
281 break;
282 add_entry(o, next, 0, 0);
283 mark_ce_used(next, o);
284 }
285}
286
287static int unpack_index_entry(struct cache_entry *ce,
288 struct unpack_trees_options *o)
Linus Torvalds01904572008-03-05 20:15:44 -0800289{
Brandon Casey0039ba72009-07-10 12:10:43 -0500290 struct cache_entry *src[5] = { ce, NULL, };
Junio C Hamanoda165f42010-01-07 14:59:54 -0800291 int ret;
Linus Torvalds34110cd2008-03-06 18:12:28 -0800292
Junio C Hamanoda165f42010-01-07 14:59:54 -0800293 mark_ce_used(ce, o);
Linus Torvalds01904572008-03-05 20:15:44 -0800294 if (ce_stage(ce)) {
295 if (o->skip_unmerged) {
Linus Torvalds34110cd2008-03-06 18:12:28 -0800296 add_entry(o, ce, 0, 0);
297 return 0;
Linus Torvalds01904572008-03-05 20:15:44 -0800298 }
Linus Torvalds01904572008-03-05 20:15:44 -0800299 }
Junio C Hamanoda165f42010-01-07 14:59:54 -0800300 ret = call_unpack_fn(src, o);
301 if (ce_stage(ce))
302 mark_ce_used_same_name(ce, o);
303 return ret;
Linus Torvalds01904572008-03-05 20:15:44 -0800304}
305
Junio C Hamano730f7282009-09-20 00:03:39 -0700306static int find_cache_pos(struct traverse_info *, const struct name_entry *);
307
308static void restore_cache_bottom(struct traverse_info *info, int bottom)
309{
310 struct unpack_trees_options *o = info->data;
311
312 if (o->diff_index_cached)
313 return;
314 o->cache_bottom = bottom;
315}
316
317static int switch_cache_bottom(struct traverse_info *info)
318{
319 struct unpack_trees_options *o = info->data;
320 int ret, pos;
321
322 if (o->diff_index_cached)
323 return 0;
324 ret = o->cache_bottom;
325 pos = find_cache_pos(info->prev, &info->name);
326
327 if (pos < -1)
328 o->cache_bottom = -2 - pos;
329 else if (pos < 0)
330 o->cache_bottom = o->src_index->cache_nr;
331 return ret;
Linus Torvalds01904572008-03-05 20:15:44 -0800332}
333
Linus Torvalds2af202b2009-06-18 10:28:43 -0700334static int traverse_trees_recursive(int n, unsigned long dirmask, unsigned long df_conflicts, struct name_entry *names, struct traverse_info *info)
Linus Torvalds01904572008-03-05 20:15:44 -0800335{
Junio C Hamano730f7282009-09-20 00:03:39 -0700336 int i, ret, bottom;
Junio C Hamanoca885a42008-03-13 22:07:18 -0700337 struct tree_desc t[MAX_UNPACK_TREES];
Linus Torvalds01904572008-03-05 20:15:44 -0800338 struct traverse_info newinfo;
339 struct name_entry *p;
340
341 p = names;
342 while (!p->mode)
343 p++;
344
345 newinfo = *info;
346 newinfo.prev = info;
347 newinfo.name = *p;
348 newinfo.pathlen += tree_entry_len(p->path, p->sha1) + 1;
349 newinfo.conflicts |= df_conflicts;
350
351 for (i = 0; i < n; i++, dirmask >>= 1) {
352 const unsigned char *sha1 = NULL;
353 if (dirmask & 1)
354 sha1 = names[i].sha1;
355 fill_tree_descriptor(t+i, sha1);
356 }
Junio C Hamano730f7282009-09-20 00:03:39 -0700357
358 bottom = switch_cache_bottom(&newinfo);
359 ret = traverse_trees(n, t, &newinfo);
360 restore_cache_bottom(&newinfo, bottom);
361 return ret;
Linus Torvalds01904572008-03-05 20:15:44 -0800362}
363
364/*
365 * Compare the traverse-path to the cache entry without actually
366 * having to generate the textual representation of the traverse
367 * path.
368 *
369 * NOTE! This *only* compares up to the size of the traverse path
370 * itself - the caller needs to do the final check for the cache
371 * entry having more data at the end!
372 */
373static int do_compare_entry(const struct cache_entry *ce, const struct traverse_info *info, const struct name_entry *n)
374{
375 int len, pathlen, ce_len;
376 const char *ce_name;
377
378 if (info->prev) {
379 int cmp = do_compare_entry(ce, info->prev, &info->name);
380 if (cmp)
381 return cmp;
382 }
383 pathlen = info->pathlen;
384 ce_len = ce_namelen(ce);
385
386 /* If ce_len < pathlen then we must have previously hit "name == directory" entry */
387 if (ce_len < pathlen)
388 return -1;
389
390 ce_len -= pathlen;
391 ce_name = ce->name + pathlen;
392
393 len = tree_entry_len(n->path, n->sha1);
394 return df_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode);
395}
396
397static int compare_entry(const struct cache_entry *ce, const struct traverse_info *info, const struct name_entry *n)
398{
399 int cmp = do_compare_entry(ce, info, n);
400 if (cmp)
401 return cmp;
402
403 /*
404 * Even if the beginning compared identically, the ce should
405 * compare as bigger than a directory leading up to it!
406 */
407 return ce_namelen(ce) > traverse_path_len(info, n);
408}
409
Junio C Hamanoda165f42010-01-07 14:59:54 -0800410static int ce_in_traverse_path(const struct cache_entry *ce,
411 const struct traverse_info *info)
412{
413 if (!info->prev)
414 return 1;
415 if (do_compare_entry(ce, info->prev, &info->name))
416 return 0;
417 /*
418 * If ce (blob) is the same name as the path (which is a tree
419 * we will be descending into), it won't be inside it.
420 */
421 return (info->pathlen < ce_namelen(ce));
422}
423
Linus Torvalds01904572008-03-05 20:15:44 -0800424static struct cache_entry *create_ce_entry(const struct traverse_info *info, const struct name_entry *n, int stage)
425{
426 int len = traverse_path_len(info, n);
427 struct cache_entry *ce = xcalloc(1, cache_entry_size(len));
428
429 ce->ce_mode = create_ce_mode(n->mode);
430 ce->ce_flags = create_ce_flags(len, stage);
431 hashcpy(ce->sha1, n->sha1);
432 make_traverse_path(ce->name, info, n);
433
434 return ce;
435}
436
René Scharfec7cddc12009-01-31 15:39:10 +0100437static int unpack_nondirectories(int n, unsigned long mask,
438 unsigned long dirmask,
439 struct cache_entry **src,
440 const struct name_entry *names,
441 const struct traverse_info *info)
Linus Torvalds01904572008-03-05 20:15:44 -0800442{
443 int i;
444 struct unpack_trees_options *o = info->data;
445 unsigned long conflicts;
446
447 /* Do we have *only* directories? Nothing to do */
448 if (mask == dirmask && !src[0])
449 return 0;
450
451 conflicts = info->conflicts;
452 if (o->merge)
453 conflicts >>= 1;
454 conflicts |= dirmask;
455
456 /*
457 * Ok, we've filled in up to any potential index entry in src[0],
458 * now do the rest.
459 */
460 for (i = 0; i < n; i++) {
461 int stage;
462 unsigned int bit = 1ul << i;
463 if (conflicts & bit) {
464 src[i + o->merge] = o->df_conflict_entry;
465 continue;
466 }
467 if (!(mask & bit))
468 continue;
469 if (!o->merge)
470 stage = 0;
471 else if (i + 1 < o->head_idx)
472 stage = 1;
473 else if (i + 1 > o->head_idx)
474 stage = 3;
475 else
476 stage = 2;
477 src[i + o->merge] = create_ce_entry(info, names + i, stage);
478 }
479
480 if (o->merge)
Linus Torvalds34110cd2008-03-06 18:12:28 -0800481 return call_unpack_fn(src, o);
Linus Torvalds01904572008-03-05 20:15:44 -0800482
Linus Torvalds01904572008-03-05 20:15:44 -0800483 for (i = 0; i < n; i++)
Junio C Hamanoaab3b9a2009-03-12 00:02:12 -0700484 if (src[i] && src[i] != o->df_conflict_entry)
485 add_entry(o, src[i], 0, 0);
Linus Torvalds01904572008-03-05 20:15:44 -0800486 return 0;
487}
488
Junio C Hamano353c5ee2009-09-19 16:36:45 -0700489static int unpack_failed(struct unpack_trees_options *o, const char *message)
490{
491 discard_index(&o->result);
492 if (!o->gently) {
493 if (message)
494 return error("%s", message);
495 return -1;
496 }
497 return -1;
498}
499
Junio C Hamano730f7282009-09-20 00:03:39 -0700500/* NEEDSWORK: give this a better name and share with tree-walk.c */
501static int name_compare(const char *a, int a_len,
502 const char *b, int b_len)
503{
504 int len = (a_len < b_len) ? a_len : b_len;
505 int cmp = memcmp(a, b, len);
506 if (cmp)
507 return cmp;
508 return (a_len - b_len);
509}
510
511/*
512 * The tree traversal is looking at name p. If we have a matching entry,
513 * return it. If name p is a directory in the index, do not return
514 * anything, as we will want to match it when the traversal descends into
515 * the directory.
516 */
517static int find_cache_pos(struct traverse_info *info,
518 const struct name_entry *p)
519{
520 int pos;
521 struct unpack_trees_options *o = info->data;
522 struct index_state *index = o->src_index;
523 int pfxlen = info->pathlen;
524 int p_len = tree_entry_len(p->path, p->sha1);
525
526 for (pos = o->cache_bottom; pos < index->cache_nr; pos++) {
527 struct cache_entry *ce = index->cache[pos];
528 const char *ce_name, *ce_slash;
529 int cmp, ce_len;
530
531 if (!ce_in_traverse_path(ce, info))
532 continue;
533 if (ce->ce_flags & CE_UNPACKED)
534 continue;
535 ce_name = ce->name + pfxlen;
536 ce_slash = strchr(ce_name, '/');
537 if (ce_slash)
538 ce_len = ce_slash - ce_name;
539 else
540 ce_len = ce_namelen(ce) - pfxlen;
541 cmp = name_compare(p->path, p_len, ce_name, ce_len);
542 /*
543 * Exact match; if we have a directory we need to
544 * delay returning it.
545 */
546 if (!cmp)
547 return ce_slash ? -2 - pos : pos;
548 if (0 < cmp)
549 continue; /* keep looking */
550 /*
551 * ce_name sorts after p->path; could it be that we
552 * have files under p->path directory in the index?
553 * E.g. ce_name == "t-i", and p->path == "t"; we may
554 * have "t/a" in the index.
555 */
556 if (p_len < ce_len && !memcmp(ce_name, p->path, p_len) &&
557 ce_name[p_len] < '/')
558 continue; /* keep looking */
559 break;
560 }
561 return -1;
562}
563
564static struct cache_entry *find_cache_entry(struct traverse_info *info,
565 const struct name_entry *p)
566{
567 int pos = find_cache_pos(info, p);
568 struct unpack_trees_options *o = info->data;
569
570 if (0 <= pos)
571 return o->src_index->cache[pos];
572 else
573 return NULL;
574}
575
Junio C Hamanoba655da2009-09-14 02:22:00 -0700576static void debug_path(struct traverse_info *info)
577{
578 if (info->prev) {
579 debug_path(info->prev);
580 if (*info->prev->name.path)
581 putchar('/');
582 }
583 printf("%s", info->name.path);
584}
585
586static void debug_name_entry(int i, struct name_entry *n)
587{
588 printf("ent#%d %06o %s\n", i,
589 n->path ? n->mode : 0,
590 n->path ? n->path : "(missing)");
591}
592
593static void debug_unpack_callback(int n,
594 unsigned long mask,
595 unsigned long dirmask,
596 struct name_entry *names,
597 struct traverse_info *info)
598{
599 int i;
600 printf("* unpack mask %lu, dirmask %lu, cnt %d ",
601 mask, dirmask, n);
602 debug_path(info);
603 putchar('\n');
604 for (i = 0; i < n; i++)
605 debug_name_entry(i, names + i);
606}
607
Linus Torvalds01904572008-03-05 20:15:44 -0800608static int unpack_callback(int n, unsigned long mask, unsigned long dirmask, struct name_entry *names, struct traverse_info *info)
609{
René Scharfec7cddc12009-01-31 15:39:10 +0100610 struct cache_entry *src[MAX_UNPACK_TREES + 1] = { NULL, };
Linus Torvalds01904572008-03-05 20:15:44 -0800611 struct unpack_trees_options *o = info->data;
Linus Torvalds01904572008-03-05 20:15:44 -0800612 const struct name_entry *p = names;
613
614 /* Find first entry with a real name (we could use "mask" too) */
615 while (!p->mode)
616 p++;
617
Junio C Hamanoba655da2009-09-14 02:22:00 -0700618 if (o->debug_unpack)
619 debug_unpack_callback(n, mask, dirmask, names, info);
620
Linus Torvalds01904572008-03-05 20:15:44 -0800621 /* Are we supposed to look at the index too? */
622 if (o->merge) {
Junio C Hamanoda165f42010-01-07 14:59:54 -0800623 while (1) {
Junio C Hamanoda165f42010-01-07 14:59:54 -0800624 int cmp;
Junio C Hamano730f7282009-09-20 00:03:39 -0700625 struct cache_entry *ce;
626
627 if (o->diff_index_cached)
628 ce = next_cache_entry(o);
629 else
630 ce = find_cache_entry(info, p);
631
Junio C Hamanoda165f42010-01-07 14:59:54 -0800632 if (!ce)
633 break;
634 cmp = compare_entry(ce, info, p);
Linus Torvalds01904572008-03-05 20:15:44 -0800635 if (cmp < 0) {
636 if (unpack_index_entry(ce, o) < 0)
Junio C Hamano353c5ee2009-09-19 16:36:45 -0700637 return unpack_failed(o, NULL);
Linus Torvalds01904572008-03-05 20:15:44 -0800638 continue;
639 }
640 if (!cmp) {
641 if (ce_stage(ce)) {
642 /*
Junio C Hamanoda165f42010-01-07 14:59:54 -0800643 * If we skip unmerged index
644 * entries, we'll skip this
645 * entry *and* the tree
646 * entries associated with it!
Linus Torvalds01904572008-03-05 20:15:44 -0800647 */
Linus Torvalds34110cd2008-03-06 18:12:28 -0800648 if (o->skip_unmerged) {
Junio C Hamanoda165f42010-01-07 14:59:54 -0800649 add_same_unmerged(ce, o);
Linus Torvalds01904572008-03-05 20:15:44 -0800650 return mask;
Linus Torvalds34110cd2008-03-06 18:12:28 -0800651 }
Linus Torvalds01904572008-03-05 20:15:44 -0800652 }
653 src[0] = ce;
Linus Torvalds01904572008-03-05 20:15:44 -0800654 }
655 break;
656 }
657 }
658
Linus Torvalds34110cd2008-03-06 18:12:28 -0800659 if (unpack_nondirectories(n, mask, dirmask, src, names, info) < 0)
Linus Torvalds01904572008-03-05 20:15:44 -0800660 return -1;
661
Junio C Hamanoda165f42010-01-07 14:59:54 -0800662 if (src[0]) {
663 if (ce_stage(src[0]))
664 mark_ce_used_same_name(src[0], o);
665 else
666 mark_ce_used(src[0], o);
667 }
668
Linus Torvalds01904572008-03-05 20:15:44 -0800669 /* Now handle any directories.. */
670 if (dirmask) {
671 unsigned long conflicts = mask & ~dirmask;
672 if (o->merge) {
673 conflicts <<= 1;
674 if (src[0])
675 conflicts |= 1;
676 }
Junio C Hamanob65982b2009-05-20 15:57:22 -0700677
678 /* special case: "diff-index --cached" looking at a tree */
679 if (o->diff_index_cached &&
680 n == 1 && dirmask == 1 && S_ISDIR(names->mode)) {
681 int matches;
682 matches = cache_tree_matches_traversal(o->src_index->cache_tree,
683 names, info);
684 /*
Junio C Hamanoda165f42010-01-07 14:59:54 -0800685 * Everything under the name matches; skip the
686 * entire hierarchy. diff_index_cached codepath
687 * special cases D/F conflicts in such a way that
688 * it does not do any look-ahead, so this is safe.
Junio C Hamanob65982b2009-05-20 15:57:22 -0700689 */
690 if (matches) {
Junio C Hamanoda165f42010-01-07 14:59:54 -0800691 o->cache_bottom += matches;
Junio C Hamanob65982b2009-05-20 15:57:22 -0700692 return mask;
693 }
694 }
695
Junio C Hamano542c2642008-03-10 01:26:23 -0700696 if (traverse_trees_recursive(n, dirmask, conflicts,
697 names, info) < 0)
698 return -1;
Linus Torvalds01904572008-03-05 20:15:44 -0800699 return mask;
700 }
701
702 return mask;
703}
704
Junio C Hamano2e2b8872008-05-28 15:12:30 -0700705/*
706 * N-way merge "len" trees. Returns 0 on success, -1 on failure to manipulate the
707 * resulting index, -2 on failure to reflect the changes to the work tree.
708 */
Linus Torvalds933bf402007-08-09 22:21:29 -0700709int unpack_trees(unsigned len, struct tree_desc *t, struct unpack_trees_options *o)
Johannes Schindelin16da1342006-07-30 20:25:18 +0200710{
Nguyễn Thái Ngọc Duye800ec92009-08-20 20:47:09 +0700711 int i, ret;
Junio C Hamano0fb1eaa2006-12-04 02:11:39 -0800712 static struct cache_entry *dfc;
Nguyễn Thái Ngọc Duy08aefc92009-08-20 20:47:08 +0700713 struct exclude_list el;
Johannes Schindelin16da1342006-07-30 20:25:18 +0200714
Junio C Hamanoca885a42008-03-13 22:07:18 -0700715 if (len > MAX_UNPACK_TREES)
716 die("unpack_trees takes at most %d trees", MAX_UNPACK_TREES);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200717 memset(&state, 0, sizeof(state));
Johannes Schindelin16da1342006-07-30 20:25:18 +0200718 state.base_dir = "";
719 state.force = 1;
720 state.quiet = 1;
721 state.refresh_cache = 1;
722
Nguyễn Thái Ngọc Duy08aefc92009-08-20 20:47:08 +0700723 memset(&el, 0, sizeof(el));
724 if (!core_apply_sparse_checkout || !o->update)
725 o->skip_sparse_checkout = 1;
726 if (!o->skip_sparse_checkout) {
727 if (add_excludes_from_file_to_list(git_path("info/sparse-checkout"), "", 0, NULL, &el, 0) < 0)
728 o->skip_sparse_checkout = 1;
729 else
730 o->el = &el;
731 }
732
Linus Torvalds34110cd2008-03-06 18:12:28 -0800733 memset(&o->result, 0, sizeof(o->result));
Junio C Hamano913e0e92008-08-23 12:57:30 -0700734 o->result.initialized = 1;
Junio C Hamanoda165f42010-01-07 14:59:54 -0800735 o->result.timestamp.sec = o->src_index->timestamp.sec;
736 o->result.timestamp.nsec = o->src_index->timestamp.nsec;
Johannes Schindelin16da1342006-07-30 20:25:18 +0200737 o->merge_size = len;
Junio C Hamanoda165f42010-01-07 14:59:54 -0800738 mark_all_ce_unused(o->src_index);
Junio C Hamano0fb1eaa2006-12-04 02:11:39 -0800739
740 if (!dfc)
Jeff King13494ed2008-10-23 04:30:58 +0000741 dfc = xcalloc(1, cache_entry_size(0));
Junio C Hamano0fb1eaa2006-12-04 02:11:39 -0800742 o->df_conflict_entry = dfc;
Johannes Schindelin16da1342006-07-30 20:25:18 +0200743
744 if (len) {
Linus Torvalds01904572008-03-05 20:15:44 -0800745 const char *prefix = o->prefix ? o->prefix : "";
746 struct traverse_info info;
Linus Torvalds933bf402007-08-09 22:21:29 -0700747
Linus Torvalds01904572008-03-05 20:15:44 -0800748 setup_traverse_info(&info, prefix);
749 info.fn = unpack_callback;
750 info.data = o;
751
Junio C Hamanoda165f42010-01-07 14:59:54 -0800752 if (o->prefix) {
753 /*
754 * Unpack existing index entries that sort before the
755 * prefix the tree is spliced into. Note that o->merge
756 * is always true in this case.
757 */
758 while (1) {
759 struct cache_entry *ce = next_cache_entry(o);
760 if (!ce)
761 break;
762 if (ce_in_traverse_path(ce, &info))
763 break;
764 if (unpack_index_entry(ce, o) < 0)
765 goto return_failed;
766 }
Nguyễn Thái Ngọc Duy08aefc92009-08-20 20:47:08 +0700767 }
Junio C Hamanoda165f42010-01-07 14:59:54 -0800768
Linus Torvalds01904572008-03-05 20:15:44 -0800769 if (traverse_trees(len, t, &info) < 0)
Junio C Hamanoda165f42010-01-07 14:59:54 -0800770 goto return_failed;
Linus Torvalds01904572008-03-05 20:15:44 -0800771 }
772
773 /* Any left-over entries in the index? */
774 if (o->merge) {
Junio C Hamanoda165f42010-01-07 14:59:54 -0800775 while (1) {
776 struct cache_entry *ce = next_cache_entry(o);
777 if (!ce)
778 break;
Linus Torvalds01904572008-03-05 20:15:44 -0800779 if (unpack_index_entry(ce, o) < 0)
Junio C Hamanoda165f42010-01-07 14:59:54 -0800780 goto return_failed;
Daniel Barkalow17e46422008-02-07 11:39:52 -0500781 }
Johannes Schindelin16da1342006-07-30 20:25:18 +0200782 }
Junio C Hamanoda165f42010-01-07 14:59:54 -0800783 mark_all_ce_unused(o->src_index);
Johannes Schindelin16da1342006-07-30 20:25:18 +0200784
Nguyễn Thái Ngọc Duy08aefc92009-08-20 20:47:08 +0700785 if (o->trivial_merges_only && o->nontrivial_merge) {
786 ret = unpack_failed(o, "Merge requires file-level merging");
787 goto done;
788 }
Johannes Schindelin16da1342006-07-30 20:25:18 +0200789
Nguyễn Thái Ngọc Duye800ec92009-08-20 20:47:09 +0700790 if (!o->skip_sparse_checkout) {
Nguyễn Thái Ngọc Duy9e1afb12009-08-20 20:47:13 +0700791 int empty_worktree = 1;
Nguyễn Thái Ngọc Duye800ec92009-08-20 20:47:09 +0700792 for (i = 0;i < o->result.cache_nr;i++) {
793 struct cache_entry *ce = o->result.cache[i];
794
795 if (apply_sparse_checkout(ce, o)) {
796 ret = -1;
797 goto done;
798 }
Nguyễn Thái Ngọc Duyf1f523e2009-08-20 20:47:10 +0700799 /*
800 * Merge strategies may set CE_UPDATE|CE_REMOVE outside checkout
801 * area as a result of ce_skip_worktree() shortcuts in
802 * verify_absent() and verify_uptodate(). Clear them.
803 */
804 if (ce_skip_worktree(ce))
805 ce->ce_flags &= ~(CE_UPDATE | CE_REMOVE);
Nguyễn Thái Ngọc Duy9e1afb12009-08-20 20:47:13 +0700806 else
807 empty_worktree = 0;
Nguyễn Thái Ngọc Duyf1f523e2009-08-20 20:47:10 +0700808
Nguyễn Thái Ngọc Duye800ec92009-08-20 20:47:09 +0700809 }
Nguyễn Thái Ngọc Duy9e1afb12009-08-20 20:47:13 +0700810 if (o->result.cache_nr && empty_worktree) {
811 ret = unpack_failed(o, "Sparse checkout leaves no entry on working directory");
812 goto done;
813 }
Nguyễn Thái Ngọc Duye800ec92009-08-20 20:47:09 +0700814 }
Johannes Schindelin16da1342006-07-30 20:25:18 +0200815
Linus Torvalds34110cd2008-03-06 18:12:28 -0800816 o->src_index = NULL;
Junio C Hamano2e2b8872008-05-28 15:12:30 -0700817 ret = check_updates(o) ? (-2) : 0;
Linus Torvalds34110cd2008-03-06 18:12:28 -0800818 if (o->dst_index)
819 *o->dst_index = o->result;
Nguyễn Thái Ngọc Duy08aefc92009-08-20 20:47:08 +0700820
821done:
822 for (i = 0;i < el.nr;i++)
823 free(el.excludes[i]);
824 if (el.excludes)
825 free(el.excludes);
826
Junio C Hamano2e2b8872008-05-28 15:12:30 -0700827 return ret;
Junio C Hamanoda165f42010-01-07 14:59:54 -0800828
829return_failed:
830 mark_all_ce_unused(o->src_index);
Junio C Hamano026680f2010-01-24 17:35:58 -0800831 ret = unpack_failed(o, NULL);
832 goto done;
Johannes Schindelin16da1342006-07-30 20:25:18 +0200833}
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200834
835/* Here come the merge functions */
836
Junio C Hamano8ccba002008-05-17 12:03:49 -0700837static int reject_merge(struct cache_entry *ce, struct unpack_trees_options *o)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200838{
Junio C Hamano8ccba002008-05-17 12:03:49 -0700839 return error(ERRORMSG(o, would_overwrite), ce->name);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200840}
841
842static int same(struct cache_entry *a, struct cache_entry *b)
843{
844 if (!!a != !!b)
845 return 0;
846 if (!a && !b)
847 return 1;
Junio C Hamanoe11d7b52009-12-31 23:04:04 -0800848 if ((a->ce_flags | b->ce_flags) & CE_CONFLICTED)
849 return 0;
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200850 return a->ce_mode == b->ce_mode &&
David Rientjesa89fccd2006-08-17 11:54:57 -0700851 !hashcmp(a->sha1, b->sha1);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200852}
853
854
855/*
856 * When a CE gets turned into an unmerged entry, we
857 * want it to be up-to-date
858 */
Nguyễn Thái Ngọc Duy35a5aa72009-08-20 20:47:07 +0700859static int verify_uptodate_1(struct cache_entry *ce,
860 struct unpack_trees_options *o,
861 const char *error_msg)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200862{
863 struct stat st;
864
Nguyễn Thái Ngọc Duy52030832009-08-20 20:46:59 +0700865 if (o->index_only || (!ce_skip_worktree(ce) && (o->reset || ce_uptodate(ce))))
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500866 return 0;
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200867
868 if (!lstat(ce->name, &st)) {
Nguyễn Thái Ngọc Duy56cac482009-12-14 18:43:58 +0700869 unsigned changed = ie_match_stat(o->src_index, ce, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200870 if (!changed)
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500871 return 0;
Junio C Hamano936492d2007-08-03 22:13:09 -0700872 /*
873 * NEEDSWORK: the current default policy is to allow
874 * submodule to be out of sync wrt the supermodule
875 * index. This needs to be tightened later for
876 * submodules that are marked to be automatically
877 * checked out.
878 */
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800879 if (S_ISGITLINK(ce->ce_mode))
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500880 return 0;
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200881 errno = 0;
882 }
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200883 if (errno == ENOENT)
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500884 return 0;
Daniel Barkalow17e46422008-02-07 11:39:52 -0500885 return o->gently ? -1 :
Nguyễn Thái Ngọc Duy35a5aa72009-08-20 20:47:07 +0700886 error(error_msg, ce->name);
887}
888
889static int verify_uptodate(struct cache_entry *ce,
890 struct unpack_trees_options *o)
891{
Nguyễn Thái Ngọc Duyf1f523e2009-08-20 20:47:10 +0700892 if (!o->skip_sparse_checkout && will_have_skip_worktree(ce, o))
893 return 0;
Nguyễn Thái Ngọc Duy35a5aa72009-08-20 20:47:07 +0700894 return verify_uptodate_1(ce, o, ERRORMSG(o, not_uptodate_file));
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200895}
896
Nguyễn Thái Ngọc Duye800ec92009-08-20 20:47:09 +0700897static int verify_uptodate_sparse(struct cache_entry *ce,
898 struct unpack_trees_options *o)
899{
900 return verify_uptodate_1(ce, o, ERRORMSG(o, sparse_not_uptodate_file));
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200901}
902
Linus Torvaldsbc052d72008-03-06 12:26:14 -0800903static void invalidate_ce_path(struct cache_entry *ce, struct unpack_trees_options *o)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200904{
905 if (ce)
Linus Torvalds34110cd2008-03-06 18:12:28 -0800906 cache_tree_invalidate_path(o->src_index->cache_tree, ce->name);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200907}
908
Sven Verdoolaege0cf73752007-07-17 20:28:28 +0200909/*
910 * Check that checking out ce->sha1 in subdir ce->name is not
911 * going to overwrite any working files.
912 *
913 * Currently, git does not checkout subprojects during a superproject
914 * checkout, so it is not going to overwrite anything.
915 */
916static int verify_clean_submodule(struct cache_entry *ce, const char *action,
917 struct unpack_trees_options *o)
918{
919 return 0;
920}
921
922static int verify_clean_subdirectory(struct cache_entry *ce, const char *action,
Junio C Hamanoc8193532007-03-15 23:25:22 -0700923 struct unpack_trees_options *o)
924{
925 /*
Sven Verdoolaege0cf73752007-07-17 20:28:28 +0200926 * we are about to extract "ce->name"; we would not want to lose
Junio C Hamanoc8193532007-03-15 23:25:22 -0700927 * anything in the existing directory there.
928 */
929 int namelen;
Clemens Buchacher7b9e3ce2009-01-01 21:54:33 +0100930 int i;
Junio C Hamanoc8193532007-03-15 23:25:22 -0700931 struct dir_struct d;
932 char *pathbuf;
933 int cnt = 0;
Sven Verdoolaege0cf73752007-07-17 20:28:28 +0200934 unsigned char sha1[20];
935
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800936 if (S_ISGITLINK(ce->ce_mode) &&
Sven Verdoolaege0cf73752007-07-17 20:28:28 +0200937 resolve_gitlink_ref(ce->name, "HEAD", sha1) == 0) {
938 /* If we are not going to update the submodule, then
939 * we don't care.
940 */
941 if (!hashcmp(sha1, ce->sha1))
942 return 0;
943 return verify_clean_submodule(ce, action, o);
944 }
Junio C Hamanoc8193532007-03-15 23:25:22 -0700945
946 /*
947 * First let's make sure we do not have a local modification
948 * in that directory.
949 */
Sven Verdoolaege0cf73752007-07-17 20:28:28 +0200950 namelen = strlen(ce->name);
Junio C Hamanoda165f42010-01-07 14:59:54 -0800951 for (i = locate_in_src_index(ce, o);
952 i < o->src_index->cache_nr;
953 i++) {
Clemens Buchacher837e5fe2009-01-01 21:54:32 +0100954 struct cache_entry *ce2 = o->src_index->cache[i];
955 int len = ce_namelen(ce2);
Junio C Hamanoc8193532007-03-15 23:25:22 -0700956 if (len < namelen ||
Clemens Buchacher837e5fe2009-01-01 21:54:32 +0100957 strncmp(ce->name, ce2->name, namelen) ||
958 ce2->name[namelen] != '/')
Junio C Hamanoc8193532007-03-15 23:25:22 -0700959 break;
960 /*
Junio C Hamanoda165f42010-01-07 14:59:54 -0800961 * ce2->name is an entry in the subdirectory to be
962 * removed.
Junio C Hamanoc8193532007-03-15 23:25:22 -0700963 */
Clemens Buchacher837e5fe2009-01-01 21:54:32 +0100964 if (!ce_stage(ce2)) {
965 if (verify_uptodate(ce2, o))
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500966 return -1;
Clemens Buchacher837e5fe2009-01-01 21:54:32 +0100967 add_entry(o, ce2, CE_REMOVE, 0);
Junio C Hamanoda165f42010-01-07 14:59:54 -0800968 mark_ce_used(ce2, o);
Junio C Hamanoc8193532007-03-15 23:25:22 -0700969 }
970 cnt++;
971 }
972
973 /*
974 * Then we need to make sure that we do not lose a locally
975 * present file that is not ignored.
976 */
977 pathbuf = xmalloc(namelen + 2);
Sven Verdoolaege0cf73752007-07-17 20:28:28 +0200978 memcpy(pathbuf, ce->name, namelen);
Junio C Hamanoc8193532007-03-15 23:25:22 -0700979 strcpy(pathbuf+namelen, "/");
980
981 memset(&d, 0, sizeof(d));
982 if (o->dir)
983 d.exclude_per_dir = o->dir->exclude_per_dir;
Linus Torvaldsdba2e202009-07-08 19:24:39 -0700984 i = read_directory(&d, pathbuf, namelen+1, NULL);
Junio C Hamanoc8193532007-03-15 23:25:22 -0700985 if (i)
Daniel Barkalow17e46422008-02-07 11:39:52 -0500986 return o->gently ? -1 :
Junio C Hamano8ccba002008-05-17 12:03:49 -0700987 error(ERRORMSG(o, not_uptodate_dir), ce->name);
Junio C Hamanoc8193532007-03-15 23:25:22 -0700988 free(pathbuf);
989 return cnt;
990}
991
Johannes Schindelin076b0ad2006-07-30 20:26:15 +0200992/*
Linus Torvalds32260ad2008-03-22 09:35:59 -0700993 * This gets called when there was no index entry for the tree entry 'dst',
994 * but we found a file in the working tree that 'lstat()' said was fine,
995 * and we're on a case-insensitive filesystem.
996 *
997 * See if we can find a case-insensitive match in the index that also
998 * matches the stat information, and assume it's that other file!
999 */
1000static int icase_exists(struct unpack_trees_options *o, struct cache_entry *dst, struct stat *st)
1001{
1002 struct cache_entry *src;
1003
1004 src = index_name_exists(o->src_index, dst->name, ce_namelen(dst), 1);
Nguyễn Thái Ngọc Duy56cac482009-12-14 18:43:58 +07001005 return src && !ie_match_stat(o->src_index, src, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);
Linus Torvalds32260ad2008-03-22 09:35:59 -07001006}
1007
1008/*
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001009 * We do not want to remove or overwrite a working tree file that
Junio C Hamanof8a9d422006-12-04 16:00:46 -08001010 * is not tracked, unless it is ignored.
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001011 */
Nguyễn Thái Ngọc Duy35a5aa72009-08-20 20:47:07 +07001012static int verify_absent_1(struct cache_entry *ce, const char *action,
1013 struct unpack_trees_options *o,
1014 const char *error_msg)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001015{
1016 struct stat st;
1017
1018 if (o->index_only || o->reset || !o->update)
Daniel Barkalow203a2fe2008-02-07 11:39:48 -05001019 return 0;
Junio C Hamanoc8193532007-03-15 23:25:22 -07001020
Kjetil Barvik57199892009-02-09 21:54:06 +01001021 if (has_symlink_or_noent_leading_path(ce->name, ce_namelen(ce)))
Daniel Barkalow203a2fe2008-02-07 11:39:48 -05001022 return 0;
Junio C Hamanoec0603e2007-07-12 01:04:16 -07001023
Sven Verdoolaege0cf73752007-07-17 20:28:28 +02001024 if (!lstat(ce->name, &st)) {
Junio C Hamano6831a882008-01-31 20:23:25 -08001025 int dtype = ce_to_dtype(ce);
Linus Torvaldsdf292c72008-03-21 15:53:00 -07001026 struct cache_entry *result;
Junio C Hamanoc8193532007-03-15 23:25:22 -07001027
Linus Torvalds32260ad2008-03-22 09:35:59 -07001028 /*
1029 * It may be that the 'lstat()' succeeded even though
1030 * target 'ce' was absent, because there is an old
1031 * entry that is different only in case..
1032 *
1033 * Ignore that lstat() if it matches.
1034 */
1035 if (ignore_case && icase_exists(o, ce, &st))
1036 return 0;
1037
Junio C Hamano6831a882008-01-31 20:23:25 -08001038 if (o->dir && excluded(o->dir, ce->name, &dtype))
Junio C Hamanoc8193532007-03-15 23:25:22 -07001039 /*
Sven Verdoolaege0cf73752007-07-17 20:28:28 +02001040 * ce->name is explicitly excluded, so it is Ok to
Junio C Hamanoc8193532007-03-15 23:25:22 -07001041 * overwrite it.
1042 */
Daniel Barkalow203a2fe2008-02-07 11:39:48 -05001043 return 0;
Junio C Hamanoc8193532007-03-15 23:25:22 -07001044 if (S_ISDIR(st.st_mode)) {
1045 /*
1046 * We are checking out path "foo" and
1047 * found "foo/." in the working tree.
1048 * This is tricky -- if we have modified
1049 * files that are in "foo/" we would lose
Junio C Hamano6caa7b52009-09-19 17:26:16 -07001050 * them.
Junio C Hamanoc8193532007-03-15 23:25:22 -07001051 */
Junio C Hamanoda165f42010-01-07 14:59:54 -08001052 if (verify_clean_subdirectory(ce, action, o) < 0)
1053 return -1;
Daniel Barkalow203a2fe2008-02-07 11:39:48 -05001054 return 0;
Junio C Hamanoc8193532007-03-15 23:25:22 -07001055 }
1056
1057 /*
1058 * The previous round may already have decided to
1059 * delete this path, which is in a subdirectory that
1060 * is being replaced with a blob.
1061 */
Linus Torvaldscd2fef52008-03-21 15:55:19 -07001062 result = index_name_exists(&o->result, ce->name, ce_namelen(ce), 0);
Linus Torvaldsdf292c72008-03-21 15:53:00 -07001063 if (result) {
1064 if (result->ce_flags & CE_REMOVE)
Daniel Barkalow203a2fe2008-02-07 11:39:48 -05001065 return 0;
Junio C Hamanoc8193532007-03-15 23:25:22 -07001066 }
1067
Daniel Barkalow17e46422008-02-07 11:39:52 -05001068 return o->gently ? -1 :
Junio C Hamano8ccba002008-05-17 12:03:49 -07001069 error(ERRORMSG(o, would_lose_untracked), ce->name, action);
Junio C Hamanoc8193532007-03-15 23:25:22 -07001070 }
Daniel Barkalow203a2fe2008-02-07 11:39:48 -05001071 return 0;
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001072}
Nguyễn Thái Ngọc Duy35a5aa72009-08-20 20:47:07 +07001073static int verify_absent(struct cache_entry *ce, const char *action,
1074 struct unpack_trees_options *o)
1075{
Nguyễn Thái Ngọc Duyf1f523e2009-08-20 20:47:10 +07001076 if (!o->skip_sparse_checkout && will_have_skip_worktree(ce, o))
1077 return 0;
Nguyễn Thái Ngọc Duy35a5aa72009-08-20 20:47:07 +07001078 return verify_absent_1(ce, action, o, ERRORMSG(o, would_lose_untracked));
1079}
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001080
Nguyễn Thái Ngọc Duye800ec92009-08-20 20:47:09 +07001081static int verify_absent_sparse(struct cache_entry *ce, const char *action,
1082 struct unpack_trees_options *o)
1083{
1084 return verify_absent_1(ce, action, o, ERRORMSG(o, would_lose_orphaned));
1085}
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001086
1087static int merged_entry(struct cache_entry *merge, struct cache_entry *old,
1088 struct unpack_trees_options *o)
1089{
Linus Torvalds7f8ab8d2008-03-16 11:42:50 -07001090 int update = CE_UPDATE;
1091
Junio C Hamanoe11d7b52009-12-31 23:04:04 -08001092 if (!old) {
1093 if (verify_absent(merge, "overwritten", o))
1094 return -1;
1095 invalidate_ce_path(merge, o);
1096 } else if (!(old->ce_flags & CE_CONFLICTED)) {
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001097 /*
1098 * See if we can re-use the old CE directly?
1099 * That way we get the uptodate stat info.
1100 *
Linus Torvalds7f8ab8d2008-03-16 11:42:50 -07001101 * This also removes the UPDATE flag on a match; otherwise
1102 * we will end up overwriting local changes in the work tree.
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001103 */
1104 if (same(old, merge)) {
Linus Torvaldseb7a2f12008-02-22 20:41:17 -08001105 copy_cache_entry(merge, old);
Linus Torvalds7f8ab8d2008-03-16 11:42:50 -07001106 update = 0;
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001107 } else {
Daniel Barkalow203a2fe2008-02-07 11:39:48 -05001108 if (verify_uptodate(old, o))
1109 return -1;
Nguyễn Thái Ngọc Duy32f54ca2009-08-20 20:47:02 +07001110 if (ce_skip_worktree(old))
1111 update |= CE_SKIP_WORKTREE;
Linus Torvaldsbc052d72008-03-06 12:26:14 -08001112 invalidate_ce_path(old, o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001113 }
Junio C Hamanoe11d7b52009-12-31 23:04:04 -08001114 } else {
1115 /*
1116 * Previously unmerged entry left as an existence
1117 * marker by read_index_unmerged();
1118 */
1119 invalidate_ce_path(old, o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001120 }
1121
Linus Torvalds7f8ab8d2008-03-16 11:42:50 -07001122 add_entry(o, merge, update, CE_STAGEMASK);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001123 return 1;
1124}
1125
1126static int deleted_entry(struct cache_entry *ce, struct cache_entry *old,
1127 struct unpack_trees_options *o)
1128{
Linus Torvalds34110cd2008-03-06 18:12:28 -08001129 /* Did it exist in the index? */
1130 if (!old) {
Daniel Barkalow203a2fe2008-02-07 11:39:48 -05001131 if (verify_absent(ce, "removed", o))
1132 return -1;
Linus Torvalds34110cd2008-03-06 18:12:28 -08001133 return 0;
1134 }
Junio C Hamanoe11d7b52009-12-31 23:04:04 -08001135 if (!(old->ce_flags & CE_CONFLICTED) && verify_uptodate(old, o))
Linus Torvalds34110cd2008-03-06 18:12:28 -08001136 return -1;
1137 add_entry(o, ce, CE_REMOVE, 0);
Linus Torvaldsbc052d72008-03-06 12:26:14 -08001138 invalidate_ce_path(ce, o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001139 return 1;
1140}
1141
Junio C Hamano7f7932a2007-04-02 00:06:12 -07001142static int keep_entry(struct cache_entry *ce, struct unpack_trees_options *o)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001143{
Linus Torvalds34110cd2008-03-06 18:12:28 -08001144 add_entry(o, ce, 0, 0);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001145 return 1;
1146}
1147
1148#if DBRT_DEBUG
1149static void show_stage_entry(FILE *o,
1150 const char *label, const struct cache_entry *ce)
1151{
1152 if (!ce)
1153 fprintf(o, "%s (missing)\n", label);
1154 else
1155 fprintf(o, "%s%06o %s %d\t%s\n",
1156 label,
Linus Torvalds7a51ed62008-01-14 16:03:17 -08001157 ce->ce_mode,
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001158 sha1_to_hex(ce->sha1),
1159 ce_stage(ce),
1160 ce->name);
1161}
1162#endif
1163
Linus Torvalds34110cd2008-03-06 18:12:28 -08001164int threeway_merge(struct cache_entry **stages, struct unpack_trees_options *o)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001165{
1166 struct cache_entry *index;
1167 struct cache_entry *head;
1168 struct cache_entry *remote = stages[o->head_idx + 1];
1169 int count;
1170 int head_match = 0;
1171 int remote_match = 0;
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001172
1173 int df_conflict_head = 0;
1174 int df_conflict_remote = 0;
1175
1176 int any_anc_missing = 0;
1177 int no_anc_exists = 1;
1178 int i;
1179
1180 for (i = 1; i < o->head_idx; i++) {
Junio C Hamano4c4caaf2007-04-07 05:49:19 -07001181 if (!stages[i] || stages[i] == o->df_conflict_entry)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001182 any_anc_missing = 1;
Junio C Hamano4c4caaf2007-04-07 05:49:19 -07001183 else
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001184 no_anc_exists = 0;
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001185 }
1186
1187 index = stages[0];
1188 head = stages[o->head_idx];
1189
1190 if (head == o->df_conflict_entry) {
1191 df_conflict_head = 1;
1192 head = NULL;
1193 }
1194
1195 if (remote == o->df_conflict_entry) {
1196 df_conflict_remote = 1;
1197 remote = NULL;
1198 }
1199
Junio C Hamanocee2d6a2009-10-11 13:38:11 -07001200 /*
1201 * First, if there's a #16 situation, note that to prevent #13
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001202 * and #14.
1203 */
1204 if (!same(remote, head)) {
1205 for (i = 1; i < o->head_idx; i++) {
1206 if (same(stages[i], head)) {
1207 head_match = i;
1208 }
1209 if (same(stages[i], remote)) {
1210 remote_match = i;
1211 }
1212 }
1213 }
1214
Junio C Hamanocee2d6a2009-10-11 13:38:11 -07001215 /*
1216 * We start with cases where the index is allowed to match
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001217 * something other than the head: #14(ALT) and #2ALT, where it
1218 * is permitted to match the result instead.
1219 */
1220 /* #14, #14ALT, #2ALT */
1221 if (remote && !df_conflict_head && head_match && !remote_match) {
1222 if (index && !same(index, remote) && !same(index, head))
Junio C Hamano8ccba002008-05-17 12:03:49 -07001223 return o->gently ? -1 : reject_merge(index, o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001224 return merged_entry(remote, index, o);
1225 }
1226 /*
1227 * If we have an entry in the index cache, then we want to
1228 * make sure that it matches head.
1229 */
Daniel Barkalow4e7c4572008-02-07 11:40:02 -05001230 if (index && !same(index, head))
Junio C Hamano8ccba002008-05-17 12:03:49 -07001231 return o->gently ? -1 : reject_merge(index, o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001232
1233 if (head) {
1234 /* #5ALT, #15 */
1235 if (same(head, remote))
1236 return merged_entry(head, index, o);
1237 /* #13, #3ALT */
1238 if (!df_conflict_remote && remote_match && !head_match)
1239 return merged_entry(head, index, o);
1240 }
1241
1242 /* #1 */
Linus Torvalds34110cd2008-03-06 18:12:28 -08001243 if (!head && !remote && any_anc_missing)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001244 return 0;
1245
Junio C Hamanocee2d6a2009-10-11 13:38:11 -07001246 /*
1247 * Under the "aggressive" rule, we resolve mostly trivial
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001248 * cases that we historically had git-merge-one-file resolve.
1249 */
1250 if (o->aggressive) {
Junio C Hamanocee2d6a2009-10-11 13:38:11 -07001251 int head_deleted = !head;
1252 int remote_deleted = !remote;
Sven Verdoolaege0cf73752007-07-17 20:28:28 +02001253 struct cache_entry *ce = NULL;
Junio C Hamano4c4caaf2007-04-07 05:49:19 -07001254
1255 if (index)
Sven Verdoolaege0cf73752007-07-17 20:28:28 +02001256 ce = index;
Junio C Hamano4c4caaf2007-04-07 05:49:19 -07001257 else if (head)
Sven Verdoolaege0cf73752007-07-17 20:28:28 +02001258 ce = head;
Junio C Hamano4c4caaf2007-04-07 05:49:19 -07001259 else if (remote)
Sven Verdoolaege0cf73752007-07-17 20:28:28 +02001260 ce = remote;
Junio C Hamano4c4caaf2007-04-07 05:49:19 -07001261 else {
1262 for (i = 1; i < o->head_idx; i++) {
1263 if (stages[i] && stages[i] != o->df_conflict_entry) {
Sven Verdoolaege0cf73752007-07-17 20:28:28 +02001264 ce = stages[i];
Junio C Hamano4c4caaf2007-04-07 05:49:19 -07001265 break;
1266 }
1267 }
1268 }
1269
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001270 /*
1271 * Deleted in both.
1272 * Deleted in one and unchanged in the other.
1273 */
1274 if ((head_deleted && remote_deleted) ||
1275 (head_deleted && remote && remote_match) ||
1276 (remote_deleted && head && head_match)) {
1277 if (index)
1278 return deleted_entry(index, index, o);
Linus Torvalds34110cd2008-03-06 18:12:28 -08001279 if (ce && !head_deleted) {
Daniel Barkalow203a2fe2008-02-07 11:39:48 -05001280 if (verify_absent(ce, "removed", o))
1281 return -1;
1282 }
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001283 return 0;
1284 }
1285 /*
1286 * Added in both, identically.
1287 */
1288 if (no_anc_exists && head && remote && same(head, remote))
1289 return merged_entry(head, index, o);
1290
1291 }
1292
1293 /* Below are "no merge" cases, which require that the index be
1294 * up-to-date to avoid the files getting overwritten with
1295 * conflict resolution files.
1296 */
1297 if (index) {
Daniel Barkalow203a2fe2008-02-07 11:39:48 -05001298 if (verify_uptodate(index, o))
1299 return -1;
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001300 }
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001301
1302 o->nontrivial_merge = 1;
1303
Junio C Hamanoea4b52a2007-04-07 05:42:01 -07001304 /* #2, #3, #4, #6, #7, #9, #10, #11. */
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001305 count = 0;
1306 if (!head_match || !remote_match) {
1307 for (i = 1; i < o->head_idx; i++) {
Junio C Hamano4c4caaf2007-04-07 05:49:19 -07001308 if (stages[i] && stages[i] != o->df_conflict_entry) {
Junio C Hamano7f7932a2007-04-02 00:06:12 -07001309 keep_entry(stages[i], o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001310 count++;
1311 break;
1312 }
1313 }
1314 }
1315#if DBRT_DEBUG
1316 else {
1317 fprintf(stderr, "read-tree: warning #16 detected\n");
1318 show_stage_entry(stderr, "head ", stages[head_match]);
1319 show_stage_entry(stderr, "remote ", stages[remote_match]);
1320 }
1321#endif
Junio C Hamano7f7932a2007-04-02 00:06:12 -07001322 if (head) { count += keep_entry(head, o); }
1323 if (remote) { count += keep_entry(remote, o); }
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001324 return count;
1325}
1326
1327/*
1328 * Two-way merge.
1329 *
1330 * The rule is to "carry forward" what is in the index without losing
Felipe Contrerasa75d7b52009-10-24 11:31:32 +03001331 * information across a "fast-forward", favoring a successful merge
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001332 * over a merge failure when it makes sense. For details of the
1333 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.
1334 *
1335 */
Linus Torvalds34110cd2008-03-06 18:12:28 -08001336int twoway_merge(struct cache_entry **src, struct unpack_trees_options *o)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001337{
1338 struct cache_entry *current = src[0];
Junio C Hamanob8ba1532007-04-02 16:29:56 -07001339 struct cache_entry *oldtree = src[1];
1340 struct cache_entry *newtree = src[2];
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001341
1342 if (o->merge_size != 2)
1343 return error("Cannot do a twoway merge of %d trees",
1344 o->merge_size);
1345
Junio C Hamanob8ba1532007-04-02 16:29:56 -07001346 if (oldtree == o->df_conflict_entry)
1347 oldtree = NULL;
1348 if (newtree == o->df_conflict_entry)
1349 newtree = NULL;
1350
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001351 if (current) {
1352 if ((!oldtree && !newtree) || /* 4 and 5 */
1353 (!oldtree && newtree &&
1354 same(current, newtree)) || /* 6 and 7 */
1355 (oldtree && newtree &&
1356 same(oldtree, newtree)) || /* 14 and 15 */
1357 (oldtree && newtree &&
Junio C Hamanob8ba1532007-04-02 16:29:56 -07001358 !same(oldtree, newtree) && /* 18 and 19 */
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001359 same(current, newtree))) {
Junio C Hamano7f7932a2007-04-02 00:06:12 -07001360 return keep_entry(current, o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001361 }
1362 else if (oldtree && !newtree && same(current, oldtree)) {
1363 /* 10 or 11 */
1364 return deleted_entry(oldtree, current, o);
1365 }
1366 else if (oldtree && newtree &&
1367 same(current, oldtree) && !same(current, newtree)) {
1368 /* 20 or 21 */
1369 return merged_entry(newtree, current, o);
1370 }
1371 else {
1372 /* all other failures */
1373 if (oldtree)
Junio C Hamano8ccba002008-05-17 12:03:49 -07001374 return o->gently ? -1 : reject_merge(oldtree, o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001375 if (current)
Junio C Hamano8ccba002008-05-17 12:03:49 -07001376 return o->gently ? -1 : reject_merge(current, o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001377 if (newtree)
Junio C Hamano8ccba002008-05-17 12:03:49 -07001378 return o->gently ? -1 : reject_merge(newtree, o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001379 return -1;
1380 }
1381 }
Junio C Hamano55218832008-09-07 19:49:25 -07001382 else if (newtree) {
1383 if (oldtree && !o->initial_checkout) {
1384 /*
1385 * deletion of the path was staged;
1386 */
1387 if (same(oldtree, newtree))
1388 return 1;
1389 return reject_merge(oldtree, o);
1390 }
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001391 return merged_entry(newtree, current, o);
Junio C Hamano55218832008-09-07 19:49:25 -07001392 }
Linus Torvaldsd6996762007-08-10 12:31:20 -07001393 return deleted_entry(oldtree, current, o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001394}
1395
1396/*
1397 * Bind merge.
1398 *
1399 * Keep the index entries at stage0, collapse stage1 but make sure
1400 * stage0 does not have anything there.
1401 */
1402int bind_merge(struct cache_entry **src,
Linus Torvalds34110cd2008-03-06 18:12:28 -08001403 struct unpack_trees_options *o)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001404{
1405 struct cache_entry *old = src[0];
1406 struct cache_entry *a = src[1];
1407
1408 if (o->merge_size != 1)
1409 return error("Cannot do a bind merge of %d trees\n",
1410 o->merge_size);
1411 if (a && old)
Daniel Barkalow17e46422008-02-07 11:39:52 -05001412 return o->gently ? -1 :
Junio C Hamano8ccba002008-05-17 12:03:49 -07001413 error(ERRORMSG(o, bind_overlap), a->name, old->name);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001414 if (!a)
Junio C Hamano7f7932a2007-04-02 00:06:12 -07001415 return keep_entry(old, o);
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001416 else
1417 return merged_entry(a, NULL, o);
1418}
1419
1420/*
1421 * One-way merge.
1422 *
1423 * The rule is:
1424 * - take the stat information from stage0, take the data from stage1
1425 */
Linus Torvalds34110cd2008-03-06 18:12:28 -08001426int oneway_merge(struct cache_entry **src, struct unpack_trees_options *o)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001427{
1428 struct cache_entry *old = src[0];
1429 struct cache_entry *a = src[1];
1430
1431 if (o->merge_size != 1)
1432 return error("Cannot do a oneway merge of %d trees",
1433 o->merge_size);
1434
Junio C Hamano78d3b062009-07-18 12:26:38 -07001435 if (!a || a == o->df_conflict_entry)
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001436 return deleted_entry(old, old, o);
Linus Torvalds34110cd2008-03-06 18:12:28 -08001437
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001438 if (old && same(old, a)) {
Linus Torvalds34110cd2008-03-06 18:12:28 -08001439 int update = 0;
Nguyễn Thái Ngọc Duy52030832009-08-20 20:46:59 +07001440 if (o->reset && !ce_uptodate(old) && !ce_skip_worktree(old)) {
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001441 struct stat st;
1442 if (lstat(old->name, &st) ||
Nguyễn Thái Ngọc Duy56cac482009-12-14 18:43:58 +07001443 ie_match_stat(o->src_index, old, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE))
Linus Torvalds34110cd2008-03-06 18:12:28 -08001444 update |= CE_UPDATE;
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001445 }
Linus Torvalds34110cd2008-03-06 18:12:28 -08001446 add_entry(o, old, update, 0);
1447 return 0;
Johannes Schindelin076b0ad2006-07-30 20:26:15 +02001448 }
1449 return merged_entry(a, old, o);
1450}