diff-lib.c 12.5 KB
Newer Older
1 2 3
/*
 * Copyright (C) 2005 Junio C Hamano
 */
4
#include "cache.h"
5
#include "quote.h"
J
Junio C Hamano 已提交
6
#include "commit.h"
7
#include "diff.h"
8
#include "diffcore.h"
J
Junio C Hamano 已提交
9
#include "revision.h"
10
#include "cache-tree.h"
11
#include "unpack-trees.h"
12
#include "refs.h"
13

J
Junio C Hamano 已提交
14
/*
J
Junio C Hamano 已提交
15
 * diff-files
J
Junio C Hamano 已提交
16
 */
17

18
/*
19 20 21 22 23 24 25
 * Has the work tree entity been removed?
 *
 * Return 1 if it was removed from the work tree, 0 if an entity to be
 * compared with the cache entry ce still exists (the latter includes
 * the case where a directory that is not a submodule repository
 * exists for ce that is a submodule -- it is a submodule that is not
 * checked out).  Return negative for an error.
26
 */
27
static int check_removed(const struct cache_entry *ce, struct stat *st)
28 29 30 31 32 33
{
	if (lstat(ce->name, st) < 0) {
		if (errno != ENOENT && errno != ENOTDIR)
			return -1;
		return 1;
	}
34
	if (has_symlink_leading_path(ce->name, ce_namelen(ce)))
35 36 37
		return 1;
	if (S_ISDIR(st->st_mode)) {
		unsigned char sub[20];
38 39 40 41 42 43 44 45 46 47 48 49 50 51

		/*
		 * If ce is already a gitlink, we can have a plain
		 * directory (i.e. the submodule is not checked out),
		 * or a checked out submodule.  Either case this is not
		 * a case where something was removed from the work tree,
		 * so we will return 0.
		 *
		 * Otherwise, if the directory is not a submodule
		 * repository, that means ce which was a blob turned into
		 * a directory --- the blob was removed!
		 */
		if (!S_ISGITLINK(ce->ce_mode) &&
		    resolve_gitlink_ref(ce->name, "HEAD", sub))
52 53 54 55
			return 1;
	}
	return 0;
}
56

57
int run_diff_files(struct rev_info *revs, unsigned int option)
58
{
J
Junio C Hamano 已提交
59 60
	int entries, i;
	int diff_unmerged_stage = revs->max_count;
61
	int silent_on_removed = option & DIFF_SILENT_ON_REMOVED;
62 63
	unsigned ce_option = ((option & DIFF_RACY_IS_MODIFIED)
			      ? CE_MATCH_RACY_IS_DIRTY : 0);
64

65 66
	diff_set_mnemonic_prefix(&revs->diffopt, "i/", "w/");

J
Junio C Hamano 已提交
67 68
	if (diff_unmerged_stage < 0)
		diff_unmerged_stage = 2;
69
	entries = active_nr;
J
Junio C Hamano 已提交
70
	for (i = 0; i < entries; i++) {
71
		struct stat st;
J
Junio C Hamano 已提交
72 73 74
		unsigned int oldmode, newmode;
		struct cache_entry *ce = active_cache[i];
		int changed;
75

76 77
		if (DIFF_OPT_TST(&revs->diffopt, QUIET) &&
			DIFF_OPT_TST(&revs->diffopt, HAS_CHANGES))
J
Junio C Hamano 已提交
78 79
			break;

J
Junio C Hamano 已提交
80
		if (!ce_path_match(ce, revs->prune_data))
81
			continue;
82

J
Junio C Hamano 已提交
83
		if (ce_stage(ce)) {
84
			struct combine_diff_path *dpath;
J
Junio C Hamano 已提交
85
			int num_compare_stages = 0;
86
			size_t path_len;
J
Junio C Hamano 已提交
87

88 89
			path_len = ce_namelen(ce);

90
			dpath = xmalloc(combine_diff_path_size(5, path_len));
91 92 93 94 95 96
			dpath->path = (char *) &(dpath->parent[5]);

			dpath->next = NULL;
			dpath->len = path_len;
			memcpy(dpath->path, ce->name, path_len);
			dpath->path[path_len] = '\0';
97
			hashclr(dpath->sha1);
98
			memset(&(dpath->parent[0]), 0,
99 100
			       sizeof(struct combine_diff_parent)*5);

101
			changed = check_removed(ce, &st);
102 103 104 105
			if (!changed)
				dpath->mode = ce_mode_from_stat(ce, st.st_mode);
			else {
				if (changed < 0) {
106 107 108 109 110 111
					perror(ce->name);
					continue;
				}
				if (silent_on_removed)
					continue;
			}
J
Junio C Hamano 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124

			while (i < entries) {
				struct cache_entry *nce = active_cache[i];
				int stage;

				if (strcmp(ce->name, nce->name))
					break;

				/* Stage #2 (ours) is the first parent,
				 * stage #3 (theirs) is the second.
				 */
				stage = ce_stage(nce);
				if (2 <= stage) {
125
					int mode = nce->ce_mode;
J
Junio C Hamano 已提交
126
					num_compare_stages++;
127
					hashcpy(dpath->parent[stage-2].sha1, nce->sha1);
128
					dpath->parent[stage-2].mode = ce_mode_from_stat(nce, mode);
129
					dpath->parent[stage-2].status =
J
Junio C Hamano 已提交
130 131 132 133 134 135 136 137 138 139
						DIFF_STATUS_MODIFIED;
				}

				/* diff against the proper unmerged stage */
				if (stage == diff_unmerged_stage)
					ce = nce;
				i++;
			}
			/*
			 * Compensate for loop update
140
			 */
J
Junio C Hamano 已提交
141
			i--;
J
Junio C Hamano 已提交
142

J
Junio C Hamano 已提交
143
			if (revs->combine_merges && num_compare_stages == 2) {
144
				show_combined_diff(dpath, 2,
J
Junio C Hamano 已提交
145 146
						   revs->dense_combined_merges,
						   revs);
147
				free(dpath);
J
Junio C Hamano 已提交
148
				continue;
149
			}
150 151
			free(dpath);
			dpath = NULL;
152

J
Junio C Hamano 已提交
153 154 155 156
			/*
			 * Show the diff for the 'ce' if we found the one
			 * from the desired stage.
			 */
157
			diff_unmerge(&revs->diffopt, ce->name, 0, null_sha1);
J
Junio C Hamano 已提交
158 159
			if (ce_stage(ce) != diff_unmerged_stage)
				continue;
160
		}
J
Junio C Hamano 已提交
161

162 163
		if (ce_uptodate(ce))
			continue;
164

165 166
		/* If CE_VALID is set, don't look at workdir for file removal */
		changed = (ce->ce_flags & CE_VALID) ? 0 : check_removed(ce, &st);
167 168
		if (changed) {
			if (changed < 0) {
J
Junio C Hamano 已提交
169
				perror(ce->name);
170 171
				continue;
			}
J
Junio C Hamano 已提交
172 173
			if (silent_on_removed)
				continue;
174
			diff_addremove(&revs->diffopt, '-', ce->ce_mode,
D
Dmitry Potapov 已提交
175
				       ce->sha1, ce->name);
J
Junio C Hamano 已提交
176
			continue;
177
		}
178
		changed = ce_match_stat(ce, &st, ce_option);
179 180 181 182 183
		if (!changed) {
			ce_mark_uptodate(ce);
			if (!DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER))
				continue;
		}
184 185
		oldmode = ce->ce_mode;
		newmode = ce_mode_from_stat(ce, st.st_mode);
J
Junio C Hamano 已提交
186 187
		diff_change(&revs->diffopt, oldmode, newmode,
			    ce->sha1, (changed ? null_sha1 : ce->sha1),
D
Dmitry Potapov 已提交
188
			    ce->name);
189

190
	}
J
Junio C Hamano 已提交
191 192 193
	diffcore_std(&revs->diffopt);
	diff_flush(&revs->diffopt);
	return 0;
194
}
195

J
Junio C Hamano 已提交
196 197 198 199 200 201 202 203
/*
 * diff-index
 */

/* A file entry went away or appeared */
static void diff_index_show_file(struct rev_info *revs,
				 const char *prefix,
				 struct cache_entry *ce,
204
				 const unsigned char *sha1, unsigned int mode)
J
Junio C Hamano 已提交
205
{
206
	diff_addremove(&revs->diffopt, prefix[0], mode,
D
Dmitry Potapov 已提交
207
		       sha1, ce->name);
J
Junio C Hamano 已提交
208 209 210
}

static int get_stat_data(struct cache_entry *ce,
211
			 const unsigned char **sha1p,
J
Junio C Hamano 已提交
212
			 unsigned int *modep,
213
			 int cached, int match_missing)
J
Junio C Hamano 已提交
214
{
215
	const unsigned char *sha1 = ce->sha1;
J
Junio C Hamano 已提交
216 217
	unsigned int mode = ce->ce_mode;

218
	if (!cached && !ce_uptodate(ce)) {
J
Junio C Hamano 已提交
219 220
		int changed;
		struct stat st;
221
		changed = check_removed(ce, &st);
222 223 224 225
		if (changed < 0)
			return -1;
		else if (changed) {
			if (match_missing) {
J
Junio C Hamano 已提交
226 227 228 229 230 231 232 233
				*sha1p = sha1;
				*modep = mode;
				return 0;
			}
			return -1;
		}
		changed = ce_match_stat(ce, &st, 0);
		if (changed) {
234
			mode = ce_mode_from_stat(ce, st.st_mode);
235
			sha1 = null_sha1;
J
Junio C Hamano 已提交
236 237 238 239 240 241 242 243
		}
	}

	*sha1p = sha1;
	*modep = mode;
	return 0;
}

244
static void show_new_file(struct rev_info *revs,
J
Junio C Hamano 已提交
245 246 247
			  struct cache_entry *new,
			  int cached, int match_missing)
{
248
	const unsigned char *sha1;
J
Junio C Hamano 已提交
249 250
	unsigned int mode;

251 252
	/*
	 * New file in the index: it might actually be different in
J
Junio C Hamano 已提交
253 254
	 * the working copy.
	 */
255
	if (get_stat_data(new, &sha1, &mode, cached, match_missing) < 0)
J
Junio C Hamano 已提交
256 257 258 259 260
		return;

	diff_index_show_file(revs, "+", new, sha1, mode);
}

261
static int show_modified(struct rev_info *revs,
J
Junio C Hamano 已提交
262 263 264 265 266 267
			 struct cache_entry *old,
			 struct cache_entry *new,
			 int report_missing,
			 int cached, int match_missing)
{
	unsigned int mode, oldmode;
268
	const unsigned char *sha1;
J
Junio C Hamano 已提交
269

270
	if (get_stat_data(new, &sha1, &mode, cached, match_missing) < 0) {
J
Junio C Hamano 已提交
271 272 273 274 275 276
		if (report_missing)
			diff_index_show_file(revs, "-", old,
					     old->sha1, old->ce_mode);
		return -1;
	}

277 278 279 280 281 282 283 284 285 286 287
	if (revs->combine_merges && !cached &&
	    (hashcmp(sha1, old->sha1) || hashcmp(old->sha1, new->sha1))) {
		struct combine_diff_path *p;
		int pathlen = ce_namelen(new);

		p = xmalloc(combine_diff_path_size(2, pathlen));
		p->path = (char *) &p->parent[2];
		p->next = NULL;
		p->len = pathlen;
		memcpy(p->path, new->name, pathlen);
		p->path[pathlen] = 0;
288
		p->mode = mode;
289 290 291
		hashclr(p->sha1);
		memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent));
		p->parent[0].status = DIFF_STATUS_MODIFIED;
292
		p->parent[0].mode = new->ce_mode;
293 294
		hashcpy(p->parent[0].sha1, new->sha1);
		p->parent[1].status = DIFF_STATUS_MODIFIED;
295
		p->parent[1].mode = old->ce_mode;
296 297 298 299 300 301
		hashcpy(p->parent[1].sha1, old->sha1);
		show_combined_diff(p, 2, revs->dense_combined_merges, revs);
		free(p);
		return 0;
	}

J
Junio C Hamano 已提交
302
	oldmode = old->ce_mode;
303
	if (mode == oldmode && !hashcmp(sha1, old->sha1) &&
304
	    !DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER))
J
Junio C Hamano 已提交
305 306 307
		return 0;

	diff_change(&revs->diffopt, oldmode, mode,
D
Dmitry Potapov 已提交
308
		    old->sha1, sha1, old->name);
J
Junio C Hamano 已提交
309 310 311
	return 0;
}

312 313 314 315 316 317 318 319
/*
 * This gets a mix of an existing index and a tree, one pathname entry
 * at a time. The index entry may be a single stage-0 one, but it could
 * also be multiple unmerged entries (in which case idx_pos/idx_nr will
 * give you the position and number of entries in the index).
 */
static void do_oneway_diff(struct unpack_trees_options *o,
	struct cache_entry *idx,
320
	struct cache_entry *tree)
J
Junio C Hamano 已提交
321
{
322
	struct rev_info *revs = o->unpack_data;
323
	int match_missing, cached;
324

325 326
	/* if the entry is not checked out, don't examine work tree */
	cached = o->index_only || (idx && (idx->ce_flags & CE_VALID));
J
Junio C Hamano 已提交
327
	/*
328
	 * Backward compatibility wart - "diff-index -m" does
329 330 331 332 333 334 335 336
	 * not mean "do not ignore merges", but "match_missing".
	 *
	 * But with the revision flag parsing, that's found in
	 * "!revs->ignore_merges".
	 */
	match_missing = !revs->ignore_merges;

	if (cached && idx && ce_stage(idx)) {
337 338
		diff_unmerge(&revs->diffopt, idx->name, idx->ce_mode,
			     idx->sha1);
339 340 341 342 343 344 345
		return;
	}

	/*
	 * Something added to the tree?
	 */
	if (!tree) {
346
		show_new_file(revs, idx, cached, match_missing);
347 348 349 350 351
		return;
	}

	/*
	 * Something removed from the tree?
352
	 */
353 354 355 356 357 358
	if (!idx) {
		diff_index_show_file(revs, "-", tree, tree->sha1, tree->ce_mode);
		return;
	}

	/* Show difference between old and new */
359
	show_modified(revs, tree, idx, 1, cached, match_missing);
360 361 362 363 364 365 366 367 368 369 370
}

/*
 * The unpack_trees() interface is designed for merging, so
 * the different source entries are designed primarily for
 * the source trees, with the old index being really mainly
 * used for being replaced by the result.
 *
 * For diffing, the index is more important, and we only have a
 * single tree.
 *
371
 * We're supposed to advance o->pos to skip what we have already processed.
372 373 374 375 376
 *
 * This wrapper makes it all more readable, and takes care of all
 * the fairly complex unpack_trees() semantic requirements, including
 * the skipping, the path matching, the type conflict cases etc.
 */
377
static int oneway_diff(struct cache_entry **src, struct unpack_trees_options *o)
378 379 380
{
	struct cache_entry *idx = src[0];
	struct cache_entry *tree = src[1];
381
	struct rev_info *revs = o->unpack_data;
382 383 384 385 386 387 388 389 390 391 392

	/*
	 * Unpack-trees generates a DF/conflict entry if
	 * there was a directory in the index and a tree
	 * in the tree. From a diff standpoint, that's a
	 * delete of the tree and a create of the file.
	 */
	if (tree == o->df_conflict_entry)
		tree = NULL;

	if (ce_path_match(idx ? idx : tree, revs->prune_data))
393
		do_oneway_diff(o, idx, tree);
394

395
	return 0;
396 397 398 399 400 401 402 403 404
}

int run_diff_index(struct rev_info *revs, int cached)
{
	struct object *ent;
	struct tree *tree;
	const char *tree_name;
	struct unpack_trees_options opts;
	struct tree_desc t;
J
Junio C Hamano 已提交
405

406 407
	ent = revs->pending.objects[0].item;
	tree_name = revs->pending.objects[0].name;
J
Junio C Hamano 已提交
408 409 410
	tree = parse_tree_indirect(ent->sha1);
	if (!tree)
		return error("bad tree object %s", tree_name);
411 412 413 414

	memset(&opts, 0, sizeof(opts));
	opts.head_idx = 1;
	opts.index_only = cached;
415 416
	opts.diff_index_cached = (cached &&
				  !DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER));
417 418
	opts.merge = 1;
	opts.fn = oneway_diff;
419
	opts.unpack_data = revs;
420 421
	opts.src_index = &the_index;
	opts.dst_index = NULL;
422 423

	init_tree_desc(&t, tree->buffer, tree->size);
424 425
	if (unpack_trees(1, &t, &opts))
		exit(128);
426

427
	diff_set_mnemonic_prefix(&revs->diffopt, "c/", cached ? "i/" : "w/");
J
Junio C Hamano 已提交
428 429
	diffcore_std(&revs->diffopt);
	diff_flush(&revs->diffopt);
430
	return 0;
J
Junio C Hamano 已提交
431
}
432 433 434 435 436 437 438 439

int do_diff_cache(const unsigned char *tree_sha1, struct diff_options *opt)
{
	struct tree *tree;
	struct rev_info revs;
	int i;
	struct cache_entry **dst;
	struct cache_entry *last = NULL;
440 441
	struct unpack_trees_options opts;
	struct tree_desc t;
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457

	/*
	 * This is used by git-blame to run diff-cache internally;
	 * it potentially needs to repeatedly run this, so we will
	 * start by removing the higher order entries the last round
	 * left behind.
	 */
	dst = active_cache;
	for (i = 0; i < active_nr; i++) {
		struct cache_entry *ce = active_cache[i];
		if (ce_stage(ce)) {
			if (last && !strcmp(ce->name, last->name))
				continue;
			cache_tree_invalidate_path(active_cache_tree,
						   ce->name);
			last = ce;
458
			ce->ce_flags |= CE_REMOVE;
459 460 461 462 463 464 465 466 467 468
		}
		*dst++ = ce;
	}
	active_nr = dst - active_cache;

	init_revisions(&revs, NULL);
	revs.prune_data = opt->paths;
	tree = parse_tree_indirect(tree_sha1);
	if (!tree)
		die("bad tree object %s", sha1_to_hex(tree_sha1));
469 470 471 472

	memset(&opts, 0, sizeof(opts));
	opts.head_idx = 1;
	opts.index_only = 1;
473
	opts.diff_index_cached = !DIFF_OPT_TST(opt, FIND_COPIES_HARDER);
474 475
	opts.merge = 1;
	opts.fn = oneway_diff;
476
	opts.unpack_data = &revs;
477 478
	opts.src_index = &the_index;
	opts.dst_index = &the_index;
479 480

	init_tree_desc(&t, tree->buffer, tree->size);
481 482
	if (unpack_trees(1, &t, &opts))
		exit(128);
483
	return 0;
484
}
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499

int index_differs_from(const char *def, int diff_flags)
{
	struct rev_info rev;

	init_revisions(&rev, NULL);
	setup_revisions(0, NULL, &rev, def);
	DIFF_OPT_SET(&rev.diffopt, QUIET);
	DIFF_OPT_SET(&rev.diffopt, EXIT_WITH_STATUS);
	rev.diffopt.flags |= diff_flags;
	run_diff_index(&rev, 1);
	if (rev.pending.alloc)
		free(rev.pending.objects);
	return (DIFF_OPT_TST(&rev.diffopt, HAS_CHANGES) != 0);
}