Tanay Abhra <tanayabh@xxxxxxxxx> writes: > On 7/29/2014 6:10 PM, Matthieu Moy wrote: >> So, I think it's time to make it official that git_config() does not >> return an error code, and make it return void. I would do that in a >> patch before the git_config() -> git_config_raw() rewrite. >> >> My preference would be to get the return value from >> git_config_with_options and die() if it's negative, but I can also live > > Doesn't git_config_with_options() only return positive values, we checked it > pretty intensively last time. In normal cases, yes. But the value comes from lines like if (git_config_system() && !access_or_die(git_etc_gitconfig(), R_OK, 0)) { ret += git_config_from_file(fn, git_etc_gitconfig(), data); found += 1; } and git_config_from_file returns either 0 or -1. So, either we consider that git_config_from_file always returns 0, and the "ret +=" part is dead code that should be removed as it only confuses the reader, or we consider cases where git_config_from_file returns -1, and we should do something with ret. As we already discussed, "return -1" is possible in case of race condition between access_or_die() and git_config_from_file(). Very, very unlikely in practice, but may happen in theory. That's why I suggest to die() in these cases: the user will never see it in practice, but it guarantees that we won't try to proceed if such case happen. My point is not to improve the behavior, but to improve the code, by documenting properly where the error code is lost in the path from git_parse_source() to the caller of git_config(). We wouldn't have such discussion if the code was clear. I spent quite some time trying to understand why an error code could be returned by e.g. git_config_early(), and I'd like future readers to avoid wasting such time. > Where can the die() statement be inserted? Again, I am confused. I mean, changing the corresponding hunk to this: --- a/config.c +++ b/config.c @@ -1223,9 +1223,21 @@ int git_config_with_options(config_fn_t fn, void *data, return ret; } -int git_config(config_fn_t fn, void *data) +void git_config(config_fn_t fn, void *data) { - return git_config_with_options(fn, data, NULL, 1); + if (git_config_with_options(fn, data, NULL, 1) < 0) + /* + * git_config_with_options() normally returns only + * positive values, as most errors are fatal, and + * non-fatal potential errors are guarded by "if" + * statements that are entered only when no error is + * possible. + * + * If we ever encounter a non-fatal error, it means + * something went really wrong and we should stop + * immediately. + */ + die("Unknown error occured while reading the user's configuration"); } static struct config_set_element *configset_find_element(struct config_set *cs, const char *key) >> with a solution where the return value from git_config_with_options() is >> ignored. It's the same discussion we already had about the call to >> git_config() in git_config_check_init() actually, but I now think a >> die() statement should be within git_config(), not after, so that every >> callers benefit from it. > > The above patch works like that, doesn't it? Except, it ignores the return code silently. If you chose not to use a die() here, then ignoring the return value must be justified, or readers of the code will just assume a programming error, and will be tempted to repair the code by not ignoring the return value. If so, there is no point in counting errors in git_config_early() anymore, and a cleanup patch should be applied, something like: --- a/config.c +++ b/config.c @@ -1147,30 +1147,30 @@ int git_config_system(void) int git_config_early(config_fn_t fn, void *data, const char *repo_config) { - int ret = 0, found = 0; + int found = 0; char *xdg_config = NULL; char *user_config = NULL; home_config_paths(&user_config, &xdg_config, "config"); if (git_config_system() && !access_or_die(git_etc_gitconfig(), R_OK, 0)) { - ret += git_config_from_file(fn, git_etc_gitconfig(), + git_config_from_file(fn, git_etc_gitconfig(), data); found += 1; } if (xdg_config && !access_or_die(xdg_config, R_OK, ACCESS_EACCES_OK)) { - ret += git_config_from_file(fn, xdg_config, data); + git_config_from_file(fn, xdg_config, data); found += 1; } if (user_config && !access_or_die(user_config, R_OK, ACCESS_EACCES_OK)) { - ret += git_config_from_file(fn, user_config, data); + git_config_from_file(fn, user_config, data); found += 1; } if (repo_config && !access_or_die(repo_config, R_OK, 0)) { - ret += git_config_from_file(fn, repo_config, data); + git_config_from_file(fn, repo_config, data); found += 1; } @@ -1187,7 +1187,7 @@ int git_config_early(config_fn_t fn, void *data, const char *repo_config) free(xdg_config); free(user_config); - return ret == 0 ? found : ret; + return found; } int git_config_with_options(config_fn_t fn, void *data, (untested) My preference goes for the defensive one, using a proper die() statement (or even an assert()). >> In any case, doing this in a separate patch means the commit message >> (and possibly a comment next to the git_config() call) should explain >> the situation clearly and justify the choice. >> > > The choice being not to return a error code for git_config()? > I am pretty much confused by now. The choice of which of the two patches above you'll prefer. -- Matthieu Moy http://www-verimag.imag.fr/~moy/ -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html