From: Emily Shaffer <emilyshaffer@google.com> To: Derrick Stolee via GitGitGadget <gitgitgadget@gmail.com> Cc: git@vger.kernel.org, "Jonathan Nieder" <jrnieder@gmail.com>, "Johannes Schindelin" <Johannes.Schindelin@gmx.de>, "Jeff King" <peff@peff.net>, "brian m. carlson" <sandals@crustytoothpaste.net>, "Martin Ågren" <martin.agren@gmail.com>, "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>, "Derrick Stolee" <stolee@gmail.com>, "Derrick Stolee" <derrickstolee@github.com>, "Derrick Stolee" <dstolee@microsoft.com> Subject: Re: [PATCH v2 3/7] config: convert multi_replace to flags Date: Mon, 23 Nov 2020 13:43:22 -0800 Message-ID: <20201123214322.GC499823@google.com> (raw) In-Reply-To: <0c152faa00881483db0a59f4c5bc7204ebed8966.1606147507.git.gitgitgadget@gmail.com> On Mon, Nov 23, 2020 at 04:05:03PM +0000, Derrick Stolee via GitGitGadget wrote: > > > We will extend the flexibility of the config API. Before doing so, let's > take an existing 'int multi_replace' parameter and replace it with a new > 'unsigned flags' parameter that can take multiple options as a bit field. > > Update all callers that specified multi_replace to now specify the > CONFIG_FLAGS_MULTI_REPLACE flag. To add more clarity, extend the > documentation of git_config_set_multivar_in_file() including a clear > labeling of its arguments. Other config API methods in config.h require > only a change of the final parameter from 'int' to 'unsigned'. > > Signed-off-by: Derrick Stolee <dstolee@microsoft.com> > --- > diff --git a/builtin/branch.c b/builtin/branch.c > index e82301fb1b..5ce3844d22 100644 > --- a/builtin/branch.c > +++ b/builtin/branch.c > @@ -829,10 +829,10 @@ int cmd_branch(int argc, const char **argv, const char *prefix) > die(_("Branch '%s' has no upstream information"), branch->name); > > strbuf_addf(&buf, "branch.%s.remote", branch->name); > - git_config_set_multivar(buf.buf, NULL, NULL, 1); > + git_config_set_multivar(buf.buf, NULL, NULL, CONFIG_FLAGS_MULTI_REPLACE); > strbuf_reset(&buf); > strbuf_addf(&buf, "branch.%s.merge", branch->name); > - git_config_set_multivar(buf.buf, NULL, NULL, 1); > + git_config_set_multivar(buf.buf, NULL, NULL, CONFIG_FLAGS_MULTI_REPLACE); Converting callers. Straightforward. [snipping more similar work] > diff --git a/config.c b/config.c > index 2b79fe76ad..096f2eae0d 100644 > --- a/config.c > +++ b/config.c > @@ -2716,9 +2716,9 @@ void git_config_set(const char *key, const char *value) > * 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 > * (only add a new one) > - * if multi_replace==0, nothing, or only one matching key/value is replaced, > - * else all matching key/values (regardless how many) are removed, > - * before the new pair is written. > + * if (flags & CONFIG_FLAGS_MULTI_REPLACE) == 0, at most one matching > + * key/value is replaced, else all matching key/values (regardless > + * how many) are removed, before the new pair is written. This documentation to me sounds like the question you asked on-list the other day: "does replace-all turn many configs into one, or many configs into many with the same value?" Is it reflected in user-facing documentation? Looks like no - you might have a good opportunity here to make that more clear. > * > * Returns 0 on success. > * > @@ -2739,7 +2739,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, > - int multi_replace) > + unsigned flags) Well, I wanted to complain about using 'unsigned' instead of 'unsigned int', but 'git grep -P "unsigned(?! int)"' tells me that it's not a thing anybody else seems to mind. So I'll just grumble in my corner instead :) > { > int fd = -1, in_fd = -1; > int ret; > @@ -2756,7 +2756,7 @@ int git_config_set_multivar_in_file_gently(const char *config_filename, > if (ret) > goto out_free; > > - store.multi_replace = multi_replace; > + store.multi_replace = (flags & CONFIG_FLAGS_MULTI_REPLACE) != 0; > > if (!config_filename) > config_filename = filename_buf = git_pathdup("config"); > @@ -2845,7 +2845,7 @@ int git_config_set_multivar_in_file_gently(const char *config_filename, > > /* if nothing to unset, or too many matches, error out */ > if ((store.seen_nr == 0 && value == NULL) || > - (store.seen_nr > 1 && multi_replace == 0)) { > + (store.seen_nr > 1 && !store.multi_replace)) { Huh, I wonder why 'store.multi_replace' wasn't used here before, since it was bothered to be set at earlier. Ah well. > void git_config_set_multivar_in_file(const char *config_filename, > const char *key, const char *value, > - const char *value_regex, int multi_replace) > + const char *value_regex, unsigned flags) And some more signature conversions. [snip] > /** > * takes four parameters: > @@ -276,13 +289,15 @@ int git_config_set_multivar_in_file_gently(const char *, const char *, const cha > * - the value regex, as a string. It will disregard key/value pairs where value > * does not match. > * > - * - a multi_replace value, as an int. If value is equal to zero, nothing or only > - * one matching key/value is replaced, else all matching key/values (regardless > - * how many) are removed, before the new pair is written. > + * - a flags value with bits corresponding to the CONFIG_FLAG_* macros. > * > * It returns 0 on success. > */ > -void git_config_set_multivar_in_file(const char *, const char *, const char *, const char *, int); > +void git_config_set_multivar_in_file(const char *config_filename, > + const char *key, > + const char *value, > + const char *value_regex, > + unsigned flags); Nice opportunity to make the header a little easier to read here. Thanks. With just one optional comment, Reviewed-by: Emily Shaffer <emilyshaffer@google.com>
next prev parent reply other threads:[~2020-11-23 21:52 UTC|newest] Thread overview: 72+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-11-19 15:52 [PATCH 0/7] config: add --literal-value option Derrick Stolee via GitGitGadget 2020-11-19 15:52 ` [PATCH 1/7] t1300: test "set all" mode with value_regex Derrick Stolee via GitGitGadget 2020-11-19 22:24 ` Junio C Hamano 2020-11-20 2:09 ` brian m. carlson 2020-11-20 2:33 ` Junio C Hamano 2020-11-20 18:39 ` Jeff King 2020-11-20 22:35 ` Junio C Hamano 2020-11-21 22:27 ` brian m. carlson 2020-11-22 3:31 ` Junio C Hamano 2020-11-24 2:38 ` Jeff King 2020-11-24 19:43 ` Junio C Hamano 2020-11-19 15:52 ` [PATCH 2/7] t1300: add test for --replace-all " Derrick Stolee via GitGitGadget 2020-11-19 15:52 ` [PATCH 3/7] config: convert multi_replace to flags Derrick Stolee via GitGitGadget 2020-11-19 22:32 ` Junio C Hamano 2020-11-19 15:52 ` [PATCH 4/7] config: add --literal-value option, un-implemented Derrick Stolee via GitGitGadget 2020-11-19 22:42 ` Junio C Hamano 2020-11-20 6:35 ` Martin Ågren 2020-11-19 15:52 ` [PATCH 5/7] config: plumb --literal-value into config API Derrick Stolee via GitGitGadget 2020-11-19 22:45 ` Junio C Hamano 2020-11-19 15:52 ` [PATCH 6/7] config: implement --literal-value with --get* Derrick Stolee via GitGitGadget 2020-11-19 15:52 ` [PATCH 7/7] maintenance: use 'git config --literal-value' Derrick Stolee via GitGitGadget 2020-11-19 23:17 ` Junio C Hamano 2020-11-20 13:19 ` [PATCH 0/7] config: add --literal-value option Ævar Arnfjörð Bjarmason 2020-11-20 13:23 ` Derrick Stolee 2020-11-20 18:30 ` Junio C Hamano 2020-11-20 18:51 ` Derrick Stolee 2020-11-20 21:52 ` Junio C Hamano 2020-11-24 12:35 ` Ævar Arnfjörð Bjarmason 2020-11-23 16:05 ` [PATCH v2 0/7] config: add --fixed-value option Derrick Stolee via GitGitGadget 2020-11-23 16:05 ` [PATCH v2 1/7] t1300: test "set all" mode with value_regex Derrick Stolee via GitGitGadget 2020-11-23 19:37 ` Emily Shaffer 2020-11-23 16:05 ` [PATCH v2 2/7] t1300: add test for --replace-all " Derrick Stolee via GitGitGadget 2020-11-23 19:40 ` Emily Shaffer 2020-11-23 16:05 ` [PATCH v2 3/7] config: convert multi_replace to flags Derrick Stolee via GitGitGadget 2020-11-23 21:43 ` Emily Shaffer [this message] 2020-11-23 16:05 ` [PATCH v2 4/7] config: add --fixed-value option, un-implemented Derrick Stolee via GitGitGadget 2020-11-23 19:37 ` Junio C Hamano 2020-11-23 21:51 ` Emily Shaffer 2020-11-23 22:41 ` Junio C Hamano 2020-11-25 14:08 ` Derrick Stolee 2020-11-25 17:22 ` Derrick Stolee 2020-11-25 17:28 ` Eric Sunshine 2020-11-25 19:30 ` Junio C Hamano 2020-11-25 19:29 ` Junio C Hamano 2020-11-23 16:05 ` [PATCH v2 5/7] config: plumb --fixed-value into config API Derrick Stolee via GitGitGadget 2020-11-23 22:21 ` Emily Shaffer 2020-11-24 0:52 ` Eric Sunshine 2020-11-25 15:41 ` Derrick Stolee 2020-11-25 17:55 ` Eric Sunshine 2020-11-23 16:05 ` [PATCH v2 6/7] config: implement --fixed-value with --get* Derrick Stolee via GitGitGadget 2020-11-23 19:53 ` Junio C Hamano 2020-11-23 22:43 ` Emily Shaffer 2020-11-23 16:05 ` [PATCH v2 7/7] maintenance: use 'git config --fixed-value' Derrick Stolee via GitGitGadget 2020-11-23 21:39 ` Junio C Hamano 2020-11-23 22:48 ` Emily Shaffer 2020-11-23 23:27 ` Junio C Hamano 2020-11-23 19:33 ` [PATCH v2 0/7] config: add --fixed-value option Junio C Hamano 2020-11-25 22:12 ` [PATCH v3 0/8] " Derrick Stolee via GitGitGadget 2020-11-25 22:12 ` [PATCH v3 1/8] config: convert multi_replace to flags Derrick Stolee via GitGitGadget 2020-11-25 22:12 ` [PATCH v3 2/8] config: replace 'value_regex' with 'value_pattern' Derrick Stolee via GitGitGadget 2020-11-25 22:50 ` Eric Sunshine 2020-11-25 22:12 ` [PATCH v3 3/8] t1300: test "set all" mode with value-pattern Derrick Stolee via GitGitGadget 2020-11-25 22:12 ` [PATCH v3 4/8] t1300: add test for --replace-all " Derrick Stolee via GitGitGadget 2020-11-25 22:12 ` [PATCH v3 5/8] config: add --fixed-value option, un-implemented Derrick Stolee via GitGitGadget 2020-11-25 23:04 ` Eric Sunshine 2020-11-25 22:12 ` [PATCH v3 6/8] config: plumb --fixed-value into config API Derrick Stolee via GitGitGadget 2020-11-25 22:12 ` [PATCH v3 7/8] config: implement --fixed-value with --get* Derrick Stolee via GitGitGadget 2020-11-25 22:12 ` [PATCH v3 8/8] maintenance: use 'git config --fixed-value' Derrick Stolee via GitGitGadget 2020-11-25 23:09 ` Junio C Hamano 2020-11-25 23:00 ` [PATCH v3 0/8] config: add --fixed-value option Junio C Hamano 2020-11-26 11:17 ` Derrick Stolee 2020-12-01 4:45 ` Junio C Hamano
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style List information: http://vger.kernel.org/majordomo-info.html * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20201123214322.GC499823@google.com \ --to=emilyshaffer@google.com \ --cc=Johannes.Schindelin@gmx.de \ --cc=avarab@gmail.com \ --cc=derrickstolee@github.com \ --cc=dstolee@microsoft.com \ --cc=git@vger.kernel.org \ --cc=gitgitgadget@gmail.com \ --cc=jrnieder@gmail.com \ --cc=martin.agren@gmail.com \ --cc=peff@peff.net \ --cc=sandals@crustytoothpaste.net \ --cc=stolee@gmail.com \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
git@vger.kernel.org list mirror (unofficial, one of many) This inbox may be cloned and mirrored by anyone: git clone --mirror https://public-inbox.org/git git clone --mirror http://ou63pmih66umazou.onion/git git clone --mirror http://czquwvybam4bgbro.onion/git git clone --mirror http://hjrcffqmbrq6wope.onion/git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V1 git git/ https://public-inbox.org/git \ git@vger.kernel.org public-inbox-index git Example config snippet for mirrors. Newsgroups are available over NNTP: nntp://news.public-inbox.org/inbox.comp.version-control.git nntp://ou63pmih66umazou.onion/inbox.comp.version-control.git nntp://czquwvybam4bgbro.onion/inbox.comp.version-control.git nntp://hjrcffqmbrq6wope.onion/inbox.comp.version-control.git nntp://news.gmane.io/gmane.comp.version-control.git note: .onion URLs require Tor: https://www.torproject.org/ code repositories for the project(s) associated with this inbox: https://80x24.org/mirrors/git.git AGPL code for this site: git clone https://public-inbox.org/public-inbox.git