Merge branch 'ma/bisect-leakfix'
[git.git] / worktree.c
blobf5da7d286d537fa99a1bd2dd5180068b9d85da2f
1 #include "cache.h"
2 #include "repository.h"
3 #include "refs.h"
4 #include "strbuf.h"
5 #include "worktree.h"
6 #include "dir.h"
7 #include "wt-status.h"
9 void free_worktrees(struct worktree **worktrees)
11 int i = 0;
13 for (i = 0; worktrees[i]; i++) {
14 free(worktrees[i]->path);
15 free(worktrees[i]->id);
16 free(worktrees[i]->head_ref);
17 free(worktrees[i]->lock_reason);
18 free(worktrees[i]);
20 free (worktrees);
23 /**
24 * Update head_sha1, head_ref and is_detached of the given worktree
26 static void add_head_info(struct worktree *wt)
28 int flags;
29 const char *target;
31 target = refs_resolve_ref_unsafe(get_worktree_ref_store(wt),
32 "HEAD",
34 &wt->head_oid, &flags);
35 if (!target)
36 return;
38 if (flags & REF_ISSYMREF)
39 wt->head_ref = xstrdup(target);
40 else
41 wt->is_detached = 1;
44 /**
45 * get the main worktree
47 static struct worktree *get_main_worktree(void)
49 struct worktree *worktree = NULL;
50 struct strbuf path = STRBUF_INIT;
51 struct strbuf worktree_path = STRBUF_INIT;
52 int is_bare = 0;
54 strbuf_add_absolute_path(&worktree_path, get_git_common_dir());
55 is_bare = !strbuf_strip_suffix(&worktree_path, "/.git");
56 if (is_bare)
57 strbuf_strip_suffix(&worktree_path, "/.");
59 strbuf_addf(&path, "%s/HEAD", get_git_common_dir());
61 worktree = xcalloc(1, sizeof(*worktree));
62 worktree->path = strbuf_detach(&worktree_path, NULL);
63 worktree->is_bare = is_bare;
64 add_head_info(worktree);
66 strbuf_release(&path);
67 strbuf_release(&worktree_path);
68 return worktree;
71 static struct worktree *get_linked_worktree(const char *id)
73 struct worktree *worktree = NULL;
74 struct strbuf path = STRBUF_INIT;
75 struct strbuf worktree_path = STRBUF_INIT;
77 if (!id)
78 die("Missing linked worktree name");
80 strbuf_git_common_path(&path, the_repository, "worktrees/%s/gitdir", id);
81 if (strbuf_read_file(&worktree_path, path.buf, 0) <= 0)
82 /* invalid gitdir file */
83 goto done;
85 strbuf_rtrim(&worktree_path);
86 if (!strbuf_strip_suffix(&worktree_path, "/.git")) {
87 strbuf_reset(&worktree_path);
88 strbuf_add_absolute_path(&worktree_path, ".");
89 strbuf_strip_suffix(&worktree_path, "/.");
92 strbuf_reset(&path);
93 strbuf_addf(&path, "%s/worktrees/%s/HEAD", get_git_common_dir(), id);
95 worktree = xcalloc(1, sizeof(*worktree));
96 worktree->path = strbuf_detach(&worktree_path, NULL);
97 worktree->id = xstrdup(id);
98 add_head_info(worktree);
100 done:
101 strbuf_release(&path);
102 strbuf_release(&worktree_path);
103 return worktree;
106 static void mark_current_worktree(struct worktree **worktrees)
108 char *git_dir = absolute_pathdup(get_git_dir());
109 int i;
111 for (i = 0; worktrees[i]; i++) {
112 struct worktree *wt = worktrees[i];
113 const char *wt_git_dir = get_worktree_git_dir(wt);
115 if (!fspathcmp(git_dir, absolute_path(wt_git_dir))) {
116 wt->is_current = 1;
117 break;
120 free(git_dir);
123 static int compare_worktree(const void *a_, const void *b_)
125 const struct worktree *const *a = a_;
126 const struct worktree *const *b = b_;
127 return fspathcmp((*a)->path, (*b)->path);
130 struct worktree **get_worktrees(unsigned flags)
132 struct worktree **list = NULL;
133 struct strbuf path = STRBUF_INIT;
134 DIR *dir;
135 struct dirent *d;
136 int counter = 0, alloc = 2;
138 ALLOC_ARRAY(list, alloc);
140 list[counter++] = get_main_worktree();
142 strbuf_addf(&path, "%s/worktrees", get_git_common_dir());
143 dir = opendir(path.buf);
144 strbuf_release(&path);
145 if (dir) {
146 while ((d = readdir(dir)) != NULL) {
147 struct worktree *linked = NULL;
148 if (is_dot_or_dotdot(d->d_name))
149 continue;
151 if ((linked = get_linked_worktree(d->d_name))) {
152 ALLOC_GROW(list, counter + 1, alloc);
153 list[counter++] = linked;
156 closedir(dir);
158 ALLOC_GROW(list, counter + 1, alloc);
159 list[counter] = NULL;
161 if (flags & GWT_SORT_LINKED)
163 * don't sort the first item (main worktree), which will
164 * always be the first
166 QSORT(list + 1, counter - 1, compare_worktree);
168 mark_current_worktree(list);
169 return list;
172 const char *get_worktree_git_dir(const struct worktree *wt)
174 if (!wt)
175 return get_git_dir();
176 else if (!wt->id)
177 return get_git_common_dir();
178 else
179 return git_common_path("worktrees/%s", wt->id);
182 static struct worktree *find_worktree_by_suffix(struct worktree **list,
183 const char *suffix)
185 struct worktree *found = NULL;
186 int nr_found = 0, suffixlen;
188 suffixlen = strlen(suffix);
189 if (!suffixlen)
190 return NULL;
192 for (; *list && nr_found < 2; list++) {
193 const char *path = (*list)->path;
194 int pathlen = strlen(path);
195 int start = pathlen - suffixlen;
197 /* suffix must start at directory boundary */
198 if ((!start || (start > 0 && is_dir_sep(path[start - 1]))) &&
199 !fspathcmp(suffix, path + start)) {
200 found = *list;
201 nr_found++;
204 return nr_found == 1 ? found : NULL;
207 struct worktree *find_worktree(struct worktree **list,
208 const char *prefix,
209 const char *arg)
211 struct worktree *wt;
212 char *path;
213 char *to_free = NULL;
215 if ((wt = find_worktree_by_suffix(list, arg)))
216 return wt;
218 if (prefix)
219 arg = to_free = prefix_filename(prefix, arg);
220 path = real_pathdup(arg, 1);
221 for (; *list; list++)
222 if (!fspathcmp(path, real_path((*list)->path)))
223 break;
224 free(path);
225 free(to_free);
226 return *list;
229 int is_main_worktree(const struct worktree *wt)
231 return !wt->id;
234 const char *is_worktree_locked(struct worktree *wt)
236 assert(!is_main_worktree(wt));
238 if (!wt->lock_reason_valid) {
239 struct strbuf path = STRBUF_INIT;
241 strbuf_addstr(&path, worktree_git_path(wt, "locked"));
242 if (file_exists(path.buf)) {
243 struct strbuf lock_reason = STRBUF_INIT;
244 if (strbuf_read_file(&lock_reason, path.buf, 0) < 0)
245 die_errno(_("failed to read '%s'"), path.buf);
246 strbuf_trim(&lock_reason);
247 wt->lock_reason = strbuf_detach(&lock_reason, NULL);
248 } else
249 wt->lock_reason = NULL;
250 wt->lock_reason_valid = 1;
251 strbuf_release(&path);
254 return wt->lock_reason;
257 int is_worktree_being_rebased(const struct worktree *wt,
258 const char *target)
260 struct wt_status_state state;
261 int found_rebase;
263 memset(&state, 0, sizeof(state));
264 found_rebase = wt_status_check_rebase(wt, &state) &&
265 ((state.rebase_in_progress ||
266 state.rebase_interactive_in_progress) &&
267 state.branch &&
268 starts_with(target, "refs/heads/") &&
269 !strcmp(state.branch, target + strlen("refs/heads/")));
270 free(state.branch);
271 free(state.onto);
272 return found_rebase;
275 int is_worktree_being_bisected(const struct worktree *wt,
276 const char *target)
278 struct wt_status_state state;
279 int found_rebase;
281 memset(&state, 0, sizeof(state));
282 found_rebase = wt_status_check_bisect(wt, &state) &&
283 state.branch &&
284 starts_with(target, "refs/heads/") &&
285 !strcmp(state.branch, target + strlen("refs/heads/"));
286 free(state.branch);
287 return found_rebase;
291 * note: this function should be able to detect shared symref even if
292 * HEAD is temporarily detached (e.g. in the middle of rebase or
293 * bisect). New commands that do similar things should update this
294 * function as well.
296 const struct worktree *find_shared_symref(const char *symref,
297 const char *target)
299 const struct worktree *existing = NULL;
300 static struct worktree **worktrees;
301 int i = 0;
303 if (worktrees)
304 free_worktrees(worktrees);
305 worktrees = get_worktrees(0);
307 for (i = 0; worktrees[i]; i++) {
308 struct worktree *wt = worktrees[i];
309 const char *symref_target;
310 struct ref_store *refs;
311 int flags;
313 if (wt->is_bare)
314 continue;
316 if (wt->is_detached && !strcmp(symref, "HEAD")) {
317 if (is_worktree_being_rebased(wt, target)) {
318 existing = wt;
319 break;
321 if (is_worktree_being_bisected(wt, target)) {
322 existing = wt;
323 break;
327 refs = get_worktree_ref_store(wt);
328 symref_target = refs_resolve_ref_unsafe(refs, symref, 0,
329 NULL, &flags);
330 if ((flags & REF_ISSYMREF) &&
331 symref_target && !strcmp(symref_target, target)) {
332 existing = wt;
333 break;
337 return existing;
340 int submodule_uses_worktrees(const char *path)
342 char *submodule_gitdir;
343 struct strbuf sb = STRBUF_INIT;
344 DIR *dir;
345 struct dirent *d;
346 int ret = 0;
347 struct repository_format format;
349 submodule_gitdir = git_pathdup_submodule(path, "%s", "");
350 if (!submodule_gitdir)
351 return 0;
353 /* The env would be set for the superproject. */
354 get_common_dir_noenv(&sb, submodule_gitdir);
355 free(submodule_gitdir);
358 * The check below is only known to be good for repository format
359 * version 0 at the time of writing this code.
361 strbuf_addstr(&sb, "/config");
362 read_repository_format(&format, sb.buf);
363 if (format.version != 0) {
364 strbuf_release(&sb);
365 return 1;
368 /* Replace config by worktrees. */
369 strbuf_setlen(&sb, sb.len - strlen("config"));
370 strbuf_addstr(&sb, "worktrees");
372 /* See if there is any file inside the worktrees directory. */
373 dir = opendir(sb.buf);
374 strbuf_release(&sb);
376 if (!dir)
377 return 0;
379 while ((d = readdir(dir)) != NULL) {
380 if (is_dot_or_dotdot(d->d_name))
381 continue;
383 ret = 1;
384 break;
386 closedir(dir);
387 return ret;
390 int other_head_refs(each_ref_fn fn, void *cb_data)
392 struct worktree **worktrees, **p;
393 int ret = 0;
395 worktrees = get_worktrees(0);
396 for (p = worktrees; *p; p++) {
397 struct worktree *wt = *p;
398 struct ref_store *refs;
400 if (wt->is_current)
401 continue;
403 refs = get_worktree_ref_store(wt);
404 ret = refs_head_ref(refs, fn, cb_data);
405 if (ret)
406 break;
408 free_worktrees(worktrees);
409 return ret;