Skip to content

Commit d15eb4b

Browse files
vdyedscho
authored andcommitted
fsmonitor: reintroduce core.useBuiltinFSMonitor
Reintroduce the 'core.useBuiltinFSMonitor' config setting (originally added in 0a756b2 (fsmonitor: config settings are repository-specific, 2021-03-05)) after its removal from the upstream version of FSMonitor. Upstream, the 'core.useBuiltinFSMonitor' setting was rendered obsolete by "overloading" the 'core.fsmonitor' setting to take a boolean value. However, several applications (e.g., 'scalar') utilize the original config setting, so it should be preserved for a deprecation period before complete removal: * if 'core.fsmonitor' is a boolean, the user is correctly using the new config syntax; do not use 'core.useBuiltinFSMonitor'. * if 'core.fsmonitor' is unspecified, use 'core.useBuiltinFSMonitor'. * if 'core.fsmonitor' is a path, override and use the builtin FSMonitor if 'core.useBuiltinFSMonitor' is 'true'; otherwise, use the FSMonitor hook indicated by the path. Additionally, for this deprecation period, advise users to switch to using 'core.fsmonitor' to specify their use of the builtin FSMonitor. Signed-off-by: Victoria Dye <[email protected]>
1 parent 787bfe4 commit d15eb4b

File tree

4 files changed

+36
-2
lines changed

4 files changed

+36
-2
lines changed

Documentation/config/advice.txt

+3
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,7 @@ advice.*::
136136
Advice shown when either linkgit:git-add[1] or linkgit:git-rm[1]
137137
is asked to update index entries outside the current sparse
138138
checkout.
139+
useCoreFSMonitorConfig::
140+
Advice shown if the deprecated 'core.useBuiltinFSMonitor' config
141+
setting is in use.
139142
--

advice.c

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ static struct {
7474
[ADVICE_SUBMODULE_ALTERNATE_ERROR_STRATEGY_DIE] = { "submoduleAlternateErrorStrategyDie", 1 },
7575
[ADVICE_SUBMODULES_NOT_UPDATED] = { "submodulesNotUpdated", 1 },
7676
[ADVICE_UPDATE_SPARSE_PATH] = { "updateSparsePath", 1 },
77+
[ADVICE_USE_CORE_FSMONITOR_CONFIG] = { "useCoreFSMonitorConfig", 1 },
7778
[ADVICE_WAITING_FOR_EDITOR] = { "waitingForEditor", 1 },
7879
};
7980

advice.h

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ struct string_list;
4848
ADVICE_SUBMODULE_ALTERNATE_ERROR_STRATEGY_DIE,
4949
ADVICE_SUBMODULES_NOT_UPDATED,
5050
ADVICE_UPDATE_SPARSE_PATH,
51+
ADVICE_USE_CORE_FSMONITOR_CONFIG,
5152
ADVICE_WAITING_FOR_EDITOR,
5253
ADVICE_SKIPPED_CHERRY_PICKS,
5354
};

fsmonitor-settings.c

+31-2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,31 @@ static struct fsmonitor_settings *alloc_settings(void)
9898
return s;
9999
}
100100

101+
static int check_deprecated_builtin_config(struct repository *r)
102+
{
103+
int core_use_builtin_fsmonitor = 0;
104+
105+
/*
106+
* If 'core.useBuiltinFSMonitor' is set, print a deprecation warning
107+
* suggesting the use of 'core.fsmonitor' instead. If the config is
108+
* set to true, set the appropriate mode and return 1 indicating that
109+
* the check resulted the config being set by this (deprecated) setting.
110+
*/
111+
if(!repo_config_get_bool(r, "core.useBuiltinFSMonitor", &core_use_builtin_fsmonitor) &&
112+
core_use_builtin_fsmonitor) {
113+
if (!git_env_bool("GIT_SUPPRESS_USEBUILTINFSMONITOR_ADVICE", 0)) {
114+
advise_if_enabled(ADVICE_USE_CORE_FSMONITOR_CONFIG,
115+
_("core.useBuiltinFSMonitor=true is deprecated;"
116+
"please set core.fsmonitor=true instead"));
117+
setenv("GIT_SUPPRESS_USEBUILTINFSMONITOR_ADVICE", "1", 1);
118+
}
119+
fsm_settings__set_ipc(r);
120+
return 1;
121+
}
122+
123+
return 0;
124+
}
125+
101126
static void lookup_fsmonitor_settings(struct repository *r)
102127
{
103128
const char *const_str;
@@ -123,12 +148,16 @@ static void lookup_fsmonitor_settings(struct repository *r)
123148
return;
124149

125150
case 1: /* config value was unset */
151+
if (check_deprecated_builtin_config(r))
152+
return;
153+
126154
const_str = getenv("GIT_TEST_FSMONITOR");
127155
break;
128156

129157
case -1: /* config value set to an arbitrary string */
130-
if (repo_config_get_pathname(r, "core.fsmonitor", &const_str))
131-
return; /* should not happen */
158+
if (check_deprecated_builtin_config(r) ||
159+
repo_config_get_pathname(r, "core.fsmonitor", &const_str))
160+
return;
132161
break;
133162

134163
default: /* should not happen */

0 commit comments

Comments
 (0)