refs: plumb repo into ref stores
In preparation for the next 2 patches that adds (partial) support for arbitrary repositories to ref iterators, plumb a repository into all ref stores. There are no changes to program logic. Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
b6b210c5e1
commit
34224e14d6
29
refs.c
29
refs.c
@ -1873,7 +1873,8 @@ static struct ref_store *lookup_ref_store_map(struct hashmap *map,
|
||||
* Create, record, and return a ref_store instance for the specified
|
||||
* gitdir.
|
||||
*/
|
||||
static struct ref_store *ref_store_init(const char *gitdir,
|
||||
static struct ref_store *ref_store_init(struct repository *repo,
|
||||
const char *gitdir,
|
||||
unsigned int flags)
|
||||
{
|
||||
const char *be_name = "files";
|
||||
@ -1883,7 +1884,7 @@ static struct ref_store *ref_store_init(const char *gitdir,
|
||||
if (!be)
|
||||
BUG("reference backend %s is unknown", be_name);
|
||||
|
||||
refs = be->init(gitdir, flags);
|
||||
refs = be->init(repo, gitdir, flags);
|
||||
return refs;
|
||||
}
|
||||
|
||||
@ -1895,7 +1896,7 @@ struct ref_store *get_main_ref_store(struct repository *r)
|
||||
if (!r->gitdir)
|
||||
BUG("attempting to get main_ref_store outside of repository");
|
||||
|
||||
r->refs_private = ref_store_init(r->gitdir, REF_STORE_ALL_CAPS);
|
||||
r->refs_private = ref_store_init(r, r->gitdir, REF_STORE_ALL_CAPS);
|
||||
r->refs_private = maybe_debug_wrap_ref_store(r->gitdir, r->refs_private);
|
||||
return r->refs_private;
|
||||
}
|
||||
@ -1925,6 +1926,7 @@ struct ref_store *get_submodule_ref_store(const char *submodule)
|
||||
struct ref_store *refs;
|
||||
char *to_free = NULL;
|
||||
size_t len;
|
||||
struct repository *subrepo;
|
||||
|
||||
if (!submodule)
|
||||
return NULL;
|
||||
@ -1950,8 +1952,19 @@ struct ref_store *get_submodule_ref_store(const char *submodule)
|
||||
if (submodule_to_gitdir(&submodule_sb, submodule))
|
||||
goto done;
|
||||
|
||||
/* assume that add_submodule_odb() has been called */
|
||||
refs = ref_store_init(submodule_sb.buf,
|
||||
subrepo = xmalloc(sizeof(*subrepo));
|
||||
/*
|
||||
* NEEDSWORK: Make get_submodule_ref_store() work with arbitrary
|
||||
* superprojects other than the_repository. This probably should be
|
||||
* done by making it take a struct repository * parameter instead of a
|
||||
* submodule path.
|
||||
*/
|
||||
if (repo_submodule_init(subrepo, the_repository, submodule,
|
||||
null_oid())) {
|
||||
free(subrepo);
|
||||
goto done;
|
||||
}
|
||||
refs = ref_store_init(subrepo, submodule_sb.buf,
|
||||
REF_STORE_READ | REF_STORE_ODB);
|
||||
register_ref_store_map(&submodule_ref_stores, "submodule",
|
||||
refs, submodule);
|
||||
@ -1977,10 +1990,12 @@ struct ref_store *get_worktree_ref_store(const struct worktree *wt)
|
||||
return refs;
|
||||
|
||||
if (wt->id)
|
||||
refs = ref_store_init(git_common_path("worktrees/%s", wt->id),
|
||||
refs = ref_store_init(the_repository,
|
||||
git_common_path("worktrees/%s", wt->id),
|
||||
REF_STORE_ALL_CAPS);
|
||||
else
|
||||
refs = ref_store_init(get_git_common_dir(),
|
||||
refs = ref_store_init(the_repository,
|
||||
get_git_common_dir(),
|
||||
REF_STORE_ALL_CAPS);
|
||||
|
||||
if (refs)
|
||||
|
Reference in New Issue
Block a user