diff: get rid of redundant 'dense' argument
[git] / diff-lib.c
1 /*
2  * Copyright (C) 2005 Junio C Hamano
3  */
4 #include "cache.h"
5 #include "quote.h"
6 #include "commit.h"
7 #include "diff.h"
8 #include "diffcore.h"
9 #include "revision.h"
10 #include "cache-tree.h"
11 #include "unpack-trees.h"
12 #include "refs.h"
13 #include "submodule.h"
14 #include "dir.h"
15 #include "fsmonitor.h"
16
17 /*
18  * diff-files
19  */
20
21 /*
22  * Has the work tree entity been removed?
23  *
24  * Return 1 if it was removed from the work tree, 0 if an entity to be
25  * compared with the cache entry ce still exists (the latter includes
26  * the case where a directory that is not a submodule repository
27  * exists for ce that is a submodule -- it is a submodule that is not
28  * checked out).  Return negative for an error.
29  */
30 static int check_removed(const struct cache_entry *ce, struct stat *st)
31 {
32         if (lstat(ce->name, st) < 0) {
33                 if (!is_missing_file_error(errno))
34                         return -1;
35                 return 1;
36         }
37         if (has_symlink_leading_path(ce->name, ce_namelen(ce)))
38                 return 1;
39         if (S_ISDIR(st->st_mode)) {
40                 struct object_id sub;
41
42                 /*
43                  * If ce is already a gitlink, we can have a plain
44                  * directory (i.e. the submodule is not checked out),
45                  * or a checked out submodule.  Either case this is not
46                  * a case where something was removed from the work tree,
47                  * so we will return 0.
48                  *
49                  * Otherwise, if the directory is not a submodule
50                  * repository, that means ce which was a blob turned into
51                  * a directory --- the blob was removed!
52                  */
53                 if (!S_ISGITLINK(ce->ce_mode) &&
54                     resolve_gitlink_ref(ce->name, "HEAD", &sub))
55                         return 1;
56         }
57         return 0;
58 }
59
60 /*
61  * Has a file changed or has a submodule new commits or a dirty work tree?
62  *
63  * Return 1 when changes are detected, 0 otherwise. If the DIRTY_SUBMODULES
64  * option is set, the caller does not only want to know if a submodule is
65  * modified at all but wants to know all the conditions that are met (new
66  * commits, untracked content and/or modified content).
67  */
68 static int match_stat_with_submodule(struct diff_options *diffopt,
69                                      const struct cache_entry *ce,
70                                      struct stat *st, unsigned ce_option,
71                                      unsigned *dirty_submodule)
72 {
73         int changed = ie_match_stat(diffopt->repo->index, ce, st, ce_option);
74         if (S_ISGITLINK(ce->ce_mode)) {
75                 struct diff_flags orig_flags = diffopt->flags;
76                 if (!diffopt->flags.override_submodule_config)
77                         set_diffopt_flags_from_submodule_config(diffopt, ce->name);
78                 if (diffopt->flags.ignore_submodules)
79                         changed = 0;
80                 else if (!diffopt->flags.ignore_dirty_submodules &&
81                          (!changed || diffopt->flags.dirty_submodules))
82                         *dirty_submodule = is_submodule_modified(ce->name,
83                                                                  diffopt->flags.ignore_untracked_in_submodules);
84                 diffopt->flags = orig_flags;
85         }
86         return changed;
87 }
88
89 int run_diff_files(struct rev_info *revs, unsigned int option)
90 {
91         int entries, i;
92         int diff_unmerged_stage = revs->max_count;
93         unsigned ce_option = ((option & DIFF_RACY_IS_MODIFIED)
94                               ? CE_MATCH_RACY_IS_DIRTY : 0);
95         uint64_t start = getnanotime();
96         struct index_state *istate = revs->diffopt.repo->index;
97
98         diff_set_mnemonic_prefix(&revs->diffopt, "i/", "w/");
99
100         if (diff_unmerged_stage < 0)
101                 diff_unmerged_stage = 2;
102         entries = istate->cache_nr;
103         for (i = 0; i < entries; i++) {
104                 unsigned int oldmode, newmode;
105                 struct cache_entry *ce = istate->cache[i];
106                 int changed;
107                 unsigned dirty_submodule = 0;
108                 const struct object_id *old_oid, *new_oid;
109
110                 if (diff_can_quit_early(&revs->diffopt))
111                         break;
112
113                 if (!ce_path_match(istate, ce, &revs->prune_data, NULL))
114                         continue;
115
116                 if (ce_stage(ce)) {
117                         struct combine_diff_path *dpath;
118                         struct diff_filepair *pair;
119                         unsigned int wt_mode = 0;
120                         int num_compare_stages = 0;
121                         size_t path_len;
122                         struct stat st;
123
124                         path_len = ce_namelen(ce);
125
126                         dpath = xmalloc(combine_diff_path_size(5, path_len));
127                         dpath->path = (char *) &(dpath->parent[5]);
128
129                         dpath->next = NULL;
130                         memcpy(dpath->path, ce->name, path_len);
131                         dpath->path[path_len] = '\0';
132                         oidclr(&dpath->oid);
133                         memset(&(dpath->parent[0]), 0,
134                                sizeof(struct combine_diff_parent)*5);
135
136                         changed = check_removed(ce, &st);
137                         if (!changed)
138                                 wt_mode = ce_mode_from_stat(ce, st.st_mode);
139                         else {
140                                 if (changed < 0) {
141                                         perror(ce->name);
142                                         continue;
143                                 }
144                                 wt_mode = 0;
145                         }
146                         dpath->mode = wt_mode;
147
148                         while (i < entries) {
149                                 struct cache_entry *nce = istate->cache[i];
150                                 int stage;
151
152                                 if (strcmp(ce->name, nce->name))
153                                         break;
154
155                                 /* Stage #2 (ours) is the first parent,
156                                  * stage #3 (theirs) is the second.
157                                  */
158                                 stage = ce_stage(nce);
159                                 if (2 <= stage) {
160                                         int mode = nce->ce_mode;
161                                         num_compare_stages++;
162                                         oidcpy(&dpath->parent[stage - 2].oid,
163                                                &nce->oid);
164                                         dpath->parent[stage-2].mode = ce_mode_from_stat(nce, mode);
165                                         dpath->parent[stage-2].status =
166                                                 DIFF_STATUS_MODIFIED;
167                                 }
168
169                                 /* diff against the proper unmerged stage */
170                                 if (stage == diff_unmerged_stage)
171                                         ce = nce;
172                                 i++;
173                         }
174                         /*
175                          * Compensate for loop update
176                          */
177                         i--;
178
179                         if (revs->combine_merges && num_compare_stages == 2) {
180                                 show_combined_diff(dpath, 2, revs);
181                                 free(dpath);
182                                 continue;
183                         }
184                         FREE_AND_NULL(dpath);
185
186                         /*
187                          * Show the diff for the 'ce' if we found the one
188                          * from the desired stage.
189                          */
190                         pair = diff_unmerge(&revs->diffopt, ce->name);
191                         if (wt_mode)
192                                 pair->two->mode = wt_mode;
193                         if (ce_stage(ce) != diff_unmerged_stage)
194                                 continue;
195                 }
196
197                 if (ce_uptodate(ce) || ce_skip_worktree(ce))
198                         continue;
199
200                 /* If CE_VALID is set, don't look at workdir for file removal */
201                 if (ce->ce_flags & CE_VALID) {
202                         changed = 0;
203                         newmode = ce->ce_mode;
204                 } else {
205                         struct stat st;
206
207                         changed = check_removed(ce, &st);
208                         if (changed) {
209                                 if (changed < 0) {
210                                         perror(ce->name);
211                                         continue;
212                                 }
213                                 diff_addremove(&revs->diffopt, '-', ce->ce_mode,
214                                                &ce->oid,
215                                                !is_null_oid(&ce->oid),
216                                                ce->name, 0);
217                                 continue;
218                         } else if (revs->diffopt.ita_invisible_in_index &&
219                                    ce_intent_to_add(ce)) {
220                                 diff_addremove(&revs->diffopt, '+', ce->ce_mode,
221                                                &null_oid, 0, ce->name, 0);
222                                 continue;
223                         }
224
225                         changed = match_stat_with_submodule(&revs->diffopt, ce, &st,
226                                                             ce_option, &dirty_submodule);
227                         newmode = ce_mode_from_stat(ce, st.st_mode);
228                 }
229
230                 if (!changed && !dirty_submodule) {
231                         ce_mark_uptodate(ce);
232                         mark_fsmonitor_valid(istate, ce);
233                         if (!revs->diffopt.flags.find_copies_harder)
234                                 continue;
235                 }
236                 oldmode = ce->ce_mode;
237                 old_oid = &ce->oid;
238                 new_oid = changed ? &null_oid : &ce->oid;
239                 diff_change(&revs->diffopt, oldmode, newmode,
240                             old_oid, new_oid,
241                             !is_null_oid(old_oid),
242                             !is_null_oid(new_oid),
243                             ce->name, 0, dirty_submodule);
244
245         }
246         diffcore_std(&revs->diffopt);
247         diff_flush(&revs->diffopt);
248         trace_performance_since(start, "diff-files");
249         return 0;
250 }
251
252 /*
253  * diff-index
254  */
255
256 /* A file entry went away or appeared */
257 static void diff_index_show_file(struct rev_info *revs,
258                                  const char *prefix,
259                                  const struct cache_entry *ce,
260                                  const struct object_id *oid, int oid_valid,
261                                  unsigned int mode,
262                                  unsigned dirty_submodule)
263 {
264         diff_addremove(&revs->diffopt, prefix[0], mode,
265                        oid, oid_valid, ce->name, dirty_submodule);
266 }
267
268 static int get_stat_data(const struct cache_entry *ce,
269                          const struct object_id **oidp,
270                          unsigned int *modep,
271                          int cached, int match_missing,
272                          unsigned *dirty_submodule, struct diff_options *diffopt)
273 {
274         const struct object_id *oid = &ce->oid;
275         unsigned int mode = ce->ce_mode;
276
277         if (!cached && !ce_uptodate(ce)) {
278                 int changed;
279                 struct stat st;
280                 changed = check_removed(ce, &st);
281                 if (changed < 0)
282                         return -1;
283                 else if (changed) {
284                         if (match_missing) {
285                                 *oidp = oid;
286                                 *modep = mode;
287                                 return 0;
288                         }
289                         return -1;
290                 }
291                 changed = match_stat_with_submodule(diffopt, ce, &st,
292                                                     0, dirty_submodule);
293                 if (changed) {
294                         mode = ce_mode_from_stat(ce, st.st_mode);
295                         oid = &null_oid;
296                 }
297         }
298
299         *oidp = oid;
300         *modep = mode;
301         return 0;
302 }
303
304 static void show_new_file(struct rev_info *revs,
305                           const struct cache_entry *new_file,
306                           int cached, int match_missing)
307 {
308         const struct object_id *oid;
309         unsigned int mode;
310         unsigned dirty_submodule = 0;
311
312         /*
313          * New file in the index: it might actually be different in
314          * the working tree.
315          */
316         if (get_stat_data(new_file, &oid, &mode, cached, match_missing,
317             &dirty_submodule, &revs->diffopt) < 0)
318                 return;
319
320         diff_index_show_file(revs, "+", new_file, oid, !is_null_oid(oid), mode, dirty_submodule);
321 }
322
323 static int show_modified(struct rev_info *revs,
324                          const struct cache_entry *old_entry,
325                          const struct cache_entry *new_entry,
326                          int report_missing,
327                          int cached, int match_missing)
328 {
329         unsigned int mode, oldmode;
330         const struct object_id *oid;
331         unsigned dirty_submodule = 0;
332
333         if (get_stat_data(new_entry, &oid, &mode, cached, match_missing,
334                           &dirty_submodule, &revs->diffopt) < 0) {
335                 if (report_missing)
336                         diff_index_show_file(revs, "-", old_entry,
337                                              &old_entry->oid, 1, old_entry->ce_mode,
338                                              0);
339                 return -1;
340         }
341
342         if (revs->combine_merges && !cached &&
343             (!oideq(oid, &old_entry->oid) || !oideq(&old_entry->oid, &new_entry->oid))) {
344                 struct combine_diff_path *p;
345                 int pathlen = ce_namelen(new_entry);
346
347                 p = xmalloc(combine_diff_path_size(2, pathlen));
348                 p->path = (char *) &p->parent[2];
349                 p->next = NULL;
350                 memcpy(p->path, new_entry->name, pathlen);
351                 p->path[pathlen] = 0;
352                 p->mode = mode;
353                 oidclr(&p->oid);
354                 memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent));
355                 p->parent[0].status = DIFF_STATUS_MODIFIED;
356                 p->parent[0].mode = new_entry->ce_mode;
357                 oidcpy(&p->parent[0].oid, &new_entry->oid);
358                 p->parent[1].status = DIFF_STATUS_MODIFIED;
359                 p->parent[1].mode = old_entry->ce_mode;
360                 oidcpy(&p->parent[1].oid, &old_entry->oid);
361                 show_combined_diff(p, 2, revs);
362                 free(p);
363                 return 0;
364         }
365
366         oldmode = old_entry->ce_mode;
367         if (mode == oldmode && oideq(oid, &old_entry->oid) && !dirty_submodule &&
368             !revs->diffopt.flags.find_copies_harder)
369                 return 0;
370
371         diff_change(&revs->diffopt, oldmode, mode,
372                     &old_entry->oid, oid, 1, !is_null_oid(oid),
373                     old_entry->name, 0, dirty_submodule);
374         return 0;
375 }
376
377 /*
378  * This gets a mix of an existing index and a tree, one pathname entry
379  * at a time. The index entry may be a single stage-0 one, but it could
380  * also be multiple unmerged entries (in which case idx_pos/idx_nr will
381  * give you the position and number of entries in the index).
382  */
383 static void do_oneway_diff(struct unpack_trees_options *o,
384                            const struct cache_entry *idx,
385                            const struct cache_entry *tree)
386 {
387         struct rev_info *revs = o->unpack_data;
388         int match_missing, cached;
389
390         /*
391          * i-t-a entries do not actually exist in the index (if we're
392          * looking at its content)
393          */
394         if (o->index_only &&
395             revs->diffopt.ita_invisible_in_index &&
396             idx && ce_intent_to_add(idx)) {
397                 idx = NULL;
398                 if (!tree)
399                         return; /* nothing to diff.. */
400         }
401
402         /* if the entry is not checked out, don't examine work tree */
403         cached = o->index_only ||
404                 (idx && ((idx->ce_flags & CE_VALID) || ce_skip_worktree(idx)));
405         /*
406          * Backward compatibility wart - "diff-index -m" does
407          * not mean "do not ignore merges", but "match_missing".
408          *
409          * But with the revision flag parsing, that's found in
410          * "!revs->ignore_merges".
411          */
412         match_missing = !revs->ignore_merges;
413
414         if (cached && idx && ce_stage(idx)) {
415                 struct diff_filepair *pair;
416                 pair = diff_unmerge(&revs->diffopt, idx->name);
417                 if (tree)
418                         fill_filespec(pair->one, &tree->oid, 1,
419                                       tree->ce_mode);
420                 return;
421         }
422
423         /*
424          * Something added to the tree?
425          */
426         if (!tree) {
427                 show_new_file(revs, idx, cached, match_missing);
428                 return;
429         }
430
431         /*
432          * Something removed from the tree?
433          */
434         if (!idx) {
435                 diff_index_show_file(revs, "-", tree, &tree->oid, 1,
436                                      tree->ce_mode, 0);
437                 return;
438         }
439
440         /* Show difference between old and new */
441         show_modified(revs, tree, idx, 1, cached, match_missing);
442 }
443
444 /*
445  * The unpack_trees() interface is designed for merging, so
446  * the different source entries are designed primarily for
447  * the source trees, with the old index being really mainly
448  * used for being replaced by the result.
449  *
450  * For diffing, the index is more important, and we only have a
451  * single tree.
452  *
453  * We're supposed to advance o->pos to skip what we have already processed.
454  *
455  * This wrapper makes it all more readable, and takes care of all
456  * the fairly complex unpack_trees() semantic requirements, including
457  * the skipping, the path matching, the type conflict cases etc.
458  */
459 static int oneway_diff(const struct cache_entry * const *src,
460                        struct unpack_trees_options *o)
461 {
462         const struct cache_entry *idx = src[0];
463         const struct cache_entry *tree = src[1];
464         struct rev_info *revs = o->unpack_data;
465
466         /*
467          * Unpack-trees generates a DF/conflict entry if
468          * there was a directory in the index and a tree
469          * in the tree. From a diff standpoint, that's a
470          * delete of the tree and a create of the file.
471          */
472         if (tree == o->df_conflict_entry)
473                 tree = NULL;
474
475         if (ce_path_match(revs->diffopt.repo->index,
476                           idx ? idx : tree,
477                           &revs->prune_data, NULL)) {
478                 do_oneway_diff(o, idx, tree);
479                 if (diff_can_quit_early(&revs->diffopt)) {
480                         o->exiting_early = 1;
481                         return -1;
482                 }
483         }
484
485         return 0;
486 }
487
488 static int diff_cache(struct rev_info *revs,
489                       const struct object_id *tree_oid,
490                       const char *tree_name,
491                       int cached)
492 {
493         struct tree *tree;
494         struct tree_desc t;
495         struct unpack_trees_options opts;
496
497         tree = parse_tree_indirect(tree_oid);
498         if (!tree)
499                 return error("bad tree object %s",
500                              tree_name ? tree_name : oid_to_hex(tree_oid));
501         memset(&opts, 0, sizeof(opts));
502         opts.head_idx = 1;
503         opts.index_only = cached;
504         opts.diff_index_cached = (cached &&
505                                   !revs->diffopt.flags.find_copies_harder);
506         opts.merge = 1;
507         opts.fn = oneway_diff;
508         opts.unpack_data = revs;
509         opts.src_index = revs->diffopt.repo->index;
510         opts.dst_index = NULL;
511         opts.pathspec = &revs->diffopt.pathspec;
512         opts.pathspec->recursive = 1;
513
514         init_tree_desc(&t, tree->buffer, tree->size);
515         return unpack_trees(1, &t, &opts);
516 }
517
518 int run_diff_index(struct rev_info *revs, int cached)
519 {
520         struct object_array_entry *ent;
521
522         if (revs->pending.nr != 1)
523                 BUG("run_diff_index must be passed exactly one tree");
524
525         trace_performance_enter();
526         ent = revs->pending.objects;
527         if (diff_cache(revs, &ent->item->oid, ent->name, cached))
528                 exit(128);
529
530         diff_set_mnemonic_prefix(&revs->diffopt, "c/", cached ? "i/" : "w/");
531         diffcore_fix_diff_index();
532         diffcore_std(&revs->diffopt);
533         diff_flush(&revs->diffopt);
534         trace_performance_leave("diff-index");
535         return 0;
536 }
537
538 int do_diff_cache(const struct object_id *tree_oid, struct diff_options *opt)
539 {
540         struct rev_info revs;
541
542         repo_init_revisions(opt->repo, &revs, NULL);
543         copy_pathspec(&revs.prune_data, &opt->pathspec);
544         revs.diffopt = *opt;
545
546         if (diff_cache(&revs, tree_oid, NULL, 1))
547                 exit(128);
548         return 0;
549 }
550
551 int index_differs_from(struct repository *r,
552                        const char *def, const struct diff_flags *flags,
553                        int ita_invisible_in_index)
554 {
555         struct rev_info rev;
556         struct setup_revision_opt opt;
557
558         repo_init_revisions(r, &rev, NULL);
559         memset(&opt, 0, sizeof(opt));
560         opt.def = def;
561         setup_revisions(0, NULL, &rev, &opt);
562         rev.diffopt.flags.quick = 1;
563         rev.diffopt.flags.exit_with_status = 1;
564         if (flags)
565                 diff_flags_or(&rev.diffopt.flags, flags);
566         rev.diffopt.ita_invisible_in_index = ita_invisible_in_index;
567         run_diff_index(&rev, 1);
568         object_array_clear(&rev.pending);
569         return (rev.diffopt.flags.has_changes != 0);
570 }