2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
12 #include "tree-walk.h"
13 #include "cache-tree.h"
20 static int update
= 0;
21 static int index_only
= 0;
22 static int nontrivial_merge
= 0;
23 static int trivial_merges_only
= 0;
24 static int aggressive
= 0;
25 static int verbose_update
= 0;
26 static volatile int progress_update
= 0;
27 static const char *prefix
= NULL
;
29 static int head_idx
= -1;
30 static int merge_size
= 0;
32 static struct object_list
*trees
= NULL
;
34 static struct cache_entry df_conflict_entry
= {
37 struct tree_entry_list
{
38 struct tree_entry_list
*next
;
39 unsigned directory
: 1;
40 unsigned executable
: 1;
44 const unsigned char *sha1
;
47 static struct tree_entry_list df_conflict_list
= {
49 .next
= &df_conflict_list
52 typedef int (*merge_fn_t
)(struct cache_entry
**src
);
54 static struct tree_entry_list
*create_tree_entry_list(struct tree
*tree
)
56 struct tree_desc desc
;
57 struct name_entry one
;
58 struct tree_entry_list
*ret
= NULL
;
59 struct tree_entry_list
**list_p
= &ret
;
61 desc
.buf
= tree
->buffer
;
62 desc
.size
= tree
->size
;
64 while (tree_entry(&desc
, &one
)) {
65 struct tree_entry_list
*entry
;
67 entry
= xmalloc(sizeof(struct tree_entry_list
));
68 entry
->name
= one
.path
;
69 entry
->sha1
= one
.sha1
;
70 entry
->mode
= one
.mode
;
71 entry
->directory
= S_ISDIR(one
.mode
) != 0;
72 entry
->executable
= (one
.mode
& S_IXUSR
) != 0;
73 entry
->symlink
= S_ISLNK(one
.mode
) != 0;
77 list_p
= &entry
->next
;
82 static int entcmp(const char *name1
, int dir1
, const char *name2
, int dir2
)
84 int len1
= strlen(name1
);
85 int len2
= strlen(name2
);
86 int len
= len1
< len2
? len1
: len2
;
87 int ret
= memcmp(name1
, name2
, len
);
97 ret
= (c1
< c2
) ? -1 : (c1
> c2
) ? 1 : 0;
103 static int unpack_trees_rec(struct tree_entry_list
**posns
, int len
,
104 const char *base
, merge_fn_t fn
, int *indpos
)
106 int baselen
= strlen(base
);
107 int src_size
= len
+ 1;
114 struct tree_entry_list
**subposns
;
115 struct cache_entry
**src
;
121 /* Find the first name in the input. */
126 /* Check the cache */
127 if (merge
&& *indpos
< active_nr
) {
128 /* This is a bit tricky: */
129 /* If the index has a subdirectory (with
130 * contents) as the first name, it'll get a
131 * filename like "foo/bar". But that's after
132 * "foo", so the entry in trees will get
133 * handled first, at which point we'll go into
134 * "foo", and deal with "bar" from the index,
135 * because the base will be "foo/". The only
136 * way we can actually have "foo/bar" first of
137 * all the things is if the trees don't
138 * contain "foo" at all, in which case we'll
139 * handle "foo/bar" without going into the
140 * directory, but that's fine (and will return
141 * an error anyway, with the added unknown
145 cache_name
= active_cache
[*indpos
]->name
;
146 if (strlen(cache_name
) > baselen
&&
147 !memcmp(cache_name
, base
, baselen
)) {
148 cache_name
+= baselen
;
157 printf("index %s\n", first
);
159 for (i
= 0; i
< len
; i
++) {
160 if (!posns
[i
] || posns
[i
] == &df_conflict_list
)
163 printf("%d %s\n", i
+ 1, posns
[i
]->name
);
165 if (!first
|| entcmp(first
, firstdir
,
167 posns
[i
]->directory
) > 0) {
168 first
= posns
[i
]->name
;
169 firstdir
= posns
[i
]->directory
;
172 /* No name means we're done */
176 pathlen
= strlen(first
);
177 ce_size
= cache_entry_size(baselen
+ pathlen
);
179 src
= xcalloc(src_size
, sizeof(struct cache_entry
*));
181 subposns
= xcalloc(len
, sizeof(struct tree_list_entry
*));
183 if (cache_name
&& !strcmp(cache_name
, first
)) {
185 src
[0] = active_cache
[*indpos
];
186 remove_cache_entry_at(*indpos
);
189 for (i
= 0; i
< len
; i
++) {
190 struct cache_entry
*ce
;
193 (posns
[i
] != &df_conflict_list
&&
194 strcmp(first
, posns
[i
]->name
))) {
198 if (posns
[i
] == &df_conflict_list
) {
199 src
[i
+ merge
] = &df_conflict_entry
;
203 if (posns
[i
]->directory
) {
204 struct tree
*tree
= lookup_tree(posns
[i
]->sha1
);
207 subposns
[i
] = create_tree_entry_list(tree
);
208 posns
[i
] = posns
[i
]->next
;
209 src
[i
+ merge
] = &df_conflict_entry
;
215 else if (i
+ 1 < head_idx
)
217 else if (i
+ 1 > head_idx
)
222 ce
= xcalloc(1, ce_size
);
223 ce
->ce_mode
= create_ce_mode(posns
[i
]->mode
);
224 ce
->ce_flags
= create_ce_flags(baselen
+ pathlen
,
226 memcpy(ce
->name
, base
, baselen
);
227 memcpy(ce
->name
+ baselen
, first
, pathlen
+ 1);
231 memcpy(ce
->sha1
, posns
[i
]->sha1
, 20);
233 subposns
[i
] = &df_conflict_list
;
234 posns
[i
] = posns
[i
]->next
;
241 printf("%s:\n", first
);
242 for (i
= 0; i
< src_size
; i
++) {
245 printf("%s\n", sha1_to_hex(src
[i
]->sha1
));
253 printf("Added %d entries\n", ret
);
257 for (i
= 0; i
< src_size
; i
++) {
259 add_cache_entry(src
[i
], ADD_CACHE_OK_TO_ADD
|ADD_CACHE_SKIP_DFCHECK
);
265 char *newbase
= xmalloc(baselen
+ 2 + pathlen
);
266 memcpy(newbase
, base
, baselen
);
267 memcpy(newbase
+ baselen
, first
, pathlen
);
268 newbase
[baselen
+ pathlen
] = '/';
269 newbase
[baselen
+ pathlen
+ 1] = '\0';
270 if (unpack_trees_rec(subposns
, len
, newbase
, fn
,
280 static void reject_merge(struct cache_entry
*ce
)
282 die("Entry '%s' would be overwritten by merge. Cannot merge.",
286 /* Unlink the last component and attempt to remove leading
287 * directories, in case this unlink is the removal of the
288 * last entry in the directory -- empty directories are removed.
290 static void unlink_entry(char *name
)
299 cp
= strrchr(name
, '/');
306 status
= rmdir(name
);
315 static void progress_interval(int signum
)
320 static void setup_progress_signal(void)
325 memset(&sa
, 0, sizeof(sa
));
326 sa
.sa_handler
= progress_interval
;
327 sigemptyset(&sa
.sa_mask
);
328 sa
.sa_flags
= SA_RESTART
;
329 sigaction(SIGALRM
, &sa
, NULL
);
331 v
.it_interval
.tv_sec
= 1;
332 v
.it_interval
.tv_usec
= 0;
333 v
.it_value
= v
.it_interval
;
334 setitimer(ITIMER_REAL
, &v
, NULL
);
337 static void check_updates(struct cache_entry
**src
, int nr
)
339 static struct checkout state
= {
345 unsigned short mask
= htons(CE_UPDATE
);
346 unsigned last_percent
= 200, cnt
= 0, total
= 0;
348 if (update
&& verbose_update
) {
349 for (total
= cnt
= 0; cnt
< nr
; cnt
++) {
350 struct cache_entry
*ce
= src
[cnt
];
351 if (!ce
->ce_mode
|| ce
->ce_flags
& mask
)
355 /* Don't bother doing this for very small updates */
360 fprintf(stderr
, "Checking files out...\n");
361 setup_progress_signal();
368 struct cache_entry
*ce
= *src
++;
371 if (!ce
->ce_mode
|| ce
->ce_flags
& mask
) {
374 percent
= (cnt
* 100) / total
;
375 if (percent
!= last_percent
||
377 fprintf(stderr
, "%4u%% (%u/%u) done\r",
378 percent
, cnt
, total
);
379 last_percent
= percent
;
386 unlink_entry(ce
->name
);
389 if (ce
->ce_flags
& mask
) {
390 ce
->ce_flags
&= ~mask
;
392 checkout_entry(ce
, &state
, NULL
);
396 signal(SIGALRM
, SIG_IGN
);
401 static int unpack_trees(merge_fn_t fn
)
404 unsigned len
= object_list_length(trees
);
405 struct tree_entry_list
**posns
;
407 struct object_list
*posn
= trees
;
411 posns
= xmalloc(len
* sizeof(struct tree_entry_list
*));
412 for (i
= 0; i
< len
; i
++) {
413 posns
[i
] = create_tree_entry_list((struct tree
*) posn
->item
);
416 if (unpack_trees_rec(posns
, len
, prefix
? prefix
: "",
421 if (trivial_merges_only
&& nontrivial_merge
)
422 die("Merge requires file-level merging");
424 check_updates(active_cache
, active_nr
);
428 static int list_tree(unsigned char *sha1
)
430 struct tree
*tree
= parse_tree_indirect(sha1
);
433 object_list_append(&tree
->object
, &trees
);
437 static int same(struct cache_entry
*a
, struct cache_entry
*b
)
443 return a
->ce_mode
== b
->ce_mode
&&
444 !memcmp(a
->sha1
, b
->sha1
, 20);
449 * When a CE gets turned into an unmerged entry, we
450 * want it to be up-to-date
452 static void verify_uptodate(struct cache_entry
*ce
)
456 if (index_only
|| reset
)
459 if (!lstat(ce
->name
, &st
)) {
460 unsigned changed
= ce_match_stat(ce
, &st
, 1);
466 ce
->ce_flags
|= htons(CE_UPDATE
);
471 die("Entry '%s' not uptodate. Cannot merge.", ce
->name
);
474 static void invalidate_ce_path(struct cache_entry
*ce
)
477 cache_tree_invalidate_path(active_cache_tree
, ce
->name
);
481 * We do not want to remove or overwrite a working tree file that
484 static void verify_absent(const char *path
, const char *action
)
488 if (index_only
|| reset
|| !update
)
490 if (!lstat(path
, &st
))
491 die("Untracked working tree file '%s' "
492 "would be %s by merge.", path
, action
);
495 static int merged_entry(struct cache_entry
*merge
, struct cache_entry
*old
)
497 merge
->ce_flags
|= htons(CE_UPDATE
);
500 * See if we can re-use the old CE directly?
501 * That way we get the uptodate stat info.
503 * This also removes the UPDATE flag on
506 if (same(old
, merge
)) {
509 verify_uptodate(old
);
510 invalidate_ce_path(old
);
514 verify_absent(merge
->name
, "overwritten");
515 invalidate_ce_path(merge
);
518 merge
->ce_flags
&= ~htons(CE_STAGEMASK
);
519 add_cache_entry(merge
, ADD_CACHE_OK_TO_ADD
);
523 static int deleted_entry(struct cache_entry
*ce
, struct cache_entry
*old
)
526 verify_uptodate(old
);
528 verify_absent(ce
->name
, "removed");
530 add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
);
531 invalidate_ce_path(ce
);
535 static int keep_entry(struct cache_entry
*ce
)
537 add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
);
542 static void show_stage_entry(FILE *o
,
543 const char *label
, const struct cache_entry
*ce
)
546 fprintf(o
, "%s (missing)\n", label
);
548 fprintf(o
, "%s%06o %s %d\t%s\n",
551 sha1_to_hex(ce
->sha1
),
557 static int threeway_merge(struct cache_entry
**stages
)
559 struct cache_entry
*index
;
560 struct cache_entry
*head
;
561 struct cache_entry
*remote
= stages
[head_idx
+ 1];
564 int remote_match
= 0;
565 const char *path
= NULL
;
567 int df_conflict_head
= 0;
568 int df_conflict_remote
= 0;
570 int any_anc_missing
= 0;
571 int no_anc_exists
= 1;
574 for (i
= 1; i
< head_idx
; i
++) {
579 path
= stages
[i
]->name
;
585 head
= stages
[head_idx
];
587 if (head
== &df_conflict_entry
) {
588 df_conflict_head
= 1;
592 if (remote
== &df_conflict_entry
) {
593 df_conflict_remote
= 1;
604 /* First, if there's a #16 situation, note that to prevent #13
607 if (!same(remote
, head
)) {
608 for (i
= 1; i
< head_idx
; i
++) {
609 if (same(stages
[i
], head
)) {
612 if (same(stages
[i
], remote
)) {
618 /* We start with cases where the index is allowed to match
619 * something other than the head: #14(ALT) and #2ALT, where it
620 * is permitted to match the result instead.
622 /* #14, #14ALT, #2ALT */
623 if (remote
&& !df_conflict_head
&& head_match
&& !remote_match
) {
624 if (index
&& !same(index
, remote
) && !same(index
, head
))
626 return merged_entry(remote
, index
);
629 * If we have an entry in the index cache, then we want to
630 * make sure that it matches head.
632 if (index
&& !same(index
, head
)) {
638 if (same(head
, remote
))
639 return merged_entry(head
, index
);
641 if (!df_conflict_remote
&& remote_match
&& !head_match
)
642 return merged_entry(head
, index
);
646 if (!head
&& !remote
&& any_anc_missing
)
649 /* Under the new "aggressive" rule, we resolve mostly trivial
650 * cases that we historically had git-merge-one-file resolve.
653 int head_deleted
= !head
&& !df_conflict_head
;
654 int remote_deleted
= !remote
&& !df_conflict_remote
;
657 * Deleted in one and unchanged in the other.
659 if ((head_deleted
&& remote_deleted
) ||
660 (head_deleted
&& remote
&& remote_match
) ||
661 (remote_deleted
&& head
&& head_match
)) {
663 return deleted_entry(index
, index
);
665 verify_absent(path
, "removed");
669 * Added in both, identically.
671 if (no_anc_exists
&& head
&& remote
&& same(head
, remote
))
672 return merged_entry(head
, index
);
676 /* Below are "no merge" cases, which require that the index be
677 * up-to-date to avoid the files getting overwritten with
678 * conflict resolution files.
681 verify_uptodate(index
);
684 verify_absent(path
, "overwritten");
686 nontrivial_merge
= 1;
688 /* #2, #3, #4, #6, #7, #9, #11. */
690 if (!head_match
|| !remote_match
) {
691 for (i
= 1; i
< head_idx
; i
++) {
693 keep_entry(stages
[i
]);
701 fprintf(stderr
, "read-tree: warning #16 detected\n");
702 show_stage_entry(stderr
, "head ", stages
[head_match
]);
703 show_stage_entry(stderr
, "remote ", stages
[remote_match
]);
706 if (head
) { count
+= keep_entry(head
); }
707 if (remote
) { count
+= keep_entry(remote
); }
714 * The rule is to "carry forward" what is in the index without losing
715 * information across a "fast forward", favoring a successful merge
716 * over a merge failure when it makes sense. For details of the
717 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.
720 static int twoway_merge(struct cache_entry
**src
)
722 struct cache_entry
*current
= src
[0];
723 struct cache_entry
*oldtree
= src
[1], *newtree
= src
[2];
726 return error("Cannot do a twoway merge of %d trees",
730 if ((!oldtree
&& !newtree
) || /* 4 and 5 */
731 (!oldtree
&& newtree
&&
732 same(current
, newtree
)) || /* 6 and 7 */
733 (oldtree
&& newtree
&&
734 same(oldtree
, newtree
)) || /* 14 and 15 */
735 (oldtree
&& newtree
&&
736 !same(oldtree
, newtree
) && /* 18 and 19*/
737 same(current
, newtree
))) {
738 return keep_entry(current
);
740 else if (oldtree
&& !newtree
&& same(current
, oldtree
)) {
742 return deleted_entry(oldtree
, current
);
744 else if (oldtree
&& newtree
&&
745 same(current
, oldtree
) && !same(current
, newtree
)) {
747 return merged_entry(newtree
, current
);
750 /* all other failures */
752 reject_merge(oldtree
);
754 reject_merge(current
);
756 reject_merge(newtree
);
761 return merged_entry(newtree
, current
);
763 return deleted_entry(oldtree
, current
);
769 * Keep the index entries at stage0, collapse stage1 but make sure
770 * stage0 does not have anything there.
772 static int bind_merge(struct cache_entry
**src
)
774 struct cache_entry
*old
= src
[0];
775 struct cache_entry
*a
= src
[1];
778 return error("Cannot do a bind merge of %d trees\n",
781 die("Entry '%s' overlaps. Cannot bind.", a
->name
);
783 return keep_entry(old
);
785 return merged_entry(a
, NULL
);
792 * - take the stat information from stage0, take the data from stage1
794 static int oneway_merge(struct cache_entry
**src
)
796 struct cache_entry
*old
= src
[0];
797 struct cache_entry
*a
= src
[1];
800 return error("Cannot do a oneway merge of %d trees",
804 return deleted_entry(old
, old
);
805 if (old
&& same(old
, a
)) {
808 if (lstat(old
->name
, &st
) ||
809 ce_match_stat(old
, &st
, 1))
810 old
->ce_flags
|= htons(CE_UPDATE
);
812 return keep_entry(old
);
814 return merged_entry(a
, old
);
817 static int read_cache_unmerged(void)
820 struct cache_entry
**dst
;
821 struct cache_entry
*last
= NULL
;
825 for (i
= 0; i
< active_nr
; i
++) {
826 struct cache_entry
*ce
= active_cache
[i
];
828 if (last
&& !strcmp(ce
->name
, last
->name
))
830 invalidate_ce_path(ce
);
833 ce
->ce_flags
&= ~htons(CE_STAGEMASK
);
837 active_nr
= dst
- active_cache
;
841 static void prime_cache_tree_rec(struct cache_tree
*it
, struct tree
*tree
)
843 struct tree_desc desc
;
844 struct name_entry entry
;
847 memcpy(it
->sha1
, tree
->object
.sha1
, 20);
848 desc
.buf
= tree
->buffer
;
849 desc
.size
= tree
->size
;
851 while (tree_entry(&desc
, &entry
)) {
852 if (!S_ISDIR(entry
.mode
))
855 struct cache_tree_sub
*sub
;
856 struct tree
*subtree
= lookup_tree(entry
.sha1
);
857 if (!subtree
->object
.parsed
)
859 sub
= cache_tree_sub(it
, entry
.path
);
860 sub
->cache_tree
= cache_tree();
861 prime_cache_tree_rec(sub
->cache_tree
, subtree
);
862 cnt
+= sub
->cache_tree
->entry_count
;
865 it
->entry_count
= cnt
;
868 static void prime_cache_tree(void)
870 struct tree
*tree
= (struct tree
*)trees
->item
;
873 active_cache_tree
= cache_tree();
874 prime_cache_tree_rec(active_cache_tree
, tree
);
878 static const char read_tree_usage
[] = "git-read-tree (<sha> | [[-m [--aggressive] | --reset | --prefix=<prefix>] [-u | -i]] <sha1> [<sha2> [<sha3>]])";
880 static struct lock_file lock_file
;
882 int cmd_read_tree(int argc
, const char **argv
, char **envp
)
884 int i
, newfd
, stage
= 0;
885 unsigned char sha1
[20];
886 merge_fn_t fn
= NULL
;
888 setup_git_directory();
889 git_config(git_default_config
);
891 newfd
= hold_lock_file_for_update(&lock_file
, get_index_file());
893 die("unable to create new index file");
895 git_config(git_default_config
);
899 for (i
= 1; i
< argc
; i
++) {
900 const char *arg
= argv
[i
];
902 /* "-u" means "update", meaning that a merge will update
905 if (!strcmp(arg
, "-u")) {
910 if (!strcmp(arg
, "-v")) {
915 /* "-i" means "index only", meaning that a merge will
916 * not even look at the working tree.
918 if (!strcmp(arg
, "-i")) {
923 /* "--prefix=<subdirectory>/" means keep the current index
924 * entries and put the entries from the tree under the
925 * given subdirectory.
927 if (!strncmp(arg
, "--prefix=", 9)) {
928 if (stage
|| merge
|| prefix
)
929 usage(read_tree_usage
);
933 if (read_cache_unmerged())
934 die("you need to resolve your current index first");
938 /* This differs from "-m" in that we'll silently ignore
939 * unmerged entries and overwrite working tree files that
940 * correspond to them.
942 if (!strcmp(arg
, "--reset")) {
943 if (stage
|| merge
|| prefix
)
944 usage(read_tree_usage
);
948 read_cache_unmerged();
952 if (!strcmp(arg
, "--trivial")) {
953 trivial_merges_only
= 1;
957 if (!strcmp(arg
, "--aggressive")) {
962 /* "-m" stands for "merge", meaning we start in stage 1 */
963 if (!strcmp(arg
, "-m")) {
964 if (stage
|| merge
|| prefix
)
965 usage(read_tree_usage
);
966 if (read_cache_unmerged())
967 die("you need to resolve your current index first");
973 /* using -u and -i at the same time makes no sense */
974 if (1 < index_only
+ update
)
975 usage(read_tree_usage
);
977 if (get_sha1(arg
, sha1
))
978 die("Not a valid object name %s", arg
);
979 if (list_tree(sha1
) < 0)
980 die("failed to unpack tree object %s", arg
);
983 if ((update
||index_only
) && !merge
)
984 usage(read_tree_usage
);
987 int pfxlen
= strlen(prefix
);
989 if (prefix
[pfxlen
-1] != '/')
990 die("prefix must end with /");
992 die("binding merge takes only one tree");
993 pos
= cache_name_pos(prefix
, pfxlen
);
995 die("corrupt index file");
997 if (pos
< active_nr
&&
998 !strncmp(active_cache
[pos
]->name
, prefix
, pfxlen
))
999 die("subdirectory '%s' already exists.", prefix
);
1000 pos
= cache_name_pos(prefix
, pfxlen
-1);
1002 die("file '%.*s' already exists.", pfxlen
-1, prefix
);
1007 die("just how do you expect me to merge %d trees?", stage
-1);
1008 switch (stage
- 1) {
1010 fn
= prefix
? bind_merge
: oneway_merge
;
1017 fn
= threeway_merge
;
1018 cache_tree_free(&active_cache_tree
);
1023 head_idx
= stage
- 2;
1031 * When reading only one tree (either the most basic form,
1032 * "-m ent" or "--reset ent" form), we can obtain a fully
1033 * valid cache-tree because the index must match exactly
1034 * what came from the tree.
1036 if (trees
&& trees
->item
&& !prefix
&& (!merge
|| (stage
== 2))) {
1037 cache_tree_free(&active_cache_tree
);
1041 if (write_cache(newfd
, active_cache
, active_nr
) ||
1042 commit_lock_file(&lock_file
))
1043 die("unable to write new index file");