7 extern struct trace_key trace_fsmonitor
;
10 * Read the fsmonitor index extension and (if configured) restore the
11 * CE_FSMONITOR_VALID state.
13 int read_fsmonitor_extension(struct index_state
*istate
, const void *data
, unsigned long sz
);
16 * Fill the fsmonitor_dirty ewah bits with their state from the index,
17 * before it is split during writing.
19 void fill_fsmonitor_bitmap(struct index_state
*istate
);
22 * Write the CE_FSMONITOR_VALID state into the fsmonitor index
23 * extension. Reads from the fsmonitor_dirty ewah in the index.
25 void write_fsmonitor_extension(struct strbuf
*sb
, struct index_state
*istate
);
28 * Add/remove the fsmonitor index extension
30 void add_fsmonitor(struct index_state
*istate
);
31 void remove_fsmonitor(struct index_state
*istate
);
34 * Add/remove the fsmonitor index extension as necessary based on the current
35 * core.fsmonitor setting.
37 void tweak_fsmonitor(struct index_state
*istate
);
40 * Run the configured fsmonitor integration script and clear the
41 * CE_FSMONITOR_VALID bit for any files returned as dirty. Also invalidate
42 * any corresponding untracked cache directory structures. Optimized to only
43 * run the first time it is called.
45 void refresh_fsmonitor(struct index_state
*istate
);
48 * Does the received result contain the "trivial" response?
50 int fsmonitor_is_trivial_response(const struct strbuf
*query_result
);
53 * Set the given cache entries CE_FSMONITOR_VALID bit. This should be
54 * called any time the cache entry has been updated to reflect the
55 * current state of the file on disk.
57 static inline void mark_fsmonitor_valid(struct index_state
*istate
, struct cache_entry
*ce
)
59 if (core_fsmonitor
&& !(ce
->ce_flags
& CE_FSMONITOR_VALID
)) {
60 istate
->cache_changed
= 1;
61 ce
->ce_flags
|= CE_FSMONITOR_VALID
;
62 trace_printf_key(&trace_fsmonitor
, "mark_fsmonitor_clean '%s'", ce
->name
);
67 * Clear the given cache entry's CE_FSMONITOR_VALID bit and invalidate
68 * any corresponding untracked cache directory structures. This should
69 * be called any time git creates or modifies a file that should
70 * trigger an lstat() or invalidate the untracked cache for the
71 * corresponding directory
73 static inline void mark_fsmonitor_invalid(struct index_state
*istate
, struct cache_entry
*ce
)
76 ce
->ce_flags
&= ~CE_FSMONITOR_VALID
;
77 untracked_cache_invalidate_path(istate
, ce
->name
, 1);
78 trace_printf_key(&trace_fsmonitor
, "mark_fsmonitor_invalid '%s'", ce
->name
);