Junio C Hamano | be3cfa8 | 2005-04-26 09:25:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2005 Junio C Hamano |
| 3 | */ |
Junio C Hamano | 86436c2 | 2005-04-25 18:22:47 -0700 | [diff] [blame] | 4 | #include "cache.h" |
Junio C Hamano | 6fb737b | 2005-07-07 23:58:32 -0700 | [diff] [blame] | 5 | #include "quote.h" |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 6 | #include "commit.h" |
Junio C Hamano | 86436c2 | 2005-04-25 18:22:47 -0700 | [diff] [blame] | 7 | #include "diff.h" |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 8 | #include "diffcore.h" |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 9 | #include "revision.h" |
Junio C Hamano | 1cfe773 | 2007-01-30 01:11:08 -0800 | [diff] [blame] | 10 | #include "cache-tree.h" |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 11 | #include "unpack-trees.h" |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 12 | #include "refs.h" |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 13 | #include "submodule.h" |
Nguyễn Thái Ngọc Duy | 429bb40 | 2014-01-24 20:40:28 +0700 | [diff] [blame] | 14 | #include "dir.h" |
Ben Peart | 883e248 | 2017-09-22 12:35:40 -0400 | [diff] [blame] | 15 | #include "fsmonitor.h" |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 16 | |
Junio C Hamano | b46f0b6 | 2005-05-04 01:45:24 -0700 | [diff] [blame] | 17 | /* |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 18 | * diff-files |
Junio C Hamano | b46f0b6 | 2005-05-04 01:45:24 -0700 | [diff] [blame] | 19 | */ |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 20 | |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 21 | /* |
Junio C Hamano | 1392a37 | 2008-05-03 17:04:42 -0700 | [diff] [blame] | 22 | * Has the work tree entity been removed? |
| 23 | * |
| 24 | * Return 1 if it was removed from the work tree, 0 if an entity to be |
| 25 | * compared with the cache entry ce still exists (the latter includes |
| 26 | * the case where a directory that is not a submodule repository |
| 27 | * exists for ce that is a submodule -- it is a submodule that is not |
| 28 | * checked out). Return negative for an error. |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 29 | */ |
Linus Torvalds | c40641b | 2008-05-09 09:21:07 -0700 | [diff] [blame] | 30 | static int check_removed(const struct cache_entry *ce, struct stat *st) |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 31 | { |
| 32 | if (lstat(ce->name, st) < 0) { |
Junio C Hamano | c705420 | 2017-05-30 09:23:33 +0900 | [diff] [blame] | 33 | if (!is_missing_file_error(errno)) |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 34 | return -1; |
| 35 | return 1; |
| 36 | } |
Kjetil Barvik | 5719989 | 2009-02-09 21:54:06 +0100 | [diff] [blame] | 37 | if (has_symlink_leading_path(ce->name, ce_namelen(ce))) |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 38 | return 1; |
| 39 | if (S_ISDIR(st->st_mode)) { |
brian m. carlson | 1053fe8 | 2017-10-15 22:07:06 +0000 | [diff] [blame] | 40 | struct object_id sub; |
Junio C Hamano | 1392a37 | 2008-05-03 17:04:42 -0700 | [diff] [blame] | 41 | |
| 42 | /* |
| 43 | * If ce is already a gitlink, we can have a plain |
| 44 | * directory (i.e. the submodule is not checked out), |
| 45 | * or a checked out submodule. Either case this is not |
| 46 | * a case where something was removed from the work tree, |
| 47 | * so we will return 0. |
| 48 | * |
| 49 | * Otherwise, if the directory is not a submodule |
| 50 | * repository, that means ce which was a blob turned into |
| 51 | * a directory --- the blob was removed! |
| 52 | */ |
| 53 | if (!S_ISGITLINK(ce->ce_mode) && |
brian m. carlson | a98e610 | 2017-10-15 22:07:07 +0000 | [diff] [blame] | 54 | resolve_gitlink_ref(ce->name, "HEAD", &sub)) |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 55 | return 1; |
| 56 | } |
| 57 | return 0; |
| 58 | } |
Johannes Schindelin | d516c2d | 2007-02-22 21:50:10 +0100 | [diff] [blame] | 59 | |
Jens Lehmann | ae6d5c1 | 2010-03-11 22:50:25 +0100 | [diff] [blame] | 60 | /* |
| 61 | * Has a file changed or has a submodule new commits or a dirty work tree? |
| 62 | * |
| 63 | * Return 1 when changes are detected, 0 otherwise. If the DIRTY_SUBMODULES |
| 64 | * option is set, the caller does not only want to know if a submodule is |
| 65 | * modified at all but wants to know all the conditions that are met (new |
| 66 | * commits, untracked content and/or modified content). |
| 67 | */ |
| 68 | static int match_stat_with_submodule(struct diff_options *diffopt, |
René Scharfe | eb9ae4b | 2013-06-02 17:46:55 +0200 | [diff] [blame] | 69 | const struct cache_entry *ce, |
| 70 | struct stat *st, unsigned ce_option, |
| 71 | unsigned *dirty_submodule) |
Jens Lehmann | ae6d5c1 | 2010-03-11 22:50:25 +0100 | [diff] [blame] | 72 | { |
| 73 | int changed = ce_match_stat(ce, st, ce_option); |
Jens Lehmann | aee9c7d | 2010-08-06 00:39:25 +0200 | [diff] [blame] | 74 | if (S_ISGITLINK(ce->ce_mode)) { |
Brandon Williams | 02f2f56 | 2017-10-31 11:19:05 -0700 | [diff] [blame] | 75 | struct diff_flags orig_flags = diffopt->flags; |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 76 | if (!diffopt->flags.override_submodule_config) |
Jens Lehmann | aee9c7d | 2010-08-06 00:39:25 +0200 | [diff] [blame] | 77 | set_diffopt_flags_from_submodule_config(diffopt, ce->name); |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 78 | if (diffopt->flags.ignore_submodules) |
Jens Lehmann | aee9c7d | 2010-08-06 00:39:25 +0200 | [diff] [blame] | 79 | changed = 0; |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 80 | else if (!diffopt->flags.ignore_dirty_submodules && |
| 81 | (!changed || diffopt->flags.dirty_submodules)) |
Brandon Williams | 3b69dae | 2017-10-31 11:19:08 -0700 | [diff] [blame] | 82 | *dirty_submodule = is_submodule_modified(ce->name, |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 83 | diffopt->flags.ignore_untracked_in_submodules); |
Jens Lehmann | aee9c7d | 2010-08-06 00:39:25 +0200 | [diff] [blame] | 84 | diffopt->flags = orig_flags; |
Jens Lehmann | ae6d5c1 | 2010-03-11 22:50:25 +0100 | [diff] [blame] | 85 | } |
| 86 | return changed; |
| 87 | } |
| 88 | |
Junio C Hamano | 4bd5b7d | 2007-11-10 00:15:03 -0800 | [diff] [blame] | 89 | int run_diff_files(struct rev_info *revs, unsigned int option) |
Junio C Hamano | b46f0b6 | 2005-05-04 01:45:24 -0700 | [diff] [blame] | 90 | { |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 91 | int entries, i; |
| 92 | int diff_unmerged_stage = revs->max_count; |
Junio C Hamano | fb63d7f | 2007-11-09 18:22:52 -0800 | [diff] [blame] | 93 | unsigned ce_option = ((option & DIFF_RACY_IS_MODIFIED) |
| 94 | ? CE_MATCH_RACY_IS_DIRTY : 0); |
Nguyễn Thái Ngọc Duy | ca54d9b | 2018-01-27 19:27:56 +0700 | [diff] [blame] | 95 | uint64_t start = getnanotime(); |
Junio C Hamano | 5c97558 | 2005-05-19 03:32:35 -0700 | [diff] [blame] | 96 | |
Junio C Hamano | a5a818e | 2008-08-18 20:08:09 -0700 | [diff] [blame] | 97 | diff_set_mnemonic_prefix(&revs->diffopt, "i/", "w/"); |
| 98 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 99 | if (diff_unmerged_stage < 0) |
| 100 | diff_unmerged_stage = 2; |
Junio C Hamano | b4e1e4a | 2007-02-09 18:51:40 -0800 | [diff] [blame] | 101 | entries = active_nr; |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 102 | for (i = 0; i < entries; i++) { |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 103 | unsigned int oldmode, newmode; |
| 104 | struct cache_entry *ce = active_cache[i]; |
| 105 | int changed; |
Jens Lehmann | e3d42c4 | 2010-01-18 21:26:18 +0100 | [diff] [blame] | 106 | unsigned dirty_submodule = 0; |
Brandon Williams | 55497b8 | 2017-05-30 10:30:48 -0700 | [diff] [blame] | 107 | const struct object_id *old_oid, *new_oid; |
Junio C Hamano | f0c6b2a | 2005-05-27 15:56:38 -0700 | [diff] [blame] | 108 | |
Junio C Hamano | 28b9264 | 2011-05-31 09:14:17 -0700 | [diff] [blame] | 109 | if (diff_can_quit_early(&revs->diffopt)) |
Junio C Hamano | 822cac0 | 2007-03-14 11:12:51 -0700 | [diff] [blame] | 110 | break; |
| 111 | |
Nguyễn Thái Ngọc Duy | 429bb40 | 2014-01-24 20:40:28 +0700 | [diff] [blame] | 112 | if (!ce_path_match(ce, &revs->prune_data, NULL)) |
Linus Torvalds | 8676eb4 | 2006-02-26 15:51:24 -0800 | [diff] [blame] | 113 | continue; |
Linus Torvalds | 8676eb4 | 2006-02-26 15:51:24 -0800 | [diff] [blame] | 114 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 115 | if (ce_stage(ce)) { |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 116 | struct combine_diff_path *dpath; |
Junio C Hamano | 095ce95 | 2011-04-22 16:19:27 -0700 | [diff] [blame] | 117 | struct diff_filepair *pair; |
| 118 | unsigned int wt_mode = 0; |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 119 | int num_compare_stages = 0; |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 120 | size_t path_len; |
Jeff King | 5304810 | 2014-05-14 18:13:06 -0400 | [diff] [blame] | 121 | struct stat st; |
Linus Torvalds | 8676eb4 | 2006-02-26 15:51:24 -0800 | [diff] [blame] | 122 | |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 123 | path_len = ce_namelen(ce); |
| 124 | |
Junio C Hamano | 4fc970c | 2007-02-25 22:24:47 -0800 | [diff] [blame] | 125 | dpath = xmalloc(combine_diff_path_size(5, path_len)); |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 126 | dpath->path = (char *) &(dpath->parent[5]); |
| 127 | |
| 128 | dpath->next = NULL; |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 129 | memcpy(dpath->path, ce->name, path_len); |
| 130 | dpath->path[path_len] = '\0'; |
brian m. carlson | 1ff57c1 | 2015-03-13 23:39:33 +0000 | [diff] [blame] | 131 | oidclr(&dpath->oid); |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 132 | memset(&(dpath->parent[0]), 0, |
Junio C Hamano | 4fc970c | 2007-02-25 22:24:47 -0800 | [diff] [blame] | 133 | sizeof(struct combine_diff_parent)*5); |
| 134 | |
Linus Torvalds | c40641b | 2008-05-09 09:21:07 -0700 | [diff] [blame] | 135 | changed = check_removed(ce, &st); |
Junio C Hamano | f58dbf2 | 2008-03-30 17:30:08 -0700 | [diff] [blame] | 136 | if (!changed) |
Junio C Hamano | 095ce95 | 2011-04-22 16:19:27 -0700 | [diff] [blame] | 137 | wt_mode = ce_mode_from_stat(ce, st.st_mode); |
Junio C Hamano | f58dbf2 | 2008-03-30 17:30:08 -0700 | [diff] [blame] | 138 | else { |
| 139 | if (changed < 0) { |
Junio C Hamano | 4fc970c | 2007-02-25 22:24:47 -0800 | [diff] [blame] | 140 | perror(ce->name); |
| 141 | continue; |
| 142 | } |
Junio C Hamano | 095ce95 | 2011-04-22 16:19:27 -0700 | [diff] [blame] | 143 | wt_mode = 0; |
Junio C Hamano | 4fc970c | 2007-02-25 22:24:47 -0800 | [diff] [blame] | 144 | } |
Junio C Hamano | 095ce95 | 2011-04-22 16:19:27 -0700 | [diff] [blame] | 145 | dpath->mode = wt_mode; |
Junio C Hamano | be3cfa8 | 2005-04-26 09:25:05 -0700 | [diff] [blame] | 146 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 147 | while (i < entries) { |
| 148 | struct cache_entry *nce = active_cache[i]; |
| 149 | int stage; |
Junio C Hamano | be3cfa8 | 2005-04-26 09:25:05 -0700 | [diff] [blame] | 150 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 151 | if (strcmp(ce->name, nce->name)) |
| 152 | break; |
Junio C Hamano | be3cfa8 | 2005-04-26 09:25:05 -0700 | [diff] [blame] | 153 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 154 | /* Stage #2 (ours) is the first parent, |
| 155 | * stage #3 (theirs) is the second. |
| 156 | */ |
| 157 | stage = ce_stage(nce); |
| 158 | if (2 <= stage) { |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 159 | int mode = nce->ce_mode; |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 160 | num_compare_stages++; |
brian m. carlson | 99d1a98 | 2016-09-05 20:07:52 +0000 | [diff] [blame] | 161 | oidcpy(&dpath->parent[stage - 2].oid, |
| 162 | &nce->oid); |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 163 | dpath->parent[stage-2].mode = ce_mode_from_stat(nce, mode); |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 164 | dpath->parent[stage-2].status = |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 165 | DIFF_STATUS_MODIFIED; |
| 166 | } |
Junio C Hamano | cebff98 | 2006-03-25 23:12:17 -0800 | [diff] [blame] | 167 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 168 | /* diff against the proper unmerged stage */ |
| 169 | if (stage == diff_unmerged_stage) |
| 170 | ce = nce; |
| 171 | i++; |
H. Peter Anvin | 1b1480f | 2005-11-21 14:17:12 -0800 | [diff] [blame] | 172 | } |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 173 | /* |
| 174 | * Compensate for loop update |
| 175 | */ |
| 176 | i--; |
Junio C Hamano | 0e3994f | 2005-06-03 01:37:54 -0700 | [diff] [blame] | 177 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 178 | if (revs->combine_merges && num_compare_stages == 2) { |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 179 | show_combined_diff(dpath, 2, |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 180 | revs->dense_combined_merges, |
| 181 | revs); |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 182 | free(dpath); |
Junio C Hamano | 15d061b | 2005-05-27 15:55:55 -0700 | [diff] [blame] | 183 | continue; |
| 184 | } |
Ævar Arnfjörð Bjarmason | 6a83d90 | 2017-06-15 23:15:46 +0000 | [diff] [blame] | 185 | FREE_AND_NULL(dpath); |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 186 | |
| 187 | /* |
| 188 | * Show the diff for the 'ce' if we found the one |
| 189 | * from the desired stage. |
Junio C Hamano | 25d5ea4 | 2005-05-24 01:10:48 -0700 | [diff] [blame] | 190 | */ |
Junio C Hamano | 095ce95 | 2011-04-22 16:19:27 -0700 | [diff] [blame] | 191 | pair = diff_unmerge(&revs->diffopt, ce->name); |
| 192 | if (wt_mode) |
| 193 | pair->two->mode = wt_mode; |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 194 | if (ce_stage(ce) != diff_unmerged_stage) |
| 195 | continue; |
| 196 | } |
| 197 | |
Junio C Hamano | 125fd98 | 2010-01-24 00:10:20 -0800 | [diff] [blame] | 198 | if (ce_uptodate(ce) || ce_skip_worktree(ce)) |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 199 | continue; |
Junio C Hamano | f58dbf2 | 2008-03-30 17:30:08 -0700 | [diff] [blame] | 200 | |
Nguyễn Thái Ngọc Duy | 540e694 | 2009-08-11 22:43:59 +0700 | [diff] [blame] | 201 | /* If CE_VALID is set, don't look at workdir for file removal */ |
Jeff King | 5304810 | 2014-05-14 18:13:06 -0400 | [diff] [blame] | 202 | if (ce->ce_flags & CE_VALID) { |
| 203 | changed = 0; |
| 204 | newmode = ce->ce_mode; |
| 205 | } else { |
| 206 | struct stat st; |
| 207 | |
| 208 | changed = check_removed(ce, &st); |
| 209 | if (changed) { |
| 210 | if (changed < 0) { |
| 211 | perror(ce->name); |
| 212 | continue; |
| 213 | } |
| 214 | diff_addremove(&revs->diffopt, '-', ce->ce_mode, |
Brandon Williams | c26022e | 2017-05-30 10:30:47 -0700 | [diff] [blame] | 215 | &ce->oid, |
brian m. carlson | 99d1a98 | 2016-09-05 20:07:52 +0000 | [diff] [blame] | 216 | !is_null_oid(&ce->oid), |
Jeff King | 5304810 | 2014-05-14 18:13:06 -0400 | [diff] [blame] | 217 | ce->name, 0); |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 218 | continue; |
Nguyễn Thái Ngọc Duy | 425a28e | 2016-10-24 17:42:19 +0700 | [diff] [blame] | 219 | } else if (revs->diffopt.ita_invisible_in_index && |
| 220 | ce_intent_to_add(ce)) { |
| 221 | diff_addremove(&revs->diffopt, '+', ce->ce_mode, |
brian m. carlson | eb0ccfd | 2017-11-12 21:28:54 +0000 | [diff] [blame] | 222 | the_hash_algo->empty_tree, 0, |
Nguyễn Thái Ngọc Duy | 425a28e | 2016-10-24 17:42:19 +0700 | [diff] [blame] | 223 | ce->name, 0); |
| 224 | continue; |
Junio C Hamano | 25d5ea4 | 2005-05-24 01:10:48 -0700 | [diff] [blame] | 225 | } |
Jeff King | 5304810 | 2014-05-14 18:13:06 -0400 | [diff] [blame] | 226 | |
| 227 | changed = match_stat_with_submodule(&revs->diffopt, ce, &st, |
| 228 | ce_option, &dirty_submodule); |
| 229 | newmode = ce_mode_from_stat(ce, st.st_mode); |
Junio C Hamano | bceafe7 | 2005-05-23 18:14:03 -0700 | [diff] [blame] | 230 | } |
Jeff King | 5304810 | 2014-05-14 18:13:06 -0400 | [diff] [blame] | 231 | |
Jens Lehmann | 85adbf2 | 2010-03-12 22:23:52 +0100 | [diff] [blame] | 232 | if (!changed && !dirty_submodule) { |
Junio C Hamano | 8fa2960 | 2008-03-30 12:39:25 -0700 | [diff] [blame] | 233 | ce_mark_uptodate(ce); |
Ben Peart | 883e248 | 2017-09-22 12:35:40 -0400 | [diff] [blame] | 234 | mark_fsmonitor_valid(ce); |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 235 | if (!revs->diffopt.flags.find_copies_harder) |
Junio C Hamano | 8fa2960 | 2008-03-30 12:39:25 -0700 | [diff] [blame] | 236 | continue; |
| 237 | } |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 238 | oldmode = ce->ce_mode; |
Brandon Williams | 55497b8 | 2017-05-30 10:30:48 -0700 | [diff] [blame] | 239 | old_oid = &ce->oid; |
| 240 | new_oid = changed ? &null_oid : &ce->oid; |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 241 | diff_change(&revs->diffopt, oldmode, newmode, |
Brandon Williams | 94a0097 | 2017-05-30 10:30:49 -0700 | [diff] [blame] | 242 | old_oid, new_oid, |
Brandon Williams | 55497b8 | 2017-05-30 10:30:48 -0700 | [diff] [blame] | 243 | !is_null_oid(old_oid), |
| 244 | !is_null_oid(new_oid), |
Jens Lehmann | e3d42c4 | 2010-01-18 21:26:18 +0100 | [diff] [blame] | 245 | ce->name, 0, dirty_submodule); |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 246 | |
Junio C Hamano | bceafe7 | 2005-05-23 18:14:03 -0700 | [diff] [blame] | 247 | } |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 248 | diffcore_std(&revs->diffopt); |
| 249 | diff_flush(&revs->diffopt); |
Nguyễn Thái Ngọc Duy | ca54d9b | 2018-01-27 19:27:56 +0700 | [diff] [blame] | 250 | trace_performance_since(start, "diff-files"); |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 251 | return 0; |
Junio C Hamano | bceafe7 | 2005-05-23 18:14:03 -0700 | [diff] [blame] | 252 | } |
| 253 | |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 254 | /* |
| 255 | * diff-index |
| 256 | */ |
| 257 | |
| 258 | /* A file entry went away or appeared */ |
| 259 | static void diff_index_show_file(struct rev_info *revs, |
| 260 | const char *prefix, |
René Scharfe | eb9ae4b | 2013-06-02 17:46:55 +0200 | [diff] [blame] | 261 | const struct cache_entry *ce, |
Brandon Williams | fcf2cfb | 2017-05-30 10:30:46 -0700 | [diff] [blame] | 262 | const struct object_id *oid, int oid_valid, |
Jeff King | e545010 | 2012-07-28 11:03:01 -0400 | [diff] [blame] | 263 | unsigned int mode, |
Jens Lehmann | e3d42c4 | 2010-01-18 21:26:18 +0100 | [diff] [blame] | 264 | unsigned dirty_submodule) |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 265 | { |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 266 | diff_addremove(&revs->diffopt, prefix[0], mode, |
Brandon Williams | c26022e | 2017-05-30 10:30:47 -0700 | [diff] [blame] | 267 | oid, oid_valid, ce->name, dirty_submodule); |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 268 | } |
| 269 | |
René Scharfe | eb9ae4b | 2013-06-02 17:46:55 +0200 | [diff] [blame] | 270 | static int get_stat_data(const struct cache_entry *ce, |
Brandon Williams | 362d765 | 2017-05-30 10:30:45 -0700 | [diff] [blame] | 271 | const struct object_id **oidp, |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 272 | unsigned int *modep, |
Jens Lehmann | e3d42c4 | 2010-01-18 21:26:18 +0100 | [diff] [blame] | 273 | int cached, int match_missing, |
Jens Lehmann | 4d34477 | 2010-01-23 17:37:26 +0100 | [diff] [blame] | 274 | unsigned *dirty_submodule, struct diff_options *diffopt) |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 275 | { |
Brandon Williams | 362d765 | 2017-05-30 10:30:45 -0700 | [diff] [blame] | 276 | const struct object_id *oid = &ce->oid; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 277 | unsigned int mode = ce->ce_mode; |
| 278 | |
Linus Torvalds | 658dd48 | 2009-05-09 14:57:30 -0700 | [diff] [blame] | 279 | if (!cached && !ce_uptodate(ce)) { |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 280 | int changed; |
| 281 | struct stat st; |
Linus Torvalds | c40641b | 2008-05-09 09:21:07 -0700 | [diff] [blame] | 282 | changed = check_removed(ce, &st); |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 283 | if (changed < 0) |
| 284 | return -1; |
| 285 | else if (changed) { |
| 286 | if (match_missing) { |
Brandon Williams | 362d765 | 2017-05-30 10:30:45 -0700 | [diff] [blame] | 287 | *oidp = oid; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 288 | *modep = mode; |
| 289 | return 0; |
| 290 | } |
| 291 | return -1; |
| 292 | } |
Jens Lehmann | ae6d5c1 | 2010-03-11 22:50:25 +0100 | [diff] [blame] | 293 | changed = match_stat_with_submodule(diffopt, ce, &st, |
| 294 | 0, dirty_submodule); |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 295 | if (changed) { |
Junio C Hamano | 185c975 | 2007-02-16 22:43:48 -0800 | [diff] [blame] | 296 | mode = ce_mode_from_stat(ce, st.st_mode); |
Brandon Williams | 362d765 | 2017-05-30 10:30:45 -0700 | [diff] [blame] | 297 | oid = &null_oid; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 298 | } |
| 299 | } |
| 300 | |
Brandon Williams | 362d765 | 2017-05-30 10:30:45 -0700 | [diff] [blame] | 301 | *oidp = oid; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 302 | *modep = mode; |
| 303 | return 0; |
| 304 | } |
| 305 | |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 306 | static void show_new_file(struct rev_info *revs, |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 307 | const struct cache_entry *new_file, |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 308 | int cached, int match_missing) |
| 309 | { |
Brandon Williams | 362d765 | 2017-05-30 10:30:45 -0700 | [diff] [blame] | 310 | const struct object_id *oid; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 311 | unsigned int mode; |
Jens Lehmann | e3d42c4 | 2010-01-18 21:26:18 +0100 | [diff] [blame] | 312 | unsigned dirty_submodule = 0; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 313 | |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 314 | /* |
| 315 | * New file in the index: it might actually be different in |
Carlos Martín Nieto | f7d650c | 2011-09-20 22:25:57 +0200 | [diff] [blame] | 316 | * the working tree. |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 317 | */ |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 318 | if (get_stat_data(new_file, &oid, &mode, cached, match_missing, |
Jens Lehmann | 4d34477 | 2010-01-23 17:37:26 +0100 | [diff] [blame] | 319 | &dirty_submodule, &revs->diffopt) < 0) |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 320 | return; |
| 321 | |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 322 | diff_index_show_file(revs, "+", new_file, oid, !is_null_oid(oid), mode, dirty_submodule); |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 323 | } |
| 324 | |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 325 | static int show_modified(struct rev_info *revs, |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 326 | const struct cache_entry *old_entry, |
| 327 | const struct cache_entry *new_entry, |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 328 | int report_missing, |
| 329 | int cached, int match_missing) |
| 330 | { |
| 331 | unsigned int mode, oldmode; |
Brandon Williams | 362d765 | 2017-05-30 10:30:45 -0700 | [diff] [blame] | 332 | const struct object_id *oid; |
Jens Lehmann | e3d42c4 | 2010-01-18 21:26:18 +0100 | [diff] [blame] | 333 | unsigned dirty_submodule = 0; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 334 | |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 335 | if (get_stat_data(new_entry, &oid, &mode, cached, match_missing, |
Jens Lehmann | 4d34477 | 2010-01-23 17:37:26 +0100 | [diff] [blame] | 336 | &dirty_submodule, &revs->diffopt) < 0) { |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 337 | if (report_missing) |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 338 | diff_index_show_file(revs, "-", old_entry, |
| 339 | &old_entry->oid, 1, old_entry->ce_mode, |
brian m. carlson | 99d1a98 | 2016-09-05 20:07:52 +0000 | [diff] [blame] | 340 | 0); |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 341 | return -1; |
| 342 | } |
| 343 | |
Paul Mackerras | cb2b9f5 | 2006-09-04 21:38:40 +1000 | [diff] [blame] | 344 | if (revs->combine_merges && !cached && |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 345 | (oidcmp(oid, &old_entry->oid) || oidcmp(&old_entry->oid, &new_entry->oid))) { |
Paul Mackerras | cb2b9f5 | 2006-09-04 21:38:40 +1000 | [diff] [blame] | 346 | struct combine_diff_path *p; |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 347 | int pathlen = ce_namelen(new_entry); |
Paul Mackerras | cb2b9f5 | 2006-09-04 21:38:40 +1000 | [diff] [blame] | 348 | |
| 349 | p = xmalloc(combine_diff_path_size(2, pathlen)); |
| 350 | p->path = (char *) &p->parent[2]; |
| 351 | p->next = NULL; |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 352 | memcpy(p->path, new_entry->name, pathlen); |
Paul Mackerras | cb2b9f5 | 2006-09-04 21:38:40 +1000 | [diff] [blame] | 353 | p->path[pathlen] = 0; |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 354 | p->mode = mode; |
brian m. carlson | 1ff57c1 | 2015-03-13 23:39:33 +0000 | [diff] [blame] | 355 | oidclr(&p->oid); |
Paul Mackerras | cb2b9f5 | 2006-09-04 21:38:40 +1000 | [diff] [blame] | 356 | memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent)); |
| 357 | p->parent[0].status = DIFF_STATUS_MODIFIED; |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 358 | p->parent[0].mode = new_entry->ce_mode; |
| 359 | oidcpy(&p->parent[0].oid, &new_entry->oid); |
Paul Mackerras | cb2b9f5 | 2006-09-04 21:38:40 +1000 | [diff] [blame] | 360 | p->parent[1].status = DIFF_STATUS_MODIFIED; |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 361 | p->parent[1].mode = old_entry->ce_mode; |
| 362 | oidcpy(&p->parent[1].oid, &old_entry->oid); |
Paul Mackerras | cb2b9f5 | 2006-09-04 21:38:40 +1000 | [diff] [blame] | 363 | show_combined_diff(p, 2, revs->dense_combined_merges, revs); |
| 364 | free(p); |
| 365 | return 0; |
| 366 | } |
| 367 | |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 368 | oldmode = old_entry->ce_mode; |
| 369 | if (mode == oldmode && !oidcmp(oid, &old_entry->oid) && !dirty_submodule && |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 370 | !revs->diffopt.flags.find_copies_harder) |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 371 | return 0; |
| 372 | |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 373 | diff_change(&revs->diffopt, oldmode, mode, |
Brandon Williams | e36ede2 | 2018-02-14 10:59:38 -0800 | [diff] [blame] | 374 | &old_entry->oid, oid, 1, !is_null_oid(oid), |
| 375 | old_entry->name, 0, dirty_submodule); |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 376 | return 0; |
| 377 | } |
| 378 | |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 379 | /* |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 380 | * This gets a mix of an existing index and a tree, one pathname entry |
| 381 | * at a time. The index entry may be a single stage-0 one, but it could |
| 382 | * also be multiple unmerged entries (in which case idx_pos/idx_nr will |
| 383 | * give you the position and number of entries in the index). |
| 384 | */ |
| 385 | static void do_oneway_diff(struct unpack_trees_options *o, |
René Scharfe | eb9ae4b | 2013-06-02 17:46:55 +0200 | [diff] [blame] | 386 | const struct cache_entry *idx, |
| 387 | const struct cache_entry *tree) |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 388 | { |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 389 | struct rev_info *revs = o->unpack_data; |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 390 | int match_missing, cached; |
Junio C Hamano | 5c21ac0 | 2006-04-22 03:58:04 -0700 | [diff] [blame] | 391 | |
Nguyễn Thái Ngọc Duy | 425a28e | 2016-10-24 17:42:19 +0700 | [diff] [blame] | 392 | /* i-t-a entries do not actually exist in the index */ |
| 393 | if (revs->diffopt.ita_invisible_in_index && |
| 394 | idx && ce_intent_to_add(idx)) { |
| 395 | idx = NULL; |
| 396 | if (!tree) |
| 397 | return; /* nothing to diff.. */ |
| 398 | } |
| 399 | |
Nguyễn Thái Ngọc Duy | 540e694 | 2009-08-11 22:43:59 +0700 | [diff] [blame] | 400 | /* if the entry is not checked out, don't examine work tree */ |
Nguyễn Thái Ngọc Duy | b4d1690 | 2009-08-20 20:46:58 +0700 | [diff] [blame] | 401 | cached = o->index_only || |
| 402 | (idx && ((idx->ce_flags & CE_VALID) || ce_skip_worktree(idx))); |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 403 | /* |
Junio C Hamano | 5c21ac0 | 2006-04-22 03:58:04 -0700 | [diff] [blame] | 404 | * Backward compatibility wart - "diff-index -m" does |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 405 | * not mean "do not ignore merges", but "match_missing". |
| 406 | * |
| 407 | * But with the revision flag parsing, that's found in |
| 408 | * "!revs->ignore_merges". |
Junio C Hamano | 5c21ac0 | 2006-04-22 03:58:04 -0700 | [diff] [blame] | 409 | */ |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 410 | match_missing = !revs->ignore_merges; |
| 411 | |
| 412 | if (cached && idx && ce_stage(idx)) { |
Junio C Hamano | fa7b290 | 2011-04-22 16:05:58 -0700 | [diff] [blame] | 413 | struct diff_filepair *pair; |
| 414 | pair = diff_unmerge(&revs->diffopt, idx->name); |
Junio C Hamano | ff00b68 | 2011-07-13 21:36:29 -0700 | [diff] [blame] | 415 | if (tree) |
Brandon Williams | f9704c2 | 2017-05-30 10:30:50 -0700 | [diff] [blame] | 416 | fill_filespec(pair->one, &tree->oid, 1, |
brian m. carlson | 99d1a98 | 2016-09-05 20:07:52 +0000 | [diff] [blame] | 417 | tree->ce_mode); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 418 | return; |
| 419 | } |
| 420 | |
| 421 | /* |
| 422 | * Something added to the tree? |
| 423 | */ |
| 424 | if (!tree) { |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 425 | show_new_file(revs, idx, cached, match_missing); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 426 | return; |
| 427 | } |
| 428 | |
| 429 | /* |
| 430 | * Something removed from the tree? |
| 431 | */ |
| 432 | if (!idx) { |
Brandon Williams | fcf2cfb | 2017-05-30 10:30:46 -0700 | [diff] [blame] | 433 | diff_index_show_file(revs, "-", tree, &tree->oid, 1, |
brian m. carlson | 99d1a98 | 2016-09-05 20:07:52 +0000 | [diff] [blame] | 434 | tree->ce_mode, 0); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 435 | return; |
| 436 | } |
| 437 | |
| 438 | /* Show difference between old and new */ |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 439 | show_modified(revs, tree, idx, 1, cached, match_missing); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | /* |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 443 | * The unpack_trees() interface is designed for merging, so |
| 444 | * the different source entries are designed primarily for |
| 445 | * the source trees, with the old index being really mainly |
| 446 | * used for being replaced by the result. |
| 447 | * |
| 448 | * For diffing, the index is more important, and we only have a |
| 449 | * single tree. |
| 450 | * |
Junio C Hamano | da8ba5e | 2009-09-17 22:12:17 -0700 | [diff] [blame] | 451 | * We're supposed to advance o->pos to skip what we have already processed. |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 452 | * |
| 453 | * This wrapper makes it all more readable, and takes care of all |
| 454 | * the fairly complex unpack_trees() semantic requirements, including |
| 455 | * the skipping, the path matching, the type conflict cases etc. |
| 456 | */ |
René Scharfe | 5828e83 | 2013-06-02 17:46:56 +0200 | [diff] [blame] | 457 | static int oneway_diff(const struct cache_entry * const *src, |
| 458 | struct unpack_trees_options *o) |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 459 | { |
René Scharfe | eb9ae4b | 2013-06-02 17:46:55 +0200 | [diff] [blame] | 460 | const struct cache_entry *idx = src[0]; |
| 461 | const struct cache_entry *tree = src[1]; |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 462 | struct rev_info *revs = o->unpack_data; |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 463 | |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 464 | /* |
| 465 | * Unpack-trees generates a DF/conflict entry if |
| 466 | * there was a directory in the index and a tree |
| 467 | * in the tree. From a diff standpoint, that's a |
| 468 | * delete of the tree and a create of the file. |
| 469 | */ |
| 470 | if (tree == o->df_conflict_entry) |
| 471 | tree = NULL; |
| 472 | |
Nguyễn Thái Ngọc Duy | 429bb40 | 2014-01-24 20:40:28 +0700 | [diff] [blame] | 473 | if (ce_path_match(idx ? idx : tree, &revs->prune_data, NULL)) { |
Linus Torvalds | 34110cd | 2008-03-06 18:12:28 -0800 | [diff] [blame] | 474 | do_oneway_diff(o, idx, tree); |
Junio C Hamano | b419482 | 2011-05-31 10:06:44 -0700 | [diff] [blame] | 475 | if (diff_can_quit_early(&revs->diffopt)) { |
| 476 | o->exiting_early = 1; |
| 477 | return -1; |
| 478 | } |
| 479 | } |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 480 | |
Linus Torvalds | 34110cd | 2008-03-06 18:12:28 -0800 | [diff] [blame] | 481 | return 0; |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 482 | } |
| 483 | |
Junio C Hamano | bf979c0 | 2011-07-13 18:57:42 -0700 | [diff] [blame] | 484 | static int diff_cache(struct rev_info *revs, |
brian m. carlson | 944cffb | 2017-05-06 22:10:35 +0000 | [diff] [blame] | 485 | const struct object_id *tree_oid, |
Junio C Hamano | bf979c0 | 2011-07-13 18:57:42 -0700 | [diff] [blame] | 486 | const char *tree_name, |
| 487 | int cached) |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 488 | { |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 489 | struct tree *tree; |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 490 | struct tree_desc t; |
Junio C Hamano | bf979c0 | 2011-07-13 18:57:42 -0700 | [diff] [blame] | 491 | struct unpack_trees_options opts; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 492 | |
brian m. carlson | a9dbc17 | 2017-05-06 22:10:37 +0000 | [diff] [blame] | 493 | tree = parse_tree_indirect(tree_oid); |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 494 | if (!tree) |
Junio C Hamano | bf979c0 | 2011-07-13 18:57:42 -0700 | [diff] [blame] | 495 | return error("bad tree object %s", |
brian m. carlson | 944cffb | 2017-05-06 22:10:35 +0000 | [diff] [blame] | 496 | tree_name ? tree_name : oid_to_hex(tree_oid)); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 497 | memset(&opts, 0, sizeof(opts)); |
| 498 | opts.head_idx = 1; |
| 499 | opts.index_only = cached; |
Junio C Hamano | a0919ce | 2009-05-22 23:14:25 -0700 | [diff] [blame] | 500 | opts.diff_index_cached = (cached && |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 501 | !revs->diffopt.flags.find_copies_harder); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 502 | opts.merge = 1; |
| 503 | opts.fn = oneway_diff; |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 504 | opts.unpack_data = revs; |
Linus Torvalds | 34110cd | 2008-03-06 18:12:28 -0800 | [diff] [blame] | 505 | opts.src_index = &the_index; |
| 506 | opts.dst_index = NULL; |
Junio C Hamano | 2f88c19 | 2011-08-29 13:34:08 -0700 | [diff] [blame] | 507 | opts.pathspec = &revs->diffopt.pathspec; |
Nguyen Thai Ngoc Duy | 4838237 | 2012-01-15 17:03:27 +0700 | [diff] [blame] | 508 | opts.pathspec->recursive = 1; |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 509 | |
| 510 | init_tree_desc(&t, tree->buffer, tree->size); |
Junio C Hamano | bf979c0 | 2011-07-13 18:57:42 -0700 | [diff] [blame] | 511 | return unpack_trees(1, &t, &opts); |
| 512 | } |
| 513 | |
| 514 | int run_diff_index(struct rev_info *revs, int cached) |
| 515 | { |
| 516 | struct object_array_entry *ent; |
Nguyễn Thái Ngọc Duy | ca54d9b | 2018-01-27 19:27:56 +0700 | [diff] [blame] | 517 | uint64_t start = getnanotime(); |
Junio C Hamano | bf979c0 | 2011-07-13 18:57:42 -0700 | [diff] [blame] | 518 | |
| 519 | ent = revs->pending.objects; |
brian m. carlson | 944cffb | 2017-05-06 22:10:35 +0000 | [diff] [blame] | 520 | if (diff_cache(revs, &ent->item->oid, ent->name, cached)) |
Daniel Barkalow | 203a2fe | 2008-02-07 11:39:48 -0500 | [diff] [blame] | 521 | exit(128); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 522 | |
Junio C Hamano | a5a818e | 2008-08-18 20:08:09 -0700 | [diff] [blame] | 523 | diff_set_mnemonic_prefix(&revs->diffopt, "c/", cached ? "i/" : "w/"); |
Junio C Hamano | 730f728 | 2009-09-20 00:03:39 -0700 | [diff] [blame] | 524 | diffcore_fix_diff_index(&revs->diffopt); |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 525 | diffcore_std(&revs->diffopt); |
| 526 | diff_flush(&revs->diffopt); |
Nguyễn Thái Ngọc Duy | ca54d9b | 2018-01-27 19:27:56 +0700 | [diff] [blame] | 527 | trace_performance_since(start, "diff-index"); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 528 | return 0; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 529 | } |
Junio C Hamano | 1cfe773 | 2007-01-30 01:11:08 -0800 | [diff] [blame] | 530 | |
brian m. carlson | 944cffb | 2017-05-06 22:10:35 +0000 | [diff] [blame] | 531 | int do_diff_cache(const struct object_id *tree_oid, struct diff_options *opt) |
Junio C Hamano | 1cfe773 | 2007-01-30 01:11:08 -0800 | [diff] [blame] | 532 | { |
Junio C Hamano | 1cfe773 | 2007-01-30 01:11:08 -0800 | [diff] [blame] | 533 | struct rev_info revs; |
Junio C Hamano | 1cfe773 | 2007-01-30 01:11:08 -0800 | [diff] [blame] | 534 | |
| 535 | init_revisions(&revs, NULL); |
Nguyễn Thái Ngọc Duy | 9a08727 | 2013-07-14 15:35:59 +0700 | [diff] [blame] | 536 | copy_pathspec(&revs.prune_data, &opt->pathspec); |
Junio C Hamano | bf979c0 | 2011-07-13 18:57:42 -0700 | [diff] [blame] | 537 | revs.diffopt = *opt; |
Johannes Schindelin | 204ce97 | 2008-01-20 15:19:56 +0000 | [diff] [blame] | 538 | |
brian m. carlson | 944cffb | 2017-05-06 22:10:35 +0000 | [diff] [blame] | 539 | if (diff_cache(&revs, tree_oid, NULL, 1)) |
Daniel Barkalow | 203a2fe | 2008-02-07 11:39:48 -0500 | [diff] [blame] | 540 | exit(128); |
Johannes Schindelin | 204ce97 | 2008-01-20 15:19:56 +0000 | [diff] [blame] | 541 | return 0; |
Junio C Hamano | 1cfe773 | 2007-01-30 01:11:08 -0800 | [diff] [blame] | 542 | } |
Stephan Beyer | 75f3ff2 | 2009-02-10 15:30:35 +0100 | [diff] [blame] | 543 | |
Brandon Williams | 02f2f56 | 2017-10-31 11:19:05 -0700 | [diff] [blame] | 544 | int index_differs_from(const char *def, const struct diff_flags *flags, |
Nguyễn Thái Ngọc Duy | 018ec3c | 2016-10-24 17:42:21 +0700 | [diff] [blame] | 545 | int ita_invisible_in_index) |
Stephan Beyer | 75f3ff2 | 2009-02-10 15:30:35 +0100 | [diff] [blame] | 546 | { |
| 547 | struct rev_info rev; |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 548 | struct setup_revision_opt opt; |
Stephan Beyer | 75f3ff2 | 2009-02-10 15:30:35 +0100 | [diff] [blame] | 549 | |
| 550 | init_revisions(&rev, NULL); |
Junio C Hamano | 32962c9 | 2010-03-08 22:58:09 -0800 | [diff] [blame] | 551 | memset(&opt, 0, sizeof(opt)); |
| 552 | opt.def = def; |
| 553 | setup_revisions(0, NULL, &rev, &opt); |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 554 | rev.diffopt.flags.quick = 1; |
| 555 | rev.diffopt.flags.exit_with_status = 1; |
Brandon Williams | 02f2f56 | 2017-10-31 11:19:05 -0700 | [diff] [blame] | 556 | if (flags) |
| 557 | diff_flags_or(&rev.diffopt.flags, flags); |
Nguyễn Thái Ngọc Duy | 018ec3c | 2016-10-24 17:42:21 +0700 | [diff] [blame] | 558 | rev.diffopt.ita_invisible_in_index = ita_invisible_in_index; |
Stephan Beyer | 75f3ff2 | 2009-02-10 15:30:35 +0100 | [diff] [blame] | 559 | run_diff_index(&rev, 1); |
Martin Ågren | dcb572a | 2017-09-23 01:34:52 +0200 | [diff] [blame] | 560 | object_array_clear(&rev.pending); |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 561 | return (rev.diffopt.flags.has_changes != 0); |
Stephan Beyer | 75f3ff2 | 2009-02-10 15:30:35 +0100 | [diff] [blame] | 562 | } |