blob: a7e0400987319f74275947736c02ee025e9f2eb5 [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"
Elijah Newrenf394e092023-03-21 06:25:54 +00009#include "gettext.h"
Elijah Newren41771fa2023-02-24 00:09:27 +000010#include "hex.h"
Junio C Hamano6973dca2006-04-21 23:57:45 -070011#include "revision.h"
Junio C Hamano1cfe7732007-01-30 01:11:08 -080012#include "cache-tree.h"
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -080013#include "unpack-trees.h"
Junio C Hamano948dd342008-03-30 17:29:48 -070014#include "refs.h"
Jens Lehmannee6fc512010-01-16 18:42:24 +010015#include "submodule.h"
Nguyễn Thái Ngọc Duy429bb402014-01-24 20:40:28 +070016#include "dir.h"
Ben Peart883e2482017-09-22 12:35:40 -040017#include "fsmonitor.h"
Denton Liu177a8302020-09-20 04:22:23 -070018#include "commit-reach.h"
Junio C Hamano427dcb42005-05-21 02:39:09 -070019
Junio C Hamanob46f0b62005-05-04 01:45:24 -070020/*
Junio C Hamano6973dca2006-04-21 23:57:45 -070021 * diff-files
Junio C Hamanob46f0b62005-05-04 01:45:24 -070022 */
Junio C Hamano6973dca2006-04-21 23:57:45 -070023
Junio C Hamano948dd342008-03-30 17:29:48 -070024/*
Junio C Hamano1392a372008-05-03 17:04:42 -070025 * Has the work tree entity been removed?
26 *
27 * Return 1 if it was removed from the work tree, 0 if an entity to be
28 * compared with the cache entry ce still exists (the latter includes
29 * the case where a directory that is not a submodule repository
30 * exists for ce that is a submodule -- it is a submodule that is not
31 * checked out). Return negative for an error.
Junio C Hamano948dd342008-03-30 17:29:48 -070032 */
Nipunn Koorapati0ec99492021-03-17 21:22:22 +000033static int check_removed(const struct index_state *istate, const struct cache_entry *ce, struct stat *st)
Junio C Hamano948dd342008-03-30 17:29:48 -070034{
Nipunn Koorapati0ec99492021-03-17 21:22:22 +000035 assert(is_fsmonitor_refreshed(istate));
Nipunn Koorapati4f3d6d02021-03-17 21:22:21 +000036 if (!(ce->ce_flags & CE_FSMONITOR_VALID) && lstat(ce->name, st) < 0) {
Junio C Hamanoc7054202017-05-30 09:23:33 +090037 if (!is_missing_file_error(errno))
Junio C Hamano948dd342008-03-30 17:29:48 -070038 return -1;
39 return 1;
40 }
Kjetil Barvik57199892009-02-09 21:54:06 +010041 if (has_symlink_leading_path(ce->name, ce_namelen(ce)))
Junio C Hamano948dd342008-03-30 17:29:48 -070042 return 1;
43 if (S_ISDIR(st->st_mode)) {
brian m. carlson1053fe82017-10-15 22:07:06 +000044 struct object_id sub;
Junio C Hamano1392a372008-05-03 17:04:42 -070045
46 /*
47 * If ce is already a gitlink, we can have a plain
48 * directory (i.e. the submodule is not checked out),
49 * or a checked out submodule. Either case this is not
50 * a case where something was removed from the work tree,
51 * so we will return 0.
52 *
53 * Otherwise, if the directory is not a submodule
54 * repository, that means ce which was a blob turned into
55 * a directory --- the blob was removed!
56 */
57 if (!S_ISGITLINK(ce->ce_mode) &&
brian m. carlsona98e6102017-10-15 22:07:07 +000058 resolve_gitlink_ref(ce->name, "HEAD", &sub))
Junio C Hamano948dd342008-03-30 17:29:48 -070059 return 1;
60 }
61 return 0;
62}
Johannes Schindelind516c2d2007-02-22 21:50:10 +010063
Jens Lehmannae6d5c12010-03-11 22:50:25 +010064/*
65 * Has a file changed or has a submodule new commits or a dirty work tree?
66 *
67 * Return 1 when changes are detected, 0 otherwise. If the DIRTY_SUBMODULES
68 * option is set, the caller does not only want to know if a submodule is
69 * modified at all but wants to know all the conditions that are met (new
70 * commits, untracked content and/or modified content).
71 */
72static int match_stat_with_submodule(struct diff_options *diffopt,
René Scharfeeb9ae4b2013-06-02 17:46:55 +020073 const struct cache_entry *ce,
74 struct stat *st, unsigned ce_option,
75 unsigned *dirty_submodule)
Jens Lehmannae6d5c12010-03-11 22:50:25 +010076{
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +020077 int changed = ie_match_stat(diffopt->repo->index, ce, st, ce_option);
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020078 if (S_ISGITLINK(ce->ce_mode)) {
Brandon Williams02f2f562017-10-31 11:19:05 -070079 struct diff_flags orig_flags = diffopt->flags;
Brandon Williams0d1e0e72017-10-31 11:19:11 -070080 if (!diffopt->flags.override_submodule_config)
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020081 set_diffopt_flags_from_submodule_config(diffopt, ce->name);
Brandon Williams0d1e0e72017-10-31 11:19:11 -070082 if (diffopt->flags.ignore_submodules)
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020083 changed = 0;
Brandon Williams0d1e0e72017-10-31 11:19:11 -070084 else if (!diffopt->flags.ignore_dirty_submodules &&
85 (!changed || diffopt->flags.dirty_submodules))
Brandon Williams3b69dae2017-10-31 11:19:08 -070086 *dirty_submodule = is_submodule_modified(ce->name,
Brandon Williams0d1e0e72017-10-31 11:19:11 -070087 diffopt->flags.ignore_untracked_in_submodules);
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020088 diffopt->flags = orig_flags;
Jens Lehmannae6d5c12010-03-11 22:50:25 +010089 }
90 return changed;
91}
92
Junio C Hamano4bd5b7d2007-11-10 00:15:03 -080093int run_diff_files(struct rev_info *revs, unsigned int option)
Junio C Hamanob46f0b62005-05-04 01:45:24 -070094{
Junio C Hamano6973dca2006-04-21 23:57:45 -070095 int entries, i;
96 int diff_unmerged_stage = revs->max_count;
Junio C Hamanofb63d7f2007-11-09 18:22:52 -080097 unsigned ce_option = ((option & DIFF_RACY_IS_MODIFIED)
98 ? CE_MATCH_RACY_IS_DIRTY : 0);
Nguyễn Thái Ngọc Duyca54d9b2018-01-27 19:27:56 +070099 uint64_t start = getnanotime();
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200100 struct index_state *istate = revs->diffopt.repo->index;
Junio C Hamano5c975582005-05-19 03:32:35 -0700101
Junio C Hamanoa5a818e2008-08-18 20:08:09 -0700102 diff_set_mnemonic_prefix(&revs->diffopt, "i/", "w/");
103
Alex Vandiverc9052a82020-10-20 13:40:58 +0000104 refresh_fsmonitor(istate);
105
Junio C Hamano6973dca2006-04-21 23:57:45 -0700106 if (diff_unmerged_stage < 0)
107 diff_unmerged_stage = 2;
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200108 entries = istate->cache_nr;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700109 for (i = 0; i < entries; i++) {
Junio C Hamano6973dca2006-04-21 23:57:45 -0700110 unsigned int oldmode, newmode;
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200111 struct cache_entry *ce = istate->cache[i];
Junio C Hamano6973dca2006-04-21 23:57:45 -0700112 int changed;
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100113 unsigned dirty_submodule = 0;
Brandon Williams55497b82017-05-30 10:30:48 -0700114 const struct object_id *old_oid, *new_oid;
Junio C Hamanof0c6b2a2005-05-27 15:56:38 -0700115
Junio C Hamano28b92642011-05-31 09:14:17 -0700116 if (diff_can_quit_early(&revs->diffopt))
Junio C Hamano822cac02007-03-14 11:12:51 -0700117 break;
118
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200119 if (!ce_path_match(istate, ce, &revs->prune_data, NULL))
Linus Torvalds8676eb42006-02-26 15:51:24 -0800120 continue;
Linus Torvalds8676eb42006-02-26 15:51:24 -0800121
Đoàn Trần Công Danh81746272021-08-22 15:49:08 +0700122 if (revs->diffopt.prefix &&
123 strncmp(ce->name, revs->diffopt.prefix, revs->diffopt.prefix_length))
124 continue;
125
Junio C Hamano6973dca2006-04-21 23:57:45 -0700126 if (ce_stage(ce)) {
Florian Forsterb4b15502006-06-18 17:18:05 +0200127 struct combine_diff_path *dpath;
Junio C Hamano095ce952011-04-22 16:19:27 -0700128 struct diff_filepair *pair;
129 unsigned int wt_mode = 0;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700130 int num_compare_stages = 0;
Florian Forsterb4b15502006-06-18 17:18:05 +0200131 size_t path_len;
Jeff King53048102014-05-14 18:13:06 -0400132 struct stat st;
Linus Torvalds8676eb42006-02-26 15:51:24 -0800133
Florian Forsterb4b15502006-06-18 17:18:05 +0200134 path_len = ce_namelen(ce);
135
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800136 dpath = xmalloc(combine_diff_path_size(5, path_len));
Florian Forsterb4b15502006-06-18 17:18:05 +0200137 dpath->path = (char *) &(dpath->parent[5]);
138
139 dpath->next = NULL;
Florian Forsterb4b15502006-06-18 17:18:05 +0200140 memcpy(dpath->path, ce->name, path_len);
141 dpath->path[path_len] = '\0';
brian m. carlson1ff57c12015-03-13 23:39:33 +0000142 oidclr(&dpath->oid);
Florian Forsterb4b15502006-06-18 17:18:05 +0200143 memset(&(dpath->parent[0]), 0,
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800144 sizeof(struct combine_diff_parent)*5);
145
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000146 changed = check_removed(istate, ce, &st);
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700147 if (!changed)
Junio C Hamano095ce952011-04-22 16:19:27 -0700148 wt_mode = ce_mode_from_stat(ce, st.st_mode);
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700149 else {
150 if (changed < 0) {
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800151 perror(ce->name);
152 continue;
153 }
Junio C Hamano095ce952011-04-22 16:19:27 -0700154 wt_mode = 0;
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800155 }
Junio C Hamano095ce952011-04-22 16:19:27 -0700156 dpath->mode = wt_mode;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700157
Junio C Hamano6973dca2006-04-21 23:57:45 -0700158 while (i < entries) {
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200159 struct cache_entry *nce = istate->cache[i];
Junio C Hamano6973dca2006-04-21 23:57:45 -0700160 int stage;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700161
Junio C Hamano6973dca2006-04-21 23:57:45 -0700162 if (strcmp(ce->name, nce->name))
163 break;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700164
Junio C Hamano6973dca2006-04-21 23:57:45 -0700165 /* Stage #2 (ours) is the first parent,
166 * stage #3 (theirs) is the second.
167 */
168 stage = ce_stage(nce);
169 if (2 <= stage) {
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800170 int mode = nce->ce_mode;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700171 num_compare_stages++;
brian m. carlson99d1a982016-09-05 20:07:52 +0000172 oidcpy(&dpath->parent[stage - 2].oid,
173 &nce->oid);
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800174 dpath->parent[stage-2].mode = ce_mode_from_stat(nce, mode);
Florian Forsterb4b15502006-06-18 17:18:05 +0200175 dpath->parent[stage-2].status =
Junio C Hamano6973dca2006-04-21 23:57:45 -0700176 DIFF_STATUS_MODIFIED;
177 }
Junio C Hamanocebff982006-03-25 23:12:17 -0800178
Junio C Hamano6973dca2006-04-21 23:57:45 -0700179 /* diff against the proper unmerged stage */
180 if (stage == diff_unmerged_stage)
181 ce = nce;
182 i++;
H. Peter Anvin1b1480f2005-11-21 14:17:12 -0800183 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700184 /*
185 * Compensate for loop update
186 */
187 i--;
Junio C Hamano0e3994f2005-06-03 01:37:54 -0700188
Junio C Hamano6973dca2006-04-21 23:57:45 -0700189 if (revs->combine_merges && num_compare_stages == 2) {
Sergey Organovd01141d2020-09-29 14:31:22 +0300190 show_combined_diff(dpath, 2, revs);
Florian Forsterb4b15502006-06-18 17:18:05 +0200191 free(dpath);
Junio C Hamano15d061b2005-05-27 15:55:55 -0700192 continue;
193 }
Ævar Arnfjörð Bjarmason6a83d902017-06-15 23:15:46 +0000194 FREE_AND_NULL(dpath);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700195
196 /*
197 * Show the diff for the 'ce' if we found the one
198 * from the desired stage.
Junio C Hamano25d5ea42005-05-24 01:10:48 -0700199 */
Junio C Hamano095ce952011-04-22 16:19:27 -0700200 pair = diff_unmerge(&revs->diffopt, ce->name);
201 if (wt_mode)
202 pair->two->mode = wt_mode;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700203 if (ce_stage(ce) != diff_unmerged_stage)
204 continue;
205 }
206
Junio C Hamano125fd982010-01-24 00:10:20 -0800207 if (ce_uptodate(ce) || ce_skip_worktree(ce))
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800208 continue;
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700209
Alex Vandiverc9052a82020-10-20 13:40:58 +0000210 /*
211 * When CE_VALID is set (via "update-index --assume-unchanged"
212 * or via adding paths while core.ignorestat is set to true),
213 * the user has promised that the working tree file for that
214 * path will not be modified. When CE_FSMONITOR_VALID is true,
215 * the fsmonitor knows that the path hasn't been modified since
216 * we refreshed the cached stat information. In either case,
217 * we do not have to stat to see if the path has been removed
218 * or modified.
219 */
220 if (ce->ce_flags & (CE_VALID | CE_FSMONITOR_VALID)) {
Jeff King53048102014-05-14 18:13:06 -0400221 changed = 0;
222 newmode = ce->ce_mode;
223 } else {
224 struct stat st;
225
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000226 changed = check_removed(istate, ce, &st);
Jeff King53048102014-05-14 18:13:06 -0400227 if (changed) {
228 if (changed < 0) {
229 perror(ce->name);
230 continue;
231 }
232 diff_addremove(&revs->diffopt, '-', ce->ce_mode,
Brandon Williamsc26022e2017-05-30 10:30:47 -0700233 &ce->oid,
brian m. carlson99d1a982016-09-05 20:07:52 +0000234 !is_null_oid(&ce->oid),
Jeff King53048102014-05-14 18:13:06 -0400235 ce->name, 0);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700236 continue;
Nguyễn Thái Ngọc Duy425a28e2016-10-24 17:42:19 +0700237 } else if (revs->diffopt.ita_invisible_in_index &&
238 ce_intent_to_add(ce)) {
Raymond E. Pascocb0dd222020-08-08 03:53:23 -0400239 newmode = ce_mode_from_stat(ce, st.st_mode);
240 diff_addremove(&revs->diffopt, '+', newmode,
brian m. carlson14228442021-04-26 01:02:56 +0000241 null_oid(), 0, ce->name, 0);
Nguyễn Thái Ngọc Duy425a28e2016-10-24 17:42:19 +0700242 continue;
Junio C Hamano25d5ea42005-05-24 01:10:48 -0700243 }
Jeff King53048102014-05-14 18:13:06 -0400244
245 changed = match_stat_with_submodule(&revs->diffopt, ce, &st,
246 ce_option, &dirty_submodule);
247 newmode = ce_mode_from_stat(ce, st.st_mode);
Junio C Hamanobceafe72005-05-23 18:14:03 -0700248 }
Jeff King53048102014-05-14 18:13:06 -0400249
Jens Lehmann85adbf22010-03-12 22:23:52 +0100250 if (!changed && !dirty_submodule) {
Junio C Hamano8fa29602008-03-30 12:39:25 -0700251 ce_mark_uptodate(ce);
Johannes Schindelinb5a81692019-05-24 05:23:48 -0700252 mark_fsmonitor_valid(istate, ce);
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700253 if (!revs->diffopt.flags.find_copies_harder)
Junio C Hamano8fa29602008-03-30 12:39:25 -0700254 continue;
255 }
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800256 oldmode = ce->ce_mode;
Brandon Williams55497b82017-05-30 10:30:48 -0700257 old_oid = &ce->oid;
brian m. carlson14228442021-04-26 01:02:56 +0000258 new_oid = changed ? null_oid() : &ce->oid;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700259 diff_change(&revs->diffopt, oldmode, newmode,
Brandon Williams94a00972017-05-30 10:30:49 -0700260 old_oid, new_oid,
Brandon Williams55497b82017-05-30 10:30:48 -0700261 !is_null_oid(old_oid),
262 !is_null_oid(new_oid),
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100263 ce->name, 0, dirty_submodule);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700264
Junio C Hamanobceafe72005-05-23 18:14:03 -0700265 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700266 diffcore_std(&revs->diffopt);
267 diff_flush(&revs->diffopt);
Nguyễn Thái Ngọc Duyca54d9b2018-01-27 19:27:56 +0700268 trace_performance_since(start, "diff-files");
Junio C Hamano6973dca2006-04-21 23:57:45 -0700269 return 0;
Junio C Hamanobceafe72005-05-23 18:14:03 -0700270}
271
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700272/*
273 * diff-index
274 */
275
276/* A file entry went away or appeared */
277static void diff_index_show_file(struct rev_info *revs,
278 const char *prefix,
René Scharfeeb9ae4b2013-06-02 17:46:55 +0200279 const struct cache_entry *ce,
Brandon Williamsfcf2cfb2017-05-30 10:30:46 -0700280 const struct object_id *oid, int oid_valid,
Jeff Kinge5450102012-07-28 11:03:01 -0400281 unsigned int mode,
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100282 unsigned dirty_submodule)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700283{
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800284 diff_addremove(&revs->diffopt, prefix[0], mode,
Brandon Williamsc26022e2017-05-30 10:30:47 -0700285 oid, oid_valid, ce->name, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700286}
287
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000288static int get_stat_data(const struct index_state *istate,
289 const struct cache_entry *ce,
Brandon Williams362d7652017-05-30 10:30:45 -0700290 const struct object_id **oidp,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700291 unsigned int *modep,
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100292 int cached, int match_missing,
Jens Lehmann4d344772010-01-23 17:37:26 +0100293 unsigned *dirty_submodule, struct diff_options *diffopt)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700294{
Brandon Williams362d7652017-05-30 10:30:45 -0700295 const struct object_id *oid = &ce->oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700296 unsigned int mode = ce->ce_mode;
297
Linus Torvalds658dd482009-05-09 14:57:30 -0700298 if (!cached && !ce_uptodate(ce)) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700299 int changed;
300 struct stat st;
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000301 changed = check_removed(istate, ce, &st);
Junio C Hamano948dd342008-03-30 17:29:48 -0700302 if (changed < 0)
303 return -1;
304 else if (changed) {
305 if (match_missing) {
Brandon Williams362d7652017-05-30 10:30:45 -0700306 *oidp = oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700307 *modep = mode;
308 return 0;
309 }
310 return -1;
311 }
Jens Lehmannae6d5c12010-03-11 22:50:25 +0100312 changed = match_stat_with_submodule(diffopt, ce, &st,
313 0, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700314 if (changed) {
Junio C Hamano185c9752007-02-16 22:43:48 -0800315 mode = ce_mode_from_stat(ce, st.st_mode);
brian m. carlson14228442021-04-26 01:02:56 +0000316 oid = null_oid();
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700317 }
318 }
319
Brandon Williams362d7652017-05-30 10:30:45 -0700320 *oidp = oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700321 *modep = mode;
322 return 0;
323}
324
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100325static void show_new_file(struct rev_info *revs,
Brandon Williamse36ede22018-02-14 10:59:38 -0800326 const struct cache_entry *new_file,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700327 int cached, int match_missing)
328{
Brandon Williams362d7652017-05-30 10:30:45 -0700329 const struct object_id *oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700330 unsigned int mode;
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100331 unsigned dirty_submodule = 0;
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000332 struct index_state *istate = revs->diffopt.repo->index;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700333
Derrick Stolee9eb00af2021-07-14 13:12:35 +0000334 if (new_file && S_ISSPARSEDIR(new_file->ce_mode)) {
335 diff_tree_oid(NULL, &new_file->oid, new_file->name, &revs->diffopt);
336 return;
337 }
338
Junio C Hamano948dd342008-03-30 17:29:48 -0700339 /*
340 * New file in the index: it might actually be different in
Carlos Martín Nietof7d650c2011-09-20 22:25:57 +0200341 * the working tree.
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700342 */
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000343 if (get_stat_data(istate, new_file, &oid, &mode, cached, match_missing,
Jens Lehmann4d344772010-01-23 17:37:26 +0100344 &dirty_submodule, &revs->diffopt) < 0)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700345 return;
346
Brandon Williamse36ede22018-02-14 10:59:38 -0800347 diff_index_show_file(revs, "+", new_file, oid, !is_null_oid(oid), mode, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700348}
349
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100350static int show_modified(struct rev_info *revs,
Brandon Williamse36ede22018-02-14 10:59:38 -0800351 const struct cache_entry *old_entry,
352 const struct cache_entry *new_entry,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700353 int report_missing,
354 int cached, int match_missing)
355{
356 unsigned int mode, oldmode;
Brandon Williams362d7652017-05-30 10:30:45 -0700357 const struct object_id *oid;
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100358 unsigned dirty_submodule = 0;
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000359 struct index_state *istate = revs->diffopt.repo->index;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700360
Derrick Stolee9eb00af2021-07-14 13:12:35 +0000361 assert(S_ISSPARSEDIR(old_entry->ce_mode) ==
362 S_ISSPARSEDIR(new_entry->ce_mode));
363
364 /*
365 * If both are sparse directory entries, then expand the
366 * modifications to the file level. If only one was a sparse
367 * directory, then they appear as an add and delete instead of
368 * a modification.
369 */
370 if (S_ISSPARSEDIR(new_entry->ce_mode)) {
371 diff_tree_oid(&old_entry->oid, &new_entry->oid, new_entry->name, &revs->diffopt);
372 return 0;
373 }
374
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000375 if (get_stat_data(istate, new_entry, &oid, &mode, cached, match_missing,
Jens Lehmann4d344772010-01-23 17:37:26 +0100376 &dirty_submodule, &revs->diffopt) < 0) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700377 if (report_missing)
Brandon Williamse36ede22018-02-14 10:59:38 -0800378 diff_index_show_file(revs, "-", old_entry,
379 &old_entry->oid, 1, old_entry->ce_mode,
brian m. carlson99d1a982016-09-05 20:07:52 +0000380 0);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700381 return -1;
382 }
383
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000384 if (revs->combine_merges && !cached &&
Jeff King9001dc22018-08-28 17:22:48 -0400385 (!oideq(oid, &old_entry->oid) || !oideq(&old_entry->oid, &new_entry->oid))) {
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000386 struct combine_diff_path *p;
Brandon Williamse36ede22018-02-14 10:59:38 -0800387 int pathlen = ce_namelen(new_entry);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000388
389 p = xmalloc(combine_diff_path_size(2, pathlen));
390 p->path = (char *) &p->parent[2];
391 p->next = NULL;
Brandon Williamse36ede22018-02-14 10:59:38 -0800392 memcpy(p->path, new_entry->name, pathlen);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000393 p->path[pathlen] = 0;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800394 p->mode = mode;
brian m. carlson1ff57c12015-03-13 23:39:33 +0000395 oidclr(&p->oid);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000396 memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent));
397 p->parent[0].status = DIFF_STATUS_MODIFIED;
Brandon Williamse36ede22018-02-14 10:59:38 -0800398 p->parent[0].mode = new_entry->ce_mode;
399 oidcpy(&p->parent[0].oid, &new_entry->oid);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000400 p->parent[1].status = DIFF_STATUS_MODIFIED;
Brandon Williamse36ede22018-02-14 10:59:38 -0800401 p->parent[1].mode = old_entry->ce_mode;
402 oidcpy(&p->parent[1].oid, &old_entry->oid);
Sergey Organovd01141d2020-09-29 14:31:22 +0300403 show_combined_diff(p, 2, revs);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000404 free(p);
405 return 0;
406 }
407
Brandon Williamse36ede22018-02-14 10:59:38 -0800408 oldmode = old_entry->ce_mode;
Jeff King4a7e27e2018-08-28 17:22:40 -0400409 if (mode == oldmode && oideq(oid, &old_entry->oid) && !dirty_submodule &&
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700410 !revs->diffopt.flags.find_copies_harder)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700411 return 0;
412
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700413 diff_change(&revs->diffopt, oldmode, mode,
Brandon Williamse36ede22018-02-14 10:59:38 -0800414 &old_entry->oid, oid, 1, !is_null_oid(oid),
415 old_entry->name, 0, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700416 return 0;
417}
418
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700419/*
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800420 * This gets a mix of an existing index and a tree, one pathname entry
421 * at a time. The index entry may be a single stage-0 one, but it could
422 * also be multiple unmerged entries (in which case idx_pos/idx_nr will
423 * give you the position and number of entries in the index).
424 */
425static void do_oneway_diff(struct unpack_trees_options *o,
René Scharfeeb9ae4b2013-06-02 17:46:55 +0200426 const struct cache_entry *idx,
427 const struct cache_entry *tree)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700428{
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100429 struct rev_info *revs = o->unpack_data;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800430 int match_missing, cached;
Junio C Hamano5c21ac02006-04-22 03:58:04 -0700431
Nguyễn Thái Ngọc Duyba4e3562018-05-26 14:08:43 +0200432 /*
433 * i-t-a entries do not actually exist in the index (if we're
434 * looking at its content)
435 */
436 if (o->index_only &&
437 revs->diffopt.ita_invisible_in_index &&
Nguyễn Thái Ngọc Duy425a28e2016-10-24 17:42:19 +0700438 idx && ce_intent_to_add(idx)) {
439 idx = NULL;
440 if (!tree)
441 return; /* nothing to diff.. */
442 }
443
Nguyễn Thái Ngọc Duy540e6942009-08-11 22:43:59 +0700444 /* if the entry is not checked out, don't examine work tree */
Nguyễn Thái Ngọc Duyb4d16902009-08-20 20:46:58 +0700445 cached = o->index_only ||
446 (idx && ((idx->ce_flags & CE_VALID) || ce_skip_worktree(idx)));
Sergey Organov572fc9a2020-08-31 23:14:22 +0300447
448 match_missing = revs->match_missing;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800449
450 if (cached && idx && ce_stage(idx)) {
Junio C Hamanofa7b2902011-04-22 16:05:58 -0700451 struct diff_filepair *pair;
452 pair = diff_unmerge(&revs->diffopt, idx->name);
Junio C Hamanoff00b682011-07-13 21:36:29 -0700453 if (tree)
Brandon Williamsf9704c22017-05-30 10:30:50 -0700454 fill_filespec(pair->one, &tree->oid, 1,
brian m. carlson99d1a982016-09-05 20:07:52 +0000455 tree->ce_mode);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800456 return;
457 }
458
459 /*
460 * Something added to the tree?
461 */
462 if (!tree) {
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100463 show_new_file(revs, idx, cached, match_missing);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800464 return;
465 }
466
467 /*
468 * Something removed from the tree?
469 */
470 if (!idx) {
Victoria Dye56d8a272022-08-08 19:07:50 +0000471 if (S_ISSPARSEDIR(tree->ce_mode)) {
472 diff_tree_oid(&tree->oid, NULL, tree->name, &revs->diffopt);
473 return;
474 }
475
Brandon Williamsfcf2cfb2017-05-30 10:30:46 -0700476 diff_index_show_file(revs, "-", tree, &tree->oid, 1,
brian m. carlson99d1a982016-09-05 20:07:52 +0000477 tree->ce_mode, 0);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800478 return;
479 }
480
481 /* Show difference between old and new */
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100482 show_modified(revs, tree, idx, 1, cached, match_missing);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800483}
484
485/*
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800486 * The unpack_trees() interface is designed for merging, so
487 * the different source entries are designed primarily for
488 * the source trees, with the old index being really mainly
489 * used for being replaced by the result.
490 *
491 * For diffing, the index is more important, and we only have a
492 * single tree.
493 *
Junio C Hamanoda8ba5e2009-09-17 22:12:17 -0700494 * We're supposed to advance o->pos to skip what we have already processed.
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800495 *
496 * This wrapper makes it all more readable, and takes care of all
497 * the fairly complex unpack_trees() semantic requirements, including
498 * the skipping, the path matching, the type conflict cases etc.
499 */
René Scharfe5828e832013-06-02 17:46:56 +0200500static int oneway_diff(const struct cache_entry * const *src,
501 struct unpack_trees_options *o)
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800502{
René Scharfeeb9ae4b2013-06-02 17:46:55 +0200503 const struct cache_entry *idx = src[0];
504 const struct cache_entry *tree = src[1];
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100505 struct rev_info *revs = o->unpack_data;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800506
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800507 /*
508 * Unpack-trees generates a DF/conflict entry if
509 * there was a directory in the index and a tree
510 * in the tree. From a diff standpoint, that's a
511 * delete of the tree and a create of the file.
512 */
513 if (tree == o->df_conflict_entry)
514 tree = NULL;
515
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200516 if (ce_path_match(revs->diffopt.repo->index,
517 idx ? idx : tree,
518 &revs->prune_data, NULL)) {
Linus Torvalds34110cd2008-03-06 18:12:28 -0800519 do_oneway_diff(o, idx, tree);
Junio C Hamanob4194822011-05-31 10:06:44 -0700520 if (diff_can_quit_early(&revs->diffopt)) {
521 o->exiting_early = 1;
522 return -1;
523 }
524 }
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800525
Linus Torvalds34110cd2008-03-06 18:12:28 -0800526 return 0;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800527}
528
Junio C Hamanobf979c02011-07-13 18:57:42 -0700529static int diff_cache(struct rev_info *revs,
brian m. carlson944cffb2017-05-06 22:10:35 +0000530 const struct object_id *tree_oid,
Junio C Hamanobf979c02011-07-13 18:57:42 -0700531 const char *tree_name,
532 int cached)
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800533{
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800534 struct tree *tree;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800535 struct tree_desc t;
Junio C Hamanobf979c02011-07-13 18:57:42 -0700536 struct unpack_trees_options opts;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700537
brian m. carlsona9dbc172017-05-06 22:10:37 +0000538 tree = parse_tree_indirect(tree_oid);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700539 if (!tree)
Junio C Hamanobf979c02011-07-13 18:57:42 -0700540 return error("bad tree object %s",
brian m. carlson944cffb2017-05-06 22:10:35 +0000541 tree_name ? tree_name : oid_to_hex(tree_oid));
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800542 memset(&opts, 0, sizeof(opts));
543 opts.head_idx = 1;
544 opts.index_only = cached;
Junio C Hamanoa0919ce2009-05-22 23:14:25 -0700545 opts.diff_index_cached = (cached &&
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700546 !revs->diffopt.flags.find_copies_harder);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800547 opts.merge = 1;
548 opts.fn = oneway_diff;
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100549 opts.unpack_data = revs;
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200550 opts.src_index = revs->diffopt.repo->index;
Linus Torvalds34110cd2008-03-06 18:12:28 -0800551 opts.dst_index = NULL;
Junio C Hamano2f88c192011-08-29 13:34:08 -0700552 opts.pathspec = &revs->diffopt.pathspec;
Nguyen Thai Ngoc Duy48382372012-01-15 17:03:27 +0700553 opts.pathspec->recursive = 1;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800554
555 init_tree_desc(&t, tree->buffer, tree->size);
Junio C Hamanobf979c02011-07-13 18:57:42 -0700556 return unpack_trees(1, &t, &opts);
557}
558
Denton Liu177a8302020-09-20 04:22:23 -0700559void diff_get_merge_base(const struct rev_info *revs, struct object_id *mb)
560{
561 int i;
562 struct commit *mb_child[2] = {0};
563 struct commit_list *merge_bases;
564
565 for (i = 0; i < revs->pending.nr; i++) {
566 struct object *obj = revs->pending.objects[i].item;
567 if (obj->flags)
568 die(_("--merge-base does not work with ranges"));
569 if (obj->type != OBJ_COMMIT)
570 die(_("--merge-base only works with commits"));
571 }
572
573 /*
574 * This check must go after the for loop above because A...B
575 * ranges produce three pending commits, resulting in a
576 * misleading error message.
577 */
578 if (revs->pending.nr < 1 || revs->pending.nr > 2)
579 BUG("unexpected revs->pending.nr: %d", revs->pending.nr);
580
581 for (i = 0; i < revs->pending.nr; i++)
582 mb_child[i] = lookup_commit_reference(the_repository, &revs->pending.objects[i].item->oid);
583 if (revs->pending.nr == 1) {
584 struct object_id oid;
585
586 if (get_oid("HEAD", &oid))
587 die(_("unable to get HEAD"));
588
589 mb_child[1] = lookup_commit_reference(the_repository, &oid);
590 }
591
592 merge_bases = repo_get_merge_bases(the_repository, mb_child[0], mb_child[1]);
593 if (!merge_bases)
594 die(_("no merge base found"));
595 if (merge_bases->next)
596 die(_("multiple merge bases found"));
597
598 oidcpy(mb, &merge_bases->item->object.oid);
599
600 free_commit_list(merge_bases);
601}
602
Denton Liu4c3fe822020-09-20 04:22:22 -0700603int run_diff_index(struct rev_info *revs, unsigned int option)
Junio C Hamanobf979c02011-07-13 18:57:42 -0700604{
605 struct object_array_entry *ent;
Denton Liu4c3fe822020-09-20 04:22:22 -0700606 int cached = !!(option & DIFF_INDEX_CACHED);
Denton Liu0f5a1d42020-09-20 04:22:25 -0700607 int merge_base = !!(option & DIFF_INDEX_MERGE_BASE);
608 struct object_id oid;
609 const char *name;
610 char merge_base_hex[GIT_MAX_HEXSZ + 1];
Nipunn Koorapati4f3d6d02021-03-17 21:22:21 +0000611 struct index_state *istate = revs->diffopt.repo->index;
Junio C Hamanobf979c02011-07-13 18:57:42 -0700612
Jeff King3506dc92018-07-11 10:14:06 -0400613 if (revs->pending.nr != 1)
614 BUG("run_diff_index must be passed exactly one tree");
615
Nguyễn Thái Ngọc Duyc46c4062018-08-18 16:41:22 +0200616 trace_performance_enter();
Junio C Hamanobf979c02011-07-13 18:57:42 -0700617 ent = revs->pending.objects;
Denton Liu0f5a1d42020-09-20 04:22:25 -0700618
Nipunn Koorapati4f3d6d02021-03-17 21:22:21 +0000619 refresh_fsmonitor(istate);
620
Denton Liu0f5a1d42020-09-20 04:22:25 -0700621 if (merge_base) {
622 diff_get_merge_base(revs, &oid);
623 name = oid_to_hex_r(merge_base_hex, &oid);
624 } else {
625 oidcpy(&oid, &ent->item->oid);
626 name = ent->name;
627 }
628
629 if (diff_cache(revs, &oid, name, cached))
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500630 exit(128);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800631
Junio C Hamanoa5a818e2008-08-18 20:08:09 -0700632 diff_set_mnemonic_prefix(&revs->diffopt, "c/", cached ? "i/" : "w/");
Jeff King784c0da2019-02-14 00:48:03 -0500633 diffcore_fix_diff_index();
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700634 diffcore_std(&revs->diffopt);
635 diff_flush(&revs->diffopt);
Nguyễn Thái Ngọc Duyc46c4062018-08-18 16:41:22 +0200636 trace_performance_leave("diff-index");
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800637 return 0;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700638}
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800639
brian m. carlson944cffb2017-05-06 22:10:35 +0000640int do_diff_cache(const struct object_id *tree_oid, struct diff_options *opt)
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800641{
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800642 struct rev_info revs;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800643
Nguyễn Thái Ngọc Duyffc00a42018-11-10 06:49:04 +0100644 repo_init_revisions(opt->repo, &revs, NULL);
Nguyễn Thái Ngọc Duy9a087272013-07-14 15:35:59 +0700645 copy_pathspec(&revs.prune_data, &opt->pathspec);
René Scharfed44e5262020-11-14 19:37:03 +0100646 diff_setup_done(&revs.diffopt);
Junio C Hamanobf979c02011-07-13 18:57:42 -0700647 revs.diffopt = *opt;
Johannes Schindelin204ce972008-01-20 15:19:56 +0000648
brian m. carlson944cffb2017-05-06 22:10:35 +0000649 if (diff_cache(&revs, tree_oid, NULL, 1))
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500650 exit(128);
Ævar Arnfjörð Bjarmasonf0cb6b82022-04-13 22:01:44 +0200651 release_revisions(&revs);
Johannes Schindelin204ce972008-01-20 15:19:56 +0000652 return 0;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800653}
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100654
Nguyễn Thái Ngọc Duyffc00a42018-11-10 06:49:04 +0100655int index_differs_from(struct repository *r,
656 const char *def, const struct diff_flags *flags,
Nguyễn Thái Ngọc Duy018ec3c2016-10-24 17:42:21 +0700657 int ita_invisible_in_index)
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100658{
659 struct rev_info rev;
Junio C Hamano32962c92010-03-08 22:58:09 -0800660 struct setup_revision_opt opt;
Ævar Arnfjörð Bjarmason54c8a7c2022-04-14 07:56:40 +0200661 unsigned has_changes;
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100662
Nguyễn Thái Ngọc Duyffc00a42018-11-10 06:49:04 +0100663 repo_init_revisions(r, &rev, NULL);
Junio C Hamano32962c92010-03-08 22:58:09 -0800664 memset(&opt, 0, sizeof(opt));
665 opt.def = def;
666 setup_revisions(0, NULL, &rev, &opt);
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700667 rev.diffopt.flags.quick = 1;
668 rev.diffopt.flags.exit_with_status = 1;
Brandon Williams02f2f562017-10-31 11:19:05 -0700669 if (flags)
670 diff_flags_or(&rev.diffopt.flags, flags);
Nguyễn Thái Ngọc Duy018ec3c2016-10-24 17:42:21 +0700671 rev.diffopt.ita_invisible_in_index = ita_invisible_in_index;
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100672 run_diff_index(&rev, 1);
Ævar Arnfjörð Bjarmason54c8a7c2022-04-14 07:56:40 +0200673 has_changes = rev.diffopt.flags.has_changes;
Ævar Arnfjörð Bjarmason1878b5e2022-04-13 22:01:35 +0200674 release_revisions(&rev);
Ævar Arnfjörð Bjarmason54c8a7c2022-04-14 07:56:40 +0200675 return (has_changes != 0);
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100676}
Eric Sunshinecdffbdc2020-09-08 03:16:08 -0400677
Jeff King61bdc7c2022-12-13 06:13:48 -0500678static struct strbuf *idiff_prefix_cb(struct diff_options *opt UNUSED, void *data)
Eric Sunshinecdffbdc2020-09-08 03:16:08 -0400679{
680 return data;
681}
682
Eric Sunshine72a72392020-09-08 03:16:09 -0400683void show_interdiff(const struct object_id *oid1, const struct object_id *oid2,
684 int indent, struct diff_options *diffopt)
Eric Sunshinecdffbdc2020-09-08 03:16:08 -0400685{
686 struct diff_options opts;
687 struct strbuf prefix = STRBUF_INIT;
688
Eric Sunshine72a72392020-09-08 03:16:09 -0400689 memcpy(&opts, diffopt, sizeof(opts));
Eric Sunshinecdffbdc2020-09-08 03:16:08 -0400690 opts.output_format = DIFF_FORMAT_PATCH;
691 opts.output_prefix = idiff_prefix_cb;
692 strbuf_addchars(&prefix, ' ', indent);
693 opts.output_prefix_data = &prefix;
694 diff_setup_done(&opts);
695
Eric Sunshine72a72392020-09-08 03:16:09 -0400696 diff_tree_oid(oid1, oid2, "", &opts);
Eric Sunshinecdffbdc2020-09-08 03:16:08 -0400697 diffcore_std(&opts);
698 diff_flush(&opts);
699
700 strbuf_release(&prefix);
701}