From: Junio C Hamano <gitster@pobox.com>
To: Eric Sunshine <sunshine@sunshineco.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Git List <git@vger.kernel.org>,
bfields@redhat.com
Subject: Re: [PATCH 3/4] am: support --show-current-patch=raw as a synonym for--show-current-patch
Date: Wed, 19 Feb 2020 12:17:35 -0800 [thread overview]
Message-ID: <xmqqmu9ee3hc.fsf@gitster-ct.c.googlers.com> (raw)
In-Reply-To: <CAPig+cQOZwA3aAzBko-RL8UnW77DuBY-s_-J2D+35Ofn=fFfsg@mail.gmail.com> (Eric Sunshine's message of "Wed, 19 Feb 2020 14:34:43 -0500")
Eric Sunshine <sunshine@sunshineco.com> writes:
> I think the more typical way of coding this in this project is to
> initialize 'new_value' to -1. Doing so will make it easier to some day
> add a configuration value as fallback for when the sub-mode is not
> specified on the command line. So, it would look something like this:
>
> int submode = -1;
> if (arg) {
> int i;
> for (i = 0; i < ARRAY_SIZE(valid_modes); i++)
> if (!strcmp(arg, valid_modes[i]))
> break;
> if (i >= ARRAY_SIZE(valid_modes))
> return error(_("invalid value for --show-current-patch: %s"), arg);
> submode = i;
> }
>
> /* fall back to config value */
> if (submode < 0) {
> /* check if config value available and assign 'sudmode' */
> }
Hmph? Isn't the usual pattern more like this:
static int submode = -1; /* unspecified */
int cmd_foo(...)
{
git_config(...); /* this may update submode */
parse_options(...); /* this may further update submode */
if (submode < 0)
submode = ... some default value ...;
to implement "config gives a custom default, command line overrides,
but when there is neither, there is a hard-coded default"?
Of course, the variable can be initialized to the default value to
lose the "-1 /* unspecified */" bit.
>> + if (resume->mode == RESUME_SHOW_PATCH && new_value != resume->sub_mode)
>> + return error(_("--show-current-patch=%s is incompatible with "
>> + "--show-current-patch=%s"),
>> + arg, valid_modes[resume->sub_mode]);
>
> So, this allows --show-current-patch=<foo> to be specified multiple
> times but only as long as <foo> is the same each time, and errors out
> otherwise. That's rather harsh and makes it difficult for someone to
> override a value specified earlier on the command line (say, coming
> from a Git alias). The typical way this is handled is "last wins"
> rather than making it an error.
Yup, the last one wins is something I would have expected. And if
we follow that (which is the usual pattern), I suspect that we won't
even need the first two steps of this series?
Thanks for a review.
next prev parent reply other threads:[~2020-02-19 20:17 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-19 16:13 [PATCH 0/4] am: provide a replacement for "cat .git/rebase-apply/patch" pbonzini
2020-02-19 16:13 ` [PATCH 1/4] parse-options: convert "command mode" to a flag pbonzini
2020-02-19 19:11 ` Eric Sunshine
2020-02-20 16:00 ` Johannes Schindelin
2020-02-19 19:15 ` Junio C Hamano
2020-02-19 21:05 ` Paolo Bonzini
2020-02-19 16:13 ` [PATCH 2/4] am: convert "resume" variable to a struct pbonzini
2020-02-19 19:19 ` Junio C Hamano
2020-02-19 21:05 ` Paolo Bonzini
2020-02-19 16:13 ` [PATCH 3/4] am: support --show-current-patch=raw as a synonym for--show-current-patch pbonzini
2020-02-19 19:34 ` Eric Sunshine
2020-02-19 20:17 ` Junio C Hamano [this message]
2020-02-19 20:53 ` Paolo Bonzini
2020-02-19 16:13 ` [PATCH 4/4] am: support --show-current-patch=diff to retrieve .git/rebase-apply/patch pbonzini
2020-02-19 19:49 ` Eric Sunshine
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=xmqqmu9ee3hc.fsf@gitster-ct.c.googlers.com \
--to=gitster@pobox.com \
--cc=bfields@redhat.com \
--cc=git@vger.kernel.org \
--cc=pbonzini@redhat.com \
--cc=sunshine@sunshineco.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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).