]> git.ipfire.org Git - thirdparty/git.git/commitdiff
refs: refactor `resolve_gitlink_ref()` to accept a repository
authorPatrick Steinhardt <ps@pks.im>
Fri, 17 May 2024 08:18:39 +0000 (10:18 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 17 May 2024 17:33:38 +0000 (10:33 -0700)
In `resolve_gitlink_ref()` we implicitly rely on `the_repository` to
look up the submodule ref store. Now that we can look up submodule ref
stores for arbitrary repositories we can improve this function to
instead accept a repository as parameter for which we want to resolve
the gitlink.

Do so and adjust callers accordingly.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
attr.c
builtin/submodule--helper.c
builtin/update-index.c
combine-diff.c
diff-lib.c
dir.c
object-file.c
read-cache.c
refs.c
refs.h
unpack-trees.c

diff --git a/attr.c b/attr.c
index 33473bdce01c743830a43da490e79d42fb242003..6c6eb053332b280d2e2f5b9fc65bfad7e543508d 100644 (file)
--- a/attr.c
+++ b/attr.c
@@ -1288,7 +1288,8 @@ static const char *builtin_object_mode_attr(struct index_state *istate, const ch
                        if (pos >= 0) {
                                 if (S_ISGITLINK(istate->cache[pos]->ce_mode))
                                         mode = istate->cache[pos]->ce_mode;
-                       } else if (resolve_gitlink_ref(path, "HEAD", &oid) == 0) {
+                       } else if (repo_resolve_gitlink_ref(the_repository, path,
+                                                           "HEAD", &oid) == 0) {
                                mode = S_IFGITLINK;
                        }
                }
index 5076a3350001a7025a6698acf8ba5347a7d204d5..897f19868e8c6913777f1798e905d594e5623e2a 100644 (file)
@@ -2600,7 +2600,8 @@ static int update_submodule(struct update_data *update_data)
 
        if (update_data->just_cloned)
                oidcpy(&update_data->suboid, null_oid());
-       else if (resolve_gitlink_ref(update_data->sm_path, "HEAD", &update_data->suboid))
+       else if (repo_resolve_gitlink_ref(the_repository, update_data->sm_path,
+                                         "HEAD", &update_data->suboid))
                return die_message(_("Unable to find current revision in submodule path '%s'"),
                                   update_data->displaypath);
 
@@ -2627,7 +2628,8 @@ static int update_submodule(struct update_data *update_data)
                                                   update_data->sm_path);
                }
 
-               if (resolve_gitlink_ref(update_data->sm_path, remote_ref, &update_data->oid))
+               if (repo_resolve_gitlink_ref(the_repository, update_data->sm_path,
+                                            remote_ref, &update_data->oid))
                        return die_message(_("Unable to find %s revision in submodule path '%s'"),
                                           remote_ref, update_data->sm_path);
 
@@ -3357,7 +3359,7 @@ static void die_on_repo_without_commits(const char *path)
        strbuf_addstr(&sb, path);
        if (is_nonbare_repository_dir(&sb)) {
                struct object_id oid;
-               if (resolve_gitlink_ref(path, "HEAD", &oid) < 0)
+               if (repo_resolve_gitlink_ref(the_repository, path, "HEAD", &oid) < 0)
                        die(_("'%s' does not have a commit checked out"), path);
        }
        strbuf_release(&sb);
index 20aa1c4c6810d1a8d26d5cdbfad69da16d09b1fe..d343416ae261ff9789ad3013a5be81b307dc8800 100644 (file)
@@ -349,7 +349,8 @@ static int process_directory(const char *path, int len, struct stat *st)
                if (S_ISGITLINK(ce->ce_mode)) {
 
                        /* Do nothing to the index if there is no HEAD! */
-                       if (resolve_gitlink_ref(path, "HEAD", &oid) < 0)
+                       if (repo_resolve_gitlink_ref(the_repository, path,
+                                                    "HEAD", &oid) < 0)
                                return 0;
 
                        return add_one_path(ce, path, len, st);
@@ -375,7 +376,7 @@ static int process_directory(const char *path, int len, struct stat *st)
        }
 
        /* No match - should we add it as a gitlink? */
-       if (!resolve_gitlink_ref(path, "HEAD", &oid))
+       if (!repo_resolve_gitlink_ref(the_repository, path, "HEAD", &oid))
                return add_one_path(NULL, path, len, st);
 
        /* Error out. */
index d6d6fa168942053e756317d8b490435e4d1280b6..4960d904ac658f217cdfebc4347a8920b032d6f7 100644 (file)
@@ -1066,7 +1066,8 @@ static void show_patch_diff(struct combine_diff_path *elem, int num_parent,
                        elem->mode = canon_mode(st.st_mode);
                } else if (S_ISDIR(st.st_mode)) {
                        struct object_id oid;
-                       if (resolve_gitlink_ref(elem->path, "HEAD", &oid) < 0)
+                       if (repo_resolve_gitlink_ref(the_repository, elem->path,
+                                                    "HEAD", &oid) < 0)
                                result = grab_blob(opt->repo, &elem->oid,
                                                   elem->mode, &result_size,
                                                   NULL, NULL);
index 12b1541478e35d88fa4bfb87f646f61c69e0a30b..5a5a50c5a15a9e449aa0c41b4c0770330cc1aa19 100644 (file)
@@ -66,7 +66,8 @@ static int check_removed(const struct cache_entry *ce, struct stat *st)
                 * a directory --- the blob was removed!
                 */
                if (!S_ISGITLINK(ce->ce_mode) &&
-                   resolve_gitlink_ref(ce->name, "HEAD", &sub))
+                   repo_resolve_gitlink_ref(the_repository, ce->name,
+                                            "HEAD", &sub))
                        return 1;
        }
        return 0;
diff --git a/dir.c b/dir.c
index 2d83f3311a75131a98a22a1d278b433c32ada560..f6066cc01d835b52d5eaec68e6e665a945675b8c 100644 (file)
--- a/dir.c
+++ b/dir.c
@@ -3318,7 +3318,8 @@ static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
        struct object_id submodule_head;
 
        if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
-           !resolve_gitlink_ref(path->buf, "HEAD", &submodule_head)) {
+           !repo_resolve_gitlink_ref(the_repository, path->buf,
+                                     "HEAD", &submodule_head)) {
                /* Do not descend and nuke a nested git work tree. */
                if (kept_up)
                        *kept_up = 1;
index 610b1f465c4248e8c0520687049a707a8497195e..a40300ce4acc0c25c44e837518ca2702acf92a77 100644 (file)
@@ -2669,7 +2669,7 @@ int index_path(struct index_state *istate, struct object_id *oid,
                strbuf_release(&sb);
                break;
        case S_IFDIR:
-               return resolve_gitlink_ref(path, "HEAD", oid);
+               return repo_resolve_gitlink_ref(the_repository, path, "HEAD", oid);
        default:
                return error(_("%s: unsupported file type"), path);
        }
index a6db25a16daf89caf4762c62810ab76416dd4c92..447109aa76c3903a45290cd81756e91463cbeb57 100644 (file)
@@ -271,7 +271,8 @@ static int ce_compare_gitlink(const struct cache_entry *ce)
         *
         * If so, we consider it always to match.
         */
-       if (resolve_gitlink_ref(ce->name, "HEAD", &oid) < 0)
+       if (repo_resolve_gitlink_ref(the_repository, ce->name,
+                                    "HEAD", &oid) < 0)
                return 0;
        return !oideq(&oid, &ce->oid);
 }
@@ -711,7 +712,7 @@ int add_to_index(struct index_state *istate, const char *path, struct stat *st,
 
        namelen = strlen(path);
        if (S_ISDIR(st_mode)) {
-               if (resolve_gitlink_ref(path, "HEAD", &oid) < 0)
+               if (repo_resolve_gitlink_ref(the_repository, path, "HEAD", &oid) < 0)
                        return error(_("'%s' does not have a commit checked out"), path);
                while (namelen && path[namelen-1] == '/')
                        namelen--;
diff --git a/refs.c b/refs.c
index 1d660d5ace480cee9dddc0d0751e10aafe4fa8fe..7703b7781c553894d2e196f352798b9d934100e5 100644 (file)
--- a/refs.c
+++ b/refs.c
@@ -1943,13 +1943,14 @@ int ref_store_create_on_disk(struct ref_store *refs, int flags, struct strbuf *e
        return refs->be->create_on_disk(refs, flags, err);
 }
 
-int resolve_gitlink_ref(const char *submodule, const char *refname,
-                       struct object_id *oid)
+int repo_resolve_gitlink_ref(struct repository *r,
+                            const char *submodule, const char *refname,
+                            struct object_id *oid)
 {
        struct ref_store *refs;
        int flags;
 
-       refs = repo_get_submodule_ref_store(the_repository, submodule);
+       refs = repo_get_submodule_ref_store(r, submodule);
        if (!refs)
                return -1;
 
diff --git a/refs.h b/refs.h
index 346a81e9e3b41f3143a8f126f93befccab97666b..90a7e2dde34af4051fb9d6014d91605e759516e8 100644 (file)
--- a/refs.h
+++ b/refs.h
@@ -141,8 +141,9 @@ int peel_iterated_oid(const struct object_id *base, struct object_id *peeled);
  * successful, return 0 and set oid to the name of the object;
  * otherwise, return a non-zero value.
  */
-int resolve_gitlink_ref(const char *submodule, const char *refname,
-                       struct object_id *oid);
+int repo_resolve_gitlink_ref(struct repository *r,
+                            const char *submodule, const char *refname,
+                            struct object_id *oid);
 
 /*
  * Return true iff abbrev_name is a possible abbreviation for
index c2b20b80d5a448b7b5c76d2de4ac9358fa596b69..304ea2ed86b1e4879580ebea1c3b78877ad8fe1c 100644 (file)
@@ -2318,7 +2318,8 @@ static int verify_clean_subdirectory(const struct cache_entry *ce,
 
        if (S_ISGITLINK(ce->ce_mode)) {
                struct object_id oid;
-               int sub_head = resolve_gitlink_ref(ce->name, "HEAD", &oid);
+               int sub_head = repo_resolve_gitlink_ref(the_repository, ce->name,
+                                                       "HEAD", &oid);
                /*
                 * If we are not going to update the submodule, then
                 * we don't care.