|
5 | 5 | #include "ewah/ewok.h"
|
6 | 6 | #include "fsmonitor.h"
|
7 | 7 | #include "fsmonitor-ipc.h"
|
| 8 | +#include "name-hash.h" |
8 | 9 | #include "run-command.h"
|
9 | 10 | #include "strbuf.h"
|
10 | 11 | #include "trace2.h"
|
@@ -202,6 +203,113 @@ static void invalidate_ce_fsm(struct cache_entry *ce)
|
202 | 203 | static size_t handle_path_with_trailing_slash(
|
203 | 204 | struct index_state *istate, const char *name, int pos);
|
204 | 205 |
|
| 206 | +/* |
| 207 | + * Use the name-hash to do a case-insensitive cache-entry lookup with |
| 208 | + * the pathname and invalidate the cache-entry. |
| 209 | + * |
| 210 | + * Returns the number of cache-entries that we invalidated. |
| 211 | + */ |
| 212 | +static size_t handle_using_name_hash_icase( |
| 213 | + struct index_state *istate, const char *name) |
| 214 | +{ |
| 215 | + struct cache_entry *ce = NULL; |
| 216 | + |
| 217 | + ce = index_file_exists(istate, name, strlen(name), 1); |
| 218 | + if (!ce) |
| 219 | + return 0; |
| 220 | + |
| 221 | + /* |
| 222 | + * A case-insensitive search in the name-hash using the |
| 223 | + * observed pathname found a cache-entry, so the observed path |
| 224 | + * is case-incorrect. Invalidate the cache-entry and use the |
| 225 | + * correct spelling from the cache-entry to invalidate the |
| 226 | + * untracked-cache. Since we now have sparse-directories in |
| 227 | + * the index, the observed pathname may represent a regular |
| 228 | + * file or a sparse-index directory. |
| 229 | + * |
| 230 | + * Note that we should not have seen FSEvents for a |
| 231 | + * sparse-index directory, but we handle it just in case. |
| 232 | + * |
| 233 | + * Either way, we know that there are not any cache-entries for |
| 234 | + * children inside the cone of the directory, so we don't need to |
| 235 | + * do the usual scan. |
| 236 | + */ |
| 237 | + trace_printf_key(&trace_fsmonitor, |
| 238 | + "fsmonitor_refresh_callback MAP: '%s' '%s'", |
| 239 | + name, ce->name); |
| 240 | + |
| 241 | + /* |
| 242 | + * NEEDSWORK: We used the name-hash to find the correct |
| 243 | + * case-spelling of the pathname in the cache-entry[], so |
| 244 | + * technically this is a tracked file or a sparse-directory. |
| 245 | + * It should not have any entries in the untracked-cache, so |
| 246 | + * we should not need to use the case-corrected spelling to |
| 247 | + * invalidate the the untracked-cache. So we may not need to |
| 248 | + * do this. For now, I'm going to be conservative and always |
| 249 | + * do it; we can revisit this later. |
| 250 | + */ |
| 251 | + untracked_cache_invalidate_trimmed_path(istate, ce->name, 0); |
| 252 | + |
| 253 | + invalidate_ce_fsm(ce); |
| 254 | + return 1; |
| 255 | +} |
| 256 | + |
| 257 | +/* |
| 258 | + * Use the dir-name-hash to find the correct-case spelling of the |
| 259 | + * directory. Use the canonical spelling to invalidate all of the |
| 260 | + * cache-entries within the matching cone. |
| 261 | + * |
| 262 | + * Returns the number of cache-entries that we invalidated. |
| 263 | + */ |
| 264 | +static size_t handle_using_dir_name_hash_icase( |
| 265 | + struct index_state *istate, const char *name) |
| 266 | +{ |
| 267 | + struct strbuf canonical_path = STRBUF_INIT; |
| 268 | + int pos; |
| 269 | + size_t len = strlen(name); |
| 270 | + size_t nr_in_cone; |
| 271 | + |
| 272 | + if (name[len - 1] == '/') |
| 273 | + len--; |
| 274 | + |
| 275 | + if (!index_dir_find(istate, name, len, &canonical_path)) |
| 276 | + return 0; /* name is untracked */ |
| 277 | + |
| 278 | + if (!memcmp(name, canonical_path.buf, canonical_path.len)) { |
| 279 | + strbuf_release(&canonical_path); |
| 280 | + /* |
| 281 | + * NEEDSWORK: Our caller already tried an exact match |
| 282 | + * and failed to find one. They called us to do an |
| 283 | + * ICASE match, so we should never get an exact match, |
| 284 | + * so we could promote this to a BUG() here if we |
| 285 | + * wanted to. It doesn't hurt anything to just return |
| 286 | + * 0 and go on because we should never get here. Or we |
| 287 | + * could just get rid of the memcmp() and this "if" |
| 288 | + * clause completely. |
| 289 | + */ |
| 290 | + BUG("handle_using_dir_name_hash_icase(%s) did not exact match", |
| 291 | + name); |
| 292 | + } |
| 293 | + |
| 294 | + trace_printf_key(&trace_fsmonitor, |
| 295 | + "fsmonitor_refresh_callback MAP: '%s' '%s'", |
| 296 | + name, canonical_path.buf); |
| 297 | + |
| 298 | + /* |
| 299 | + * The dir-name-hash only tells us the corrected spelling of |
| 300 | + * the prefix. We have to use this canonical path to do a |
| 301 | + * lookup in the cache-entry array so that we repeat the |
| 302 | + * original search using the case-corrected spelling. |
| 303 | + */ |
| 304 | + strbuf_addch(&canonical_path, '/'); |
| 305 | + pos = index_name_pos(istate, canonical_path.buf, |
| 306 | + canonical_path.len); |
| 307 | + nr_in_cone = handle_path_with_trailing_slash( |
| 308 | + istate, canonical_path.buf, pos); |
| 309 | + strbuf_release(&canonical_path); |
| 310 | + return nr_in_cone; |
| 311 | +} |
| 312 | + |
205 | 313 | /*
|
206 | 314 | * The daemon sent an observed pathname without a trailing slash.
|
207 | 315 | * (This is the normal case.) We do not know if it is a tracked or
|
@@ -335,6 +443,19 @@ static void fsmonitor_refresh_callback(struct index_state *istate, char *name)
|
335 | 443 | else
|
336 | 444 | nr_in_cone = handle_path_without_trailing_slash(istate, name, pos);
|
337 | 445 |
|
| 446 | + /* |
| 447 | + * If we did not find an exact match for this pathname or any |
| 448 | + * cache-entries with this directory prefix and we're on a |
| 449 | + * case-insensitive file system, try again using the name-hash |
| 450 | + * and dir-name-hash. |
| 451 | + */ |
| 452 | + if (!nr_in_cone && ignore_case) { |
| 453 | + nr_in_cone = handle_using_name_hash_icase(istate, name); |
| 454 | + if (!nr_in_cone) |
| 455 | + nr_in_cone = handle_using_dir_name_hash_icase( |
| 456 | + istate, name); |
| 457 | + } |
| 458 | + |
338 | 459 | if (nr_in_cone)
|
339 | 460 | trace_printf_key(&trace_fsmonitor,
|
340 | 461 | "fsmonitor_refresh_callback CNT: %d",
|
|
0 commit comments