Merge branch 'js/t6042-timing-fix'
[git.git] / repository.c
blob20c509a9226645b1890c8433b22a7182699fc847
1 #include "cache.h"
2 #include "repository.h"
3 #include "object-store.h"
4 #include "config.h"
5 #include "object.h"
6 #include "submodule-config.h"
8 /* The main repository */
9 static struct repository the_repo;
10 struct repository *the_repository;
12 void initialize_the_repository(void)
14 the_repository = &the_repo;
16 the_repo.index = &the_index;
17 the_repo.objects = raw_object_store_new();
18 the_repo.parsed_objects = parsed_object_pool_new();
20 repo_set_hash_algo(&the_repo, GIT_HASH_SHA1);
23 static void expand_base_dir(char **out, const char *in,
24 const char *base_dir, const char *def_in)
26 free(*out);
27 if (in)
28 *out = xstrdup(in);
29 else
30 *out = xstrfmt("%s/%s", base_dir, def_in);
33 static void repo_set_commondir(struct repository *repo,
34 const char *commondir)
36 struct strbuf sb = STRBUF_INIT;
38 free(repo->commondir);
40 if (commondir) {
41 repo->different_commondir = 1;
42 repo->commondir = xstrdup(commondir);
43 return;
46 repo->different_commondir = get_common_dir_noenv(&sb, repo->gitdir);
47 repo->commondir = strbuf_detach(&sb, NULL);
50 void repo_set_gitdir(struct repository *repo,
51 const char *root,
52 const struct set_gitdir_args *o)
54 const char *gitfile = read_gitfile(root);
56 * repo->gitdir is saved because the caller could pass "root"
57 * that also points to repo->gitdir. We want to keep it alive
58 * until after xstrdup(root). Then we can free it.
60 char *old_gitdir = repo->gitdir;
62 repo->gitdir = xstrdup(gitfile ? gitfile : root);
63 free(old_gitdir);
65 repo_set_commondir(repo, o->commondir);
67 if (!repo->objects->odb) {
68 repo->objects->odb = xcalloc(1, sizeof(*repo->objects->odb));
69 repo->objects->odb_tail = &repo->objects->odb->next;
71 expand_base_dir(&repo->objects->odb->path, o->object_dir,
72 repo->commondir, "objects");
74 free(repo->objects->alternate_db);
75 repo->objects->alternate_db = xstrdup_or_null(o->alternate_db);
76 expand_base_dir(&repo->graft_file, o->graft_file,
77 repo->commondir, "info/grafts");
78 expand_base_dir(&repo->index_file, o->index_file,
79 repo->gitdir, "index");
82 void repo_set_hash_algo(struct repository *repo, int hash_algo)
84 repo->hash_algo = &hash_algos[hash_algo];
88 * Attempt to resolve and set the provided 'gitdir' for repository 'repo'.
89 * Return 0 upon success and a non-zero value upon failure.
91 static int repo_init_gitdir(struct repository *repo, const char *gitdir)
93 int ret = 0;
94 int error = 0;
95 char *abspath = NULL;
96 const char *resolved_gitdir;
97 struct set_gitdir_args args = { NULL };
99 abspath = real_pathdup(gitdir, 0);
100 if (!abspath) {
101 ret = -1;
102 goto out;
105 /* 'gitdir' must reference the gitdir directly */
106 resolved_gitdir = resolve_gitdir_gently(abspath, &error);
107 if (!resolved_gitdir) {
108 ret = -1;
109 goto out;
112 repo_set_gitdir(repo, resolved_gitdir, &args);
114 out:
115 free(abspath);
116 return ret;
119 void repo_set_worktree(struct repository *repo, const char *path)
121 repo->worktree = real_pathdup(path, 1);
124 static int read_and_verify_repository_format(struct repository_format *format,
125 const char *commondir)
127 int ret = 0;
128 struct strbuf sb = STRBUF_INIT;
130 strbuf_addf(&sb, "%s/config", commondir);
131 read_repository_format(format, sb.buf);
132 strbuf_reset(&sb);
134 if (verify_repository_format(format, &sb) < 0) {
135 warning("%s", sb.buf);
136 ret = -1;
139 strbuf_release(&sb);
140 return ret;
144 * Initialize 'repo' based on the provided 'gitdir'.
145 * Return 0 upon success and a non-zero value upon failure.
147 int repo_init(struct repository *repo,
148 const char *gitdir,
149 const char *worktree)
151 struct repository_format format;
152 memset(repo, 0, sizeof(*repo));
154 repo->objects = raw_object_store_new();
155 repo->parsed_objects = parsed_object_pool_new();
157 if (repo_init_gitdir(repo, gitdir))
158 goto error;
160 if (read_and_verify_repository_format(&format, repo->commondir))
161 goto error;
163 repo_set_hash_algo(repo, format.hash_algo);
165 if (worktree)
166 repo_set_worktree(repo, worktree);
168 return 0;
170 error:
171 repo_clear(repo);
172 return -1;
175 int repo_submodule_init(struct repository *subrepo,
176 struct repository *superproject,
177 const struct submodule *sub)
179 struct strbuf gitdir = STRBUF_INIT;
180 struct strbuf worktree = STRBUF_INIT;
181 int ret = 0;
183 if (!sub) {
184 ret = -1;
185 goto out;
188 strbuf_repo_worktree_path(&gitdir, superproject, "%s/.git", sub->path);
189 strbuf_repo_worktree_path(&worktree, superproject, "%s", sub->path);
191 if (repo_init(subrepo, gitdir.buf, worktree.buf)) {
193 * If initilization fails then it may be due to the submodule
194 * not being populated in the superproject's worktree. Instead
195 * we can try to initilize the submodule by finding it's gitdir
196 * in the superproject's 'modules' directory. In this case the
197 * submodule would not have a worktree.
199 strbuf_reset(&gitdir);
200 strbuf_repo_git_path(&gitdir, superproject,
201 "modules/%s", sub->name);
203 if (repo_init(subrepo, gitdir.buf, NULL)) {
204 ret = -1;
205 goto out;
209 subrepo->submodule_prefix = xstrfmt("%s%s/",
210 superproject->submodule_prefix ?
211 superproject->submodule_prefix :
212 "", sub->path);
214 out:
215 strbuf_release(&gitdir);
216 strbuf_release(&worktree);
217 return ret;
220 void repo_clear(struct repository *repo)
222 FREE_AND_NULL(repo->gitdir);
223 FREE_AND_NULL(repo->commondir);
224 FREE_AND_NULL(repo->graft_file);
225 FREE_AND_NULL(repo->index_file);
226 FREE_AND_NULL(repo->worktree);
227 FREE_AND_NULL(repo->submodule_prefix);
229 raw_object_store_clear(repo->objects);
230 FREE_AND_NULL(repo->objects);
232 parsed_object_pool_clear(repo->parsed_objects);
233 FREE_AND_NULL(repo->parsed_objects);
235 if (repo->config) {
236 git_configset_clear(repo->config);
237 FREE_AND_NULL(repo->config);
240 if (repo->submodule_cache) {
241 submodule_cache_free(repo->submodule_cache);
242 repo->submodule_cache = NULL;
245 if (repo->index) {
246 discard_index(repo->index);
247 if (repo->index != &the_index)
248 FREE_AND_NULL(repo->index);
252 int repo_read_index(struct repository *repo)
254 if (!repo->index)
255 repo->index = xcalloc(1, sizeof(*repo->index));
257 return read_index_from(repo->index, repo->index_file, repo->gitdir);