blob: e7eaff9a68ccbcc692522c9956f0dae9af45f3f1 [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 Hamano6973dca2006-04-21 23:57:45 -070066 if (diff_unmerged_stage < 0)
67 diff_unmerged_stage = 2;
Junio C Hamanob4e1e4a2007-02-09 18:51:40 -080068 entries = active_nr;
Junio C Hamanof58dbf22008-03-30 17:30:08 -070069 symcache[0] = '\0';
Junio C Hamano6973dca2006-04-21 23:57:45 -070070 for (i = 0; i < entries; i++) {
Junio C Hamano427dcb42005-05-21 02:39:09 -070071 struct stat st;
Junio C Hamano6973dca2006-04-21 23:57:45 -070072 unsigned int oldmode, newmode;
73 struct cache_entry *ce = active_cache[i];
74 int changed;
Junio C Hamanof0c6b2a2005-05-27 15:56:38 -070075
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +010076 if (DIFF_OPT_TST(&revs->diffopt, QUIET) &&
77 DIFF_OPT_TST(&revs->diffopt, HAS_CHANGES))
Junio C Hamano822cac02007-03-14 11:12:51 -070078 break;
79
Junio C Hamano6973dca2006-04-21 23:57:45 -070080 if (!ce_path_match(ce, revs->prune_data))
Linus Torvalds8676eb42006-02-26 15:51:24 -080081 continue;
Linus Torvalds8676eb42006-02-26 15:51:24 -080082
Junio C Hamano6973dca2006-04-21 23:57:45 -070083 if (ce_stage(ce)) {
Florian Forsterb4b15502006-06-18 17:18:05 +020084 struct combine_diff_path *dpath;
Junio C Hamano6973dca2006-04-21 23:57:45 -070085 int num_compare_stages = 0;
Florian Forsterb4b15502006-06-18 17:18:05 +020086 size_t path_len;
Linus Torvalds8676eb42006-02-26 15:51:24 -080087
Florian Forsterb4b15502006-06-18 17:18:05 +020088 path_len = ce_namelen(ce);
89
Junio C Hamano4fc970c2007-02-25 22:24:47 -080090 dpath = xmalloc(combine_diff_path_size(5, path_len));
Florian Forsterb4b15502006-06-18 17:18:05 +020091 dpath->path = (char *) &(dpath->parent[5]);
92
93 dpath->next = NULL;
94 dpath->len = path_len;
95 memcpy(dpath->path, ce->name, path_len);
96 dpath->path[path_len] = '\0';
Junio C Hamanoa8e0d162006-08-23 13:57:23 -070097 hashclr(dpath->sha1);
Florian Forsterb4b15502006-06-18 17:18:05 +020098 memset(&(dpath->parent[0]), 0,
Junio C Hamano4fc970c2007-02-25 22:24:47 -080099 sizeof(struct combine_diff_parent)*5);
100
Linus Torvaldsc40641b2008-05-09 09:21:07 -0700101 changed = check_removed(ce, &st);
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700102 if (!changed)
103 dpath->mode = ce_mode_from_stat(ce, st.st_mode);
104 else {
105 if (changed < 0) {
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800106 perror(ce->name);
107 continue;
108 }
109 if (silent_on_removed)
110 continue;
111 }
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700112
Junio C Hamano6973dca2006-04-21 23:57:45 -0700113 while (i < entries) {
114 struct cache_entry *nce = active_cache[i];
115 int stage;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700116
Junio C Hamano6973dca2006-04-21 23:57:45 -0700117 if (strcmp(ce->name, nce->name))
118 break;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700119
Junio C Hamano6973dca2006-04-21 23:57:45 -0700120 /* Stage #2 (ours) is the first parent,
121 * stage #3 (theirs) is the second.
122 */
123 stage = ce_stage(nce);
124 if (2 <= stage) {
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800125 int mode = nce->ce_mode;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700126 num_compare_stages++;
Shawn Pearcee7024962006-08-23 02:49:00 -0400127 hashcpy(dpath->parent[stage-2].sha1, nce->sha1);
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800128 dpath->parent[stage-2].mode = ce_mode_from_stat(nce, mode);
Florian Forsterb4b15502006-06-18 17:18:05 +0200129 dpath->parent[stage-2].status =
Junio C Hamano6973dca2006-04-21 23:57:45 -0700130 DIFF_STATUS_MODIFIED;
131 }
Junio C Hamanocebff982006-03-25 23:12:17 -0800132
Junio C Hamano6973dca2006-04-21 23:57:45 -0700133 /* diff against the proper unmerged stage */
134 if (stage == diff_unmerged_stage)
135 ce = nce;
136 i++;
H. Peter Anvin1b1480f2005-11-21 14:17:12 -0800137 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700138 /*
139 * Compensate for loop update
140 */
141 i--;
Junio C Hamano0e3994f2005-06-03 01:37:54 -0700142
Junio C Hamano6973dca2006-04-21 23:57:45 -0700143 if (revs->combine_merges && num_compare_stages == 2) {
Florian Forsterb4b15502006-06-18 17:18:05 +0200144 show_combined_diff(dpath, 2,
Junio C Hamano6973dca2006-04-21 23:57:45 -0700145 revs->dense_combined_merges,
146 revs);
Florian Forsterb4b15502006-06-18 17:18:05 +0200147 free(dpath);
Junio C Hamano15d061b2005-05-27 15:55:55 -0700148 continue;
149 }
Florian Forsterb4b15502006-06-18 17:18:05 +0200150 free(dpath);
151 dpath = NULL;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700152
153 /*
154 * Show the diff for the 'ce' if we found the one
155 * from the desired stage.
Junio C Hamano25d5ea42005-05-24 01:10:48 -0700156 */
Junio C Hamanoe9c84092007-01-05 01:25:18 -0800157 diff_unmerge(&revs->diffopt, ce->name, 0, null_sha1);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700158 if (ce_stage(ce) != diff_unmerged_stage)
159 continue;
160 }
161
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800162 if (ce_uptodate(ce))
163 continue;
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700164
Linus Torvaldsc40641b2008-05-09 09:21:07 -0700165 changed = check_removed(ce, &st);
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700166 if (changed) {
167 if (changed < 0) {
Junio C Hamano6973dca2006-04-21 23:57:45 -0700168 perror(ce->name);
169 continue;
Junio C Hamano25d5ea42005-05-24 01:10:48 -0700170 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700171 if (silent_on_removed)
172 continue;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800173 diff_addremove(&revs->diffopt, '-', ce->ce_mode,
Dmitry Potapovfd55a192008-07-16 18:54:02 +0400174 ce->sha1, ce->name);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700175 continue;
Junio C Hamanobceafe72005-05-23 18:14:03 -0700176 }
Junio C Hamanofb63d7f2007-11-09 18:22:52 -0800177 changed = ce_match_stat(ce, &st, ce_option);
Junio C Hamano8fa29602008-03-30 12:39:25 -0700178 if (!changed) {
179 ce_mark_uptodate(ce);
180 if (!DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER))
181 continue;
182 }
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800183 oldmode = ce->ce_mode;
184 newmode = ce_mode_from_stat(ce, st.st_mode);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700185 diff_change(&revs->diffopt, oldmode, newmode,
186 ce->sha1, (changed ? null_sha1 : ce->sha1),
Dmitry Potapovfd55a192008-07-16 18:54:02 +0400187 ce->name);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700188
Junio C Hamanobceafe72005-05-23 18:14:03 -0700189 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700190 diffcore_std(&revs->diffopt);
191 diff_flush(&revs->diffopt);
192 return 0;
Junio C Hamanobceafe72005-05-23 18:14:03 -0700193}
194
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700195/*
196 * diff-index
197 */
198
Junio C Hamano948dd342008-03-30 17:29:48 -0700199struct oneway_unpack_data {
200 struct rev_info *revs;
201 char symcache[PATH_MAX];
202};
203
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700204/* A file entry went away or appeared */
205static void diff_index_show_file(struct rev_info *revs,
206 const char *prefix,
207 struct cache_entry *ce,
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800208 const unsigned char *sha1, unsigned int mode)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700209{
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800210 diff_addremove(&revs->diffopt, prefix[0], mode,
Dmitry Potapovfd55a192008-07-16 18:54:02 +0400211 sha1, ce->name);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700212}
213
214static int get_stat_data(struct cache_entry *ce,
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800215 const unsigned char **sha1p,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700216 unsigned int *modep,
Junio C Hamano948dd342008-03-30 17:29:48 -0700217 int cached, int match_missing,
218 struct oneway_unpack_data *cbdata)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700219{
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800220 const unsigned char *sha1 = ce->sha1;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700221 unsigned int mode = ce->ce_mode;
222
223 if (!cached) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700224 int changed;
225 struct stat st;
Linus Torvaldsc40641b2008-05-09 09:21:07 -0700226 changed = check_removed(ce, &st);
Junio C Hamano948dd342008-03-30 17:29:48 -0700227 if (changed < 0)
228 return -1;
229 else if (changed) {
230 if (match_missing) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700231 *sha1p = sha1;
232 *modep = mode;
233 return 0;
234 }
235 return -1;
236 }
237 changed = ce_match_stat(ce, &st, 0);
238 if (changed) {
Junio C Hamano185c9752007-02-16 22:43:48 -0800239 mode = ce_mode_from_stat(ce, st.st_mode);
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800240 sha1 = null_sha1;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700241 }
242 }
243
244 *sha1p = sha1;
245 *modep = mode;
246 return 0;
247}
248
Junio C Hamano948dd342008-03-30 17:29:48 -0700249static void show_new_file(struct oneway_unpack_data *cbdata,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700250 struct cache_entry *new,
251 int cached, int match_missing)
252{
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800253 const unsigned char *sha1;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700254 unsigned int mode;
Junio C Hamano948dd342008-03-30 17:29:48 -0700255 struct rev_info *revs = cbdata->revs;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700256
Junio C Hamano948dd342008-03-30 17:29:48 -0700257 /*
258 * New file in the index: it might actually be different in
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700259 * the working copy.
260 */
Junio C Hamano948dd342008-03-30 17:29:48 -0700261 if (get_stat_data(new, &sha1, &mode, cached, match_missing, cbdata) < 0)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700262 return;
263
264 diff_index_show_file(revs, "+", new, sha1, mode);
265}
266
Junio C Hamano948dd342008-03-30 17:29:48 -0700267static int show_modified(struct oneway_unpack_data *cbdata,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700268 struct cache_entry *old,
269 struct cache_entry *new,
270 int report_missing,
271 int cached, int match_missing)
272{
273 unsigned int mode, oldmode;
Junio C Hamanoc8c16f22008-03-02 00:57:26 -0800274 const unsigned char *sha1;
Junio C Hamano948dd342008-03-30 17:29:48 -0700275 struct rev_info *revs = cbdata->revs;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700276
Junio C Hamano948dd342008-03-30 17:29:48 -0700277 if (get_stat_data(new, &sha1, &mode, cached, match_missing, cbdata) < 0) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700278 if (report_missing)
279 diff_index_show_file(revs, "-", old,
280 old->sha1, old->ce_mode);
281 return -1;
282 }
283
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000284 if (revs->combine_merges && !cached &&
285 (hashcmp(sha1, old->sha1) || hashcmp(old->sha1, new->sha1))) {
286 struct combine_diff_path *p;
287 int pathlen = ce_namelen(new);
288
289 p = xmalloc(combine_diff_path_size(2, pathlen));
290 p->path = (char *) &p->parent[2];
291 p->next = NULL;
292 p->len = pathlen;
293 memcpy(p->path, new->name, pathlen);
294 p->path[pathlen] = 0;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800295 p->mode = mode;
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000296 hashclr(p->sha1);
297 memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent));
298 p->parent[0].status = DIFF_STATUS_MODIFIED;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800299 p->parent[0].mode = new->ce_mode;
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000300 hashcpy(p->parent[0].sha1, new->sha1);
301 p->parent[1].status = DIFF_STATUS_MODIFIED;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800302 p->parent[1].mode = old->ce_mode;
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000303 hashcpy(p->parent[1].sha1, old->sha1);
304 show_combined_diff(p, 2, revs->dense_combined_merges, revs);
305 free(p);
306 return 0;
307 }
308
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700309 oldmode = old->ce_mode;
David Rientjesa89fccd2006-08-17 11:54:57 -0700310 if (mode == oldmode && !hashcmp(sha1, old->sha1) &&
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100311 !DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER))
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700312 return 0;
313
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700314 diff_change(&revs->diffopt, oldmode, mode,
Dmitry Potapovfd55a192008-07-16 18:54:02 +0400315 old->sha1, sha1, old->name);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700316 return 0;
317}
318
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700319/*
320 * This turns all merge entries into "stage 3". That guarantees that
321 * when we read in the new tree (into "stage 1"), we won't lose sight
322 * of the fact that we had unmerged entries.
323 */
324static void mark_merge_entries(void)
325{
326 int i;
327 for (i = 0; i < active_nr; i++) {
328 struct cache_entry *ce = active_cache[i];
329 if (!ce_stage(ce))
330 continue;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800331 ce->ce_flags |= CE_STAGEMASK;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700332 }
333}
334
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800335/*
336 * This gets a mix of an existing index and a tree, one pathname entry
337 * at a time. The index entry may be a single stage-0 one, but it could
338 * also be multiple unmerged entries (in which case idx_pos/idx_nr will
339 * give you the position and number of entries in the index).
340 */
341static void do_oneway_diff(struct unpack_trees_options *o,
342 struct cache_entry *idx,
Linus Torvalds34110cd2008-03-06 18:12:28 -0800343 struct cache_entry *tree)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700344{
Junio C Hamano948dd342008-03-30 17:29:48 -0700345 struct oneway_unpack_data *cbdata = o->unpack_data;
346 struct rev_info *revs = cbdata->revs;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800347 int match_missing, cached;
Junio C Hamano5c21ac02006-04-22 03:58:04 -0700348
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700349 /*
Junio C Hamano5c21ac02006-04-22 03:58:04 -0700350 * Backward compatibility wart - "diff-index -m" does
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800351 * not mean "do not ignore merges", but "match_missing".
352 *
353 * But with the revision flag parsing, that's found in
354 * "!revs->ignore_merges".
Junio C Hamano5c21ac02006-04-22 03:58:04 -0700355 */
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800356 cached = o->index_only;
357 match_missing = !revs->ignore_merges;
358
359 if (cached && idx && ce_stage(idx)) {
360 if (tree)
361 diff_unmerge(&revs->diffopt, idx->name, idx->ce_mode, idx->sha1);
362 return;
363 }
364
365 /*
366 * Something added to the tree?
367 */
368 if (!tree) {
Junio C Hamano948dd342008-03-30 17:29:48 -0700369 show_new_file(cbdata, idx, cached, match_missing);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800370 return;
371 }
372
373 /*
374 * Something removed from the tree?
375 */
376 if (!idx) {
377 diff_index_show_file(revs, "-", tree, tree->sha1, tree->ce_mode);
378 return;
379 }
380
381 /* Show difference between old and new */
Junio C Hamano948dd342008-03-30 17:29:48 -0700382 show_modified(cbdata, tree, idx, 1, cached, match_missing);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800383}
384
Linus Torvalds20a16eb2008-03-10 23:51:13 -0700385static inline void skip_same_name(struct cache_entry *ce, struct unpack_trees_options *o)
386{
387 int len = ce_namelen(ce);
388 const struct index_state *index = o->src_index;
389
390 while (o->pos < index->cache_nr) {
391 struct cache_entry *next = index->cache[o->pos];
392 if (len != ce_namelen(next))
393 break;
394 if (memcmp(ce->name, next->name, len))
395 break;
396 o->pos++;
397 }
398}
399
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800400/*
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800401 * The unpack_trees() interface is designed for merging, so
402 * the different source entries are designed primarily for
403 * the source trees, with the old index being really mainly
404 * used for being replaced by the result.
405 *
406 * For diffing, the index is more important, and we only have a
407 * single tree.
408 *
409 * We're supposed to return how many index entries we want to skip.
410 *
411 * This wrapper makes it all more readable, and takes care of all
412 * the fairly complex unpack_trees() semantic requirements, including
413 * the skipping, the path matching, the type conflict cases etc.
414 */
Linus Torvalds34110cd2008-03-06 18:12:28 -0800415static int oneway_diff(struct cache_entry **src, struct unpack_trees_options *o)
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800416{
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800417 struct cache_entry *idx = src[0];
418 struct cache_entry *tree = src[1];
Junio C Hamano948dd342008-03-30 17:29:48 -0700419 struct oneway_unpack_data *cbdata = o->unpack_data;
420 struct rev_info *revs = cbdata->revs;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800421
Linus Torvalds20a16eb2008-03-10 23:51:13 -0700422 if (idx && ce_stage(idx))
423 skip_same_name(idx, o);
424
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800425 /*
426 * Unpack-trees generates a DF/conflict entry if
427 * there was a directory in the index and a tree
428 * in the tree. From a diff standpoint, that's a
429 * delete of the tree and a create of the file.
430 */
431 if (tree == o->df_conflict_entry)
432 tree = NULL;
433
434 if (ce_path_match(idx ? idx : tree, revs->prune_data))
Linus Torvalds34110cd2008-03-06 18:12:28 -0800435 do_oneway_diff(o, idx, tree);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800436
Linus Torvalds34110cd2008-03-06 18:12:28 -0800437 return 0;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800438}
439
440int run_diff_index(struct rev_info *revs, int cached)
441{
442 struct object *ent;
443 struct tree *tree;
444 const char *tree_name;
445 struct unpack_trees_options opts;
446 struct tree_desc t;
Junio C Hamano948dd342008-03-30 17:29:48 -0700447 struct oneway_unpack_data unpack_cb;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700448
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700449 mark_merge_entries();
450
Linus Torvalds1f1e8952006-06-19 17:42:35 -0700451 ent = revs->pending.objects[0].item;
452 tree_name = revs->pending.objects[0].name;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700453 tree = parse_tree_indirect(ent->sha1);
454 if (!tree)
455 return error("bad tree object %s", tree_name);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800456
Junio C Hamano948dd342008-03-30 17:29:48 -0700457 unpack_cb.revs = revs;
458 unpack_cb.symcache[0] = '\0';
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800459 memset(&opts, 0, sizeof(opts));
460 opts.head_idx = 1;
461 opts.index_only = cached;
462 opts.merge = 1;
463 opts.fn = oneway_diff;
Junio C Hamano948dd342008-03-30 17:29:48 -0700464 opts.unpack_data = &unpack_cb;
Linus Torvalds34110cd2008-03-06 18:12:28 -0800465 opts.src_index = &the_index;
466 opts.dst_index = NULL;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800467
468 init_tree_desc(&t, tree->buffer, tree->size);
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500469 if (unpack_trees(1, &t, &opts))
470 exit(128);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800471
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700472 diffcore_std(&revs->diffopt);
473 diff_flush(&revs->diffopt);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800474 return 0;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700475}
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800476
477int do_diff_cache(const unsigned char *tree_sha1, struct diff_options *opt)
478{
479 struct tree *tree;
480 struct rev_info revs;
481 int i;
482 struct cache_entry **dst;
483 struct cache_entry *last = NULL;
Johannes Schindelin204ce972008-01-20 15:19:56 +0000484 struct unpack_trees_options opts;
485 struct tree_desc t;
Junio C Hamano948dd342008-03-30 17:29:48 -0700486 struct oneway_unpack_data unpack_cb;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800487
488 /*
489 * This is used by git-blame to run diff-cache internally;
490 * it potentially needs to repeatedly run this, so we will
491 * start by removing the higher order entries the last round
492 * left behind.
493 */
494 dst = active_cache;
495 for (i = 0; i < active_nr; i++) {
496 struct cache_entry *ce = active_cache[i];
497 if (ce_stage(ce)) {
498 if (last && !strcmp(ce->name, last->name))
499 continue;
500 cache_tree_invalidate_path(active_cache_tree,
501 ce->name);
502 last = ce;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800503 ce->ce_flags |= CE_REMOVE;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800504 }
505 *dst++ = ce;
506 }
507 active_nr = dst - active_cache;
508
509 init_revisions(&revs, NULL);
510 revs.prune_data = opt->paths;
511 tree = parse_tree_indirect(tree_sha1);
512 if (!tree)
513 die("bad tree object %s", sha1_to_hex(tree_sha1));
Johannes Schindelin204ce972008-01-20 15:19:56 +0000514
Junio C Hamano948dd342008-03-30 17:29:48 -0700515 unpack_cb.revs = &revs;
516 unpack_cb.symcache[0] = '\0';
Johannes Schindelin204ce972008-01-20 15:19:56 +0000517 memset(&opts, 0, sizeof(opts));
518 opts.head_idx = 1;
519 opts.index_only = 1;
520 opts.merge = 1;
521 opts.fn = oneway_diff;
Junio C Hamano948dd342008-03-30 17:29:48 -0700522 opts.unpack_data = &unpack_cb;
Linus Torvalds34110cd2008-03-06 18:12:28 -0800523 opts.src_index = &the_index;
524 opts.dst_index = &the_index;
Johannes Schindelin204ce972008-01-20 15:19:56 +0000525
526 init_tree_desc(&t, tree->buffer, tree->size);
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500527 if (unpack_trees(1, &t, &opts))
528 exit(128);
Johannes Schindelin204ce972008-01-20 15:19:56 +0000529 return 0;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800530}