blob: ae96c64ca209f4df9008198e8a04b160bed618c7 [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"
Junio C Hamano427dcb42005-05-21 02:39:09 -070013
Junio C Hamanob46f0b62005-05-04 01:45:24 -070014/*
Junio C Hamano6973dca2006-04-21 23:57:45 -070015 * diff-files
Junio C Hamanob46f0b62005-05-04 01:45:24 -070016 */
Junio C Hamano6973dca2006-04-21 23:57:45 -070017
Junio C Hamano948dd342008-03-30 17:29:48 -070018/*
Junio C Hamano1392a372008-05-03 17:04:42 -070019 * Has the work tree entity been removed?
20 *
21 * Return 1 if it was removed from the work tree, 0 if an entity to be
22 * compared with the cache entry ce still exists (the latter includes
23 * the case where a directory that is not a submodule repository
24 * exists for ce that is a submodule -- it is a submodule that is not
25 * checked out). Return negative for an error.
Junio C Hamano948dd342008-03-30 17:29:48 -070026 */
Linus Torvaldsc40641b2008-05-09 09:21:07 -070027static int check_removed(const struct cache_entry *ce, struct stat *st)
Junio C Hamano948dd342008-03-30 17:29:48 -070028{
29 if (lstat(ce->name, st) < 0) {
30 if (errno != ENOENT && errno != ENOTDIR)
31 return -1;
32 return 1;
33 }
Linus Torvaldsc40641b2008-05-09 09:21:07 -070034 if (has_symlink_leading_path(ce_namelen(ce), ce->name))
Junio C Hamano948dd342008-03-30 17:29:48 -070035 return 1;
36 if (S_ISDIR(st->st_mode)) {
37 unsigned char sub[20];
Junio C Hamano1392a372008-05-03 17:04:42 -070038
39 /*
40 * If ce is already a gitlink, we can have a plain
41 * directory (i.e. the submodule is not checked out),
42 * or a checked out submodule. Either case this is not
43 * a case where something was removed from the work tree,
44 * so we will return 0.
45 *
46 * Otherwise, if the directory is not a submodule
47 * repository, that means ce which was a blob turned into
48 * a directory --- the blob was removed!
49 */
50 if (!S_ISGITLINK(ce->ce_mode) &&
51 resolve_gitlink_ref(ce->name, "HEAD", sub))
Junio C Hamano948dd342008-03-30 17:29:48 -070052 return 1;
53 }
54 return 0;
55}
Johannes Schindelind516c2d2007-02-22 21:50:10 +010056
Junio C Hamano4bd5b7d2007-11-10 00:15:03 -080057int run_diff_files(struct rev_info *revs, unsigned int option)
Junio C Hamanob46f0b62005-05-04 01:45:24 -070058{
Junio C Hamano6973dca2006-04-21 23:57:45 -070059 int entries, i;
60 int diff_unmerged_stage = revs->max_count;
Junio C Hamano4bd5b7d2007-11-10 00:15:03 -080061 int silent_on_removed = option & DIFF_SILENT_ON_REMOVED;
Junio C Hamanofb63d7f2007-11-09 18:22:52 -080062 unsigned ce_option = ((option & DIFF_RACY_IS_MODIFIED)
63 ? CE_MATCH_RACY_IS_DIRTY : 0);
Junio C Hamanof58dbf22008-03-30 17:30:08 -070064 char symcache[PATH_MAX];
Junio C Hamano5c975582005-05-19 03:32:35 -070065
Junio C Hamanoa5a818e2008-08-18 20:08:09 -070066 diff_set_mnemonic_prefix(&revs->diffopt, "i/", "w/");
67
Junio C Hamano6973dca2006-04-21 23:57:45 -070068 if (diff_unmerged_stage < 0)
69 diff_unmerged_stage = 2;
Junio C Hamanob4e1e4a2007-02-09 18:51:40 -080070 entries = active_nr;
Junio C Hamanof58dbf22008-03-30 17:30:08 -070071 symcache[0] = '\0';
Junio C Hamano6973dca2006-04-21 23:57:45 -070072 for (i = 0; i < entries; i++) {
Junio C Hamano427dcb42005-05-21 02:39:09 -070073 struct stat st;
Junio C Hamano6973dca2006-04-21 23:57:45 -070074 unsigned int oldmode, newmode;
75 struct cache_entry *ce = active_cache[i];
76 int changed;
Junio C Hamanof0c6b2a2005-05-27 15:56:38 -070077
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +010078 if (DIFF_OPT_TST(&revs->diffopt, QUIET) &&
79 DIFF_OPT_TST(&revs->diffopt, HAS_CHANGES))
Junio C Hamano822cac02007-03-14 11:12:51 -070080 break;
81
Junio C Hamano6973dca2006-04-21 23:57:45 -070082 if (!ce_path_match(ce, revs->prune_data))
Linus Torvalds8676eb42006-02-26 15:51:24 -080083 continue;
Linus Torvalds8676eb42006-02-26 15:51:24 -080084
Junio C Hamano6973dca2006-04-21 23:57:45 -070085 if (ce_stage(ce)) {
Florian Forsterb4b15502006-06-18 17:18:05 +020086 struct combine_diff_path *dpath;
Junio C Hamano6973dca2006-04-21 23:57:45 -070087 int num_compare_stages = 0;
Florian Forsterb4b15502006-06-18 17:18:05 +020088 size_t path_len;
Linus Torvalds8676eb42006-02-26 15:51:24 -080089
Florian Forsterb4b15502006-06-18 17:18:05 +020090 path_len = ce_namelen(ce);
91
Junio C Hamano4fc970c2007-02-25 22:24:47 -080092 dpath = xmalloc(combine_diff_path_size(5, path_len));
Florian Forsterb4b15502006-06-18 17:18:05 +020093 dpath->path = (char *) &(dpath->parent[5]);
94
95 dpath->next = NULL;
96 dpath->len = path_len;
97 memcpy(dpath->path, ce->name, path_len);
98 dpath->path[path_len] = '\0';
Junio C Hamanoa8e0d162006-08-23 13:57:23 -070099 hashclr(dpath->sha1);
Florian Forsterb4b15502006-06-18 17:18:05 +0200100 memset(&(dpath->parent[0]), 0,
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800101 sizeof(struct combine_diff_parent)*5);
102
Linus Torvaldsc40641b2008-05-09 09:21:07 -0700103 changed = check_removed(ce, &st);
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700104 if (!changed)
105 dpath->mode = ce_mode_from_stat(ce, st.st_mode);
106 else {
107 if (changed < 0) {
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800108 perror(ce->name);
109 continue;
110 }
111 if (silent_on_removed)
112 continue;
113 }
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700114
Junio C Hamano6973dca2006-04-21 23:57:45 -0700115 while (i < entries) {
116 struct cache_entry *nce = active_cache[i];
117 int stage;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700118
Junio C Hamano6973dca2006-04-21 23:57:45 -0700119 if (strcmp(ce->name, nce->name))
120 break;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700121
Junio C Hamano6973dca2006-04-21 23:57:45 -0700122 /* Stage #2 (ours) is the first parent,
123 * stage #3 (theirs) is the second.
124 */
125 stage = ce_stage(nce);
126 if (2 <= stage) {
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800127 int mode = nce->ce_mode;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700128 num_compare_stages++;
Shawn Pearcee7024962006-08-23 02:49:00 -0400129 hashcpy(dpath->parent[stage-2].sha1, nce->sha1);
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800130 dpath->parent[stage-2].mode = ce_mode_from_stat(nce, mode);
Florian Forsterb4b15502006-06-18 17:18:05 +0200131 dpath->parent[stage-2].status =
Junio C Hamano6973dca2006-04-21 23:57:45 -0700132 DIFF_STATUS_MODIFIED;
133 }
Junio C Hamanocebff982006-03-25 23:12:17 -0800134
Junio C Hamano6973dca2006-04-21 23:57:45 -0700135 /* diff against the proper unmerged stage */
136 if (stage == diff_unmerged_stage)
137 ce = nce;
138 i++;
H. Peter Anvin1b1480f2005-11-21 14:17:12 -0800139 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700140 /*
141 * Compensate for loop update
142 */
143 i--;
Junio C Hamano0e3994f2005-06-03 01:37:54 -0700144
Junio C Hamano6973dca2006-04-21 23:57:45 -0700145 if (revs->combine_merges && num_compare_stages == 2) {
Florian Forsterb4b15502006-06-18 17:18:05 +0200146 show_combined_diff(dpath, 2,
Junio C Hamano6973dca2006-04-21 23:57:45 -0700147 revs->dense_combined_merges,
148 revs);
Florian Forsterb4b15502006-06-18 17:18:05 +0200149 free(dpath);
Junio C Hamano15d061b2005-05-27 15:55:55 -0700150 continue;
151 }
Florian Forsterb4b15502006-06-18 17:18:05 +0200152 free(dpath);
153 dpath = NULL;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700154
155 /*
156 * Show the diff for the 'ce' if we found the one
157 * from the desired stage.
Junio C Hamano25d5ea42005-05-24 01:10:48 -0700158 */
Junio C Hamanoe9c84092007-01-05 01:25:18 -0800159 diff_unmerge(&revs->diffopt, ce->name, 0, null_sha1);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700160 if (ce_stage(ce) != diff_unmerged_stage)
161 continue;
162 }
163
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800164 if (ce_uptodate(ce))
165 continue;
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700166
Linus Torvaldsc40641b2008-05-09 09:21:07 -0700167 changed = check_removed(ce, &st);
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700168 if (changed) {
169 if (changed < 0) {
Junio C Hamano6973dca2006-04-21 23:57:45 -0700170 perror(ce->name);
171 continue;
Junio C Hamano25d5ea42005-05-24 01:10:48 -0700172 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700173 if (silent_on_removed)
174 continue;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800175 diff_addremove(&revs->diffopt, '-', ce->ce_mode,
Dmitry Potapovfd55a192008-07-16 18:54:02 +0400176 ce->sha1, ce->name);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700177 continue;
Junio C Hamanobceafe72005-05-23 18:14:03 -0700178 }
Junio C Hamanofb63d7f2007-11-09 18:22:52 -0800179 changed = ce_match_stat(ce, &st, ce_option);
Junio C Hamano8fa29602008-03-30 12:39:25 -0700180 if (!changed) {
181 ce_mark_uptodate(ce);
182 if (!DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER))
183 continue;
184 }
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800185 oldmode = ce->ce_mode;
186 newmode = ce_mode_from_stat(ce, st.st_mode);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700187 diff_change(&revs->diffopt, oldmode, newmode,
188 ce->sha1, (changed ? null_sha1 : ce->sha1),
Dmitry Potapovfd55a192008-07-16 18:54:02 +0400189 ce->name);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700190
Junio C Hamanobceafe72005-05-23 18:14:03 -0700191 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700192 diffcore_std(&revs->diffopt);
193 diff_flush(&revs->diffopt);
194 return 0;
Junio C Hamanobceafe72005-05-23 18:14:03 -0700195}
196
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700197/*
198 * diff-index
199 */
200
Junio C Hamano948dd342008-03-30 17:29:48 -0700201struct oneway_unpack_data {
202 struct rev_info *revs;
203 char symcache[PATH_MAX];
204};
205
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700206/* A file entry went away or appeared */
207static void diff_index_show_file(struct rev_info *revs,
208 const char *prefix,
209 struct cache_entry *ce,
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800210 const unsigned char *sha1, unsigned int mode)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700211{
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800212 diff_addremove(&revs->diffopt, prefix[0], mode,
Dmitry Potapovfd55a192008-07-16 18:54:02 +0400213 sha1, ce->name);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700214}
215
216static int get_stat_data(struct cache_entry *ce,
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800217 const unsigned char **sha1p,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700218 unsigned int *modep,
Junio C Hamano948dd342008-03-30 17:29:48 -0700219 int cached, int match_missing,
220 struct oneway_unpack_data *cbdata)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700221{
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800222 const unsigned char *sha1 = ce->sha1;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700223 unsigned int mode = ce->ce_mode;
224
225 if (!cached) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700226 int changed;
227 struct stat st;
Linus Torvaldsc40641b2008-05-09 09:21:07 -0700228 changed = check_removed(ce, &st);
Junio C Hamano948dd342008-03-30 17:29:48 -0700229 if (changed < 0)
230 return -1;
231 else if (changed) {
232 if (match_missing) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700233 *sha1p = sha1;
234 *modep = mode;
235 return 0;
236 }
237 return -1;
238 }
239 changed = ce_match_stat(ce, &st, 0);
240 if (changed) {
Junio C Hamano185c9752007-02-16 22:43:48 -0800241 mode = ce_mode_from_stat(ce, st.st_mode);
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800242 sha1 = null_sha1;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700243 }
244 }
245
246 *sha1p = sha1;
247 *modep = mode;
248 return 0;
249}
250
Junio C Hamano948dd342008-03-30 17:29:48 -0700251static void show_new_file(struct oneway_unpack_data *cbdata,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700252 struct cache_entry *new,
253 int cached, int match_missing)
254{
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800255 const unsigned char *sha1;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700256 unsigned int mode;
Junio C Hamano948dd342008-03-30 17:29:48 -0700257 struct rev_info *revs = cbdata->revs;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700258
Junio C Hamano948dd342008-03-30 17:29:48 -0700259 /*
260 * New file in the index: it might actually be different in
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700261 * the working copy.
262 */
Junio C Hamano948dd342008-03-30 17:29:48 -0700263 if (get_stat_data(new, &sha1, &mode, cached, match_missing, cbdata) < 0)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700264 return;
265
266 diff_index_show_file(revs, "+", new, sha1, mode);
267}
268
Junio C Hamano948dd342008-03-30 17:29:48 -0700269static int show_modified(struct oneway_unpack_data *cbdata,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700270 struct cache_entry *old,
271 struct cache_entry *new,
272 int report_missing,
273 int cached, int match_missing)
274{
275 unsigned int mode, oldmode;
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800276 const unsigned char *sha1;
Junio C Hamano948dd342008-03-30 17:29:48 -0700277 struct rev_info *revs = cbdata->revs;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700278
Junio C Hamano948dd342008-03-30 17:29:48 -0700279 if (get_stat_data(new, &sha1, &mode, cached, match_missing, cbdata) < 0) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700280 if (report_missing)
281 diff_index_show_file(revs, "-", old,
282 old->sha1, old->ce_mode);
283 return -1;
284 }
285
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000286 if (revs->combine_merges && !cached &&
287 (hashcmp(sha1, old->sha1) || hashcmp(old->sha1, new->sha1))) {
288 struct combine_diff_path *p;
289 int pathlen = ce_namelen(new);
290
291 p = xmalloc(combine_diff_path_size(2, pathlen));
292 p->path = (char *) &p->parent[2];
293 p->next = NULL;
294 p->len = pathlen;
295 memcpy(p->path, new->name, pathlen);
296 p->path[pathlen] = 0;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800297 p->mode = mode;
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000298 hashclr(p->sha1);
299 memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent));
300 p->parent[0].status = DIFF_STATUS_MODIFIED;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800301 p->parent[0].mode = new->ce_mode;
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000302 hashcpy(p->parent[0].sha1, new->sha1);
303 p->parent[1].status = DIFF_STATUS_MODIFIED;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800304 p->parent[1].mode = old->ce_mode;
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000305 hashcpy(p->parent[1].sha1, old->sha1);
306 show_combined_diff(p, 2, revs->dense_combined_merges, revs);
307 free(p);
308 return 0;
309 }
310
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700311 oldmode = old->ce_mode;
David Rientjesa89fccd2006-08-17 11:54:57 -0700312 if (mode == oldmode && !hashcmp(sha1, old->sha1) &&
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100313 !DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER))
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700314 return 0;
315
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700316 diff_change(&revs->diffopt, oldmode, mode,
Dmitry Potapovfd55a192008-07-16 18:54:02 +0400317 old->sha1, sha1, old->name);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700318 return 0;
319}
320
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700321/*
322 * This turns all merge entries into "stage 3". That guarantees that
323 * when we read in the new tree (into "stage 1"), we won't lose sight
324 * of the fact that we had unmerged entries.
325 */
326static void mark_merge_entries(void)
327{
328 int i;
329 for (i = 0; i < active_nr; i++) {
330 struct cache_entry *ce = active_cache[i];
331 if (!ce_stage(ce))
332 continue;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800333 ce->ce_flags |= CE_STAGEMASK;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700334 }
335}
336
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800337/*
338 * This gets a mix of an existing index and a tree, one pathname entry
339 * at a time. The index entry may be a single stage-0 one, but it could
340 * also be multiple unmerged entries (in which case idx_pos/idx_nr will
341 * give you the position and number of entries in the index).
342 */
343static void do_oneway_diff(struct unpack_trees_options *o,
344 struct cache_entry *idx,
Linus Torvalds34110cd2008-03-06 18:12:28 -0800345 struct cache_entry *tree)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700346{
Junio C Hamano948dd342008-03-30 17:29:48 -0700347 struct oneway_unpack_data *cbdata = o->unpack_data;
348 struct rev_info *revs = cbdata->revs;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800349 int match_missing, cached;
Junio C Hamano5c21ac02006-04-22 03:58:04 -0700350
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700351 /*
Junio C Hamano5c21ac02006-04-22 03:58:04 -0700352 * Backward compatibility wart - "diff-index -m" does
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800353 * not mean "do not ignore merges", but "match_missing".
354 *
355 * But with the revision flag parsing, that's found in
356 * "!revs->ignore_merges".
Junio C Hamano5c21ac02006-04-22 03:58:04 -0700357 */
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800358 cached = o->index_only;
359 match_missing = !revs->ignore_merges;
360
361 if (cached && idx && ce_stage(idx)) {
362 if (tree)
363 diff_unmerge(&revs->diffopt, idx->name, idx->ce_mode, idx->sha1);
364 return;
365 }
366
367 /*
368 * Something added to the tree?
369 */
370 if (!tree) {
Junio C Hamano948dd342008-03-30 17:29:48 -0700371 show_new_file(cbdata, idx, cached, match_missing);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800372 return;
373 }
374
375 /*
376 * Something removed from the tree?
377 */
378 if (!idx) {
379 diff_index_show_file(revs, "-", tree, tree->sha1, tree->ce_mode);
380 return;
381 }
382
383 /* Show difference between old and new */
Junio C Hamano948dd342008-03-30 17:29:48 -0700384 show_modified(cbdata, tree, idx, 1, cached, match_missing);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800385}
386
Linus Torvalds20a16eb2008-03-10 23:51:13 -0700387static inline void skip_same_name(struct cache_entry *ce, struct unpack_trees_options *o)
388{
389 int len = ce_namelen(ce);
390 const struct index_state *index = o->src_index;
391
392 while (o->pos < index->cache_nr) {
393 struct cache_entry *next = index->cache[o->pos];
394 if (len != ce_namelen(next))
395 break;
396 if (memcmp(ce->name, next->name, len))
397 break;
398 o->pos++;
399 }
400}
401
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800402/*
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800403 * The unpack_trees() interface is designed for merging, so
404 * the different source entries are designed primarily for
405 * the source trees, with the old index being really mainly
406 * used for being replaced by the result.
407 *
408 * For diffing, the index is more important, and we only have a
409 * single tree.
410 *
411 * We're supposed to return how many index entries we want to skip.
412 *
413 * This wrapper makes it all more readable, and takes care of all
414 * the fairly complex unpack_trees() semantic requirements, including
415 * the skipping, the path matching, the type conflict cases etc.
416 */
Linus Torvalds34110cd2008-03-06 18:12:28 -0800417static int oneway_diff(struct cache_entry **src, struct unpack_trees_options *o)
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800418{
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800419 struct cache_entry *idx = src[0];
420 struct cache_entry *tree = src[1];
Junio C Hamano948dd342008-03-30 17:29:48 -0700421 struct oneway_unpack_data *cbdata = o->unpack_data;
422 struct rev_info *revs = cbdata->revs;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800423
Linus Torvalds20a16eb2008-03-10 23:51:13 -0700424 if (idx && ce_stage(idx))
425 skip_same_name(idx, o);
426
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800427 /*
428 * Unpack-trees generates a DF/conflict entry if
429 * there was a directory in the index and a tree
430 * in the tree. From a diff standpoint, that's a
431 * delete of the tree and a create of the file.
432 */
433 if (tree == o->df_conflict_entry)
434 tree = NULL;
435
436 if (ce_path_match(idx ? idx : tree, revs->prune_data))
Linus Torvalds34110cd2008-03-06 18:12:28 -0800437 do_oneway_diff(o, idx, tree);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800438
Linus Torvalds34110cd2008-03-06 18:12:28 -0800439 return 0;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800440}
441
442int run_diff_index(struct rev_info *revs, int cached)
443{
444 struct object *ent;
445 struct tree *tree;
446 const char *tree_name;
447 struct unpack_trees_options opts;
448 struct tree_desc t;
Junio C Hamano948dd342008-03-30 17:29:48 -0700449 struct oneway_unpack_data unpack_cb;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700450
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700451 mark_merge_entries();
452
Linus Torvalds1f1e8952006-06-19 17:42:35 -0700453 ent = revs->pending.objects[0].item;
454 tree_name = revs->pending.objects[0].name;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700455 tree = parse_tree_indirect(ent->sha1);
456 if (!tree)
457 return error("bad tree object %s", tree_name);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800458
Junio C Hamano948dd342008-03-30 17:29:48 -0700459 unpack_cb.revs = revs;
460 unpack_cb.symcache[0] = '\0';
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800461 memset(&opts, 0, sizeof(opts));
462 opts.head_idx = 1;
463 opts.index_only = cached;
464 opts.merge = 1;
465 opts.fn = oneway_diff;
Junio C Hamano948dd342008-03-30 17:29:48 -0700466 opts.unpack_data = &unpack_cb;
Linus Torvalds34110cd2008-03-06 18:12:28 -0800467 opts.src_index = &the_index;
468 opts.dst_index = NULL;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800469
470 init_tree_desc(&t, tree->buffer, tree->size);
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500471 if (unpack_trees(1, &t, &opts))
472 exit(128);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800473
Junio C Hamanoa5a818e2008-08-18 20:08:09 -0700474 diff_set_mnemonic_prefix(&revs->diffopt, "c/", cached ? "i/" : "w/");
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700475 diffcore_std(&revs->diffopt);
476 diff_flush(&revs->diffopt);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800477 return 0;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700478}
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800479
480int do_diff_cache(const unsigned char *tree_sha1, struct diff_options *opt)
481{
482 struct tree *tree;
483 struct rev_info revs;
484 int i;
485 struct cache_entry **dst;
486 struct cache_entry *last = NULL;
Johannes Schindelin204ce972008-01-20 15:19:56 +0000487 struct unpack_trees_options opts;
488 struct tree_desc t;
Junio C Hamano948dd342008-03-30 17:29:48 -0700489 struct oneway_unpack_data unpack_cb;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800490
491 /*
492 * This is used by git-blame to run diff-cache internally;
493 * it potentially needs to repeatedly run this, so we will
494 * start by removing the higher order entries the last round
495 * left behind.
496 */
497 dst = active_cache;
498 for (i = 0; i < active_nr; i++) {
499 struct cache_entry *ce = active_cache[i];
500 if (ce_stage(ce)) {
501 if (last && !strcmp(ce->name, last->name))
502 continue;
503 cache_tree_invalidate_path(active_cache_tree,
504 ce->name);
505 last = ce;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800506 ce->ce_flags |= CE_REMOVE;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800507 }
508 *dst++ = ce;
509 }
510 active_nr = dst - active_cache;
511
512 init_revisions(&revs, NULL);
513 revs.prune_data = opt->paths;
514 tree = parse_tree_indirect(tree_sha1);
515 if (!tree)
516 die("bad tree object %s", sha1_to_hex(tree_sha1));
Johannes Schindelin204ce972008-01-20 15:19:56 +0000517
Junio C Hamano948dd342008-03-30 17:29:48 -0700518 unpack_cb.revs = &revs;
519 unpack_cb.symcache[0] = '\0';
Johannes Schindelin204ce972008-01-20 15:19:56 +0000520 memset(&opts, 0, sizeof(opts));
521 opts.head_idx = 1;
522 opts.index_only = 1;
523 opts.merge = 1;
524 opts.fn = oneway_diff;
Junio C Hamano948dd342008-03-30 17:29:48 -0700525 opts.unpack_data = &unpack_cb;
Linus Torvalds34110cd2008-03-06 18:12:28 -0800526 opts.src_index = &the_index;
527 opts.dst_index = &the_index;
Johannes Schindelin204ce972008-01-20 15:19:56 +0000528
529 init_tree_desc(&t, tree->buffer, tree->size);
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500530 if (unpack_trees(1, &t, &opts))
531 exit(128);
Johannes Schindelin204ce972008-01-20 15:19:56 +0000532 return 0;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800533}