2 * Copyright (C) 2005 Junio C Hamano
10 #include "cache-tree.h"
11 #include "path-list.h"
17 static int read_directory(const char *path
, struct path_list
*list
)
22 if (!(dir
= opendir(path
)))
23 return error("Could not open directory %s", path
);
25 while ((e
= readdir(dir
)))
26 if (strcmp(".", e
->d_name
) && strcmp("..", e
->d_name
))
27 path_list_insert(xstrdup(e
->d_name
), list
);
33 static int queue_diff(struct diff_options
*o
,
34 const char *name1
, const char *name2
)
37 int mode1
= 0, mode2
= 0;
41 return error("Could not access '%s'", name1
);
46 return error("Could not access '%s'", name2
);
50 if (mode1
&& mode2
&& S_ISDIR(mode1
) != S_ISDIR(mode2
))
51 return error("file/directory conflict: %s, %s", name1
, name2
);
53 if (S_ISDIR(mode1
) || S_ISDIR(mode2
)) {
54 char buffer1
[PATH_MAX
], buffer2
[PATH_MAX
];
55 struct path_list p1
= {NULL
, 0, 0, 1}, p2
= {NULL
, 0, 0, 1};
56 int len1
= 0, len2
= 0, i1
, i2
, ret
= 0;
58 if (name1
&& read_directory(name1
, &p1
))
60 if (name2
&& read_directory(name2
, &p2
)) {
61 path_list_clear(&p1
, 0);
67 if (len1
> 0 && name1
[len1
- 1] == '/')
69 memcpy(buffer1
, name1
, len1
);
70 buffer1
[len1
++] = '/';
75 if (len2
> 0 && name2
[len2
- 1] == '/')
77 memcpy(buffer2
, name2
, len2
);
78 buffer2
[len2
++] = '/';
81 for (i1
= i2
= 0; !ret
&& (i1
< p1
.nr
|| i2
< p2
.nr
); ) {
90 comp
= strcmp(p1
.items
[i1
].path
,
97 strncpy(buffer1
+ len1
, p1
.items
[i1
++].path
,
105 strncpy(buffer2
+ len2
, p2
.items
[i2
++].path
,
109 ret
= queue_diff(o
, n1
, n2
);
111 path_list_clear(&p1
, 0);
112 path_list_clear(&p2
, 0);
116 struct diff_filespec
*d1
, *d2
;
118 if (o
->reverse_diff
) {
121 tmp
= mode1
; mode1
= mode2
; mode2
= tmp
;
122 tmp_c
= name1
; name1
= name2
; name2
= tmp_c
;
129 d1
= alloc_filespec(name1
);
130 d2
= alloc_filespec(name2
);
131 fill_filespec(d1
, null_sha1
, mode1
);
132 fill_filespec(d2
, null_sha1
, mode2
);
134 diff_queue(&diff_queued_diff
, d1
, d2
);
139 static int is_in_index(const char *path
)
141 int len
= strlen(path
);
142 int pos
= cache_name_pos(path
, len
);
147 if (strncmp(active_cache
[pos
]->name
, path
, len
))
149 c
= active_cache
[pos
]->name
[len
];
150 return c
== '\0' || c
== '/';
153 static int handle_diff_files_args(struct rev_info
*revs
,
154 int argc
, const char **argv
, int *silent
)
158 /* revs->max_count == -2 means --no-index */
159 while (1 < argc
&& argv
[1][0] == '-') {
160 if (!strcmp(argv
[1], "--base"))
162 else if (!strcmp(argv
[1], "--ours"))
164 else if (!strcmp(argv
[1], "--theirs"))
166 else if (!strcmp(argv
[1], "-n") ||
167 !strcmp(argv
[1], "--no-index"))
168 revs
->max_count
= -2;
169 else if (!strcmp(argv
[1], "-q"))
172 return error("invalid option: %s", argv
[1]);
176 if (revs
->max_count
== -1 && revs
->diffopt
.nr_paths
== 2) {
178 * If two files are specified, and at least one is untracked,
179 * default to no-index.
182 if (!is_in_index(revs
->diffopt
.paths
[0]) ||
183 !is_in_index(revs
->diffopt
.paths
[1]))
184 revs
->max_count
= -2;
188 * Make sure there are NO revision (i.e. pending object) parameter,
189 * rev.max_count is reasonable (0 <= n <= 3),
190 * there is no other revision filtering parameters.
192 if (revs
->pending
.nr
|| revs
->max_count
> 3 ||
193 revs
->min_age
!= -1 || revs
->max_age
!= -1)
194 return error("no revision allowed with diff-files");
196 if (revs
->max_count
== -1 &&
197 (revs
->diffopt
.output_format
& DIFF_FORMAT_PATCH
))
198 revs
->combine_merges
= revs
->dense_combined_merges
= 1;
203 int run_diff_files_cmd(struct rev_info
*revs
, int argc
, const char **argv
)
205 int silent_on_removed
;
207 if (handle_diff_files_args(revs
, argc
, argv
, &silent_on_removed
))
210 if (revs
->max_count
== -2) {
211 if (revs
->diffopt
.nr_paths
!= 2)
212 return error("need two files/directories with --no-index");
213 queue_diff(&revs
->diffopt
, revs
->diffopt
.paths
[0],
214 revs
->diffopt
.paths
[1]);
215 diffcore_std(&revs
->diffopt
);
216 diff_flush(&revs
->diffopt
);
220 if (read_cache() < 0) {
221 perror("read_cache");
224 return run_diff_files(revs
, silent_on_removed
);
227 int run_diff_files(struct rev_info
*revs
, int silent_on_removed
)
230 int diff_unmerged_stage
= revs
->max_count
;
232 if (diff_unmerged_stage
< 0)
233 diff_unmerged_stage
= 2;
235 for (i
= 0; i
< entries
; i
++) {
237 unsigned int oldmode
, newmode
;
238 struct cache_entry
*ce
= active_cache
[i
];
241 if (!ce_path_match(ce
, revs
->prune_data
))
245 struct combine_diff_path
*dpath
;
246 int num_compare_stages
= 0;
249 path_len
= ce_namelen(ce
);
251 dpath
= xmalloc (combine_diff_path_size (5, path_len
));
252 dpath
->path
= (char *) &(dpath
->parent
[5]);
255 dpath
->len
= path_len
;
256 memcpy(dpath
->path
, ce
->name
, path_len
);
257 dpath
->path
[path_len
] = '\0';
259 hashclr(dpath
->sha1
);
260 memset(&(dpath
->parent
[0]), 0,
261 sizeof(struct combine_diff_parent
)*5);
263 while (i
< entries
) {
264 struct cache_entry
*nce
= active_cache
[i
];
267 if (strcmp(ce
->name
, nce
->name
))
270 /* Stage #2 (ours) is the first parent,
271 * stage #3 (theirs) is the second.
273 stage
= ce_stage(nce
);
275 int mode
= ntohl(nce
->ce_mode
);
276 num_compare_stages
++;
277 hashcpy(dpath
->parent
[stage
-2].sha1
, nce
->sha1
);
278 dpath
->parent
[stage
-2].mode
=
280 dpath
->parent
[stage
-2].status
=
281 DIFF_STATUS_MODIFIED
;
284 /* diff against the proper unmerged stage */
285 if (stage
== diff_unmerged_stage
)
290 * Compensate for loop update
294 if (revs
->combine_merges
&& num_compare_stages
== 2) {
295 show_combined_diff(dpath
, 2,
296 revs
->dense_combined_merges
,
305 * Show the diff for the 'ce' if we found the one
306 * from the desired stage.
308 diff_unmerge(&revs
->diffopt
, ce
->name
, 0, null_sha1
);
309 if (ce_stage(ce
) != diff_unmerged_stage
)
313 if (lstat(ce
->name
, &st
) < 0) {
314 if (errno
!= ENOENT
&& errno
!= ENOTDIR
) {
318 if (silent_on_removed
)
320 diff_addremove(&revs
->diffopt
, '-', ntohl(ce
->ce_mode
),
321 ce
->sha1
, ce
->name
, NULL
);
324 changed
= ce_match_stat(ce
, &st
, 0);
325 if (!changed
&& !revs
->diffopt
.find_copies_harder
)
327 oldmode
= ntohl(ce
->ce_mode
);
329 newmode
= canon_mode(st
.st_mode
);
330 if (!trust_executable_bit
&&
331 S_ISREG(newmode
) && S_ISREG(oldmode
) &&
332 ((newmode
^ oldmode
) == 0111))
334 diff_change(&revs
->diffopt
, oldmode
, newmode
,
335 ce
->sha1
, (changed
? null_sha1
: ce
->sha1
),
339 diffcore_std(&revs
->diffopt
);
340 diff_flush(&revs
->diffopt
);
348 /* A file entry went away or appeared */
349 static void diff_index_show_file(struct rev_info
*revs
,
351 struct cache_entry
*ce
,
352 unsigned char *sha1
, unsigned int mode
)
354 diff_addremove(&revs
->diffopt
, prefix
[0], ntohl(mode
),
355 sha1
, ce
->name
, NULL
);
358 static int get_stat_data(struct cache_entry
*ce
,
359 unsigned char **sha1p
,
361 int cached
, int match_missing
)
363 unsigned char *sha1
= ce
->sha1
;
364 unsigned int mode
= ce
->ce_mode
;
367 static unsigned char no_sha1
[20];
370 if (lstat(ce
->name
, &st
) < 0) {
371 if (errno
== ENOENT
&& match_missing
) {
378 changed
= ce_match_stat(ce
, &st
, 0);
380 mode
= ce_mode_from_stat(ce
, st
.st_mode
);
390 static void show_new_file(struct rev_info
*revs
,
391 struct cache_entry
*new,
392 int cached
, int match_missing
)
397 /* New file in the index: it might actually be different in
400 if (get_stat_data(new, &sha1
, &mode
, cached
, match_missing
) < 0)
403 diff_index_show_file(revs
, "+", new, sha1
, mode
);
406 static int show_modified(struct rev_info
*revs
,
407 struct cache_entry
*old
,
408 struct cache_entry
*new,
410 int cached
, int match_missing
)
412 unsigned int mode
, oldmode
;
415 if (get_stat_data(new, &sha1
, &mode
, cached
, match_missing
) < 0) {
417 diff_index_show_file(revs
, "-", old
,
418 old
->sha1
, old
->ce_mode
);
422 if (revs
->combine_merges
&& !cached
&&
423 (hashcmp(sha1
, old
->sha1
) || hashcmp(old
->sha1
, new->sha1
))) {
424 struct combine_diff_path
*p
;
425 int pathlen
= ce_namelen(new);
427 p
= xmalloc(combine_diff_path_size(2, pathlen
));
428 p
->path
= (char *) &p
->parent
[2];
431 memcpy(p
->path
, new->name
, pathlen
);
432 p
->path
[pathlen
] = 0;
433 p
->mode
= ntohl(mode
);
435 memset(p
->parent
, 0, 2 * sizeof(struct combine_diff_parent
));
436 p
->parent
[0].status
= DIFF_STATUS_MODIFIED
;
437 p
->parent
[0].mode
= ntohl(new->ce_mode
);
438 hashcpy(p
->parent
[0].sha1
, new->sha1
);
439 p
->parent
[1].status
= DIFF_STATUS_MODIFIED
;
440 p
->parent
[1].mode
= ntohl(old
->ce_mode
);
441 hashcpy(p
->parent
[1].sha1
, old
->sha1
);
442 show_combined_diff(p
, 2, revs
->dense_combined_merges
, revs
);
447 oldmode
= old
->ce_mode
;
448 if (mode
== oldmode
&& !hashcmp(sha1
, old
->sha1
) &&
449 !revs
->diffopt
.find_copies_harder
)
453 oldmode
= ntohl(oldmode
);
455 diff_change(&revs
->diffopt
, oldmode
, mode
,
456 old
->sha1
, sha1
, old
->name
, NULL
);
460 static int diff_cache(struct rev_info
*revs
,
461 struct cache_entry
**ac
, int entries
,
462 const char **pathspec
,
463 int cached
, int match_missing
)
466 struct cache_entry
*ce
= *ac
;
467 int same
= (entries
> 1) && ce_same_name(ce
, ac
[1]);
469 if (!ce_path_match(ce
, pathspec
))
472 switch (ce_stage(ce
)) {
474 /* No stage 1 entry? That means it's a new file */
476 show_new_file(revs
, ce
, cached
, match_missing
);
479 /* Show difference between old and new */
480 show_modified(revs
, ac
[1], ce
, 1,
481 cached
, match_missing
);
484 /* No stage 3 (merge) entry?
485 * That means it's been deleted.
488 diff_index_show_file(revs
, "-", ce
,
489 ce
->sha1
, ce
->ce_mode
);
492 /* We come here with ce pointing at stage 1
493 * (original tree) and ac[1] pointing at stage
494 * 3 (unmerged). show-modified with
495 * report-missing set to false does not say the
496 * file is deleted but reports true if work
497 * tree does not have it, in which case we
498 * fall through to report the unmerged state.
499 * Otherwise, we show the differences between
500 * the original tree and the work tree.
503 !show_modified(revs
, ce
, ac
[1], 0,
504 cached
, match_missing
))
506 diff_unmerge(&revs
->diffopt
, ce
->name
,
507 ntohl(ce
->ce_mode
), ce
->sha1
);
510 diff_unmerge(&revs
->diffopt
, ce
->name
,
515 die("impossible cache entry stage");
520 * Ignore all the different stages for this file,
521 * we've handled the relevant cases now.
526 } while (entries
&& ce_same_name(ce
, ac
[0]));
532 * This turns all merge entries into "stage 3". That guarantees that
533 * when we read in the new tree (into "stage 1"), we won't lose sight
534 * of the fact that we had unmerged entries.
536 static void mark_merge_entries(void)
539 for (i
= 0; i
< active_nr
; i
++) {
540 struct cache_entry
*ce
= active_cache
[i
];
543 ce
->ce_flags
|= htons(CE_STAGEMASK
);
547 int run_diff_index(struct rev_info
*revs
, int cached
)
552 const char *tree_name
;
553 int match_missing
= 0;
556 * Backward compatibility wart - "diff-index -m" does
557 * not mean "do not ignore merges", but totally different.
559 if (!revs
->ignore_merges
)
562 mark_merge_entries();
564 ent
= revs
->pending
.objects
[0].item
;
565 tree_name
= revs
->pending
.objects
[0].name
;
566 tree
= parse_tree_indirect(ent
->sha1
);
568 return error("bad tree object %s", tree_name
);
569 if (read_tree(tree
, 1, revs
->prune_data
))
570 return error("unable to read tree object %s", tree_name
);
571 ret
= diff_cache(revs
, active_cache
, active_nr
, revs
->prune_data
,
572 cached
, match_missing
);
573 diffcore_std(&revs
->diffopt
);
574 diff_flush(&revs
->diffopt
);
578 int do_diff_cache(const unsigned char *tree_sha1
, struct diff_options
*opt
)
581 struct rev_info revs
;
583 struct cache_entry
**dst
;
584 struct cache_entry
*last
= NULL
;
587 * This is used by git-blame to run diff-cache internally;
588 * it potentially needs to repeatedly run this, so we will
589 * start by removing the higher order entries the last round
593 for (i
= 0; i
< active_nr
; i
++) {
594 struct cache_entry
*ce
= active_cache
[i
];
596 if (last
&& !strcmp(ce
->name
, last
->name
))
598 cache_tree_invalidate_path(active_cache_tree
,
602 ce
->ce_flags
&= ~htons(CE_STAGEMASK
);
606 active_nr
= dst
- active_cache
;
608 init_revisions(&revs
, NULL
);
609 revs
.prune_data
= opt
->paths
;
610 tree
= parse_tree_indirect(tree_sha1
);
612 die("bad tree object %s", sha1_to_hex(tree_sha1
));
613 if (read_tree(tree
, 1, opt
->paths
))
614 return error("unable to read tree %s", sha1_to_hex(tree_sha1
));
615 return diff_cache(&revs
, active_cache
, active_nr
, revs
.prune_data
,