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 static int is_outside_repo(const char *path, int nongit, const char *prefix)
206 if (nongit || !strcmp(path, "-") || path[0] == '/')
208 if (prefixcmp(path, "../"))
212 for (i = strlen(prefix); !prefixcmp(path, "../"); ) {
213 while (i > 0 && prefix[i - 1] != '/')
222 int setup_diff_no_index(struct rev_info *revs,
223 int argc, const char ** argv, int nongit, const char *prefix)
226 for (i = 1; i < argc; i++)
227 if (argv[i][0] != '-')
229 else if (!strcmp(argv[i], "--")) {
232 } else if (i < argc - 3 && !strcmp(argv[i], "--no-index")) {
236 if (argc != i + 2 || (!is_outside_repo(argv[i + 1], nongit, prefix) &&
237 !is_outside_repo(argv[i], nongit, prefix)))
240 diff_setup(&revs->diffopt);
241 for (i = 1; i < argc - 2; )
242 if (!strcmp(argv[i], "--no-index"))
245 int j = diff_opt_parse(&revs->diffopt,
248 die("invalid diff option/value: %s", argv[i]);
253 int len = strlen(prefix);
255 revs->diffopt.paths = xcalloc(2, sizeof(char*));
256 for (i = 0; i < 2; i++) {
258 p = prefix_filename(prefix, len, argv[argc - 2 + i]);
259 revs->diffopt.paths[i] = xstrdup(p);
263 revs->diffopt.paths = argv + argc - 2;
264 revs->diffopt.nr_paths = 2;
265 revs->max_count = -2;
269 int run_diff_files_cmd(struct rev_info *revs, int argc, const char **argv)
271 int silent_on_removed;
273 if (handle_diff_files_args(revs, argc, argv, &silent_on_removed))
276 if (revs->max_count == -2) {
277 if (revs->diffopt.nr_paths != 2)
278 return error("need two files/directories with --no-index");
279 if (queue_diff(&revs->diffopt, revs->diffopt.paths[0],
280 revs->diffopt.paths[1]))
282 diffcore_std(&revs->diffopt);
283 diff_flush(&revs->diffopt);
285 * The return code for --no-index imitates diff(1):
286 * 0 = no changes, 1 = changes, else error
288 return revs->diffopt.found_changes;
291 if (read_cache() < 0) {
292 perror("read_cache");
295 return run_diff_files(revs, silent_on_removed);
298 int run_diff_files(struct rev_info *revs, int silent_on_removed)
301 int diff_unmerged_stage = revs->max_count;
303 if (diff_unmerged_stage < 0)
304 diff_unmerged_stage = 2;
306 for (i = 0; i < entries; i++) {
308 unsigned int oldmode, newmode;
309 struct cache_entry *ce = active_cache[i];
312 if (!ce_path_match(ce, revs->prune_data))
316 struct combine_diff_path *dpath;
317 int num_compare_stages = 0;
320 path_len = ce_namelen(ce);
322 dpath = xmalloc(combine_diff_path_size(5, path_len));
323 dpath->path = (char *) &(dpath->parent[5]);
326 dpath->len = path_len;
327 memcpy(dpath->path, ce->name, path_len);
328 dpath->path[path_len] = '\0';
329 hashclr(dpath->sha1);
330 memset(&(dpath->parent[0]), 0,
331 sizeof(struct combine_diff_parent)*5);
333 if (lstat(ce->name, &st) < 0) {
334 if (errno != ENOENT && errno != ENOTDIR) {
338 if (silent_on_removed)
342 dpath->mode = canon_mode(st.st_mode);
344 while (i < entries) {
345 struct cache_entry *nce = active_cache[i];
348 if (strcmp(ce->name, nce->name))
351 /* Stage #2 (ours) is the first parent,
352 * stage #3 (theirs) is the second.
354 stage = ce_stage(nce);
356 int mode = ntohl(nce->ce_mode);
357 num_compare_stages++;
358 hashcpy(dpath->parent[stage-2].sha1, nce->sha1);
359 dpath->parent[stage-2].mode =
361 dpath->parent[stage-2].status =
362 DIFF_STATUS_MODIFIED;
365 /* diff against the proper unmerged stage */
366 if (stage == diff_unmerged_stage)
371 * Compensate for loop update
375 if (revs->combine_merges && num_compare_stages == 2) {
376 show_combined_diff(dpath, 2,
377 revs->dense_combined_merges,
386 * Show the diff for the 'ce' if we found the one
387 * from the desired stage.
389 diff_unmerge(&revs->diffopt, ce->name, 0, null_sha1);
390 if (ce_stage(ce) != diff_unmerged_stage)
394 if (lstat(ce->name, &st) < 0) {
395 if (errno != ENOENT && errno != ENOTDIR) {
399 if (silent_on_removed)
401 diff_addremove(&revs->diffopt, '-', ntohl(ce->ce_mode),
402 ce->sha1, ce->name, NULL);
405 changed = ce_match_stat(ce, &st, 0);
406 if (!changed && !revs->diffopt.find_copies_harder)
408 oldmode = ntohl(ce->ce_mode);
410 newmode = canon_mode(st.st_mode);
411 if (!trust_executable_bit &&
412 S_ISREG(newmode) && S_ISREG(oldmode) &&
413 ((newmode ^ oldmode) == 0111))
415 diff_change(&revs->diffopt, oldmode, newmode,
416 ce->sha1, (changed ? null_sha1 : ce->sha1),
420 diffcore_std(&revs->diffopt);
421 diff_flush(&revs->diffopt);
429 /* A file entry went away or appeared */
430 static void diff_index_show_file(struct rev_info *revs,
432 struct cache_entry *ce,
433 unsigned char *sha1, unsigned int mode)
435 diff_addremove(&revs->diffopt, prefix[0], ntohl(mode),
436 sha1, ce->name, NULL);
439 static int get_stat_data(struct cache_entry *ce,
440 unsigned char **sha1p,
442 int cached, int match_missing)
444 unsigned char *sha1 = ce->sha1;
445 unsigned int mode = ce->ce_mode;
448 static unsigned char no_sha1[20];
451 if (lstat(ce->name, &st) < 0) {
452 if (errno == ENOENT && match_missing) {
459 changed = ce_match_stat(ce, &st, 0);
461 mode = ce_mode_from_stat(ce, st.st_mode);
471 static void show_new_file(struct rev_info *revs,
472 struct cache_entry *new,
473 int cached, int match_missing)
478 /* New file in the index: it might actually be different in
481 if (get_stat_data(new, &sha1, &mode, cached, match_missing) < 0)
484 diff_index_show_file(revs, "+", new, sha1, mode);
487 static int show_modified(struct rev_info *revs,
488 struct cache_entry *old,
489 struct cache_entry *new,
491 int cached, int match_missing)
493 unsigned int mode, oldmode;
496 if (get_stat_data(new, &sha1, &mode, cached, match_missing) < 0) {
498 diff_index_show_file(revs, "-", old,
499 old->sha1, old->ce_mode);
503 if (revs->combine_merges && !cached &&
504 (hashcmp(sha1, old->sha1) || hashcmp(old->sha1, new->sha1))) {
505 struct combine_diff_path *p;
506 int pathlen = ce_namelen(new);
508 p = xmalloc(combine_diff_path_size(2, pathlen));
509 p->path = (char *) &p->parent[2];
512 memcpy(p->path, new->name, pathlen);
513 p->path[pathlen] = 0;
514 p->mode = ntohl(mode);
516 memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent));
517 p->parent[0].status = DIFF_STATUS_MODIFIED;
518 p->parent[0].mode = ntohl(new->ce_mode);
519 hashcpy(p->parent[0].sha1, new->sha1);
520 p->parent[1].status = DIFF_STATUS_MODIFIED;
521 p->parent[1].mode = ntohl(old->ce_mode);
522 hashcpy(p->parent[1].sha1, old->sha1);
523 show_combined_diff(p, 2, revs->dense_combined_merges, revs);
528 oldmode = old->ce_mode;
529 if (mode == oldmode && !hashcmp(sha1, old->sha1) &&
530 !revs->diffopt.find_copies_harder)
534 oldmode = ntohl(oldmode);
536 diff_change(&revs->diffopt, oldmode, mode,
537 old->sha1, sha1, old->name, NULL);
541 static int diff_cache(struct rev_info *revs,
542 struct cache_entry **ac, int entries,
543 const char **pathspec,
544 int cached, int match_missing)
547 struct cache_entry *ce = *ac;
548 int same = (entries > 1) && ce_same_name(ce, ac[1]);
550 if (!ce_path_match(ce, pathspec))
553 switch (ce_stage(ce)) {
555 /* No stage 1 entry? That means it's a new file */
557 show_new_file(revs, ce, cached, match_missing);
560 /* Show difference between old and new */
561 show_modified(revs, ac[1], ce, 1,
562 cached, match_missing);
565 /* No stage 3 (merge) entry?
566 * That means it's been deleted.
569 diff_index_show_file(revs, "-", ce,
570 ce->sha1, ce->ce_mode);
573 /* We come here with ce pointing at stage 1
574 * (original tree) and ac[1] pointing at stage
575 * 3 (unmerged). show-modified with
576 * report-missing set to false does not say the
577 * file is deleted but reports true if work
578 * tree does not have it, in which case we
579 * fall through to report the unmerged state.
580 * Otherwise, we show the differences between
581 * the original tree and the work tree.
584 !show_modified(revs, ce, ac[1], 0,
585 cached, match_missing))
587 diff_unmerge(&revs->diffopt, ce->name,
588 ntohl(ce->ce_mode), ce->sha1);
591 diff_unmerge(&revs->diffopt, ce->name,
596 die("impossible cache entry stage");
601 * Ignore all the different stages for this file,
602 * we've handled the relevant cases now.
607 } while (entries && ce_same_name(ce, ac[0]));
613 * This turns all merge entries into "stage 3". That guarantees that
614 * when we read in the new tree (into "stage 1"), we won't lose sight
615 * of the fact that we had unmerged entries.
617 static void mark_merge_entries(void)
620 for (i = 0; i < active_nr; i++) {
621 struct cache_entry *ce = active_cache[i];
624 ce->ce_flags |= htons(CE_STAGEMASK);
628 int run_diff_index(struct rev_info *revs, int cached)
633 const char *tree_name;
634 int match_missing = 0;
637 * Backward compatibility wart - "diff-index -m" does
638 * not mean "do not ignore merges", but totally different.
640 if (!revs->ignore_merges)
643 mark_merge_entries();
645 ent = revs->pending.objects[0].item;
646 tree_name = revs->pending.objects[0].name;
647 tree = parse_tree_indirect(ent->sha1);
649 return error("bad tree object %s", tree_name);
650 if (read_tree(tree, 1, revs->prune_data))
651 return error("unable to read tree object %s", tree_name);
652 ret = diff_cache(revs, active_cache, active_nr, revs->prune_data,
653 cached, match_missing);
654 diffcore_std(&revs->diffopt);
655 diff_flush(&revs->diffopt);
659 int do_diff_cache(const unsigned char *tree_sha1, struct diff_options *opt)
662 struct rev_info revs;
664 struct cache_entry **dst;
665 struct cache_entry *last = NULL;
668 * This is used by git-blame to run diff-cache internally;
669 * it potentially needs to repeatedly run this, so we will
670 * start by removing the higher order entries the last round
674 for (i = 0; i < active_nr; i++) {
675 struct cache_entry *ce = active_cache[i];
677 if (last && !strcmp(ce->name, last->name))
679 cache_tree_invalidate_path(active_cache_tree,
683 ce->ce_flags &= ~htons(CE_STAGEMASK);
687 active_nr = dst - active_cache;
689 init_revisions(&revs, NULL);
690 revs.prune_data = opt->paths;
691 tree = parse_tree_indirect(tree_sha1);
693 die("bad tree object %s", sha1_to_hex(tree_sha1));
694 if (read_tree(tree, 1, opt->paths))
695 return error("unable to read tree %s", sha1_to_hex(tree_sha1));
696 return diff_cache(&revs, active_cache, active_nr, revs.prune_data,