builtin-read-tree.c 6.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/*
 * GIT - The information manager from hell
 *
 * Copyright (C) Linus Torvalds, 2005
 */
6

7
#include "cache.h"
D
Daniel Barkalow 已提交
8 9
#include "object.h"
#include "tree.h"
10
#include "tree-walk.h"
11
#include "cache-tree.h"
12
#include "unpack-trees.h"
13
#include "dir.h"
P
Peter Eriksen 已提交
14
#include "builtin.h"
D
Daniel Barkalow 已提交
15

16
#define MAX_TREES 8
17
static int nr_trees;
18
static struct tree *trees[MAX_TREES];
D
Daniel Barkalow 已提交
19 20 21

static int list_tree(unsigned char *sha1)
{
22 23
	struct tree *tree;

24 25
	if (nr_trees >= MAX_TREES)
		die("I cannot read more than %d trees", MAX_TREES);
26
	tree = parse_tree_indirect(sha1);
D
Daniel Barkalow 已提交
27 28
	if (!tree)
		return -1;
29
	trees[nr_trees++] = tree;
D
Daniel Barkalow 已提交
30 31 32
	return 0;
}

33 34
static int read_cache_unmerged(void)
{
35
	int i;
36
	struct cache_entry **dst;
37
	struct cache_entry *last = NULL;
38 39 40 41 42 43

	read_cache();
	dst = active_cache;
	for (i = 0; i < active_nr; i++) {
		struct cache_entry *ce = active_cache[i];
		if (ce_stage(ce)) {
44
			remove_index_entry(ce);
45 46
			if (last && !strcmp(ce->name, last->name))
				continue;
47
			cache_tree_invalidate_path(active_cache_tree, ce->name);
48
			last = ce;
49
			continue;
50
		}
51
		*dst++ = ce;
52
	}
53 54
	active_nr = dst - active_cache;
	return !!last;
55 56
}

57 58
static void prime_cache_tree_rec(struct cache_tree *it, struct tree *tree)
{
59
	struct tree_desc desc;
60
	struct name_entry entry;
61
	int cnt;
62

63
	hashcpy(it->sha1, tree->object.sha1);
64
	init_tree_desc(&desc, tree->buffer, tree->size);
65
	cnt = 0;
66 67
	while (tree_entry(&desc, &entry)) {
		if (!S_ISDIR(entry.mode))
68 69 70
			cnt++;
		else {
			struct cache_tree_sub *sub;
71
			struct tree *subtree = lookup_tree(entry.sha1);
72 73
			if (!subtree->object.parsed)
				parse_tree(subtree);
74
			sub = cache_tree_sub(it, entry.path);
75 76 77 78 79 80 81 82 83 84
			sub->cache_tree = cache_tree();
			prime_cache_tree_rec(sub->cache_tree, subtree);
			cnt += sub->cache_tree->entry_count;
		}
	}
	it->entry_count = cnt;
}

static void prime_cache_tree(void)
{
85
	if (!nr_trees)
86 87
		return;
	active_cache_tree = cache_tree();
88
	prime_cache_tree_rec(active_cache_tree, trees[0]);
89 90 91

}

92
static const char read_tree_usage[] = "git-read-tree (<sha> | [[-m [--trivial] [--aggressive] | --reset | --prefix=<prefix>] [-u | -i]] [--exclude-per-directory=<gitignore>] [--index-output=<file>] <sha1> [<sha2> [<sha3>]])";
J
Junio C Hamano 已提交
93

94
static struct lock_file lock_file;
95

96
int cmd_read_tree(int argc, const char **argv, const char *unused_prefix)
97
{
L
Linus Torvalds 已提交
98
	int i, newfd, stage = 0;
99
	unsigned char sha1[20];
100
	struct tree_desc t[MAX_TREES];
101
	struct unpack_trees_options opts;
102

103 104
	memset(&opts, 0, sizeof(opts));
	opts.head_idx = -1;
105 106
	opts.src_index = &the_index;
	opts.dst_index = &the_index;
S
Shawn Pearce 已提交
107

108
	git_config(git_default_config);
109

110
	newfd = hold_locked_index(&lock_file, 1);
111

112 113
	git_config(git_default_config);

114 115 116
	for (i = 1; i < argc; i++) {
		const char *arg = argv[i];

117 118 119
		/* "-u" means "update", meaning that a merge will update
		 * the working tree.
		 */
120
		if (!strcmp(arg, "-u")) {
121
			opts.update = 1;
122 123 124
			continue;
		}

J
Junio C Hamano 已提交
125
		if (!strcmp(arg, "-v")) {
126
			opts.verbose_update = 1;
J
Junio C Hamano 已提交
127 128 129
			continue;
		}

130 131 132 133
		/* "-i" means "index only", meaning that a merge will
		 * not even look at the working tree.
		 */
		if (!strcmp(arg, "-i")) {
134
			opts.index_only = 1;
135 136 137
			continue;
		}

138 139 140 141 142
		if (!prefixcmp(arg, "--index-output=")) {
			set_alternate_index_output(arg + 15);
			continue;
		}

143 144 145 146
		/* "--prefix=<subdirectory>/" means keep the current index
		 *  entries and put the entries from the tree under the
		 * given subdirectory.
		 */
147
		if (!prefixcmp(arg, "--prefix=")) {
148
			if (stage || opts.merge || opts.prefix)
149
				usage(read_tree_usage);
150 151
			opts.prefix = arg + 9;
			opts.merge = 1;
152 153 154 155 156 157
			stage = 1;
			if (read_cache_unmerged())
				die("you need to resolve your current index first");
			continue;
		}

158 159 160 161
		/* This differs from "-m" in that we'll silently ignore
		 * unmerged entries and overwrite working tree files that
		 * correspond to them.
		 */
162
		if (!strcmp(arg, "--reset")) {
163
			if (stage || opts.merge || opts.prefix)
164
				usage(read_tree_usage);
165 166
			opts.reset = 1;
			opts.merge = 1;
167 168
			stage = 1;
			read_cache_unmerged();
169
			continue;
170 171
		}

L
Linus Torvalds 已提交
172
		if (!strcmp(arg, "--trivial")) {
173
			opts.trivial_merges_only = 1;
L
Linus Torvalds 已提交
174 175 176
			continue;
		}

J
Junio C Hamano 已提交
177
		if (!strcmp(arg, "--aggressive")) {
178
			opts.aggressive = 1;
J
Junio C Hamano 已提交
179 180 181
			continue;
		}

182
		/* "-m" stands for "merge", meaning we start in stage 1 */
183
		if (!strcmp(arg, "-m")) {
184
			if (stage || opts.merge || opts.prefix)
185 186 187
				usage(read_tree_usage);
			if (read_cache_unmerged())
				die("you need to resolve your current index first");
188
			stage = 1;
189
			opts.merge = 1;
190 191
			continue;
		}
J
Junio C Hamano 已提交
192

193
		if (!prefixcmp(arg, "--exclude-per-directory=")) {
194 195 196 197 198
			struct dir_struct *dir;

			if (opts.dir)
				die("more than one --exclude-per-directory are given.");

J
James Bowes 已提交
199
			dir = xcalloc(1, sizeof(*opts.dir));
200 201 202 203 204 205 206 207 208 209
			dir->show_ignored = 1;
			dir->exclude_per_dir = arg + 24;
			opts.dir = dir;
			/* We do not need to nor want to do read-directory
			 * here; we are merely interested in reusing the
			 * per directory ignore stack mechanism.
			 */
			continue;
		}

210
		/* using -u and -i at the same time makes no sense */
211
		if (1 < opts.index_only + opts.update)
212 213
			usage(read_tree_usage);

214 215
		if (get_sha1(arg, sha1))
			die("Not a valid object name %s", arg);
D
Daniel Barkalow 已提交
216
		if (list_tree(sha1) < 0)
217
			die("failed to unpack tree object %s", arg);
218
		stage++;
219
	}
220
	if ((opts.update||opts.index_only) && !opts.merge)
221
		usage(read_tree_usage);
222 223
	if ((opts.dir && !opts.update))
		die("--exclude-per-directory is meaningless unless -u");
J
Junio C Hamano 已提交
224

225
	if (opts.merge) {
D
Daniel Barkalow 已提交
226
		if (stage < 2)
227
			die("just how do you expect me to merge %d trees?", stage-1);
D
Daniel Barkalow 已提交
228 229
		switch (stage - 1) {
		case 1:
230
			opts.fn = opts.prefix ? bind_merge : oneway_merge;
D
Daniel Barkalow 已提交
231 232
			break;
		case 2:
233
			opts.fn = twoway_merge;
D
Daniel Barkalow 已提交
234 235 236
			break;
		case 3:
		default:
237
			opts.fn = threeway_merge;
238
			cache_tree_free(&active_cache_tree);
D
Daniel Barkalow 已提交
239
			break;
J
Junio C Hamano 已提交
240
		}
D
Daniel Barkalow 已提交
241 242

		if (stage - 1 >= 3)
243
			opts.head_idx = stage - 2;
D
Daniel Barkalow 已提交
244
		else
245
			opts.head_idx = 1;
D
Daniel Barkalow 已提交
246 247
	}

248 249 250 251 252
	for (i = 0; i < nr_trees; i++) {
		struct tree *tree = trees[i];
		parse_tree(tree);
		init_tree_desc(t+i, tree->buffer, tree->size);
	}
253 254
	if (unpack_trees(nr_trees, t, &opts))
		return 128;
255 256 257 258 259 260 261

	/*
	 * When reading only one tree (either the most basic form,
	 * "-m ent" or "--reset ent" form), we can obtain a fully
	 * valid cache-tree because the index must match exactly
	 * what came from the tree.
	 */
262
	if (nr_trees && !opts.prefix && (!opts.merge || (stage == 2))) {
263
		cache_tree_free(&active_cache_tree);
264 265 266
		prime_cache_tree();
	}

267
	if (write_cache(newfd, active_cache, active_nr) ||
B
Brandon Casey 已提交
268
	    commit_locked_index(&lock_file))
269
		die("unable to write new index file");
270
	return 0;
271
}