2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
12 static int update
= 0;
14 static int head_idx
= -1;
15 static int merge_size
= 0;
17 static struct object_list
*trees
= NULL
;
19 static struct cache_entry df_conflict_entry
= {
22 static struct tree_entry_list df_conflict_list
= {
24 .next
= &df_conflict_list
27 typedef int (*merge_fn_t
)(struct cache_entry
**src
);
29 static int entcmp(char *name1
, int dir1
, char *name2
, int dir2
)
31 int len1
= strlen(name1
);
32 int len2
= strlen(name2
);
33 int len
= len1
< len2
? len1
: len2
;
34 int ret
= memcmp(name1
, name2
, len
);
44 ret
= (c1
< c2
) ? -1 : (c1
> c2
) ? 1 : 0;
52 static int unpack_trees_rec(struct tree_entry_list
**posns
, int len
,
53 const char *base
, merge_fn_t fn
, int *indpos
)
55 int baselen
= strlen(base
);
56 int src_size
= len
+ 1;
63 struct tree_entry_list
**subposns
;
64 struct cache_entry
**src
;
70 /* Find the first name in the input. */
76 if (merge
&& *indpos
< active_nr
) {
77 /* This is a bit tricky: */
78 /* If the index has a subdirectory (with
79 * contents) as the first name, it'll get a
80 * filename like "foo/bar". But that's after
81 * "foo", so the entry in trees will get
82 * handled first, at which point we'll go into
83 * "foo", and deal with "bar" from the index,
84 * because the base will be "foo/". The only
85 * way we can actually have "foo/bar" first of
86 * all the things is if the trees don't
87 * contain "foo" at all, in which case we'll
88 * handle "foo/bar" without going into the
89 * directory, but that's fine (and will return
90 * an error anyway, with the added unknown
94 cache_name
= active_cache
[*indpos
]->name
;
95 if (strlen(cache_name
) > baselen
&&
96 !memcmp(cache_name
, base
, baselen
)) {
97 cache_name
+= baselen
;
106 printf("index %s\n", first
);
108 for (i
= 0; i
< len
; i
++) {
109 if (!posns
[i
] || posns
[i
] == &df_conflict_list
)
112 printf("%d %s\n", i
+ 1, posns
[i
]->name
);
114 if (!first
|| entcmp(first
, firstdir
,
116 posns
[i
]->directory
) > 0) {
117 first
= posns
[i
]->name
;
118 firstdir
= posns
[i
]->directory
;
121 /* No name means we're done */
125 pathlen
= strlen(first
);
126 ce_size
= cache_entry_size(baselen
+ pathlen
);
128 src
= xmalloc(sizeof(struct cache_entry
*) * src_size
);
129 memset(src
, 0, sizeof(struct cache_entry
*) * src_size
);
131 subposns
= xmalloc(sizeof(struct tree_list_entry
*) * len
);
132 memset(subposns
, 0, sizeof(struct tree_list_entry
*) * len
);
134 if (cache_name
&& !strcmp(cache_name
, first
)) {
136 src
[0] = active_cache
[*indpos
];
137 remove_cache_entry_at(*indpos
);
140 for (i
= 0; i
< len
; i
++) {
141 struct cache_entry
*ce
;
144 (posns
[i
] != &df_conflict_list
&&
145 strcmp(first
, posns
[i
]->name
))) {
149 if (posns
[i
] == &df_conflict_list
) {
150 src
[i
+ merge
] = &df_conflict_entry
;
154 if (posns
[i
]->directory
) {
156 parse_tree(posns
[i
]->item
.tree
);
157 subposns
[i
] = posns
[i
]->item
.tree
->entries
;
158 posns
[i
] = posns
[i
]->next
;
159 src
[i
+ merge
] = &df_conflict_entry
;
165 else if (i
+ 1 < head_idx
)
167 else if (i
+ 1 > head_idx
)
172 ce
= xmalloc(ce_size
);
173 memset(ce
, 0, ce_size
);
174 ce
->ce_mode
= create_ce_mode(posns
[i
]->mode
);
175 ce
->ce_flags
= create_ce_flags(baselen
+ pathlen
,
177 memcpy(ce
->name
, base
, baselen
);
178 memcpy(ce
->name
+ baselen
, first
, pathlen
+ 1);
182 memcpy(ce
->sha1
, posns
[i
]->item
.any
->sha1
, 20);
184 subposns
[i
] = &df_conflict_list
;
185 posns
[i
] = posns
[i
]->next
;
192 printf("%s:\n", first
);
193 for (i
= 0; i
< src_size
; i
++) {
196 printf("%s\n", sha1_to_hex(src
[i
]->sha1
));
204 printf("Added %d entries\n", ret
);
208 for (i
= 0; i
< src_size
; i
++) {
210 add_cache_entry(src
[i
], ADD_CACHE_OK_TO_ADD
|ADD_CACHE_SKIP_DFCHECK
);
216 char *newbase
= xmalloc(baselen
+ 2 + pathlen
);
217 memcpy(newbase
, base
, baselen
);
218 memcpy(newbase
+ baselen
, first
, pathlen
);
219 newbase
[baselen
+ pathlen
] = '/';
220 newbase
[baselen
+ pathlen
+ 1] = '\0';
221 if (unpack_trees_rec(subposns
, len
, newbase
, fn
,
230 static void reject_merge(struct cache_entry
*ce
)
232 die("Entry '%s' would be overwritten by merge. Cannot merge.",
236 static void check_updates(struct cache_entry
**src
, int nr
)
238 static struct checkout state
= {
244 unsigned short mask
= htons(CE_UPDATE
);
246 struct cache_entry
*ce
= *src
++;
252 if (ce
->ce_flags
& mask
) {
253 ce
->ce_flags
&= ~mask
;
255 checkout_entry(ce
, &state
);
260 static int unpack_trees(merge_fn_t fn
)
263 unsigned len
= object_list_length(trees
);
264 struct tree_entry_list
**posns
=
265 xmalloc(len
* sizeof(struct tree_entry_list
*));
267 struct object_list
*posn
= trees
;
269 for (i
= 0; i
< len
; i
++) {
270 posns
[i
] = ((struct tree
*) posn
->item
)->entries
;
273 if (unpack_trees_rec(posns
, len
, "", fn
, &indpos
))
276 check_updates(active_cache
, active_nr
);
280 static int list_tree(unsigned char *sha1
)
282 struct tree
*tree
= parse_tree_indirect(sha1
);
285 object_list_append(&tree
->object
, &trees
);
289 static int same(struct cache_entry
*a
, struct cache_entry
*b
)
295 return a
->ce_mode
== b
->ce_mode
&&
296 !memcmp(a
->sha1
, b
->sha1
, 20);
301 * When a CE gets turned into an unmerged entry, we
302 * want it to be up-to-date
304 static void verify_uptodate(struct cache_entry
*ce
)
308 if (!lstat(ce
->name
, &st
)) {
309 unsigned changed
= ce_match_stat(ce
, &st
);
316 die("Entry '%s' not uptodate. Cannot merge.", ce
->name
);
319 static int merged_entry(struct cache_entry
*merge
, struct cache_entry
*old
)
321 merge
->ce_flags
|= htons(CE_UPDATE
);
324 * See if we can re-use the old CE directly?
325 * That way we get the uptodate stat info.
327 * This also removes the UPDATE flag on
330 if (same(old
, merge
)) {
333 verify_uptodate(old
);
336 merge
->ce_flags
&= ~htons(CE_STAGEMASK
);
337 add_cache_entry(merge
, ADD_CACHE_OK_TO_ADD
);
341 static int deleted_entry(struct cache_entry
*ce
, struct cache_entry
*old
)
344 verify_uptodate(old
);
346 add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
);
350 static int keep_entry(struct cache_entry
*ce
)
352 add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
);
356 static int threeway_merge(struct cache_entry
**stages
)
358 struct cache_entry
*index
;
359 struct cache_entry
*head
;
360 struct cache_entry
*remote
= stages
[head_idx
+ 1];
363 int remote_match
= 0;
365 int df_conflict_head
= 0;
366 int df_conflict_remote
= 0;
368 int any_anc_missing
= 0;
371 for (i
= 1; i
< head_idx
; i
++) {
377 head
= stages
[head_idx
];
379 if (head
== &df_conflict_entry
) {
380 df_conflict_head
= 1;
384 if (remote
== &df_conflict_entry
) {
385 df_conflict_remote
= 1;
389 /* First, if there's a #16 situation, note that to prevent #13
392 if (!same(remote
, head
)) {
393 for (i
= 1; i
< head_idx
; i
++) {
394 if (same(stages
[i
], head
)) {
397 if (same(stages
[i
], remote
)) {
403 /* We start with cases where the index is allowed to match
404 * something other than the head: #14(ALT) and #2ALT, where it
405 * is permitted to match the result instead.
407 /* #14, #14ALT, #2ALT */
408 if (remote
&& !df_conflict_head
&& head_match
&& !remote_match
) {
409 if (index
&& !same(index
, remote
) && !same(index
, head
))
411 return merged_entry(remote
, index
);
414 * If we have an entry in the index cache, then we want to
415 * make sure that it matches head.
417 if (index
&& !same(index
, head
)) {
423 if (same(head
, remote
))
424 return merged_entry(head
, index
);
426 if (!df_conflict_remote
&& remote_match
&& !head_match
)
427 return merged_entry(head
, index
);
431 if (!head
&& !remote
&& any_anc_missing
)
434 /* Below are "no merge" cases, which require that the index be
435 * up-to-date to avoid the files getting overwritten with
436 * conflict resolution files.
439 verify_uptodate(index
);
442 /* #2, #3, #4, #6, #7, #9, #11. */
444 if (!head_match
|| !remote_match
) {
445 for (i
= 1; i
< head_idx
; i
++) {
447 keep_entry(stages
[i
]);
453 if (head
) { count
+= keep_entry(head
); }
454 if (remote
) { count
+= keep_entry(remote
); }
461 * The rule is to "carry forward" what is in the index without losing
462 * information across a "fast forward", favoring a successful merge
463 * over a merge failure when it makes sense. For details of the
464 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.
467 static int twoway_merge(struct cache_entry
**src
)
469 struct cache_entry
*current
= src
[0];
470 struct cache_entry
*oldtree
= src
[1], *newtree
= src
[2];
473 return error("Cannot do a twoway merge of %d trees\n",
477 if ((!oldtree
&& !newtree
) || /* 4 and 5 */
478 (!oldtree
&& newtree
&&
479 same(current
, newtree
)) || /* 6 and 7 */
480 (oldtree
&& newtree
&&
481 same(oldtree
, newtree
)) || /* 14 and 15 */
482 (oldtree
&& newtree
&&
483 !same(oldtree
, newtree
) && /* 18 and 19*/
484 same(current
, newtree
))) {
485 return keep_entry(current
);
487 else if (oldtree
&& !newtree
&& same(current
, oldtree
)) {
489 return deleted_entry(oldtree
, current
);
491 else if (oldtree
&& newtree
&&
492 same(current
, oldtree
) && !same(current
, newtree
)) {
494 return merged_entry(newtree
, current
);
497 /* all other failures */
499 reject_merge(oldtree
);
501 reject_merge(current
);
503 reject_merge(newtree
);
508 return merged_entry(newtree
, current
);
510 return deleted_entry(oldtree
, current
);
517 * - take the stat information from stage0, take the data from stage1
519 static int oneway_merge(struct cache_entry
**src
)
521 struct cache_entry
*old
= src
[0];
522 struct cache_entry
*a
= src
[1];
525 return error("Cannot do a oneway merge of %d trees\n",
530 if (old
&& same(old
, a
)) {
531 return keep_entry(old
);
533 return merged_entry(a
, NULL
);
536 static int read_cache_unmerged(void)
539 struct cache_entry
**dst
;
544 for (i
= 0; i
< active_nr
; i
++) {
545 struct cache_entry
*ce
= active_cache
[i
];
554 active_nr
-= deleted
;
558 static const char read_tree_usage
[] = "git-read-tree (<sha> | -m [-u] <sha1> [<sha2> [<sha3>]])";
560 static struct cache_file cache_file
;
562 int main(int argc
, char **argv
)
564 int i
, newfd
, reset
, stage
= 0;
565 unsigned char sha1
[20];
566 merge_fn_t fn
= NULL
;
568 newfd
= hold_index_file_for_update(&cache_file
, get_index_file());
570 die("unable to create new cachefile");
574 for (i
= 1; i
< argc
; i
++) {
575 const char *arg
= argv
[i
];
577 /* "-u" means "update", meaning that a merge will update the working directory */
578 if (!strcmp(arg
, "-u")) {
583 /* This differs from "-m" in that we'll silently ignore unmerged entries */
584 if (!strcmp(arg
, "--reset")) {
586 usage(read_tree_usage
);
590 read_cache_unmerged();
594 if (!strcmp(arg
, "--head")) {
595 head_idx
= stage
- 1;
599 /* "-m" stands for "merge", meaning we start in stage 1 */
600 if (!strcmp(arg
, "-m")) {
602 usage(read_tree_usage
);
603 if (read_cache_unmerged())
604 die("you need to resolve your current index first");
610 if (get_sha1(arg
, sha1
) < 0)
611 usage(read_tree_usage
);
612 if (list_tree(sha1
) < 0)
613 die("failed to unpack tree object %s", arg
);
616 if (update
&& !merge
)
617 usage(read_tree_usage
);
620 die("just how do you expect me to merge %d trees?", stage
-1);
639 head_idx
= stage
- 2;
645 if (write_cache(newfd
, active_cache
, active_nr
) ||
646 commit_index_file(&cache_file
))
647 die("unable to write new index file");