4 static int cached_only
= 0;
5 static int diff_output_format
= DIFF_FORMAT_HUMAN
;
6 static int match_nonexisting
= 0;
7 static int detect_rename
= 0;
8 static int find_copies_harder
= 0;
9 static int diff_setup_opt
= 0;
10 static int diff_score_opt
= 0;
11 static const char *pickaxe
= NULL
;
12 static int pickaxe_opts
= 0;
13 static int diff_break_opt
= -1;
14 static const char *orderfile
= NULL
;
15 static const char *diff_filter
= NULL
;
17 /* A file entry went away or appeared */
18 static void show_file(const char *prefix
, struct cache_entry
*ce
, unsigned char *sha1
, unsigned int mode
)
20 diff_addremove(prefix
[0], ntohl(mode
), sha1
, ce
->name
, NULL
);
23 static int get_stat_data(struct cache_entry
*ce
, unsigned char **sha1p
, unsigned int *modep
)
25 unsigned char *sha1
= ce
->sha1
;
26 unsigned int mode
= ce
->ce_mode
;
29 static unsigned char no_sha1
[20];
32 if (lstat(ce
->name
, &st
) < 0) {
33 if (errno
== ENOENT
&& match_nonexisting
) {
40 changed
= ce_match_stat(ce
, &st
);
42 mode
= create_ce_mode(st
.st_mode
);
52 static void show_new_file(struct cache_entry
*new)
57 /* New file in the index: it might actually be different in the working copy */
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) &&
83 oldmode
= ntohl(oldmode
);
85 diff_change(oldmode
, mode
,
86 old
->sha1
, sha1
, old
->name
, NULL
);
90 static int diff_cache(struct cache_entry
**ac
, int entries
)
93 struct cache_entry
*ce
= *ac
;
94 int same
= (entries
> 1) && ce_same_name(ce
, ac
[1]);
96 switch (ce_stage(ce
)) {
98 /* No stage 1 entry? That means it's a new file */
103 /* Show difference between old and new */
104 show_modified(ac
[1], ce
, 1);
107 /* No stage 3 (merge) entry? That means it's been deleted */
109 show_file("-", ce
, ce
->sha1
, ce
->ce_mode
);
112 /* We come here with ce pointing at stage 1
113 * (original tree) and ac[1] pointing at stage
114 * 3 (unmerged). show-modified with
115 * report-mising set to false does not say the
116 * file is deleted but reports true if work
117 * tree does not have it, in which case we
118 * fall through to report the unmerged state.
119 * Otherwise, we show the differences between
120 * the original tree and the work tree.
122 if (!cached_only
&& !show_modified(ce
, ac
[1], 0))
126 diff_unmerge(ce
->name
);
130 die("impossible cache entry stage");
134 * Ignore all the different stages for this file,
135 * we've handled the relevant cases now.
140 } while (entries
&& ce_same_name(ce
, ac
[0]));
146 * This turns all merge entries into "stage 3". That guarantees that
147 * when we read in the new tree (into "stage 1"), we won't lose sight
148 * of the fact that we had unmerged entries.
150 static void mark_merge_entries(void)
153 for (i
= 0; i
< active_nr
; i
++) {
154 struct cache_entry
*ce
= active_cache
[i
];
157 ce
->ce_flags
|= htons(CE_STAGEMASK
);
161 static char *diff_cache_usage
=
162 "git-diff-cache [-p] [-r] [-z] [-m] [--cached] [-R] [-B] [-M] [-C] [--find-copies-harder] [-O<orderfile>] [-S<string>] [--pickaxe-all] <tree-ish> [<path>...]";
164 int main(int argc
, const char **argv
)
166 const char *tree_name
= NULL
;
167 unsigned char sha1
[20];
168 const char **pathspec
= NULL
;
172 int allow_options
= 1;
176 for (i
= 1; i
< argc
; i
++) {
177 const char *arg
= argv
[i
];
179 if (!allow_options
|| *arg
!= '-') {
188 if (!strcmp(arg
, "--")) {
192 if (!strcmp(arg
, "-r")) {
193 /* We accept the -r flag just to look like git-diff-tree */
196 if (!strcmp(arg
, "-p")) {
197 diff_output_format
= DIFF_FORMAT_PATCH
;
200 if (!strncmp(arg
, "-B", 2)) {
201 if ((diff_break_opt
= diff_scoreopt_parse(arg
)) == -1)
202 usage(diff_cache_usage
);
205 if (!strncmp(arg
, "-M", 2)) {
206 detect_rename
= DIFF_DETECT_RENAME
;
207 if ((diff_score_opt
= diff_scoreopt_parse(arg
)) == -1)
208 usage(diff_cache_usage
);
211 if (!strncmp(arg
, "-C", 2)) {
212 detect_rename
= DIFF_DETECT_COPY
;
213 if ((diff_score_opt
= diff_scoreopt_parse(arg
)) == -1)
214 usage(diff_cache_usage
);
217 if (!strcmp(arg
, "--find-copies-harder")) {
218 find_copies_harder
= 1;
221 if (!strcmp(arg
, "-z")) {
222 diff_output_format
= DIFF_FORMAT_MACHINE
;
225 if (!strcmp(arg
, "-R")) {
226 diff_setup_opt
|= DIFF_SETUP_REVERSE
;
229 if (!strncmp(arg
, "-S", 2)) {
233 if (!strncmp(arg
, "--diff-filter=", 14)) {
234 diff_filter
= arg
+ 14;
237 if (!strncmp(arg
, "-O", 2)) {
241 if (!strcmp(arg
, "--pickaxe-all")) {
242 pickaxe_opts
= DIFF_PICKAXE_ALL
;
245 if (!strcmp(arg
, "-m")) {
246 match_nonexisting
= 1;
249 if (!strcmp(arg
, "--cached")) {
253 usage(diff_cache_usage
);
256 if (find_copies_harder
&& detect_rename
!= DIFF_DETECT_COPY
)
257 usage(diff_cache_usage
);
259 if (!tree_name
|| get_sha1(tree_name
, sha1
))
260 usage(diff_cache_usage
);
262 /* The rest is for paths restriction. */
263 diff_setup(diff_setup_opt
);
265 mark_merge_entries();
267 tree
= read_object_with_reference(sha1
, "tree", &size
, NULL
);
269 die("bad tree object %s", tree_name
);
270 if (read_tree(tree
, size
, 1))
271 die("unable to read tree object %s", tree_name
);
273 ret
= diff_cache(active_cache
, active_nr
);
275 diffcore_std(pathspec
? : NULL
,
276 detect_rename
, diff_score_opt
,
277 pickaxe
, pickaxe_opts
,
279 orderfile
, diff_filter
);
280 diff_flush(diff_output_format
);