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" |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 13 | |
Junio C Hamano | b46f0b6 | 2005-05-04 01:45:24 -0700 | [diff] [blame] | 14 | /* |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 15 | * diff-files |
Junio C Hamano | b46f0b6 | 2005-05-04 01:45:24 -0700 | [diff] [blame] | 16 | */ |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 17 | |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 18 | /* |
Junio C Hamano | 1392a37 | 2008-05-03 17:04:42 -0700 | [diff] [blame] | 19 | * Has the work tree entity been removed? |
| 20 | * |
| 21 | * Return 1 if it was removed from the work tree, 0 if an entity to be |
| 22 | * compared with the cache entry ce still exists (the latter includes |
| 23 | * the case where a directory that is not a submodule repository |
| 24 | * exists for ce that is a submodule -- it is a submodule that is not |
| 25 | * checked out). Return negative for an error. |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 26 | */ |
Linus Torvalds | c40641b | 2008-05-09 09:21:07 -0700 | [diff] [blame] | 27 | 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] | 28 | { |
| 29 | if (lstat(ce->name, st) < 0) { |
| 30 | if (errno != ENOENT && errno != ENOTDIR) |
| 31 | return -1; |
| 32 | return 1; |
| 33 | } |
Kjetil Barvik | 5719989 | 2009-02-09 21:54:06 +0100 | [diff] [blame] | 34 | if (has_symlink_leading_path(ce->name, ce_namelen(ce))) |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 35 | return 1; |
| 36 | if (S_ISDIR(st->st_mode)) { |
| 37 | unsigned char sub[20]; |
Junio C Hamano | 1392a37 | 2008-05-03 17:04:42 -0700 | [diff] [blame] | 38 | |
| 39 | /* |
| 40 | * If ce is already a gitlink, we can have a plain |
| 41 | * directory (i.e. the submodule is not checked out), |
| 42 | * or a checked out submodule. Either case this is not |
| 43 | * a case where something was removed from the work tree, |
| 44 | * so we will return 0. |
| 45 | * |
| 46 | * Otherwise, if the directory is not a submodule |
| 47 | * repository, that means ce which was a blob turned into |
| 48 | * a directory --- the blob was removed! |
| 49 | */ |
| 50 | if (!S_ISGITLINK(ce->ce_mode) && |
| 51 | resolve_gitlink_ref(ce->name, "HEAD", sub)) |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 52 | return 1; |
| 53 | } |
| 54 | return 0; |
| 55 | } |
Johannes Schindelin | d516c2d | 2007-02-22 21:50:10 +0100 | [diff] [blame] | 56 | |
Junio C Hamano | 4bd5b7d | 2007-11-10 00:15:03 -0800 | [diff] [blame] | 57 | int run_diff_files(struct rev_info *revs, unsigned int option) |
Junio C Hamano | b46f0b6 | 2005-05-04 01:45:24 -0700 | [diff] [blame] | 58 | { |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 59 | int entries, i; |
| 60 | int diff_unmerged_stage = revs->max_count; |
Junio C Hamano | 4bd5b7d | 2007-11-10 00:15:03 -0800 | [diff] [blame] | 61 | int silent_on_removed = option & DIFF_SILENT_ON_REMOVED; |
Junio C Hamano | fb63d7f | 2007-11-09 18:22:52 -0800 | [diff] [blame] | 62 | unsigned ce_option = ((option & DIFF_RACY_IS_MODIFIED) |
| 63 | ? CE_MATCH_RACY_IS_DIRTY : 0); |
Junio C Hamano | 5c97558 | 2005-05-19 03:32:35 -0700 | [diff] [blame] | 64 | |
Junio C Hamano | a5a818e | 2008-08-18 20:08:09 -0700 | [diff] [blame] | 65 | diff_set_mnemonic_prefix(&revs->diffopt, "i/", "w/"); |
| 66 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 67 | if (diff_unmerged_stage < 0) |
| 68 | diff_unmerged_stage = 2; |
Junio C Hamano | b4e1e4a | 2007-02-09 18:51:40 -0800 | [diff] [blame] | 69 | entries = active_nr; |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 70 | for (i = 0; i < entries; i++) { |
Junio C Hamano | 427dcb4 | 2005-05-21 02:39:09 -0700 | [diff] [blame] | 71 | struct stat st; |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 72 | unsigned int oldmode, newmode; |
| 73 | struct cache_entry *ce = active_cache[i]; |
| 74 | int changed; |
Junio C Hamano | f0c6b2a | 2005-05-27 15:56:38 -0700 | [diff] [blame] | 75 | |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 76 | if (DIFF_OPT_TST(&revs->diffopt, QUIET) && |
| 77 | DIFF_OPT_TST(&revs->diffopt, HAS_CHANGES)) |
Junio C Hamano | 822cac0 | 2007-03-14 11:12:51 -0700 | [diff] [blame] | 78 | break; |
| 79 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 80 | if (!ce_path_match(ce, revs->prune_data)) |
Linus Torvalds | 8676eb4 | 2006-02-26 15:51:24 -0800 | [diff] [blame] | 81 | continue; |
Linus Torvalds | 8676eb4 | 2006-02-26 15:51:24 -0800 | [diff] [blame] | 82 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 83 | if (ce_stage(ce)) { |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 84 | struct combine_diff_path *dpath; |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 85 | int num_compare_stages = 0; |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 86 | size_t path_len; |
Linus Torvalds | 8676eb4 | 2006-02-26 15:51:24 -0800 | [diff] [blame] | 87 | |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 88 | path_len = ce_namelen(ce); |
| 89 | |
Junio C Hamano | 4fc970c | 2007-02-25 22:24:47 -0800 | [diff] [blame] | 90 | dpath = xmalloc(combine_diff_path_size(5, path_len)); |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 91 | dpath->path = (char *) &(dpath->parent[5]); |
| 92 | |
| 93 | dpath->next = NULL; |
| 94 | dpath->len = path_len; |
| 95 | memcpy(dpath->path, ce->name, path_len); |
| 96 | dpath->path[path_len] = '\0'; |
Junio C Hamano | a8e0d16 | 2006-08-23 13:57:23 -0700 | [diff] [blame] | 97 | hashclr(dpath->sha1); |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 98 | memset(&(dpath->parent[0]), 0, |
Junio C Hamano | 4fc970c | 2007-02-25 22:24:47 -0800 | [diff] [blame] | 99 | sizeof(struct combine_diff_parent)*5); |
| 100 | |
Linus Torvalds | c40641b | 2008-05-09 09:21:07 -0700 | [diff] [blame] | 101 | changed = check_removed(ce, &st); |
Junio C Hamano | f58dbf2 | 2008-03-30 17:30:08 -0700 | [diff] [blame] | 102 | if (!changed) |
| 103 | dpath->mode = ce_mode_from_stat(ce, st.st_mode); |
| 104 | else { |
| 105 | if (changed < 0) { |
Junio C Hamano | 4fc970c | 2007-02-25 22:24:47 -0800 | [diff] [blame] | 106 | perror(ce->name); |
| 107 | continue; |
| 108 | } |
| 109 | if (silent_on_removed) |
| 110 | continue; |
| 111 | } |
Junio C Hamano | be3cfa8 | 2005-04-26 09:25:05 -0700 | [diff] [blame] | 112 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 113 | while (i < entries) { |
| 114 | struct cache_entry *nce = active_cache[i]; |
| 115 | int stage; |
Junio C Hamano | be3cfa8 | 2005-04-26 09:25:05 -0700 | [diff] [blame] | 116 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 117 | if (strcmp(ce->name, nce->name)) |
| 118 | break; |
Junio C Hamano | be3cfa8 | 2005-04-26 09:25:05 -0700 | [diff] [blame] | 119 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 120 | /* Stage #2 (ours) is the first parent, |
| 121 | * stage #3 (theirs) is the second. |
| 122 | */ |
| 123 | stage = ce_stage(nce); |
| 124 | if (2 <= stage) { |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 125 | int mode = nce->ce_mode; |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 126 | num_compare_stages++; |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 127 | hashcpy(dpath->parent[stage-2].sha1, nce->sha1); |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 128 | dpath->parent[stage-2].mode = ce_mode_from_stat(nce, mode); |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 129 | dpath->parent[stage-2].status = |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 130 | DIFF_STATUS_MODIFIED; |
| 131 | } |
Junio C Hamano | cebff98 | 2006-03-25 23:12:17 -0800 | [diff] [blame] | 132 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 133 | /* diff against the proper unmerged stage */ |
| 134 | if (stage == diff_unmerged_stage) |
| 135 | ce = nce; |
| 136 | i++; |
H. Peter Anvin | 1b1480f | 2005-11-21 14:17:12 -0800 | [diff] [blame] | 137 | } |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 138 | /* |
| 139 | * Compensate for loop update |
| 140 | */ |
| 141 | i--; |
Junio C Hamano | 0e3994f | 2005-06-03 01:37:54 -0700 | [diff] [blame] | 142 | |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 143 | if (revs->combine_merges && num_compare_stages == 2) { |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 144 | show_combined_diff(dpath, 2, |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 145 | revs->dense_combined_merges, |
| 146 | revs); |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 147 | free(dpath); |
Junio C Hamano | 15d061b | 2005-05-27 15:55:55 -0700 | [diff] [blame] | 148 | continue; |
| 149 | } |
Florian Forster | b4b1550 | 2006-06-18 17:18:05 +0200 | [diff] [blame] | 150 | free(dpath); |
| 151 | dpath = NULL; |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 152 | |
| 153 | /* |
| 154 | * Show the diff for the 'ce' if we found the one |
| 155 | * from the desired stage. |
Junio C Hamano | 25d5ea4 | 2005-05-24 01:10:48 -0700 | [diff] [blame] | 156 | */ |
Junio C Hamano | e9c8409 | 2007-01-05 01:25:18 -0800 | [diff] [blame] | 157 | diff_unmerge(&revs->diffopt, ce->name, 0, null_sha1); |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 158 | if (ce_stage(ce) != diff_unmerged_stage) |
| 159 | continue; |
| 160 | } |
| 161 | |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 162 | if (ce_uptodate(ce)) |
| 163 | continue; |
Junio C Hamano | f58dbf2 | 2008-03-30 17:30:08 -0700 | [diff] [blame] | 164 | |
Nguyễn Thái Ngọc Duy | 540e694 | 2009-08-11 22:43:59 +0700 | [diff] [blame] | 165 | /* If CE_VALID is set, don't look at workdir for file removal */ |
| 166 | changed = (ce->ce_flags & CE_VALID) ? 0 : check_removed(ce, &st); |
Junio C Hamano | f58dbf2 | 2008-03-30 17:30:08 -0700 | [diff] [blame] | 167 | if (changed) { |
| 168 | if (changed < 0) { |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 169 | perror(ce->name); |
| 170 | continue; |
Junio C Hamano | 25d5ea4 | 2005-05-24 01:10:48 -0700 | [diff] [blame] | 171 | } |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 172 | if (silent_on_removed) |
| 173 | continue; |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 174 | diff_addremove(&revs->diffopt, '-', ce->ce_mode, |
Dmitry Potapov | fd55a19 | 2008-07-16 18:54:02 +0400 | [diff] [blame] | 175 | ce->sha1, ce->name); |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 176 | continue; |
Junio C Hamano | bceafe7 | 2005-05-23 18:14:03 -0700 | [diff] [blame] | 177 | } |
Junio C Hamano | fb63d7f | 2007-11-09 18:22:52 -0800 | [diff] [blame] | 178 | changed = ce_match_stat(ce, &st, ce_option); |
Junio C Hamano | 8fa2960 | 2008-03-30 12:39:25 -0700 | [diff] [blame] | 179 | if (!changed) { |
| 180 | ce_mark_uptodate(ce); |
| 181 | if (!DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER)) |
| 182 | continue; |
| 183 | } |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 184 | oldmode = ce->ce_mode; |
| 185 | newmode = ce_mode_from_stat(ce, st.st_mode); |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 186 | diff_change(&revs->diffopt, oldmode, newmode, |
| 187 | ce->sha1, (changed ? null_sha1 : ce->sha1), |
Dmitry Potapov | fd55a19 | 2008-07-16 18:54:02 +0400 | [diff] [blame] | 188 | ce->name); |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 189 | |
Junio C Hamano | bceafe7 | 2005-05-23 18:14:03 -0700 | [diff] [blame] | 190 | } |
Junio C Hamano | 6973dca | 2006-04-21 23:57:45 -0700 | [diff] [blame] | 191 | diffcore_std(&revs->diffopt); |
| 192 | diff_flush(&revs->diffopt); |
| 193 | return 0; |
Junio C Hamano | bceafe7 | 2005-05-23 18:14:03 -0700 | [diff] [blame] | 194 | } |
| 195 | |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 196 | /* |
| 197 | * diff-index |
| 198 | */ |
| 199 | |
| 200 | /* A file entry went away or appeared */ |
| 201 | static void diff_index_show_file(struct rev_info *revs, |
| 202 | const char *prefix, |
| 203 | struct cache_entry *ce, |
Junio C Hamano | c8c16f2 | 2008-03-02 00:57:26 -0800 | [diff] [blame] | 204 | const unsigned char *sha1, unsigned int mode) |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 205 | { |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 206 | diff_addremove(&revs->diffopt, prefix[0], mode, |
Dmitry Potapov | fd55a19 | 2008-07-16 18:54:02 +0400 | [diff] [blame] | 207 | sha1, ce->name); |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | static int get_stat_data(struct cache_entry *ce, |
Junio C Hamano | c8c16f2 | 2008-03-02 00:57:26 -0800 | [diff] [blame] | 211 | const unsigned char **sha1p, |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 212 | unsigned int *modep, |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 213 | int cached, int match_missing) |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 214 | { |
Junio C Hamano | c8c16f2 | 2008-03-02 00:57:26 -0800 | [diff] [blame] | 215 | const unsigned char *sha1 = ce->sha1; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 216 | unsigned int mode = ce->ce_mode; |
| 217 | |
Linus Torvalds | 658dd48 | 2009-05-09 14:57:30 -0700 | [diff] [blame] | 218 | if (!cached && !ce_uptodate(ce)) { |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 219 | int changed; |
| 220 | struct stat st; |
Linus Torvalds | c40641b | 2008-05-09 09:21:07 -0700 | [diff] [blame] | 221 | changed = check_removed(ce, &st); |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 222 | if (changed < 0) |
| 223 | return -1; |
| 224 | else if (changed) { |
| 225 | if (match_missing) { |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 226 | *sha1p = sha1; |
| 227 | *modep = mode; |
| 228 | return 0; |
| 229 | } |
| 230 | return -1; |
| 231 | } |
| 232 | changed = ce_match_stat(ce, &st, 0); |
| 233 | if (changed) { |
Junio C Hamano | 185c975 | 2007-02-16 22:43:48 -0800 | [diff] [blame] | 234 | mode = ce_mode_from_stat(ce, st.st_mode); |
Junio C Hamano | c8c16f2 | 2008-03-02 00:57:26 -0800 | [diff] [blame] | 235 | sha1 = null_sha1; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 236 | } |
| 237 | } |
| 238 | |
| 239 | *sha1p = sha1; |
| 240 | *modep = mode; |
| 241 | return 0; |
| 242 | } |
| 243 | |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 244 | static void show_new_file(struct rev_info *revs, |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 245 | struct cache_entry *new, |
| 246 | int cached, int match_missing) |
| 247 | { |
Junio C Hamano | c8c16f2 | 2008-03-02 00:57:26 -0800 | [diff] [blame] | 248 | const unsigned char *sha1; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 249 | unsigned int mode; |
| 250 | |
Junio C Hamano | 948dd34 | 2008-03-30 17:29:48 -0700 | [diff] [blame] | 251 | /* |
| 252 | * New file in the index: it might actually be different in |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 253 | * the working copy. |
| 254 | */ |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 255 | if (get_stat_data(new, &sha1, &mode, cached, match_missing) < 0) |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 256 | return; |
| 257 | |
| 258 | diff_index_show_file(revs, "+", new, sha1, mode); |
| 259 | } |
| 260 | |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 261 | static int show_modified(struct rev_info *revs, |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 262 | struct cache_entry *old, |
| 263 | struct cache_entry *new, |
| 264 | int report_missing, |
| 265 | int cached, int match_missing) |
| 266 | { |
| 267 | unsigned int mode, oldmode; |
Junio C Hamano | c8c16f2 | 2008-03-02 00:57:26 -0800 | [diff] [blame] | 268 | const unsigned char *sha1; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 269 | |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 270 | if (get_stat_data(new, &sha1, &mode, cached, match_missing) < 0) { |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 271 | if (report_missing) |
| 272 | diff_index_show_file(revs, "-", old, |
| 273 | old->sha1, old->ce_mode); |
| 274 | return -1; |
| 275 | } |
| 276 | |
Paul Mackerras | cb2b9f5 | 2006-09-04 21:38:40 +1000 | [diff] [blame] | 277 | if (revs->combine_merges && !cached && |
| 278 | (hashcmp(sha1, old->sha1) || hashcmp(old->sha1, new->sha1))) { |
| 279 | struct combine_diff_path *p; |
| 280 | int pathlen = ce_namelen(new); |
| 281 | |
| 282 | p = xmalloc(combine_diff_path_size(2, pathlen)); |
| 283 | p->path = (char *) &p->parent[2]; |
| 284 | p->next = NULL; |
| 285 | p->len = pathlen; |
| 286 | memcpy(p->path, new->name, pathlen); |
| 287 | p->path[pathlen] = 0; |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 288 | p->mode = mode; |
Paul Mackerras | cb2b9f5 | 2006-09-04 21:38:40 +1000 | [diff] [blame] | 289 | hashclr(p->sha1); |
| 290 | memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent)); |
| 291 | p->parent[0].status = DIFF_STATUS_MODIFIED; |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 292 | p->parent[0].mode = new->ce_mode; |
Paul Mackerras | cb2b9f5 | 2006-09-04 21:38:40 +1000 | [diff] [blame] | 293 | hashcpy(p->parent[0].sha1, new->sha1); |
| 294 | p->parent[1].status = DIFF_STATUS_MODIFIED; |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 295 | p->parent[1].mode = old->ce_mode; |
Paul Mackerras | cb2b9f5 | 2006-09-04 21:38:40 +1000 | [diff] [blame] | 296 | hashcpy(p->parent[1].sha1, old->sha1); |
| 297 | show_combined_diff(p, 2, revs->dense_combined_merges, revs); |
| 298 | free(p); |
| 299 | return 0; |
| 300 | } |
| 301 | |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 302 | oldmode = old->ce_mode; |
David Rientjes | a89fccd | 2006-08-17 11:54:57 -0700 | [diff] [blame] | 303 | if (mode == oldmode && !hashcmp(sha1, old->sha1) && |
Pierre Habouzit | 8f67f8a | 2007-11-10 20:05:14 +0100 | [diff] [blame] | 304 | !DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER)) |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 305 | return 0; |
| 306 | |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 307 | diff_change(&revs->diffopt, oldmode, mode, |
Dmitry Potapov | fd55a19 | 2008-07-16 18:54:02 +0400 | [diff] [blame] | 308 | old->sha1, sha1, old->name); |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 309 | return 0; |
| 310 | } |
| 311 | |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 312 | /* |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 313 | * This gets a mix of an existing index and a tree, one pathname entry |
| 314 | * at a time. The index entry may be a single stage-0 one, but it could |
| 315 | * also be multiple unmerged entries (in which case idx_pos/idx_nr will |
| 316 | * give you the position and number of entries in the index). |
| 317 | */ |
| 318 | static void do_oneway_diff(struct unpack_trees_options *o, |
| 319 | struct cache_entry *idx, |
Linus Torvalds | 34110cd | 2008-03-06 18:12:28 -0800 | [diff] [blame] | 320 | struct cache_entry *tree) |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 321 | { |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 322 | struct rev_info *revs = o->unpack_data; |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 323 | int match_missing, cached; |
Junio C Hamano | 5c21ac0 | 2006-04-22 03:58:04 -0700 | [diff] [blame] | 324 | |
Nguyễn Thái Ngọc Duy | 540e694 | 2009-08-11 22:43:59 +0700 | [diff] [blame] | 325 | /* if the entry is not checked out, don't examine work tree */ |
| 326 | cached = o->index_only || (idx && (idx->ce_flags & CE_VALID)); |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 327 | /* |
Junio C Hamano | 5c21ac0 | 2006-04-22 03:58:04 -0700 | [diff] [blame] | 328 | * Backward compatibility wart - "diff-index -m" does |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 329 | * not mean "do not ignore merges", but "match_missing". |
| 330 | * |
| 331 | * But with the revision flag parsing, that's found in |
| 332 | * "!revs->ignore_merges". |
Junio C Hamano | 5c21ac0 | 2006-04-22 03:58:04 -0700 | [diff] [blame] | 333 | */ |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 334 | match_missing = !revs->ignore_merges; |
| 335 | |
| 336 | if (cached && idx && ce_stage(idx)) { |
Junio C Hamano | 29796c6 | 2009-08-04 16:25:40 -0700 | [diff] [blame] | 337 | diff_unmerge(&revs->diffopt, idx->name, idx->ce_mode, |
| 338 | idx->sha1); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 339 | return; |
| 340 | } |
| 341 | |
| 342 | /* |
| 343 | * Something added to the tree? |
| 344 | */ |
| 345 | if (!tree) { |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 346 | show_new_file(revs, idx, cached, match_missing); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 347 | return; |
| 348 | } |
| 349 | |
| 350 | /* |
| 351 | * Something removed from the tree? |
| 352 | */ |
| 353 | if (!idx) { |
| 354 | diff_index_show_file(revs, "-", tree, tree->sha1, tree->ce_mode); |
| 355 | return; |
| 356 | } |
| 357 | |
| 358 | /* Show difference between old and new */ |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 359 | show_modified(revs, tree, idx, 1, cached, match_missing); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 360 | } |
| 361 | |
Linus Torvalds | 20a16eb | 2008-03-10 23:51:13 -0700 | [diff] [blame] | 362 | static inline void skip_same_name(struct cache_entry *ce, struct unpack_trees_options *o) |
| 363 | { |
| 364 | int len = ce_namelen(ce); |
| 365 | const struct index_state *index = o->src_index; |
| 366 | |
| 367 | while (o->pos < index->cache_nr) { |
| 368 | struct cache_entry *next = index->cache[o->pos]; |
| 369 | if (len != ce_namelen(next)) |
| 370 | break; |
| 371 | if (memcmp(ce->name, next->name, len)) |
| 372 | break; |
| 373 | o->pos++; |
| 374 | } |
| 375 | } |
| 376 | |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 377 | /* |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 378 | * The unpack_trees() interface is designed for merging, so |
| 379 | * the different source entries are designed primarily for |
| 380 | * the source trees, with the old index being really mainly |
| 381 | * used for being replaced by the result. |
| 382 | * |
| 383 | * For diffing, the index is more important, and we only have a |
| 384 | * single tree. |
| 385 | * |
| 386 | * We're supposed to return how many index entries we want to skip. |
| 387 | * |
| 388 | * This wrapper makes it all more readable, and takes care of all |
| 389 | * the fairly complex unpack_trees() semantic requirements, including |
| 390 | * the skipping, the path matching, the type conflict cases etc. |
| 391 | */ |
Linus Torvalds | 34110cd | 2008-03-06 18:12:28 -0800 | [diff] [blame] | 392 | static int oneway_diff(struct cache_entry **src, struct unpack_trees_options *o) |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 393 | { |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 394 | struct cache_entry *idx = src[0]; |
| 395 | struct cache_entry *tree = src[1]; |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 396 | struct rev_info *revs = o->unpack_data; |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 397 | |
Linus Torvalds | 20a16eb | 2008-03-10 23:51:13 -0700 | [diff] [blame] | 398 | if (idx && ce_stage(idx)) |
| 399 | skip_same_name(idx, o); |
| 400 | |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 401 | /* |
| 402 | * Unpack-trees generates a DF/conflict entry if |
| 403 | * there was a directory in the index and a tree |
| 404 | * in the tree. From a diff standpoint, that's a |
| 405 | * delete of the tree and a create of the file. |
| 406 | */ |
| 407 | if (tree == o->df_conflict_entry) |
| 408 | tree = NULL; |
| 409 | |
| 410 | if (ce_path_match(idx ? idx : tree, revs->prune_data)) |
Linus Torvalds | 34110cd | 2008-03-06 18:12:28 -0800 | [diff] [blame] | 411 | do_oneway_diff(o, idx, tree); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 412 | |
Linus Torvalds | 34110cd | 2008-03-06 18:12:28 -0800 | [diff] [blame] | 413 | return 0; |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | int run_diff_index(struct rev_info *revs, int cached) |
| 417 | { |
| 418 | struct object *ent; |
| 419 | struct tree *tree; |
| 420 | const char *tree_name; |
| 421 | struct unpack_trees_options opts; |
| 422 | struct tree_desc t; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 423 | |
Linus Torvalds | 1f1e895 | 2006-06-19 17:42:35 -0700 | [diff] [blame] | 424 | ent = revs->pending.objects[0].item; |
| 425 | tree_name = revs->pending.objects[0].name; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 426 | tree = parse_tree_indirect(ent->sha1); |
| 427 | if (!tree) |
| 428 | return error("bad tree object %s", tree_name); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 429 | |
| 430 | memset(&opts, 0, sizeof(opts)); |
| 431 | opts.head_idx = 1; |
| 432 | opts.index_only = cached; |
Junio C Hamano | a0919ce | 2009-05-22 23:14:25 -0700 | [diff] [blame] | 433 | opts.diff_index_cached = (cached && |
| 434 | !DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER)); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 435 | opts.merge = 1; |
| 436 | opts.fn = oneway_diff; |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 437 | opts.unpack_data = revs; |
Linus Torvalds | 34110cd | 2008-03-06 18:12:28 -0800 | [diff] [blame] | 438 | opts.src_index = &the_index; |
| 439 | opts.dst_index = NULL; |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 440 | |
| 441 | init_tree_desc(&t, tree->buffer, tree->size); |
Daniel Barkalow | 203a2fe | 2008-02-07 11:39:48 -0500 | [diff] [blame] | 442 | if (unpack_trees(1, &t, &opts)) |
| 443 | exit(128); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 444 | |
Junio C Hamano | a5a818e | 2008-08-18 20:08:09 -0700 | [diff] [blame] | 445 | diff_set_mnemonic_prefix(&revs->diffopt, "c/", cached ? "i/" : "w/"); |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 446 | diffcore_std(&revs->diffopt); |
| 447 | diff_flush(&revs->diffopt); |
Linus Torvalds | d1f2d7e | 2008-01-19 17:27:12 -0800 | [diff] [blame] | 448 | return 0; |
Junio C Hamano | e09ad6e | 2006-04-22 02:43:00 -0700 | [diff] [blame] | 449 | } |
Junio C Hamano | 1cfe773 | 2007-01-30 01:11:08 -0800 | [diff] [blame] | 450 | |
| 451 | int do_diff_cache(const unsigned char *tree_sha1, struct diff_options *opt) |
| 452 | { |
| 453 | struct tree *tree; |
| 454 | struct rev_info revs; |
| 455 | int i; |
| 456 | struct cache_entry **dst; |
| 457 | struct cache_entry *last = NULL; |
Johannes Schindelin | 204ce97 | 2008-01-20 15:19:56 +0000 | [diff] [blame] | 458 | struct unpack_trees_options opts; |
| 459 | struct tree_desc t; |
Junio C Hamano | 1cfe773 | 2007-01-30 01:11:08 -0800 | [diff] [blame] | 460 | |
| 461 | /* |
| 462 | * This is used by git-blame to run diff-cache internally; |
| 463 | * it potentially needs to repeatedly run this, so we will |
| 464 | * start by removing the higher order entries the last round |
| 465 | * left behind. |
| 466 | */ |
| 467 | dst = active_cache; |
| 468 | for (i = 0; i < active_nr; i++) { |
| 469 | struct cache_entry *ce = active_cache[i]; |
| 470 | if (ce_stage(ce)) { |
| 471 | if (last && !strcmp(ce->name, last->name)) |
| 472 | continue; |
| 473 | cache_tree_invalidate_path(active_cache_tree, |
| 474 | ce->name); |
| 475 | last = ce; |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 476 | ce->ce_flags |= CE_REMOVE; |
Junio C Hamano | 1cfe773 | 2007-01-30 01:11:08 -0800 | [diff] [blame] | 477 | } |
| 478 | *dst++ = ce; |
| 479 | } |
| 480 | active_nr = dst - active_cache; |
| 481 | |
| 482 | init_revisions(&revs, NULL); |
| 483 | revs.prune_data = opt->paths; |
| 484 | tree = parse_tree_indirect(tree_sha1); |
| 485 | if (!tree) |
| 486 | die("bad tree object %s", sha1_to_hex(tree_sha1)); |
Johannes Schindelin | 204ce97 | 2008-01-20 15:19:56 +0000 | [diff] [blame] | 487 | |
| 488 | memset(&opts, 0, sizeof(opts)); |
| 489 | opts.head_idx = 1; |
| 490 | opts.index_only = 1; |
Junio C Hamano | a0919ce | 2009-05-22 23:14:25 -0700 | [diff] [blame] | 491 | opts.diff_index_cached = !DIFF_OPT_TST(opt, FIND_COPIES_HARDER); |
Johannes Schindelin | 204ce97 | 2008-01-20 15:19:56 +0000 | [diff] [blame] | 492 | opts.merge = 1; |
| 493 | opts.fn = oneway_diff; |
Kjetil Barvik | ff7e6aa | 2009-01-11 19:36:42 +0100 | [diff] [blame] | 494 | opts.unpack_data = &revs; |
Linus Torvalds | 34110cd | 2008-03-06 18:12:28 -0800 | [diff] [blame] | 495 | opts.src_index = &the_index; |
| 496 | opts.dst_index = &the_index; |
Johannes Schindelin | 204ce97 | 2008-01-20 15:19:56 +0000 | [diff] [blame] | 497 | |
| 498 | init_tree_desc(&t, tree->buffer, tree->size); |
Daniel Barkalow | 203a2fe | 2008-02-07 11:39:48 -0500 | [diff] [blame] | 499 | if (unpack_trees(1, &t, &opts)) |
| 500 | exit(128); |
Johannes Schindelin | 204ce97 | 2008-01-20 15:19:56 +0000 | [diff] [blame] | 501 | return 0; |
Junio C Hamano | 1cfe773 | 2007-01-30 01:11:08 -0800 | [diff] [blame] | 502 | } |
Stephan Beyer | 75f3ff2 | 2009-02-10 15:30:35 +0100 | [diff] [blame] | 503 | |
| 504 | int index_differs_from(const char *def, int diff_flags) |
| 505 | { |
| 506 | struct rev_info rev; |
| 507 | |
| 508 | init_revisions(&rev, NULL); |
| 509 | setup_revisions(0, NULL, &rev, def); |
| 510 | DIFF_OPT_SET(&rev.diffopt, QUIET); |
| 511 | DIFF_OPT_SET(&rev.diffopt, EXIT_WITH_STATUS); |
| 512 | rev.diffopt.flags |= diff_flags; |
| 513 | run_diff_index(&rev, 1); |
| 514 | if (rev.pending.alloc) |
| 515 | free(rev.pending.objects); |
| 516 | return (DIFF_OPT_TST(&rev.diffopt, HAS_CHANGES) != 0); |
| 517 | } |