tree-diff.c 8.7 KB
Newer Older
1 2 3 4 5
/*
 * Helper functions for tree diff generation
 */
#include "cache.h"
#include "diff.h"
6
#include "diffcore.h"
7
#include "tree.h"
8

9 10
static void show_entry(struct diff_options *opt, const char *prefix,
		       struct tree_desc *desc, struct strbuf *base);
11

12 13
static int compare_tree_entry(struct tree_desc *t1, struct tree_desc *t2,
			      struct strbuf *base, struct diff_options *opt)
14 15 16 17 18
{
	unsigned mode1, mode2;
	const char *path1, *path2;
	const unsigned char *sha1, *sha2;
	int cmp, pathlen1, pathlen2;
19 20
	int old_baselen = base->len;
	int retval = 0;
21

22 23
	sha1 = tree_entry_extract(t1, &path1, &mode1);
	sha2 = tree_entry_extract(t2, &path2, &mode2);
24

25 26
	pathlen1 = tree_entry_len(path1, sha1);
	pathlen2 = tree_entry_len(path2, sha2);
27 28
	cmp = base_name_compare(path1, pathlen1, mode1, path2, pathlen2, mode2);
	if (cmp < 0) {
29
		show_entry(opt, "-", t1, base);
30 31 32
		return -1;
	}
	if (cmp > 0) {
33
		show_entry(opt, "+", t2, base);
34 35
		return 1;
	}
36
	if (!DIFF_OPT_TST(opt, FIND_COPIES_HARDER) && !hashcmp(sha1, sha2) && mode1 == mode2)
37 38 39 40 41 42 43
		return 0;

	/*
	 * If the filemode has changed to/from a directory from/to a regular
	 * file, we need to consider it a remove and an add.
	 */
	if (S_ISDIR(mode1) != S_ISDIR(mode2)) {
44 45
		show_entry(opt, "-", t1, base);
		show_entry(opt, "+", t2, base);
46 47 48
		return 0;
	}

49
	strbuf_add(base, path1, pathlen1);
50
	if (DIFF_OPT_TST(opt, RECURSIVE) && S_ISDIR(mode1)) {
D
Dmitry Potapov 已提交
51
		if (DIFF_OPT_TST(opt, TREE_IN_RECURSIVE)) {
52
			opt->change(opt, mode1, mode2,
53
				    sha1, sha2, base->buf, 0, 0);
D
Dmitry Potapov 已提交
54
		}
55 56 57 58
		strbuf_addch(base, '/');
		retval = diff_tree_sha1(sha1, sha2, base->buf, opt);
	} else {
		opt->change(opt, mode1, mode2, sha1, sha2, base->buf, 0, 0);
59
	}
60
	strbuf_setlen(base, old_baselen);
61 62 63 64
	return 0;
}

/* A whole sub-tree went away or appeared */
65 66
static void show_tree(struct diff_options *opt, const char *prefix,
		      struct tree_desc *desc, struct strbuf *base)
67
{
68
	int all_interesting = 0;
69
	while (desc->size) {
70 71 72 73 74
		int show;

		if (all_interesting)
			show = 1;
		else {
75
			show = tree_entry_interesting(&desc->entry, base, 0,
76
						      &opt->pathspec);
77 78 79
			if (show == 2)
				all_interesting = 1;
		}
80 81 82
		if (show < 0)
			break;
		if (show)
83
			show_entry(opt, prefix, desc, base);
84 85 86 87 88
		update_tree_entry(desc);
	}
}

/* A file entry went away or appeared */
89 90
static void show_entry(struct diff_options *opt, const char *prefix,
		       struct tree_desc *desc, struct strbuf *base)
91 92 93
{
	unsigned mode;
	const char *path;
94
	const unsigned char *sha1 = tree_entry_extract(desc, &path, &mode);
D
Dmitry Potapov 已提交
95
	int pathlen = tree_entry_len(path, sha1);
96
	int old_baselen = base->len;
97

98
	strbuf_add(base, path, pathlen);
99
	if (DIFF_OPT_TST(opt, RECURSIVE) && S_ISDIR(mode)) {
100
		enum object_type type;
101 102
		struct tree_desc inner;
		void *tree;
103
		unsigned long size;
104

105
		tree = read_sha1_file(sha1, &type, &size);
106
		if (!tree || type != OBJ_TREE)
107 108
			die("corrupt tree sha %s", sha1_to_hex(sha1));

109 110
		if (DIFF_OPT_TST(opt, TREE_IN_RECURSIVE))
			opt->add_remove(opt, *prefix, mode, sha1, base->buf, 0);
111

112
		strbuf_addch(base, '/');
113

114 115
		init_tree_desc(&inner, tree, size);
		show_tree(opt, prefix, &inner, base);
116
		free(tree);
117 118 119 120
	} else
		opt->add_remove(opt, prefix[0], mode, sha1, base->buf, 0);

	strbuf_setlen(base, old_baselen);
121 122
}

123 124
static void skip_uninteresting(struct tree_desc *t, struct strbuf *base,
			       struct diff_options *opt, int *all_interesting)
125 126
{
	while (t->size) {
127
		int show = tree_entry_interesting(&t->entry, base, 0, &opt->pathspec);
128 129
		if (show == 2)
			*all_interesting = 1;
130 131 132 133 134 135 136 137 138 139 140
		if (!show) {
			update_tree_entry(t);
			continue;
		}
		/* Skip it all? */
		if (show < 0)
			t->size = 0;
		return;
	}
}

141 142
int diff_tree(struct tree_desc *t1, struct tree_desc *t2,
	      const char *base_str, struct diff_options *opt)
143
{
144 145
	struct strbuf base;
	int baselen = strlen(base_str);
146 147
	int all_t1_interesting = 0;
	int all_t2_interesting = 0;
148

149 150 151 152
	/* Enable recursion indefinitely */
	opt->pathspec.recursive = DIFF_OPT_TST(opt, RECURSIVE);
	opt->pathspec.max_depth = -1;

153 154 155
	strbuf_init(&base, PATH_MAX);
	strbuf_add(&base, base_str, baselen);

156
	for (;;) {
157
		if (DIFF_OPT_TST(opt, QUICK) &&
158
		    DIFF_OPT_TST(opt, HAS_CHANGES))
J
Junio C Hamano 已提交
159
			break;
160
		if (opt->pathspec.nr) {
161
			if (!all_t1_interesting)
162
				skip_uninteresting(t1, &base, opt, &all_t1_interesting);
163
			if (!all_t2_interesting)
164
				skip_uninteresting(t2, &base, opt, &all_t2_interesting);
165 166
		}
		if (!t1->size) {
167 168
			if (!t2->size)
				break;
169
			show_entry(opt, "+", t2, &base);
170 171 172 173
			update_tree_entry(t2);
			continue;
		}
		if (!t2->size) {
174
			show_entry(opt, "-", t1, &base);
175 176 177
			update_tree_entry(t1);
			continue;
		}
178
		switch (compare_tree_entry(t1, t2, &base, opt)) {
179 180 181 182 183 184 185 186 187 188
		case -1:
			update_tree_entry(t1);
			continue;
		case 0:
			update_tree_entry(t1);
			/* Fallthrough */
		case 1:
			update_tree_entry(t2);
			continue;
		}
189
		die("git diff-tree: internal error");
190
	}
191 192

	strbuf_release(&base);
193 194 195
	return 0;
}

196 197 198 199 200 201 202 203 204 205 206 207 208 209
/*
 * Does it look like the resulting diff might be due to a rename?
 *  - single entry
 *  - not a valid previous file
 */
static inline int diff_might_be_rename(void)
{
	return diff_queued_diff.nr == 1 &&
		!DIFF_FILE_VALID(diff_queued_diff.queue[0]->one);
}

static void try_to_follow_renames(struct tree_desc *t1, struct tree_desc *t2, const char *base, struct diff_options *opt)
{
	struct diff_options diff_opts;
210 211 212
	struct diff_queue_struct *q = &diff_queued_diff;
	struct diff_filepair *choice;
	const char *paths[1];
213 214
	int i;

215 216 217 218
	/* Remove the file creation entry from the diff queue, and remember it */
	choice = q->queue[0];
	q->nr = 0;

219
	diff_setup(&diff_opts);
220
	DIFF_OPT_SET(&diff_opts, RECURSIVE);
221
	DIFF_OPT_SET(&diff_opts, FIND_COPIES_HARDER);
222
	diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
223
	diff_opts.single_follow = opt->pathspec.raw[0];
L
Linus Torvalds 已提交
224
	diff_opts.break_opt = opt->break_opt;
225 226 227 228 229 230
	paths[0] = NULL;
	diff_tree_setup_paths(paths, &diff_opts);
	if (diff_setup_done(&diff_opts) < 0)
		die("unable to set up diff options to follow renames");
	diff_tree(t1, t2, base, &diff_opts);
	diffcore_std(&diff_opts);
231
	diff_tree_release_paths(&diff_opts);
232

233
	/* Go through the new set of filepairing, and see if we find a more interesting one */
234
	opt->found_follow = 0;
235 236
	for (i = 0; i < q->nr; i++) {
		struct diff_filepair *p = q->queue[i];
237 238 239

		/*
		 * Found a source? Not only do we use that for the new
240
		 * diff_queued_diff, we will also use that as the path in
241 242
		 * the future!
		 */
243 244
		if ((p->status == 'R' || p->status == 'C') &&
		    !strcmp(p->two->path, opt->pathspec.raw[0])) {
245 246 247 248 249
			/* Switch the file-pairs around */
			q->queue[i] = choice;
			choice = p;

			/* Update the path we use from now on.. */
250
			diff_tree_release_paths(opt);
251 252
			opt->pathspec.raw[0] = xstrdup(p->one->path);
			diff_tree_setup_paths(opt->pathspec.raw, opt);
253 254 255 256 257 258 259 260 261 262

			/*
			 * The caller expects us to return a set of vanilla
			 * filepairs to let a later call to diffcore_std()
			 * it makes to sort the renames out (among other
			 * things), but we already have found renames
			 * ourselves; signal diffcore_std() not to muck with
			 * rename information.
			 */
			opt->found_follow = 1;
263 264 265 266 267
			break;
		}
	}

	/*
M
Mike Ralphson 已提交
268
	 * Then, discard all the non-relevant file pairs...
269 270 271 272 273 274 275 276 277
	 */
	for (i = 0; i < q->nr; i++) {
		struct diff_filepair *p = q->queue[i];
		diff_free_filepair(p);
	}

	/*
	 * .. and re-instate the one we want (which might be either the
	 * original one, or the rename/copy we found)
278
	 */
279 280
	q->queue[0] = choice;
	q->nr = 1;
281 282
}

283 284 285 286
int diff_tree_sha1(const unsigned char *old, const unsigned char *new, const char *base, struct diff_options *opt)
{
	void *tree1, *tree2;
	struct tree_desc t1, t2;
287
	unsigned long size1, size2;
288 289
	int retval;

290
	tree1 = read_object_with_reference(old, tree_type, &size1, NULL);
291 292
	if (!tree1)
		die("unable to read source tree (%s)", sha1_to_hex(old));
293
	tree2 = read_object_with_reference(new, tree_type, &size2, NULL);
294 295
	if (!tree2)
		die("unable to read destination tree (%s)", sha1_to_hex(new));
296 297
	init_tree_desc(&t1, tree1, size1);
	init_tree_desc(&t2, tree2, size2);
298
	retval = diff_tree(&t1, &t2, base, opt);
299
	if (!*base && DIFF_OPT_TST(opt, FOLLOW_RENAMES) && diff_might_be_rename()) {
300 301 302 303
		init_tree_desc(&t1, tree1, size1);
		init_tree_desc(&t2, tree2, size2);
		try_to_follow_renames(&t1, &t2, base, opt);
	}
304 305 306 307 308
	free(tree1);
	free(tree2);
	return retval;
}

R
Rene Scharfe 已提交
309 310 311 312
int diff_root_tree_sha1(const unsigned char *new, const char *base, struct diff_options *opt)
{
	int retval;
	void *tree;
313
	unsigned long size;
R
Rene Scharfe 已提交
314 315
	struct tree_desc empty, real;

316
	tree = read_object_with_reference(new, tree_type, &size, NULL);
R
Rene Scharfe 已提交
317 318
	if (!tree)
		die("unable to read root tree (%s)", sha1_to_hex(new));
319
	init_tree_desc(&real, tree, size);
R
Rene Scharfe 已提交
320

321
	init_tree_desc(&empty, "", 0);
R
Rene Scharfe 已提交
322 323 324 325 326
	retval = diff_tree(&empty, &real, base, opt);
	free(tree);
	return retval;
}

327
void diff_tree_release_paths(struct diff_options *opt)
328
{
329
	free_pathspec(&opt->pathspec);
330 331 332 333
}

void diff_tree_setup_paths(const char **p, struct diff_options *opt)
{
334
	init_pathspec(&opt->pathspec, p);
335
}