path: refactor repo_git_path() family of functions

As explained in an earlier commit, we're refactoring path-related
functions to provide a consistent interface for computing paths into the
commondir, gitdir and worktree. Refactor the "gitdir" family of
functions accordingly.

Note that the `repo_git_pathv()` function is converted into an internal
implementation detail. It is only used to implement `the_repository`
compatibility shims and will eventually be removed from the public
interface.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Patrick Steinhardt
2025-02-07 12:03:27 +01:00
committed by Junio C Hamano
parent 70a16ff8a1
commit bdfc07bfdf
5 changed files with 32 additions and 32 deletions

View File

@ -142,10 +142,8 @@ int strbuf_edit_interactively(struct repository *r,
struct strbuf sb = STRBUF_INIT; struct strbuf sb = STRBUF_INIT;
int fd, res = 0; int fd, res = 0;
if (!is_absolute_path(path)) { if (!is_absolute_path(path))
strbuf_repo_git_path(&sb, r, "%s", path); path = repo_git_path_append(r, &sb, "%s", path);
path = sb.buf;
}
fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0666); fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0666);
if (fd < 0) if (fd < 0)

3
hook.c
View File

@ -16,8 +16,7 @@ const char *find_hook(struct repository *r, const char *name)
int found_hook; int found_hook;
strbuf_reset(&path); repo_git_path_replace(r, &path, "hooks/%s", name);
strbuf_repo_git_path(&path, r, "hooks/%s", name);
found_hook = access(path.buf, X_OK) >= 0; found_hook = access(path.buf, X_OK) >= 0;
#ifdef STRIP_EXTENSION #ifdef STRIP_EXTENSION
if (!found_hook) { if (!found_hook) {

19
path.c
View File

@ -443,14 +443,27 @@ char *repo_git_path(const struct repository *repo,
return strbuf_detach(&path, NULL); return strbuf_detach(&path, NULL);
} }
void strbuf_repo_git_path(struct strbuf *sb, const char *repo_git_path_append(const struct repository *repo,
const struct repository *repo, struct strbuf *sb,
const char *fmt, ...) const char *fmt, ...)
{ {
va_list args; va_list args;
va_start(args, fmt); va_start(args, fmt);
repo_git_pathv(repo, NULL, sb, fmt, args); repo_git_pathv(repo, NULL, sb, fmt, args);
va_end(args); va_end(args);
return sb->buf;
}
const char *repo_git_path_replace(const struct repository *repo,
struct strbuf *sb,
const char *fmt, ...)
{
va_list args;
strbuf_reset(sb);
va_start(args, fmt);
repo_git_pathv(repo, NULL, sb, fmt, args);
va_end(args);
return sb->buf;
} }
char *mkpathdup(const char *fmt, ...) char *mkpathdup(const char *fmt, ...)

32
path.h
View File

@ -52,29 +52,16 @@ const char *repo_common_path_replace(const struct repository *repo,
* For an exhaustive list of the adjustments made look at `common_list` and * For an exhaustive list of the adjustments made look at `common_list` and
* `adjust_git_path` in path.c. * `adjust_git_path` in path.c.
*/ */
/*
* Return a path into the git directory of repository `repo`.
*/
char *repo_git_path(const struct repository *repo, char *repo_git_path(const struct repository *repo,
const char *fmt, ...) const char *fmt, ...)
__attribute__((format (printf, 2, 3))); __attribute__((format (printf, 2, 3)));
const char *repo_git_path_append(const struct repository *repo,
/* struct strbuf *sb,
* Print a path into the git directory of repository `repo` into the provided const char *fmt, ...)
* buffer. __attribute__((format (printf, 3, 4)));
*/ const char *repo_git_path_replace(const struct repository *repo,
void repo_git_pathv(const struct repository *repo, struct strbuf *sb,
const struct worktree *wt, struct strbuf *buf, const char *fmt, ...)
const char *fmt, va_list args);
/*
* Construct a path into the git directory of repository `repo` and append it
* to the provided buffer `sb`.
*/
void strbuf_repo_git_path(struct strbuf *sb,
const struct repository *repo,
const char *fmt, ...)
__attribute__((format (printf, 3, 4))); __attribute__((format (printf, 3, 4)));
/* /*
@ -241,11 +228,14 @@ struct strbuf *get_pathname(void);
# include "strbuf.h" # include "strbuf.h"
# include "repository.h" # include "repository.h"
/* Internal implementation detail that should not be used. */ /* Internal implementation details that should not be used. */
void repo_common_pathv(const struct repository *repo, void repo_common_pathv(const struct repository *repo,
struct strbuf *buf, struct strbuf *buf,
const char *fmt, const char *fmt,
va_list args); va_list args);
void repo_git_pathv(const struct repository *repo,
const struct worktree *wt, struct strbuf *buf,
const char *fmt, va_list args);
/* /*
* Return a statically allocated path into the main repository's * Return a statically allocated path into the main repository's

View File

@ -1315,7 +1315,7 @@ static int repo_has_absorbed_submodules(struct repository *r)
int ret; int ret;
struct strbuf buf = STRBUF_INIT; struct strbuf buf = STRBUF_INIT;
strbuf_repo_git_path(&buf, r, "modules/"); repo_git_path_append(r, &buf, "modules/");
ret = file_exists(buf.buf) && !is_empty_dir(buf.buf); ret = file_exists(buf.buf) && !is_empty_dir(buf.buf);
strbuf_release(&buf); strbuf_release(&buf);
return ret; return ret;
@ -2629,6 +2629,6 @@ void submodule_name_to_gitdir(struct strbuf *buf, struct repository *r,
* administrators can explicitly set. Nothing has been decided, * administrators can explicitly set. Nothing has been decided,
* so for now, just append the name at the end of the path. * so for now, just append the name at the end of the path.
*/ */
strbuf_repo_git_path(buf, r, "modules/"); repo_git_path_append(r, buf, "modules/");
strbuf_addstr(buf, submodule_name); strbuf_addstr(buf, submodule_name);
} }