]> git.ipfire.org Git - thirdparty/git.git/blame - diff-lib.c
cvsserver: add option to configure commit message
[thirdparty/git.git] / diff-lib.c
CommitLineData
be3cfa85
JH
1/*
2 * Copyright (C) 2005 Junio C Hamano
3 */
86436c28 4#include "cache.h"
6fb737be 5#include "quote.h"
6973dcae 6#include "commit.h"
86436c28 7#include "diff.h"
427dcb4b 8#include "diffcore.h"
6973dcae 9#include "revision.h"
1cfe7733 10#include "cache-tree.h"
d1f2d7e8 11#include "unpack-trees.h"
948dd346 12#include "refs.h"
427dcb4b 13
b46f0b6d 14/*
6973dcae 15 * diff-files
b46f0b6d 16 */
f0c6b2a2 17
948dd346 18/*
1392a377
JH
19 * Has the work tree entity been removed?
20 *
21 * Return 1 if it was removed from the work tree, 0 if an entity to be
22 * compared with the cache entry ce still exists (the latter includes
23 * the case where a directory that is not a submodule repository
24 * exists for ce that is a submodule -- it is a submodule that is not
25 * checked out). Return negative for an error.
948dd346 26 */
c40641b7 27static int check_removed(const struct cache_entry *ce, struct stat *st)
948dd346
JH
28{
29 if (lstat(ce->name, st) < 0) {
30 if (errno != ENOENT && errno != ENOTDIR)
31 return -1;
32 return 1;
33 }
c40641b7 34 if (has_symlink_leading_path(ce_namelen(ce), ce->name))
948dd346
JH
35 return 1;
36 if (S_ISDIR(st->st_mode)) {
37 unsigned char sub[20];
1392a377
JH
38
39 /*
40 * If ce is already a gitlink, we can have a plain
41 * directory (i.e. the submodule is not checked out),
42 * or a checked out submodule. Either case this is not
43 * a case where something was removed from the work tree,
44 * so we will return 0.
45 *
46 * Otherwise, if the directory is not a submodule
47 * repository, that means ce which was a blob turned into
48 * a directory --- the blob was removed!
49 */
50 if (!S_ISGITLINK(ce->ce_mode) &&
51 resolve_gitlink_ref(ce->name, "HEAD", sub))
948dd346
JH
52 return 1;
53 }
54 return 0;
55}
d516c2d1 56
4bd5b7da 57int run_diff_files(struct rev_info *revs, unsigned int option)
f0c6b2a2 58{
6973dcae
JH
59 int entries, i;
60 int diff_unmerged_stage = revs->max_count;
4bd5b7da 61 int silent_on_removed = option & DIFF_SILENT_ON_REMOVED;
fb63d7f8
JH
62 unsigned ce_option = ((option & DIFF_RACY_IS_MODIFIED)
63 ? CE_MATCH_RACY_IS_DIRTY : 0);
f58dbf23 64 char symcache[PATH_MAX];
f0c6b2a2 65
a5a818ee
JH
66 diff_set_mnemonic_prefix(&revs->diffopt, "i/", "w/");
67
6973dcae
JH
68 if (diff_unmerged_stage < 0)
69 diff_unmerged_stage = 2;
b4e1e4a7 70 entries = active_nr;
f58dbf23 71 symcache[0] = '\0';
6973dcae 72 for (i = 0; i < entries; i++) {
be3cfa85 73 struct stat st;
6973dcae
JH
74 unsigned int oldmode, newmode;
75 struct cache_entry *ce = active_cache[i];
76 int changed;
8676eb43 77
8f67f8ae
PH
78 if (DIFF_OPT_TST(&revs->diffopt, QUIET) &&
79 DIFF_OPT_TST(&revs->diffopt, HAS_CHANGES))
822cac01
JH
80 break;
81
6973dcae 82 if (!ce_path_match(ce, revs->prune_data))
8676eb43 83 continue;
be3cfa85 84
6973dcae 85 if (ce_stage(ce)) {
b4b15503 86 struct combine_diff_path *dpath;
6973dcae 87 int num_compare_stages = 0;
b4b15503 88 size_t path_len;
6973dcae 89
b4b15503
FF
90 path_len = ce_namelen(ce);
91
4fc970c4 92 dpath = xmalloc(combine_diff_path_size(5, path_len));
b4b15503
FF
93 dpath->path = (char *) &(dpath->parent[5]);
94
95 dpath->next = NULL;
96 dpath->len = path_len;
97 memcpy(dpath->path, ce->name, path_len);
98 dpath->path[path_len] = '\0';
a8e0d16d 99 hashclr(dpath->sha1);
b4b15503 100 memset(&(dpath->parent[0]), 0,
4fc970c4
JH
101 sizeof(struct combine_diff_parent)*5);
102
c40641b7 103 changed = check_removed(ce, &st);
f58dbf23
JH
104 if (!changed)
105 dpath->mode = ce_mode_from_stat(ce, st.st_mode);
106 else {
107 if (changed < 0) {
4fc970c4
JH
108 perror(ce->name);
109 continue;
110 }
111 if (silent_on_removed)
112 continue;
113 }
6973dcae
JH
114
115 while (i < entries) {
116 struct cache_entry *nce = active_cache[i];
117 int stage;
118
119 if (strcmp(ce->name, nce->name))
120 break;
121
122 /* Stage #2 (ours) is the first parent,
123 * stage #3 (theirs) is the second.
124 */
125 stage = ce_stage(nce);
126 if (2 <= stage) {
7a51ed66 127 int mode = nce->ce_mode;
6973dcae 128 num_compare_stages++;
e702496e 129 hashcpy(dpath->parent[stage-2].sha1, nce->sha1);
7a51ed66 130 dpath->parent[stage-2].mode = ce_mode_from_stat(nce, mode);
b4b15503 131 dpath->parent[stage-2].status =
6973dcae
JH
132 DIFF_STATUS_MODIFIED;
133 }
134
135 /* diff against the proper unmerged stage */
136 if (stage == diff_unmerged_stage)
137 ce = nce;
138 i++;
139 }
140 /*
141 * Compensate for loop update
f0c6b2a2 142 */
6973dcae 143 i--;
6b5ee137 144
6973dcae 145 if (revs->combine_merges && num_compare_stages == 2) {
b4b15503 146 show_combined_diff(dpath, 2,
6973dcae
JH
147 revs->dense_combined_merges,
148 revs);
b4b15503 149 free(dpath);
6973dcae 150 continue;
1b1480ff 151 }
b4b15503
FF
152 free(dpath);
153 dpath = NULL;
0e3994fa 154
6973dcae
JH
155 /*
156 * Show the diff for the 'ce' if we found the one
157 * from the desired stage.
158 */
e9c84099 159 diff_unmerge(&revs->diffopt, ce->name, 0, null_sha1);
6973dcae
JH
160 if (ce_stage(ce) != diff_unmerged_stage)
161 continue;
eeaa4603 162 }
6b14d7fa 163
d1f2d7e8
LT
164 if (ce_uptodate(ce))
165 continue;
f58dbf23 166
c40641b7 167 changed = check_removed(ce, &st);
f58dbf23
JH
168 if (changed) {
169 if (changed < 0) {
6973dcae 170 perror(ce->name);
15d061b4
JH
171 continue;
172 }
6973dcae
JH
173 if (silent_on_removed)
174 continue;
7a51ed66 175 diff_addremove(&revs->diffopt, '-', ce->ce_mode,
fd55a19e 176 ce->sha1, ce->name);
6973dcae 177 continue;
f2ce9fde 178 }
fb63d7f8 179 changed = ce_match_stat(ce, &st, ce_option);
8fa29602
JH
180 if (!changed) {
181 ce_mark_uptodate(ce);
182 if (!DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER))
183 continue;
184 }
7a51ed66
LT
185 oldmode = ce->ce_mode;
186 newmode = ce_mode_from_stat(ce, st.st_mode);
6973dcae
JH
187 diff_change(&revs->diffopt, oldmode, newmode,
188 ce->sha1, (changed ? null_sha1 : ce->sha1),
fd55a19e 189 ce->name);
77eb2720 190
7ca45252 191 }
6973dcae
JH
192 diffcore_std(&revs->diffopt);
193 diff_flush(&revs->diffopt);
194 return 0;
77eb2720 195}
be3cfa85 196
e09ad6e1
JH
197/*
198 * diff-index
199 */
200
948dd346
JH
201struct oneway_unpack_data {
202 struct rev_info *revs;
203 char symcache[PATH_MAX];
204};
205
e09ad6e1
JH
206/* A file entry went away or appeared */
207static void diff_index_show_file(struct rev_info *revs,
208 const char *prefix,
209 struct cache_entry *ce,
c8c16f28 210 const unsigned char *sha1, unsigned int mode)
e09ad6e1 211{
7a51ed66 212 diff_addremove(&revs->diffopt, prefix[0], mode,
fd55a19e 213 sha1, ce->name);
e09ad6e1
JH
214}
215
216static int get_stat_data(struct cache_entry *ce,
c8c16f28 217 const unsigned char **sha1p,
e09ad6e1 218 unsigned int *modep,
948dd346
JH
219 int cached, int match_missing,
220 struct oneway_unpack_data *cbdata)
e09ad6e1 221{
c8c16f28 222 const unsigned char *sha1 = ce->sha1;
e09ad6e1
JH
223 unsigned int mode = ce->ce_mode;
224
225 if (!cached) {
e09ad6e1
JH
226 int changed;
227 struct stat st;
c40641b7 228 changed = check_removed(ce, &st);
948dd346
JH
229 if (changed < 0)
230 return -1;
231 else if (changed) {
232 if (match_missing) {
e09ad6e1
JH
233 *sha1p = sha1;
234 *modep = mode;
235 return 0;
236 }
237 return -1;
238 }
239 changed = ce_match_stat(ce, &st, 0);
240 if (changed) {
185c975f 241 mode = ce_mode_from_stat(ce, st.st_mode);
c8c16f28 242 sha1 = null_sha1;
e09ad6e1
JH
243 }
244 }
245
246 *sha1p = sha1;
247 *modep = mode;
248 return 0;
249}
250
948dd346 251static void show_new_file(struct oneway_unpack_data *cbdata,
e09ad6e1
JH
252 struct cache_entry *new,
253 int cached, int match_missing)
254{
c8c16f28 255 const unsigned char *sha1;
e09ad6e1 256 unsigned int mode;
948dd346 257 struct rev_info *revs = cbdata->revs;
e09ad6e1 258
948dd346
JH
259 /*
260 * New file in the index: it might actually be different in
e09ad6e1
JH
261 * the working copy.
262 */
948dd346 263 if (get_stat_data(new, &sha1, &mode, cached, match_missing, cbdata) < 0)
e09ad6e1
JH
264 return;
265
266 diff_index_show_file(revs, "+", new, sha1, mode);
267}
268
948dd346 269static int show_modified(struct oneway_unpack_data *cbdata,
e09ad6e1
JH
270 struct cache_entry *old,
271 struct cache_entry *new,
272 int report_missing,
273 int cached, int match_missing)
274{
275 unsigned int mode, oldmode;
c8c16f28 276 const unsigned char *sha1;
948dd346 277 struct rev_info *revs = cbdata->revs;
e09ad6e1 278
948dd346 279 if (get_stat_data(new, &sha1, &mode, cached, match_missing, cbdata) < 0) {
e09ad6e1
JH
280 if (report_missing)
281 diff_index_show_file(revs, "-", old,
282 old->sha1, old->ce_mode);
283 return -1;
284 }
285
cb2b9f5e
PM
286 if (revs->combine_merges && !cached &&
287 (hashcmp(sha1, old->sha1) || hashcmp(old->sha1, new->sha1))) {
288 struct combine_diff_path *p;
289 int pathlen = ce_namelen(new);
290
291 p = xmalloc(combine_diff_path_size(2, pathlen));
292 p->path = (char *) &p->parent[2];
293 p->next = NULL;
294 p->len = pathlen;
295 memcpy(p->path, new->name, pathlen);
296 p->path[pathlen] = 0;
7a51ed66 297 p->mode = mode;
cb2b9f5e
PM
298 hashclr(p->sha1);
299 memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent));
300 p->parent[0].status = DIFF_STATUS_MODIFIED;
7a51ed66 301 p->parent[0].mode = new->ce_mode;
cb2b9f5e
PM
302 hashcpy(p->parent[0].sha1, new->sha1);
303 p->parent[1].status = DIFF_STATUS_MODIFIED;
7a51ed66 304 p->parent[1].mode = old->ce_mode;
cb2b9f5e
PM
305 hashcpy(p->parent[1].sha1, old->sha1);
306 show_combined_diff(p, 2, revs->dense_combined_merges, revs);
307 free(p);
308 return 0;
309 }
310
e09ad6e1 311 oldmode = old->ce_mode;
a89fccd2 312 if (mode == oldmode && !hashcmp(sha1, old->sha1) &&
8f67f8ae 313 !DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER))
e09ad6e1
JH
314 return 0;
315
e09ad6e1 316 diff_change(&revs->diffopt, oldmode, mode,
fd55a19e 317 old->sha1, sha1, old->name);
e09ad6e1
JH
318 return 0;
319}
320
e09ad6e1
JH
321/*
322 * This turns all merge entries into "stage 3". That guarantees that
323 * when we read in the new tree (into "stage 1"), we won't lose sight
324 * of the fact that we had unmerged entries.
325 */
326static void mark_merge_entries(void)
327{
328 int i;
329 for (i = 0; i < active_nr; i++) {
330 struct cache_entry *ce = active_cache[i];
331 if (!ce_stage(ce))
332 continue;
7a51ed66 333 ce->ce_flags |= CE_STAGEMASK;
e09ad6e1
JH
334 }
335}
336
d1f2d7e8
LT
337/*
338 * This gets a mix of an existing index and a tree, one pathname entry
339 * at a time. The index entry may be a single stage-0 one, but it could
340 * also be multiple unmerged entries (in which case idx_pos/idx_nr will
341 * give you the position and number of entries in the index).
342 */
343static void do_oneway_diff(struct unpack_trees_options *o,
344 struct cache_entry *idx,
34110cd4 345 struct cache_entry *tree)
e09ad6e1 346{
948dd346
JH
347 struct oneway_unpack_data *cbdata = o->unpack_data;
348 struct rev_info *revs = cbdata->revs;
d1f2d7e8 349 int match_missing, cached;
5c21ac0e 350
a6080a0a 351 /*
5c21ac0e 352 * Backward compatibility wart - "diff-index -m" does
d1f2d7e8
LT
353 * not mean "do not ignore merges", but "match_missing".
354 *
355 * But with the revision flag parsing, that's found in
356 * "!revs->ignore_merges".
357 */
358 cached = o->index_only;
359 match_missing = !revs->ignore_merges;
360
361 if (cached && idx && ce_stage(idx)) {
362 if (tree)
363 diff_unmerge(&revs->diffopt, idx->name, idx->ce_mode, idx->sha1);
364 return;
365 }
366
367 /*
368 * Something added to the tree?
369 */
370 if (!tree) {
948dd346 371 show_new_file(cbdata, idx, cached, match_missing);
d1f2d7e8
LT
372 return;
373 }
374
375 /*
376 * Something removed from the tree?
5c21ac0e 377 */
d1f2d7e8
LT
378 if (!idx) {
379 diff_index_show_file(revs, "-", tree, tree->sha1, tree->ce_mode);
380 return;
381 }
382
383 /* Show difference between old and new */
948dd346 384 show_modified(cbdata, tree, idx, 1, cached, match_missing);
d1f2d7e8
LT
385}
386
20a16eb3
LT
387static inline void skip_same_name(struct cache_entry *ce, struct unpack_trees_options *o)
388{
389 int len = ce_namelen(ce);
390 const struct index_state *index = o->src_index;
391
392 while (o->pos < index->cache_nr) {
393 struct cache_entry *next = index->cache[o->pos];
394 if (len != ce_namelen(next))
395 break;
396 if (memcmp(ce->name, next->name, len))
397 break;
398 o->pos++;
399 }
400}
401
d1f2d7e8
LT
402/*
403 * The unpack_trees() interface is designed for merging, so
404 * the different source entries are designed primarily for
405 * the source trees, with the old index being really mainly
406 * used for being replaced by the result.
407 *
408 * For diffing, the index is more important, and we only have a
409 * single tree.
410 *
411 * We're supposed to return how many index entries we want to skip.
412 *
413 * This wrapper makes it all more readable, and takes care of all
414 * the fairly complex unpack_trees() semantic requirements, including
415 * the skipping, the path matching, the type conflict cases etc.
416 */
34110cd4 417static int oneway_diff(struct cache_entry **src, struct unpack_trees_options *o)
d1f2d7e8 418{
d1f2d7e8
LT
419 struct cache_entry *idx = src[0];
420 struct cache_entry *tree = src[1];
948dd346
JH
421 struct oneway_unpack_data *cbdata = o->unpack_data;
422 struct rev_info *revs = cbdata->revs;
d1f2d7e8 423
20a16eb3
LT
424 if (idx && ce_stage(idx))
425 skip_same_name(idx, o);
426
d1f2d7e8
LT
427 /*
428 * Unpack-trees generates a DF/conflict entry if
429 * there was a directory in the index and a tree
430 * in the tree. From a diff standpoint, that's a
431 * delete of the tree and a create of the file.
432 */
433 if (tree == o->df_conflict_entry)
434 tree = NULL;
435
436 if (ce_path_match(idx ? idx : tree, revs->prune_data))
34110cd4 437 do_oneway_diff(o, idx, tree);
d1f2d7e8 438
34110cd4 439 return 0;
d1f2d7e8
LT
440}
441
442int run_diff_index(struct rev_info *revs, int cached)
443{
444 struct object *ent;
445 struct tree *tree;
446 const char *tree_name;
447 struct unpack_trees_options opts;
448 struct tree_desc t;
948dd346 449 struct oneway_unpack_data unpack_cb;
e09ad6e1 450
e09ad6e1
JH
451 mark_merge_entries();
452
1f1e895f
LT
453 ent = revs->pending.objects[0].item;
454 tree_name = revs->pending.objects[0].name;
e09ad6e1
JH
455 tree = parse_tree_indirect(ent->sha1);
456 if (!tree)
457 return error("bad tree object %s", tree_name);
d1f2d7e8 458
948dd346
JH
459 unpack_cb.revs = revs;
460 unpack_cb.symcache[0] = '\0';
d1f2d7e8
LT
461 memset(&opts, 0, sizeof(opts));
462 opts.head_idx = 1;
463 opts.index_only = cached;
464 opts.merge = 1;
465 opts.fn = oneway_diff;
948dd346 466 opts.unpack_data = &unpack_cb;
34110cd4
LT
467 opts.src_index = &the_index;
468 opts.dst_index = NULL;
d1f2d7e8
LT
469
470 init_tree_desc(&t, tree->buffer, tree->size);
203a2fe1
DB
471 if (unpack_trees(1, &t, &opts))
472 exit(128);
d1f2d7e8 473
a5a818ee 474 diff_set_mnemonic_prefix(&revs->diffopt, "c/", cached ? "i/" : "w/");
e09ad6e1
JH
475 diffcore_std(&revs->diffopt);
476 diff_flush(&revs->diffopt);
d1f2d7e8 477 return 0;
e09ad6e1 478}
1cfe7733
JH
479
480int do_diff_cache(const unsigned char *tree_sha1, struct diff_options *opt)
481{
482 struct tree *tree;
483 struct rev_info revs;
484 int i;
485 struct cache_entry **dst;
486 struct cache_entry *last = NULL;
204ce979
JS
487 struct unpack_trees_options opts;
488 struct tree_desc t;
948dd346 489 struct oneway_unpack_data unpack_cb;
1cfe7733
JH
490
491 /*
492 * This is used by git-blame to run diff-cache internally;
493 * it potentially needs to repeatedly run this, so we will
494 * start by removing the higher order entries the last round
495 * left behind.
496 */
497 dst = active_cache;
498 for (i = 0; i < active_nr; i++) {
499 struct cache_entry *ce = active_cache[i];
500 if (ce_stage(ce)) {
501 if (last && !strcmp(ce->name, last->name))
502 continue;
503 cache_tree_invalidate_path(active_cache_tree,
504 ce->name);
505 last = ce;
7a51ed66 506 ce->ce_flags |= CE_REMOVE;
1cfe7733
JH
507 }
508 *dst++ = ce;
509 }
510 active_nr = dst - active_cache;
511
512 init_revisions(&revs, NULL);
513 revs.prune_data = opt->paths;
514 tree = parse_tree_indirect(tree_sha1);
515 if (!tree)
516 die("bad tree object %s", sha1_to_hex(tree_sha1));
204ce979 517
948dd346
JH
518 unpack_cb.revs = &revs;
519 unpack_cb.symcache[0] = '\0';
204ce979
JS
520 memset(&opts, 0, sizeof(opts));
521 opts.head_idx = 1;
522 opts.index_only = 1;
523 opts.merge = 1;
524 opts.fn = oneway_diff;
948dd346 525 opts.unpack_data = &unpack_cb;
34110cd4
LT
526 opts.src_index = &the_index;
527 opts.dst_index = &the_index;
204ce979
JS
528
529 init_tree_desc(&t, tree->buffer, tree->size);
203a2fe1
DB
530 if (unpack_trees(1, &t, &opts))
531 exit(128);
204ce979 532 return 0;
1cfe7733 533}