repository: Export all internal paths
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
diff --git a/include/git2/repository.h b/include/git2/repository.h
index 4a7303e..2cb6bfa 100644
--- a/include/git2/repository.h
+++ b/include/git2/repository.h
@@ -231,22 +231,31 @@ GIT_EXTERN(int) git_repository_init(git_repository **repo_out, const char *path,
GIT_EXTERN(int) git_repository_is_empty(git_repository *repo);
/**
- * Get the normalized path to the git repository.
- *
- * @param repo a repository object
- * @return absolute path to the git directory
+ * Internal path identifiers for a repository
*/
-GIT_EXTERN(const char *) git_repository_path(git_repository *repo);
+typedef enum {
+ GIT_REPO_PATH,
+ GIT_REPO_PATH_INDEX,
+ GIT_REPO_PATH_ODB,
+ GIT_REPO_PATH_WORKDIR
+} git_repository_pathid;
/**
- * Get the normalized path to the working directory of the repository.
+ * Get one of the paths to the repository
+ *
+ * Possible values for `id`:
*
- * If the repository is bare, there is no working directory and NULL we be returned.
+ * GIT_REPO_PATH: return the path to the repository
+ * GIT_REPO_PATH_INDEX: return the path to the index
+ * GIT_REPO_PATH_ODB: return the path to the ODB
+ * GIT_REPO_PATH_WORKDIR: return the path to the working
+ * directory
*
* @param repo a repository object
- * @return NULL if the repository is bare; absolute path to the working directory otherwise.
+ * @param id The ID of the path to return
+ * @return absolute path of the requested id
*/
-GIT_EXTERN(const char *) git_repository_workdir(git_repository *repo);
+GIT_EXTERN(const char *) git_repository_path(git_repository *repo, git_repository_pathid id);
/**
* Check if a repository is bare
diff --git a/src/repository.c b/src/repository.c
index 0b67d14..249755b 100644
--- a/src/repository.c
+++ b/src/repository.c
@@ -721,16 +721,26 @@ int git_repository_is_empty(git_repository *repo)
return git_reference_resolve(&branch, head) == GIT_SUCCESS ? 0 : 1;
}
-const char *git_repository_path(git_repository *repo)
+const char *git_repository_path(git_repository *repo, git_repository_pathid id)
{
assert(repo);
- return repo->path_repository;
-}
-const char *git_repository_workdir(git_repository *repo)
-{
- assert(repo);
- return repo->path_workdir;
+ switch (id) {
+ case GIT_REPO_PATH:
+ return repo->path_repository;
+
+ case GIT_REPO_PATH_INDEX:
+ return repo->path_index;
+
+ case GIT_REPO_PATH_ODB:
+ return repo->path_odb;
+
+ case GIT_REPO_PATH_WORKDIR:
+ return repo->path_workdir;
+
+ default:
+ return NULL;
+ }
}
int git_repository_is_bare(git_repository *repo)
diff --git a/tests/t12-repo.c b/tests/t12-repo.c
index 4e51f1b..35b41ca 100644
--- a/tests/t12-repo.c
+++ b/tests/t12-repo.c
@@ -201,8 +201,8 @@ BEGIN_TEST(open0, "Open a bare repository that has just been initialized by git"
must_pass(remove_placeholders(TEMP_REPO_FOLDER, "dummy-marker.txt"));
must_pass(git_repository_open(&repo, TEMP_REPO_FOLDER));
- must_be_true(git_repository_path(repo) != NULL);
- must_be_true(git_repository_workdir(repo) == NULL);
+ must_be_true(git_repository_path(repo, GIT_REPO_PATH) != NULL);
+ must_be_true(git_repository_path(repo, GIT_REPO_PATH_WORKDIR) == NULL);
git_repository_free(repo);
must_pass(rmdir_recurs(TEMP_REPO_FOLDER));
@@ -220,8 +220,8 @@ BEGIN_TEST(open1, "Open a standard repository that has just been initialized by
must_pass(remove_placeholders(DEST_REPOSITORY_FOLDER, "dummy-marker.txt"));
must_pass(git_repository_open(&repo, DEST_REPOSITORY_FOLDER));
- must_be_true(git_repository_path(repo) != NULL);
- must_be_true(git_repository_workdir(repo) != NULL);
+ must_be_true(git_repository_path(repo, GIT_REPO_PATH) != NULL);
+ must_be_true(git_repository_path(repo, GIT_REPO_PATH_WORKDIR) != NULL);
git_repository_free(repo);
must_pass(rmdir_recurs(TEMP_REPO_FOLDER));