forked from git-for-windows/git
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gvfs: refactor loading the core.gvfs config value
This code change makes sure that the config value for core_gvfs is always loaded before checking it. Signed-off-by: Kevin Willford <kewillf@microsoft.com>
- Loading branch information
Showing
3 changed files
with
43 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#include "git-compat-util.h" | ||
#include "environment.h" | ||
#include "gvfs.h" | ||
#include "setup.h" | ||
#include "config.h" | ||
|
||
static int gvfs_config_loaded; | ||
static int core_gvfs_is_bool; | ||
|
||
static int early_core_gvfs_config(const char *var, const char *value, void *data) | ||
{ | ||
if (!strcmp(var, "core.gvfs")) | ||
core_gvfs = git_config_bool_or_int("core.gvfs", value, &core_gvfs_is_bool); | ||
return 0; | ||
} | ||
|
||
void gvfs_load_config_value(const char *value) | ||
{ | ||
if (gvfs_config_loaded) | ||
return; | ||
|
||
if (value) | ||
core_gvfs = git_config_bool_or_int("core.gvfs", value, &core_gvfs_is_bool); | ||
else if (startup_info->have_repository == 0) | ||
read_early_config(early_core_gvfs_config, NULL); | ||
else | ||
git_config_get_bool_or_int("core.gvfs", &core_gvfs_is_bool, &core_gvfs); | ||
|
||
/* Turn on all bits if a bool was set in the settings */ | ||
if (core_gvfs_is_bool && core_gvfs) | ||
core_gvfs = -1; | ||
|
||
gvfs_config_loaded = 1; | ||
} | ||
|
||
int gvfs_config_is_set(int mask) | ||
{ | ||
gvfs_load_config_value(NULL); | ||
return (core_gvfs & mask) == mask; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters