5 static int cached_only = 0;
6 static int match_nonexisting = 0;
7 static struct diff_options diff_options;
9 /* A file entry went away or appeared */
10 static void show_file(const char *prefix,
11 struct cache_entry *ce,
12 unsigned char *sha1, unsigned int mode)
14 diff_addremove(&diff_options, prefix[0], ntohl(mode),
15 sha1, ce->name, NULL);
18 static int get_stat_data(struct cache_entry *ce,
19 unsigned char ** sha1p, unsigned int *modep)
21 unsigned char *sha1 = ce->sha1;
22 unsigned int mode = ce->ce_mode;
25 static unsigned char no_sha1[20];
28 if (lstat(ce->name, &st) < 0) {
29 if (errno == ENOENT && match_nonexisting) {
36 changed = ce_match_stat(ce, &st, 0);
38 mode = create_ce_mode(st.st_mode);
39 if (!trust_executable_bit && S_ISREG(st.st_mode))
50 static void show_new_file(struct cache_entry *new)
55 /* New file in the index: it might actually be different in
58 if (get_stat_data(new, &sha1, &mode) < 0)
61 show_file("+", new, sha1, mode);
64 static int show_modified(struct cache_entry *old,
65 struct cache_entry *new,
68 unsigned int mode, oldmode;
71 if (get_stat_data(new, &sha1, &mode) < 0) {
73 show_file("-", old, old->sha1, old->ce_mode);
77 oldmode = old->ce_mode;
78 if (mode == oldmode && !memcmp(sha1, old->sha1, 20) &&
79 !diff_options.find_copies_harder)
83 oldmode = ntohl(oldmode);
85 diff_change(&diff_options, oldmode, mode,
86 old->sha1, sha1, old->name, NULL);
90 static int diff_cache(struct cache_entry **ac, int entries, const char **pathspec)
93 struct cache_entry *ce = *ac;
94 int same = (entries > 1) && ce_same_name(ce, ac[1]);
96 if (!ce_path_match(ce, pathspec))
99 switch (ce_stage(ce)) {
101 /* No stage 1 entry? That means it's a new file */
106 /* Show difference between old and new */
107 show_modified(ac[1], ce, 1);
110 /* No stage 3 (merge) entry? That means it's been deleted */
112 show_file("-", ce, ce->sha1, ce->ce_mode);
115 /* We come here with ce pointing at stage 1
116 * (original tree) and ac[1] pointing at stage
117 * 3 (unmerged). show-modified with
118 * report-missing set to false does not say the
119 * file is deleted but reports true if work
120 * tree does not have it, in which case we
121 * fall through to report the unmerged state.
122 * Otherwise, we show the differences between
123 * the original tree and the work tree.
125 if (!cached_only && !show_modified(ce, ac[1], 0))
129 diff_unmerge(&diff_options, ce->name);
133 die("impossible cache entry stage");
138 * Ignore all the different stages for this file,
139 * we've handled the relevant cases now.
144 } while (entries && ce_same_name(ce, ac[0]));
150 * This turns all merge entries into "stage 3". That guarantees that
151 * when we read in the new tree (into "stage 1"), we won't lose sight
152 * of the fact that we had unmerged entries.
154 static void mark_merge_entries(void)
157 for (i = 0; i < active_nr; i++) {
158 struct cache_entry *ce = active_cache[i];
161 ce->ce_flags |= htons(CE_STAGEMASK);
165 static const char diff_cache_usage[] =
166 "git-diff-index [-m] [--cached] "
167 "[<common diff options>] <tree-ish> [<path>...]"
168 COMMON_DIFF_OPTIONS_HELP;
170 int main(int argc, const char **argv)
172 const char *tree_name = NULL;
173 unsigned char sha1[20];
174 const char *prefix = setup_git_directory();
175 const char **pathspec = NULL;
178 int allow_options = 1;
181 git_config(git_diff_config);
182 diff_setup(&diff_options);
183 for (i = 1; i < argc; i++) {
184 const char *arg = argv[i];
187 if (!allow_options || *arg != '-') {
194 if (!strcmp(arg, "--")) {
198 if (!strcmp(arg, "-r")) {
199 /* We accept the -r flag just to look like git-diff-tree */
202 if (!strcmp(arg, "--cc"))
204 * I _think_ "diff-index --cached HEAD" with an
205 * unmerged index could show something else
206 * later, but pretend --cc is the same as -p for
207 * now. "git diff" uses --cc by default.
209 argv[i] = arg = "-p";
210 diff_opt_cnt = diff_opt_parse(&diff_options, argv + i,
212 if (diff_opt_cnt < 0)
213 usage(diff_cache_usage);
214 else if (diff_opt_cnt) {
215 i += diff_opt_cnt - 1;
219 if (!strcmp(arg, "-m")) {
220 match_nonexisting = 1;
223 if (!strcmp(arg, "--cached")) {
227 usage(diff_cache_usage);
230 pathspec = get_pathspec(prefix, argv + i);
232 if (diff_setup_done(&diff_options) < 0)
233 usage(diff_cache_usage);
235 if (!tree_name || get_sha1(tree_name, sha1))
236 usage(diff_cache_usage);
240 mark_merge_entries();
242 tree = parse_tree_indirect(sha1);
244 die("bad tree object %s", tree_name);
245 if (read_tree(tree, 1, pathspec))
246 die("unable to read tree object %s", tree_name);
248 ret = diff_cache(active_cache, active_nr, pathspec);
250 diffcore_std(&diff_options);
251 diff_flush(&diff_options);