Skip to content

Commit

Permalink
fmt_ident: refactor strictness checks
Browse files Browse the repository at this point in the history
This function has evolved quite a bit over time, and as a
result, the logic for "is this an OK ident" has been
sprinkled throughout. This ends up with a lot of redundant
conditionals, like checking want_name repeatedly. Worse,
we want to know in many cases whether we are using the
"default" ident, and we do so by comparing directly to the
global strbuf, which violates the abstraction of the
ident_default_* functions.

Let's reorganize the function into a hierarchy of
conditionals to handle similar cases together. The only
case that doesn't just work naturally for this is that of an
empty name, where our advice is different based on whether
we came from ident_default_name() or not. We can use a
simple flag to cover this case.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Jeff King authored and Junio C Hamano committed Feb 4, 2016
1 parent 7548842 commit 59f9295
Showing 1 changed file with 24 additions and 22 deletions.
46 changes: 24 additions & 22 deletions ident.c
Original file line number Diff line number Diff line change
Expand Up @@ -345,32 +345,34 @@ const char *fmt_ident(const char *name, const char *email,
int want_date = !(flag & IDENT_NO_DATE);
int want_name = !(flag & IDENT_NO_NAME);

if (want_name && !name)
name = ident_default_name();
if (!email)
email = ident_default_email();

if (want_name && !*name) {
struct passwd *pw;

if (strict) {
if (name == git_default_name.buf)
if (want_name) {
int using_default = 0;
if (!name) {
name = ident_default_name();
using_default = 1;
if (strict && default_name_is_bogus) {
fputs(env_hint, stderr);
die("empty ident name (for <%s>) not allowed", email);
die("unable to auto-detect name (got '%s')", name);
}
}
if (!*name) {
struct passwd *pw;
if (strict) {
if (using_default)
fputs(env_hint, stderr);
die("empty ident name (for <%s>) not allowed", email);
}
pw = xgetpwuid_self(NULL);
name = pw->pw_name;
}
pw = xgetpwuid_self(NULL);
name = pw->pw_name;
}

if (want_name && strict &&
name == git_default_name.buf && default_name_is_bogus) {
fputs(env_hint, stderr);
die("unable to auto-detect name (got '%s')", name);
}

if (strict && email == git_default_email.buf && default_email_is_bogus) {
fputs(env_hint, stderr);
die("unable to auto-detect email address (got '%s')", email);
if (!email) {
email = ident_default_email();
if (strict && default_email_is_bogus) {
fputs(env_hint, stderr);
die("unable to auto-detect email address (got '%s')", email);
}
}

strbuf_reset(&ident);
Expand Down

0 comments on commit 59f9295

Please sign in to comment.