Start the 2.46 cycle
[alt-git.git] / fsmonitor-ll.h
blob0504ca07d62fa134079acbc43821d47d893a1da9
1 #ifndef FSMONITOR_LL_H
2 #define FSMONITOR_LL_H
4 struct index_state;
5 struct strbuf;
7 extern struct trace_key trace_fsmonitor;
9 /*
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);
52 #endif /* FSMONITOR_LL_H */