config: replace 'value_regex' with 'value_pattern'
The 'value_regex' argument in the 'git config' builtin is poorly named, especially related to an upcoming change that allows exact string matches instead of ERE pattern matches. Perform a mostly mechanical change of every instance of 'value_regex' to 'value_pattern' in the codebase. This is only critical for documentation and error messages, but it is best to be consistent inside the codebase, too. For documentation, use 'value-pattern' which is better punctuation. This affects Documentation/git-config.txt and the usage in builtin/config.c, which was already mixed between 'value_regex' and 'value-regex'. I gave some thought to leaving the value_regex variables inside config.c that are regex_t pointers. However, it is probably best to keep the name consistent with the rest of the variables. This does not update the translations inside the po/ directory, as that creates conflicts with ongoing work. The input strings should automatically update through automation, and a few of the output strings currently use "[value_regex]" directly. Signed-off-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
504ee1290e
commit
247e2f822e
54
config.c
54
config.c
@ -2415,7 +2415,7 @@ struct config_store_data {
|
||||
size_t baselen;
|
||||
char *key;
|
||||
int do_not_match;
|
||||
regex_t *value_regex;
|
||||
regex_t *value_pattern;
|
||||
int multi_replace;
|
||||
struct {
|
||||
size_t begin, end;
|
||||
@ -2429,10 +2429,10 @@ struct config_store_data {
|
||||
static void config_store_data_clear(struct config_store_data *store)
|
||||
{
|
||||
free(store->key);
|
||||
if (store->value_regex != NULL &&
|
||||
store->value_regex != CONFIG_REGEX_NONE) {
|
||||
regfree(store->value_regex);
|
||||
free(store->value_regex);
|
||||
if (store->value_pattern != NULL &&
|
||||
store->value_pattern != CONFIG_REGEX_NONE) {
|
||||
regfree(store->value_pattern);
|
||||
free(store->value_pattern);
|
||||
}
|
||||
free(store->parsed);
|
||||
free(store->seen);
|
||||
@ -2444,13 +2444,13 @@ static int matches(const char *key, const char *value,
|
||||
{
|
||||
if (strcmp(key, store->key))
|
||||
return 0; /* not ours */
|
||||
if (!store->value_regex)
|
||||
if (!store->value_pattern)
|
||||
return 1; /* always matches */
|
||||
if (store->value_regex == CONFIG_REGEX_NONE)
|
||||
if (store->value_pattern == CONFIG_REGEX_NONE)
|
||||
return 0; /* never matches */
|
||||
|
||||
return store->do_not_match ^
|
||||
(value && !regexec(store->value_regex, value, 0, NULL, 0));
|
||||
(value && !regexec(store->value_pattern, value, 0, NULL, 0));
|
||||
}
|
||||
|
||||
static int store_aux_event(enum config_event_t type,
|
||||
@ -2726,8 +2726,8 @@ void git_config_set(const char *key, const char *value)
|
||||
|
||||
/*
|
||||
* If value==NULL, unset in (remove from) config,
|
||||
* if value_regex!=NULL, disregard key/value pairs where value does not match.
|
||||
* if value_regex==CONFIG_REGEX_NONE, do not match any existing values
|
||||
* if value_pattern!=NULL, disregard key/value pairs where value does not match.
|
||||
* if value_pattern==CONFIG_REGEX_NONE, do not match any existing values
|
||||
* (only add a new one)
|
||||
* if flags contains the CONFIG_FLAGS_MULTI_REPLACE flag, all matching
|
||||
* key/values are removed before a single new pair is written. If the
|
||||
@ -2751,7 +2751,7 @@ void git_config_set(const char *key, const char *value)
|
||||
*/
|
||||
int git_config_set_multivar_in_file_gently(const char *config_filename,
|
||||
const char *key, const char *value,
|
||||
const char *value_regex,
|
||||
const char *value_pattern,
|
||||
unsigned flags)
|
||||
{
|
||||
int fd = -1, in_fd = -1;
|
||||
@ -2812,22 +2812,22 @@ int git_config_set_multivar_in_file_gently(const char *config_filename,
|
||||
int i, new_line = 0;
|
||||
struct config_options opts;
|
||||
|
||||
if (value_regex == NULL)
|
||||
store.value_regex = NULL;
|
||||
else if (value_regex == CONFIG_REGEX_NONE)
|
||||
store.value_regex = CONFIG_REGEX_NONE;
|
||||
if (value_pattern == NULL)
|
||||
store.value_pattern = NULL;
|
||||
else if (value_pattern == CONFIG_REGEX_NONE)
|
||||
store.value_pattern = CONFIG_REGEX_NONE;
|
||||
else {
|
||||
if (value_regex[0] == '!') {
|
||||
if (value_pattern[0] == '!') {
|
||||
store.do_not_match = 1;
|
||||
value_regex++;
|
||||
value_pattern++;
|
||||
} else
|
||||
store.do_not_match = 0;
|
||||
|
||||
store.value_regex = (regex_t*)xmalloc(sizeof(regex_t));
|
||||
if (regcomp(store.value_regex, value_regex,
|
||||
store.value_pattern = (regex_t*)xmalloc(sizeof(regex_t));
|
||||
if (regcomp(store.value_pattern, value_pattern,
|
||||
REG_EXTENDED)) {
|
||||
error(_("invalid pattern: %s"), value_regex);
|
||||
FREE_AND_NULL(store.value_regex);
|
||||
error(_("invalid pattern: %s"), value_pattern);
|
||||
FREE_AND_NULL(store.value_pattern);
|
||||
ret = CONFIG_INVALID_PATTERN;
|
||||
goto out_free;
|
||||
}
|
||||
@ -2997,10 +2997,10 @@ write_err_out:
|
||||
|
||||
void git_config_set_multivar_in_file(const char *config_filename,
|
||||
const char *key, const char *value,
|
||||
const char *value_regex, unsigned flags)
|
||||
const char *value_pattern, unsigned flags)
|
||||
{
|
||||
if (!git_config_set_multivar_in_file_gently(config_filename, key, value,
|
||||
value_regex, flags))
|
||||
value_pattern, flags))
|
||||
return;
|
||||
if (value)
|
||||
die(_("could not set '%s' to '%s'"), key, value);
|
||||
@ -3009,16 +3009,16 @@ void git_config_set_multivar_in_file(const char *config_filename,
|
||||
}
|
||||
|
||||
int git_config_set_multivar_gently(const char *key, const char *value,
|
||||
const char *value_regex, unsigned flags)
|
||||
const char *value_pattern, unsigned flags)
|
||||
{
|
||||
return git_config_set_multivar_in_file_gently(NULL, key, value, value_regex,
|
||||
return git_config_set_multivar_in_file_gently(NULL, key, value, value_pattern,
|
||||
flags);
|
||||
}
|
||||
|
||||
void git_config_set_multivar(const char *key, const char *value,
|
||||
const char *value_regex, unsigned flags)
|
||||
const char *value_pattern, unsigned flags)
|
||||
{
|
||||
git_config_set_multivar_in_file(NULL, key, value, value_regex,
|
||||
git_config_set_multivar_in_file(NULL, key, value, value_pattern,
|
||||
flags);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user