blob: 104f954a25700a4eee95507e7ebb7734e94b67c6 [file] [log] [blame]
Junio C Hamanobe3cfa82005-04-26 09:25:05 -07001/*
2 * Copyright (C) 2005 Junio C Hamano
3 */
Junio C Hamano86436c22005-04-25 18:22:47 -07004#include "cache.h"
Junio C Hamano6fb737b2005-07-07 23:58:32 -07005#include "quote.h"
Junio C Hamano6973dca2006-04-21 23:57:45 -07006#include "commit.h"
Junio C Hamano86436c22005-04-25 18:22:47 -07007#include "diff.h"
Junio C Hamano427dcb42005-05-21 02:39:09 -07008#include "diffcore.h"
Junio C Hamano6973dca2006-04-21 23:57:45 -07009#include "revision.h"
Junio C Hamano1cfe7732007-01-30 01:11:08 -080010#include "cache-tree.h"
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -080011#include "unpack-trees.h"
Junio C Hamano948dd342008-03-30 17:29:48 -070012#include "refs.h"
Jens Lehmannee6fc512010-01-16 18:42:24 +010013#include "submodule.h"
Nguyễn Thái Ngọc Duy429bb402014-01-24 20:40:28 +070014#include "dir.h"
Ben Peart883e2482017-09-22 12:35:40 -040015#include "fsmonitor.h"
Junio C Hamano427dcb42005-05-21 02:39:09 -070016
Junio C Hamanob46f0b62005-05-04 01:45:24 -070017/*
Junio C Hamano6973dca2006-04-21 23:57:45 -070018 * diff-files
Junio C Hamanob46f0b62005-05-04 01:45:24 -070019 */
Junio C Hamano6973dca2006-04-21 23:57:45 -070020
Junio C Hamano948dd342008-03-30 17:29:48 -070021/*
Junio C Hamano1392a372008-05-03 17:04:42 -070022 * 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.
Junio C Hamano948dd342008-03-30 17:29:48 -070029 */
Linus Torvaldsc40641b2008-05-09 09:21:07 -070030static int check_removed(const struct cache_entry *ce, struct stat *st)
Junio C Hamano948dd342008-03-30 17:29:48 -070031{
32 if (lstat(ce->name, st) < 0) {
Junio C Hamanoc7054202017-05-30 09:23:33 +090033 if (!is_missing_file_error(errno))
Junio C Hamano948dd342008-03-30 17:29:48 -070034 return -1;
35 return 1;
36 }
Kjetil Barvik57199892009-02-09 21:54:06 +010037 if (has_symlink_leading_path(ce->name, ce_namelen(ce)))
Junio C Hamano948dd342008-03-30 17:29:48 -070038 return 1;
39 if (S_ISDIR(st->st_mode)) {
brian m. carlson1053fe82017-10-15 22:07:06 +000040 struct object_id sub;
Junio C Hamano1392a372008-05-03 17:04:42 -070041
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) &&
brian m. carlsona98e6102017-10-15 22:07:07 +000054 resolve_gitlink_ref(ce->name, "HEAD", &sub))
Junio C Hamano948dd342008-03-30 17:29:48 -070055 return 1;
56 }
57 return 0;
58}
Johannes Schindelind516c2d2007-02-22 21:50:10 +010059
Jens Lehmannae6d5c12010-03-11 22:50:25 +010060/*
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 */
68static int match_stat_with_submodule(struct diff_options *diffopt,
René Scharfeeb9ae4b2013-06-02 17:46:55 +020069 const struct cache_entry *ce,
70 struct stat *st, unsigned ce_option,
71 unsigned *dirty_submodule)
Jens Lehmannae6d5c12010-03-11 22:50:25 +010072{
73 int changed = ce_match_stat(ce, st, ce_option);
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020074 if (S_ISGITLINK(ce->ce_mode)) {
Brandon Williams02f2f562017-10-31 11:19:05 -070075 struct diff_flags orig_flags = diffopt->flags;
Brandon Williams0d1e0e72017-10-31 11:19:11 -070076 if (!diffopt->flags.override_submodule_config)
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020077 set_diffopt_flags_from_submodule_config(diffopt, ce->name);
Brandon Williams0d1e0e72017-10-31 11:19:11 -070078 if (diffopt->flags.ignore_submodules)
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020079 changed = 0;
Brandon Williams0d1e0e72017-10-31 11:19:11 -070080 else if (!diffopt->flags.ignore_dirty_submodules &&
81 (!changed || diffopt->flags.dirty_submodules))
Brandon Williams3b69dae2017-10-31 11:19:08 -070082 *dirty_submodule = is_submodule_modified(ce->name,
Brandon Williams0d1e0e72017-10-31 11:19:11 -070083 diffopt->flags.ignore_untracked_in_submodules);
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020084 diffopt->flags = orig_flags;
Jens Lehmannae6d5c12010-03-11 22:50:25 +010085 }
86 return changed;
87}
88
Junio C Hamano4bd5b7d2007-11-10 00:15:03 -080089int run_diff_files(struct rev_info *revs, unsigned int option)
Junio C Hamanob46f0b62005-05-04 01:45:24 -070090{
Junio C Hamano6973dca2006-04-21 23:57:45 -070091 int entries, i;
92 int diff_unmerged_stage = revs->max_count;
Junio C Hamanofb63d7f2007-11-09 18:22:52 -080093 unsigned ce_option = ((option & DIFF_RACY_IS_MODIFIED)
94 ? CE_MATCH_RACY_IS_DIRTY : 0);
Nguyễn Thái Ngọc Duyca54d9b2018-01-27 19:27:56 +070095 uint64_t start = getnanotime();
Junio C Hamano5c975582005-05-19 03:32:35 -070096
Junio C Hamanoa5a818e2008-08-18 20:08:09 -070097 diff_set_mnemonic_prefix(&revs->diffopt, "i/", "w/");
98
Junio C Hamano6973dca2006-04-21 23:57:45 -070099 if (diff_unmerged_stage < 0)
100 diff_unmerged_stage = 2;
Junio C Hamanob4e1e4a2007-02-09 18:51:40 -0800101 entries = active_nr;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700102 for (i = 0; i < entries; i++) {
Junio C Hamano6973dca2006-04-21 23:57:45 -0700103 unsigned int oldmode, newmode;
104 struct cache_entry *ce = active_cache[i];
105 int changed;
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100106 unsigned dirty_submodule = 0;
Brandon Williams55497b82017-05-30 10:30:48 -0700107 const struct object_id *old_oid, *new_oid;
Junio C Hamanof0c6b2a2005-05-27 15:56:38 -0700108
Junio C Hamano28b92642011-05-31 09:14:17 -0700109 if (diff_can_quit_early(&revs->diffopt))
Junio C Hamano822cac02007-03-14 11:12:51 -0700110 break;
111
Nguyễn Thái Ngọc Duy429bb402014-01-24 20:40:28 +0700112 if (!ce_path_match(ce, &revs->prune_data, NULL))
Linus Torvalds8676eb42006-02-26 15:51:24 -0800113 continue;
Linus Torvalds8676eb42006-02-26 15:51:24 -0800114
Junio C Hamano6973dca2006-04-21 23:57:45 -0700115 if (ce_stage(ce)) {
Florian Forsterb4b15502006-06-18 17:18:05 +0200116 struct combine_diff_path *dpath;
Junio C Hamano095ce952011-04-22 16:19:27 -0700117 struct diff_filepair *pair;
118 unsigned int wt_mode = 0;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700119 int num_compare_stages = 0;
Florian Forsterb4b15502006-06-18 17:18:05 +0200120 size_t path_len;
Jeff King53048102014-05-14 18:13:06 -0400121 struct stat st;
Linus Torvalds8676eb42006-02-26 15:51:24 -0800122
Florian Forsterb4b15502006-06-18 17:18:05 +0200123 path_len = ce_namelen(ce);
124
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800125 dpath = xmalloc(combine_diff_path_size(5, path_len));
Florian Forsterb4b15502006-06-18 17:18:05 +0200126 dpath->path = (char *) &(dpath->parent[5]);
127
128 dpath->next = NULL;
Florian Forsterb4b15502006-06-18 17:18:05 +0200129 memcpy(dpath->path, ce->name, path_len);
130 dpath->path[path_len] = '\0';
brian m. carlson1ff57c12015-03-13 23:39:33 +0000131 oidclr(&dpath->oid);
Florian Forsterb4b15502006-06-18 17:18:05 +0200132 memset(&(dpath->parent[0]), 0,
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800133 sizeof(struct combine_diff_parent)*5);
134
Linus Torvaldsc40641b2008-05-09 09:21:07 -0700135 changed = check_removed(ce, &st);
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700136 if (!changed)
Junio C Hamano095ce952011-04-22 16:19:27 -0700137 wt_mode = ce_mode_from_stat(ce, st.st_mode);
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700138 else {
139 if (changed < 0) {
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800140 perror(ce->name);
141 continue;
142 }
Junio C Hamano095ce952011-04-22 16:19:27 -0700143 wt_mode = 0;
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800144 }
Junio C Hamano095ce952011-04-22 16:19:27 -0700145 dpath->mode = wt_mode;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700146
Junio C Hamano6973dca2006-04-21 23:57:45 -0700147 while (i < entries) {
148 struct cache_entry *nce = active_cache[i];
149 int stage;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700150
Junio C Hamano6973dca2006-04-21 23:57:45 -0700151 if (strcmp(ce->name, nce->name))
152 break;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700153
Junio C Hamano6973dca2006-04-21 23:57:45 -0700154 /* Stage #2 (ours) is the first parent,
155 * stage #3 (theirs) is the second.
156 */
157 stage = ce_stage(nce);
158 if (2 <= stage) {
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800159 int mode = nce->ce_mode;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700160 num_compare_stages++;
brian m. carlson99d1a982016-09-05 20:07:52 +0000161 oidcpy(&dpath->parent[stage - 2].oid,
162 &nce->oid);
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800163 dpath->parent[stage-2].mode = ce_mode_from_stat(nce, mode);
Florian Forsterb4b15502006-06-18 17:18:05 +0200164 dpath->parent[stage-2].status =
Junio C Hamano6973dca2006-04-21 23:57:45 -0700165 DIFF_STATUS_MODIFIED;
166 }
Junio C Hamanocebff982006-03-25 23:12:17 -0800167
Junio C Hamano6973dca2006-04-21 23:57:45 -0700168 /* diff against the proper unmerged stage */
169 if (stage == diff_unmerged_stage)
170 ce = nce;
171 i++;
H. Peter Anvin1b1480f2005-11-21 14:17:12 -0800172 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700173 /*
174 * Compensate for loop update
175 */
176 i--;
Junio C Hamano0e3994f2005-06-03 01:37:54 -0700177
Junio C Hamano6973dca2006-04-21 23:57:45 -0700178 if (revs->combine_merges && num_compare_stages == 2) {
Florian Forsterb4b15502006-06-18 17:18:05 +0200179 show_combined_diff(dpath, 2,
Junio C Hamano6973dca2006-04-21 23:57:45 -0700180 revs->dense_combined_merges,
181 revs);
Florian Forsterb4b15502006-06-18 17:18:05 +0200182 free(dpath);
Junio C Hamano15d061b2005-05-27 15:55:55 -0700183 continue;
184 }
Ævar Arnfjörð Bjarmason6a83d902017-06-15 23:15:46 +0000185 FREE_AND_NULL(dpath);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700186
187 /*
188 * Show the diff for the 'ce' if we found the one
189 * from the desired stage.
Junio C Hamano25d5ea42005-05-24 01:10:48 -0700190 */
Junio C Hamano095ce952011-04-22 16:19:27 -0700191 pair = diff_unmerge(&revs->diffopt, ce->name);
192 if (wt_mode)
193 pair->two->mode = wt_mode;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700194 if (ce_stage(ce) != diff_unmerged_stage)
195 continue;
196 }
197
Junio C Hamano125fd982010-01-24 00:10:20 -0800198 if (ce_uptodate(ce) || ce_skip_worktree(ce))
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800199 continue;
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700200
Nguyễn Thái Ngọc Duy540e6942009-08-11 22:43:59 +0700201 /* If CE_VALID is set, don't look at workdir for file removal */
Jeff King53048102014-05-14 18:13:06 -0400202 if (ce->ce_flags & CE_VALID) {
203 changed = 0;
204 newmode = ce->ce_mode;
205 } else {
206 struct stat st;
207
208 changed = check_removed(ce, &st);
209 if (changed) {
210 if (changed < 0) {
211 perror(ce->name);
212 continue;
213 }
214 diff_addremove(&revs->diffopt, '-', ce->ce_mode,
Brandon Williamsc26022e2017-05-30 10:30:47 -0700215 &ce->oid,
brian m. carlson99d1a982016-09-05 20:07:52 +0000216 !is_null_oid(&ce->oid),
Jeff King53048102014-05-14 18:13:06 -0400217 ce->name, 0);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700218 continue;
Nguyễn Thái Ngọc Duy425a28e2016-10-24 17:42:19 +0700219 } else if (revs->diffopt.ita_invisible_in_index &&
220 ce_intent_to_add(ce)) {
221 diff_addremove(&revs->diffopt, '+', ce->ce_mode,
brian m. carlsoneb0ccfd2017-11-12 21:28:54 +0000222 the_hash_algo->empty_tree, 0,
Nguyễn Thái Ngọc Duy425a28e2016-10-24 17:42:19 +0700223 ce->name, 0);
224 continue;
Junio C Hamano25d5ea42005-05-24 01:10:48 -0700225 }
Jeff King53048102014-05-14 18:13:06 -0400226
227 changed = match_stat_with_submodule(&revs->diffopt, ce, &st,
228 ce_option, &dirty_submodule);
229 newmode = ce_mode_from_stat(ce, st.st_mode);
Junio C Hamanobceafe72005-05-23 18:14:03 -0700230 }
Jeff King53048102014-05-14 18:13:06 -0400231
Jens Lehmann85adbf22010-03-12 22:23:52 +0100232 if (!changed && !dirty_submodule) {
Junio C Hamano8fa29602008-03-30 12:39:25 -0700233 ce_mark_uptodate(ce);
Ben Peart883e2482017-09-22 12:35:40 -0400234 mark_fsmonitor_valid(ce);
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700235 if (!revs->diffopt.flags.find_copies_harder)
Junio C Hamano8fa29602008-03-30 12:39:25 -0700236 continue;
237 }
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800238 oldmode = ce->ce_mode;
Brandon Williams55497b82017-05-30 10:30:48 -0700239 old_oid = &ce->oid;
240 new_oid = changed ? &null_oid : &ce->oid;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700241 diff_change(&revs->diffopt, oldmode, newmode,
Brandon Williams94a00972017-05-30 10:30:49 -0700242 old_oid, new_oid,
Brandon Williams55497b82017-05-30 10:30:48 -0700243 !is_null_oid(old_oid),
244 !is_null_oid(new_oid),
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100245 ce->name, 0, dirty_submodule);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700246
Junio C Hamanobceafe72005-05-23 18:14:03 -0700247 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700248 diffcore_std(&revs->diffopt);
249 diff_flush(&revs->diffopt);
Nguyễn Thái Ngọc Duyca54d9b2018-01-27 19:27:56 +0700250 trace_performance_since(start, "diff-files");
Junio C Hamano6973dca2006-04-21 23:57:45 -0700251 return 0;
Junio C Hamanobceafe72005-05-23 18:14:03 -0700252}
253
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700254/*
255 * diff-index
256 */
257
258/* A file entry went away or appeared */
259static void diff_index_show_file(struct rev_info *revs,
260 const char *prefix,
René Scharfeeb9ae4b2013-06-02 17:46:55 +0200261 const struct cache_entry *ce,
Brandon Williamsfcf2cfb2017-05-30 10:30:46 -0700262 const struct object_id *oid, int oid_valid,
Jeff Kinge5450102012-07-28 11:03:01 -0400263 unsigned int mode,
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100264 unsigned dirty_submodule)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700265{
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800266 diff_addremove(&revs->diffopt, prefix[0], mode,
Brandon Williamsc26022e2017-05-30 10:30:47 -0700267 oid, oid_valid, ce->name, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700268}
269
René Scharfeeb9ae4b2013-06-02 17:46:55 +0200270static int get_stat_data(const struct cache_entry *ce,
Brandon Williams362d7652017-05-30 10:30:45 -0700271 const struct object_id **oidp,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700272 unsigned int *modep,
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100273 int cached, int match_missing,
Jens Lehmann4d344772010-01-23 17:37:26 +0100274 unsigned *dirty_submodule, struct diff_options *diffopt)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700275{
Brandon Williams362d7652017-05-30 10:30:45 -0700276 const struct object_id *oid = &ce->oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700277 unsigned int mode = ce->ce_mode;
278
Linus Torvalds658dd482009-05-09 14:57:30 -0700279 if (!cached && !ce_uptodate(ce)) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700280 int changed;
281 struct stat st;
Linus Torvaldsc40641b2008-05-09 09:21:07 -0700282 changed = check_removed(ce, &st);
Junio C Hamano948dd342008-03-30 17:29:48 -0700283 if (changed < 0)
284 return -1;
285 else if (changed) {
286 if (match_missing) {
Brandon Williams362d7652017-05-30 10:30:45 -0700287 *oidp = oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700288 *modep = mode;
289 return 0;
290 }
291 return -1;
292 }
Jens Lehmannae6d5c12010-03-11 22:50:25 +0100293 changed = match_stat_with_submodule(diffopt, ce, &st,
294 0, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700295 if (changed) {
Junio C Hamano185c9752007-02-16 22:43:48 -0800296 mode = ce_mode_from_stat(ce, st.st_mode);
Brandon Williams362d7652017-05-30 10:30:45 -0700297 oid = &null_oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700298 }
299 }
300
Brandon Williams362d7652017-05-30 10:30:45 -0700301 *oidp = oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700302 *modep = mode;
303 return 0;
304}
305
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100306static void show_new_file(struct rev_info *revs,
Brandon Williamse36ede22018-02-14 10:59:38 -0800307 const struct cache_entry *new_file,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700308 int cached, int match_missing)
309{
Brandon Williams362d7652017-05-30 10:30:45 -0700310 const struct object_id *oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700311 unsigned int mode;
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100312 unsigned dirty_submodule = 0;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700313
Junio C Hamano948dd342008-03-30 17:29:48 -0700314 /*
315 * New file in the index: it might actually be different in
Carlos Martín Nietof7d650c2011-09-20 22:25:57 +0200316 * the working tree.
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700317 */
Brandon Williamse36ede22018-02-14 10:59:38 -0800318 if (get_stat_data(new_file, &oid, &mode, cached, match_missing,
Jens Lehmann4d344772010-01-23 17:37:26 +0100319 &dirty_submodule, &revs->diffopt) < 0)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700320 return;
321
Brandon Williamse36ede22018-02-14 10:59:38 -0800322 diff_index_show_file(revs, "+", new_file, oid, !is_null_oid(oid), mode, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700323}
324
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100325static int show_modified(struct rev_info *revs,
Brandon Williamse36ede22018-02-14 10:59:38 -0800326 const struct cache_entry *old_entry,
327 const struct cache_entry *new_entry,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700328 int report_missing,
329 int cached, int match_missing)
330{
331 unsigned int mode, oldmode;
Brandon Williams362d7652017-05-30 10:30:45 -0700332 const struct object_id *oid;
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100333 unsigned dirty_submodule = 0;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700334
Brandon Williamse36ede22018-02-14 10:59:38 -0800335 if (get_stat_data(new_entry, &oid, &mode, cached, match_missing,
Jens Lehmann4d344772010-01-23 17:37:26 +0100336 &dirty_submodule, &revs->diffopt) < 0) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700337 if (report_missing)
Brandon Williamse36ede22018-02-14 10:59:38 -0800338 diff_index_show_file(revs, "-", old_entry,
339 &old_entry->oid, 1, old_entry->ce_mode,
brian m. carlson99d1a982016-09-05 20:07:52 +0000340 0);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700341 return -1;
342 }
343
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000344 if (revs->combine_merges && !cached &&
Brandon Williamse36ede22018-02-14 10:59:38 -0800345 (oidcmp(oid, &old_entry->oid) || oidcmp(&old_entry->oid, &new_entry->oid))) {
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000346 struct combine_diff_path *p;
Brandon Williamse36ede22018-02-14 10:59:38 -0800347 int pathlen = ce_namelen(new_entry);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000348
349 p = xmalloc(combine_diff_path_size(2, pathlen));
350 p->path = (char *) &p->parent[2];
351 p->next = NULL;
Brandon Williamse36ede22018-02-14 10:59:38 -0800352 memcpy(p->path, new_entry->name, pathlen);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000353 p->path[pathlen] = 0;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800354 p->mode = mode;
brian m. carlson1ff57c12015-03-13 23:39:33 +0000355 oidclr(&p->oid);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000356 memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent));
357 p->parent[0].status = DIFF_STATUS_MODIFIED;
Brandon Williamse36ede22018-02-14 10:59:38 -0800358 p->parent[0].mode = new_entry->ce_mode;
359 oidcpy(&p->parent[0].oid, &new_entry->oid);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000360 p->parent[1].status = DIFF_STATUS_MODIFIED;
Brandon Williamse36ede22018-02-14 10:59:38 -0800361 p->parent[1].mode = old_entry->ce_mode;
362 oidcpy(&p->parent[1].oid, &old_entry->oid);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000363 show_combined_diff(p, 2, revs->dense_combined_merges, revs);
364 free(p);
365 return 0;
366 }
367
Brandon Williamse36ede22018-02-14 10:59:38 -0800368 oldmode = old_entry->ce_mode;
369 if (mode == oldmode && !oidcmp(oid, &old_entry->oid) && !dirty_submodule &&
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700370 !revs->diffopt.flags.find_copies_harder)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700371 return 0;
372
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700373 diff_change(&revs->diffopt, oldmode, mode,
Brandon Williamse36ede22018-02-14 10:59:38 -0800374 &old_entry->oid, oid, 1, !is_null_oid(oid),
375 old_entry->name, 0, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700376 return 0;
377}
378
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700379/*
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800380 * This gets a mix of an existing index and a tree, one pathname entry
381 * at a time. The index entry may be a single stage-0 one, but it could
382 * also be multiple unmerged entries (in which case idx_pos/idx_nr will
383 * give you the position and number of entries in the index).
384 */
385static void do_oneway_diff(struct unpack_trees_options *o,
René Scharfeeb9ae4b2013-06-02 17:46:55 +0200386 const struct cache_entry *idx,
387 const struct cache_entry *tree)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700388{
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100389 struct rev_info *revs = o->unpack_data;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800390 int match_missing, cached;
Junio C Hamano5c21ac02006-04-22 03:58:04 -0700391
Nguyễn Thái Ngọc Duy425a28e2016-10-24 17:42:19 +0700392 /* i-t-a entries do not actually exist in the index */
393 if (revs->diffopt.ita_invisible_in_index &&
394 idx && ce_intent_to_add(idx)) {
395 idx = NULL;
396 if (!tree)
397 return; /* nothing to diff.. */
398 }
399
Nguyễn Thái Ngọc Duy540e6942009-08-11 22:43:59 +0700400 /* if the entry is not checked out, don't examine work tree */
Nguyễn Thái Ngọc Duyb4d16902009-08-20 20:46:58 +0700401 cached = o->index_only ||
402 (idx && ((idx->ce_flags & CE_VALID) || ce_skip_worktree(idx)));
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700403 /*
Junio C Hamano5c21ac02006-04-22 03:58:04 -0700404 * Backward compatibility wart - "diff-index -m" does
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800405 * not mean "do not ignore merges", but "match_missing".
406 *
407 * But with the revision flag parsing, that's found in
408 * "!revs->ignore_merges".
Junio C Hamano5c21ac02006-04-22 03:58:04 -0700409 */
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800410 match_missing = !revs->ignore_merges;
411
412 if (cached && idx && ce_stage(idx)) {
Junio C Hamanofa7b2902011-04-22 16:05:58 -0700413 struct diff_filepair *pair;
414 pair = diff_unmerge(&revs->diffopt, idx->name);
Junio C Hamanoff00b682011-07-13 21:36:29 -0700415 if (tree)
Brandon Williamsf9704c22017-05-30 10:30:50 -0700416 fill_filespec(pair->one, &tree->oid, 1,
brian m. carlson99d1a982016-09-05 20:07:52 +0000417 tree->ce_mode);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800418 return;
419 }
420
421 /*
422 * Something added to the tree?
423 */
424 if (!tree) {
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100425 show_new_file(revs, idx, cached, match_missing);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800426 return;
427 }
428
429 /*
430 * Something removed from the tree?
431 */
432 if (!idx) {
Brandon Williamsfcf2cfb2017-05-30 10:30:46 -0700433 diff_index_show_file(revs, "-", tree, &tree->oid, 1,
brian m. carlson99d1a982016-09-05 20:07:52 +0000434 tree->ce_mode, 0);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800435 return;
436 }
437
438 /* Show difference between old and new */
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100439 show_modified(revs, tree, idx, 1, cached, match_missing);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800440}
441
442/*
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800443 * The unpack_trees() interface is designed for merging, so
444 * the different source entries are designed primarily for
445 * the source trees, with the old index being really mainly
446 * used for being replaced by the result.
447 *
448 * For diffing, the index is more important, and we only have a
449 * single tree.
450 *
Junio C Hamanoda8ba5e2009-09-17 22:12:17 -0700451 * We're supposed to advance o->pos to skip what we have already processed.
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800452 *
453 * This wrapper makes it all more readable, and takes care of all
454 * the fairly complex unpack_trees() semantic requirements, including
455 * the skipping, the path matching, the type conflict cases etc.
456 */
René Scharfe5828e832013-06-02 17:46:56 +0200457static int oneway_diff(const struct cache_entry * const *src,
458 struct unpack_trees_options *o)
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800459{
René Scharfeeb9ae4b2013-06-02 17:46:55 +0200460 const struct cache_entry *idx = src[0];
461 const struct cache_entry *tree = src[1];
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100462 struct rev_info *revs = o->unpack_data;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800463
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800464 /*
465 * Unpack-trees generates a DF/conflict entry if
466 * there was a directory in the index and a tree
467 * in the tree. From a diff standpoint, that's a
468 * delete of the tree and a create of the file.
469 */
470 if (tree == o->df_conflict_entry)
471 tree = NULL;
472
Nguyễn Thái Ngọc Duy429bb402014-01-24 20:40:28 +0700473 if (ce_path_match(idx ? idx : tree, &revs->prune_data, NULL)) {
Linus Torvalds34110cd2008-03-06 18:12:28 -0800474 do_oneway_diff(o, idx, tree);
Junio C Hamanob4194822011-05-31 10:06:44 -0700475 if (diff_can_quit_early(&revs->diffopt)) {
476 o->exiting_early = 1;
477 return -1;
478 }
479 }
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800480
Linus Torvalds34110cd2008-03-06 18:12:28 -0800481 return 0;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800482}
483
Junio C Hamanobf979c02011-07-13 18:57:42 -0700484static int diff_cache(struct rev_info *revs,
brian m. carlson944cffb2017-05-06 22:10:35 +0000485 const struct object_id *tree_oid,
Junio C Hamanobf979c02011-07-13 18:57:42 -0700486 const char *tree_name,
487 int cached)
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800488{
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800489 struct tree *tree;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800490 struct tree_desc t;
Junio C Hamanobf979c02011-07-13 18:57:42 -0700491 struct unpack_trees_options opts;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700492
brian m. carlsona9dbc172017-05-06 22:10:37 +0000493 tree = parse_tree_indirect(tree_oid);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700494 if (!tree)
Junio C Hamanobf979c02011-07-13 18:57:42 -0700495 return error("bad tree object %s",
brian m. carlson944cffb2017-05-06 22:10:35 +0000496 tree_name ? tree_name : oid_to_hex(tree_oid));
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800497 memset(&opts, 0, sizeof(opts));
498 opts.head_idx = 1;
499 opts.index_only = cached;
Junio C Hamanoa0919ce2009-05-22 23:14:25 -0700500 opts.diff_index_cached = (cached &&
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700501 !revs->diffopt.flags.find_copies_harder);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800502 opts.merge = 1;
503 opts.fn = oneway_diff;
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100504 opts.unpack_data = revs;
Linus Torvalds34110cd2008-03-06 18:12:28 -0800505 opts.src_index = &the_index;
506 opts.dst_index = NULL;
Junio C Hamano2f88c192011-08-29 13:34:08 -0700507 opts.pathspec = &revs->diffopt.pathspec;
Nguyen Thai Ngoc Duy48382372012-01-15 17:03:27 +0700508 opts.pathspec->recursive = 1;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800509
510 init_tree_desc(&t, tree->buffer, tree->size);
Junio C Hamanobf979c02011-07-13 18:57:42 -0700511 return unpack_trees(1, &t, &opts);
512}
513
514int run_diff_index(struct rev_info *revs, int cached)
515{
516 struct object_array_entry *ent;
Nguyễn Thái Ngọc Duyca54d9b2018-01-27 19:27:56 +0700517 uint64_t start = getnanotime();
Junio C Hamanobf979c02011-07-13 18:57:42 -0700518
519 ent = revs->pending.objects;
brian m. carlson944cffb2017-05-06 22:10:35 +0000520 if (diff_cache(revs, &ent->item->oid, ent->name, cached))
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500521 exit(128);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800522
Junio C Hamanoa5a818e2008-08-18 20:08:09 -0700523 diff_set_mnemonic_prefix(&revs->diffopt, "c/", cached ? "i/" : "w/");
Junio C Hamano730f7282009-09-20 00:03:39 -0700524 diffcore_fix_diff_index(&revs->diffopt);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700525 diffcore_std(&revs->diffopt);
526 diff_flush(&revs->diffopt);
Nguyễn Thái Ngọc Duyca54d9b2018-01-27 19:27:56 +0700527 trace_performance_since(start, "diff-index");
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800528 return 0;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700529}
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800530
brian m. carlson944cffb2017-05-06 22:10:35 +0000531int do_diff_cache(const struct object_id *tree_oid, struct diff_options *opt)
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800532{
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800533 struct rev_info revs;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800534
535 init_revisions(&revs, NULL);
Nguyễn Thái Ngọc Duy9a087272013-07-14 15:35:59 +0700536 copy_pathspec(&revs.prune_data, &opt->pathspec);
Junio C Hamanobf979c02011-07-13 18:57:42 -0700537 revs.diffopt = *opt;
Johannes Schindelin204ce972008-01-20 15:19:56 +0000538
brian m. carlson944cffb2017-05-06 22:10:35 +0000539 if (diff_cache(&revs, tree_oid, NULL, 1))
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500540 exit(128);
Johannes Schindelin204ce972008-01-20 15:19:56 +0000541 return 0;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800542}
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100543
Brandon Williams02f2f562017-10-31 11:19:05 -0700544int index_differs_from(const char *def, const struct diff_flags *flags,
Nguyễn Thái Ngọc Duy018ec3c2016-10-24 17:42:21 +0700545 int ita_invisible_in_index)
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100546{
547 struct rev_info rev;
Junio C Hamano32962c92010-03-08 22:58:09 -0800548 struct setup_revision_opt opt;
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100549
550 init_revisions(&rev, NULL);
Junio C Hamano32962c92010-03-08 22:58:09 -0800551 memset(&opt, 0, sizeof(opt));
552 opt.def = def;
553 setup_revisions(0, NULL, &rev, &opt);
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700554 rev.diffopt.flags.quick = 1;
555 rev.diffopt.flags.exit_with_status = 1;
Brandon Williams02f2f562017-10-31 11:19:05 -0700556 if (flags)
557 diff_flags_or(&rev.diffopt.flags, flags);
Nguyễn Thái Ngọc Duy018ec3c2016-10-24 17:42:21 +0700558 rev.diffopt.ita_invisible_in_index = ita_invisible_in_index;
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100559 run_diff_index(&rev, 1);
Martin Ågrendcb572a2017-09-23 01:34:52 +0200560 object_array_clear(&rev.pending);
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700561 return (rev.diffopt.flags.has_changes != 0);
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100562}