2 #include "repository.h"
4 #include "submodule-config.h"
6 /* The main repository */
7 static struct repository the_repo = {
8 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, &the_index, &hash_algos[GIT_HASH_SHA1], 0, 0
10 struct repository *the_repository = &the_repo;
12 static char *git_path_from_env(const char *envvar, const char *git_dir,
13 const char *path, int fromenv)
16 const char *value = getenv(envvar);
18 return xstrdup(value);
21 return xstrfmt("%s/%s", git_dir, path);
24 static int find_common_dir(struct strbuf *sb, const char *gitdir, int fromenv)
27 const char *value = getenv(GIT_COMMON_DIR_ENVIRONMENT);
29 strbuf_addstr(sb, value);
34 return get_common_dir_noenv(sb, gitdir);
37 static void repo_setup_env(struct repository *repo)
39 struct strbuf sb = STRBUF_INIT;
41 repo->different_commondir = find_common_dir(&sb, repo->gitdir,
43 free(repo->commondir);
44 repo->commondir = strbuf_detach(&sb, NULL);
45 free(repo->objectdir);
46 repo->objectdir = git_path_from_env(DB_ENVIRONMENT, repo->commondir,
47 "objects", !repo->ignore_env);
48 free(repo->graft_file);
49 repo->graft_file = git_path_from_env(GRAFT_ENVIRONMENT, repo->commondir,
50 "info/grafts", !repo->ignore_env);
51 free(repo->index_file);
52 repo->index_file = git_path_from_env(INDEX_ENVIRONMENT, repo->gitdir,
53 "index", !repo->ignore_env);
56 void repo_set_gitdir(struct repository *repo, const char *path)
58 const char *gitfile = read_gitfile(path);
59 char *old_gitdir = repo->gitdir;
61 repo->gitdir = xstrdup(gitfile ? gitfile : path);
67 void repo_set_hash_algo(struct repository *repo, int hash_algo)
69 repo->hash_algo = &hash_algos[hash_algo];
73 * Attempt to resolve and set the provided 'gitdir' for repository 'repo'.
74 * Return 0 upon success and a non-zero value upon failure.
76 static int repo_init_gitdir(struct repository *repo, const char *gitdir)
81 const char *resolved_gitdir;
83 abspath = real_pathdup(gitdir, 0);
89 /* 'gitdir' must reference the gitdir directly */
90 resolved_gitdir = resolve_gitdir_gently(abspath, &error);
91 if (!resolved_gitdir) {
96 repo_set_gitdir(repo, resolved_gitdir);
103 void repo_set_worktree(struct repository *repo, const char *path)
105 repo->worktree = real_pathdup(path, 1);
108 static int read_and_verify_repository_format(struct repository_format *format,
109 const char *commondir)
112 struct strbuf sb = STRBUF_INIT;
114 strbuf_addf(&sb, "%s/config", commondir);
115 read_repository_format(format, sb.buf);
118 if (verify_repository_format(format, &sb) < 0) {
119 warning("%s", sb.buf);
128 * Initialize 'repo' based on the provided 'gitdir'.
129 * Return 0 upon success and a non-zero value upon failure.
131 int repo_init(struct repository *repo, const char *gitdir, const char *worktree)
133 struct repository_format format;
134 memset(repo, 0, sizeof(*repo));
136 repo->ignore_env = 1;
138 if (repo_init_gitdir(repo, gitdir))
141 if (read_and_verify_repository_format(&format, repo->commondir))
144 repo_set_hash_algo(repo, format.hash_algo);
147 repo_set_worktree(repo, worktree);
157 * Initialize 'submodule' as the submodule given by 'path' in parent repository
159 * Return 0 upon success and a non-zero value upon failure.
161 int repo_submodule_init(struct repository *submodule,
162 struct repository *superproject,
165 const struct submodule *sub;
166 struct strbuf gitdir = STRBUF_INIT;
167 struct strbuf worktree = STRBUF_INIT;
170 sub = submodule_from_cache(superproject, &null_oid, path);
176 strbuf_repo_worktree_path(&gitdir, superproject, "%s/.git", path);
177 strbuf_repo_worktree_path(&worktree, superproject, "%s", path);
179 if (repo_init(submodule, gitdir.buf, worktree.buf)) {
181 * If initilization fails then it may be due to the submodule
182 * not being populated in the superproject's worktree. Instead
183 * we can try to initilize the submodule by finding it's gitdir
184 * in the superproject's 'modules' directory. In this case the
185 * submodule would not have a worktree.
187 strbuf_reset(&gitdir);
188 strbuf_repo_git_path(&gitdir, superproject,
189 "modules/%s", sub->name);
191 if (repo_init(submodule, gitdir.buf, NULL)) {
197 submodule->submodule_prefix = xstrfmt("%s%s/",
198 superproject->submodule_prefix ?
199 superproject->submodule_prefix :
203 strbuf_release(&gitdir);
204 strbuf_release(&worktree);
208 void repo_clear(struct repository *repo)
210 FREE_AND_NULL(repo->gitdir);
211 FREE_AND_NULL(repo->commondir);
212 FREE_AND_NULL(repo->objectdir);
213 FREE_AND_NULL(repo->graft_file);
214 FREE_AND_NULL(repo->index_file);
215 FREE_AND_NULL(repo->worktree);
216 FREE_AND_NULL(repo->submodule_prefix);
219 git_configset_clear(repo->config);
220 FREE_AND_NULL(repo->config);
223 if (repo->submodule_cache) {
224 submodule_cache_free(repo->submodule_cache);
225 repo->submodule_cache = NULL;
229 discard_index(repo->index);
230 FREE_AND_NULL(repo->index);
234 int repo_read_index(struct repository *repo)
237 repo->index = xcalloc(1, sizeof(*repo->index));
239 return read_index_from(repo->index, repo->index_file);