2 #include "repository.h"
9 void free_worktrees(struct worktree
**worktrees
)
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
);
24 * Update head_sha1, head_ref and is_detached of the given worktree
26 static void add_head_info(struct worktree
*wt
)
31 target
= refs_resolve_ref_unsafe(get_worktree_ref_store(wt
),
34 &wt
->head_oid
, &flags
);
38 if (flags
& REF_ISSYMREF
)
39 wt
->head_ref
= xstrdup(target
);
45 * get the main worktree
47 static struct worktree
*get_main_worktree(void)
49 struct worktree
*worktree
= NULL
;
50 struct strbuf worktree_path
= STRBUF_INIT
;
52 strbuf_add_absolute_path(&worktree_path
, get_git_common_dir());
53 strbuf_strip_suffix(&worktree_path
, "/.");
54 if (!strbuf_strip_suffix(&worktree_path
, "/.git"))
55 strbuf_strip_suffix(&worktree_path
, "/.");
57 worktree
= xcalloc(1, sizeof(*worktree
));
58 worktree
->path
= strbuf_detach(&worktree_path
, NULL
);
60 * NEEDSWORK: If this function is called from a secondary worktree and
61 * config.worktree is present, is_bare_repository_cfg will reflect the
62 * contents of config.worktree, not the contents of the main worktree.
63 * This means that worktree->is_bare may be set to 0 even if the main
64 * worktree is configured to be bare.
66 worktree
->is_bare
= (is_bare_repository_cfg
== 1) ||
68 add_head_info(worktree
);
70 strbuf_release(&worktree_path
);
74 static struct worktree
*get_linked_worktree(const char *id
)
76 struct worktree
*worktree
= NULL
;
77 struct strbuf path
= STRBUF_INIT
;
78 struct strbuf worktree_path
= STRBUF_INIT
;
81 die("Missing linked worktree name");
83 strbuf_git_common_path(&path
, the_repository
, "worktrees/%s/gitdir", id
);
84 if (strbuf_read_file(&worktree_path
, path
.buf
, 0) <= 0)
85 /* invalid gitdir file */
88 strbuf_rtrim(&worktree_path
);
89 if (!strbuf_strip_suffix(&worktree_path
, "/.git")) {
90 strbuf_reset(&worktree_path
);
91 strbuf_add_absolute_path(&worktree_path
, ".");
92 strbuf_strip_suffix(&worktree_path
, "/.");
96 strbuf_addf(&path
, "%s/worktrees/%s/HEAD", get_git_common_dir(), id
);
98 worktree
= xcalloc(1, sizeof(*worktree
));
99 worktree
->path
= strbuf_detach(&worktree_path
, NULL
);
100 worktree
->id
= xstrdup(id
);
101 add_head_info(worktree
);
104 strbuf_release(&path
);
105 strbuf_release(&worktree_path
);
109 static void mark_current_worktree(struct worktree
**worktrees
)
111 char *git_dir
= absolute_pathdup(get_git_dir());
114 for (i
= 0; worktrees
[i
]; i
++) {
115 struct worktree
*wt
= worktrees
[i
];
116 const char *wt_git_dir
= get_worktree_git_dir(wt
);
118 if (!fspathcmp(git_dir
, absolute_path(wt_git_dir
))) {
126 static int compare_worktree(const void *a_
, const void *b_
)
128 const struct worktree
*const *a
= a_
;
129 const struct worktree
*const *b
= b_
;
130 return fspathcmp((*a
)->path
, (*b
)->path
);
133 struct worktree
**get_worktrees(unsigned flags
)
135 struct worktree
**list
= NULL
;
136 struct strbuf path
= STRBUF_INIT
;
139 int counter
= 0, alloc
= 2;
141 ALLOC_ARRAY(list
, alloc
);
143 list
[counter
++] = get_main_worktree();
145 strbuf_addf(&path
, "%s/worktrees", get_git_common_dir());
146 dir
= opendir(path
.buf
);
147 strbuf_release(&path
);
149 while ((d
= readdir(dir
)) != NULL
) {
150 struct worktree
*linked
= NULL
;
151 if (is_dot_or_dotdot(d
->d_name
))
154 if ((linked
= get_linked_worktree(d
->d_name
))) {
155 ALLOC_GROW(list
, counter
+ 1, alloc
);
156 list
[counter
++] = linked
;
161 ALLOC_GROW(list
, counter
+ 1, alloc
);
162 list
[counter
] = NULL
;
164 if (flags
& GWT_SORT_LINKED
)
166 * don't sort the first item (main worktree), which will
167 * always be the first
169 QSORT(list
+ 1, counter
- 1, compare_worktree
);
171 mark_current_worktree(list
);
175 const char *get_worktree_git_dir(const struct worktree
*wt
)
178 return get_git_dir();
180 return get_git_common_dir();
182 return git_common_path("worktrees/%s", wt
->id
);
185 static struct worktree
*find_worktree_by_suffix(struct worktree
**list
,
188 struct worktree
*found
= NULL
;
189 int nr_found
= 0, suffixlen
;
191 suffixlen
= strlen(suffix
);
195 for (; *list
&& nr_found
< 2; list
++) {
196 const char *path
= (*list
)->path
;
197 int pathlen
= strlen(path
);
198 int start
= pathlen
- suffixlen
;
200 /* suffix must start at directory boundary */
201 if ((!start
|| (start
> 0 && is_dir_sep(path
[start
- 1]))) &&
202 !fspathcmp(suffix
, path
+ start
)) {
207 return nr_found
== 1 ? found
: NULL
;
210 struct worktree
*find_worktree(struct worktree
**list
,
215 char *to_free
= NULL
;
217 if ((wt
= find_worktree_by_suffix(list
, arg
)))
221 arg
= to_free
= prefix_filename(prefix
, arg
);
222 wt
= find_worktree_by_path(list
, arg
);
227 struct worktree
*find_worktree_by_path(struct worktree
**list
, const char *p
)
229 struct strbuf wt_path
= STRBUF_INIT
;
230 char *path
= real_pathdup(p
, 0);
234 for (; *list
; list
++) {
235 if (!strbuf_realpath(&wt_path
, (*list
)->path
, 0))
238 if (!fspathcmp(path
, wt_path
.buf
))
242 strbuf_release(&wt_path
);
246 int is_main_worktree(const struct worktree
*wt
)
251 const char *worktree_lock_reason(struct worktree
*wt
)
253 assert(!is_main_worktree(wt
));
255 if (!wt
->lock_reason_valid
) {
256 struct strbuf path
= STRBUF_INIT
;
258 strbuf_addstr(&path
, worktree_git_path(wt
, "locked"));
259 if (file_exists(path
.buf
)) {
260 struct strbuf lock_reason
= STRBUF_INIT
;
261 if (strbuf_read_file(&lock_reason
, path
.buf
, 0) < 0)
262 die_errno(_("failed to read '%s'"), path
.buf
);
263 strbuf_trim(&lock_reason
);
264 wt
->lock_reason
= strbuf_detach(&lock_reason
, NULL
);
266 wt
->lock_reason
= NULL
;
267 wt
->lock_reason_valid
= 1;
268 strbuf_release(&path
);
271 return wt
->lock_reason
;
274 /* convenient wrapper to deal with NULL strbuf */
275 static void strbuf_addf_gently(struct strbuf
*buf
, const char *fmt
, ...)
282 va_start(params
, fmt
);
283 strbuf_vaddf(buf
, fmt
, params
);
287 int validate_worktree(const struct worktree
*wt
, struct strbuf
*errmsg
,
290 struct strbuf wt_path
= STRBUF_INIT
;
291 struct strbuf realpath
= STRBUF_INIT
;
295 strbuf_addf(&wt_path
, "%s/.git", wt
->path
);
297 if (is_main_worktree(wt
)) {
298 if (is_directory(wt_path
.buf
)) {
303 * Main worktree using .git file to point to the
304 * repository would make it impossible to know where
305 * the actual worktree is if this function is executed
306 * from another worktree. No .git file support for now.
308 strbuf_addf_gently(errmsg
,
309 _("'%s' at main working tree is not the repository directory"),
315 * Make sure "gitdir" file points to a real .git file and that
316 * file points back here.
318 if (!is_absolute_path(wt
->path
)) {
319 strbuf_addf_gently(errmsg
,
320 _("'%s' file does not contain absolute path to the working tree location"),
321 git_common_path("worktrees/%s/gitdir", wt
->id
));
325 if (flags
& WT_VALIDATE_WORKTREE_MISSING_OK
&&
326 !file_exists(wt
->path
)) {
331 if (!file_exists(wt_path
.buf
)) {
332 strbuf_addf_gently(errmsg
, _("'%s' does not exist"), wt_path
.buf
);
336 path
= xstrdup_or_null(read_gitfile_gently(wt_path
.buf
, &err
));
338 strbuf_addf_gently(errmsg
, _("'%s' is not a .git file, error code %d"),
343 strbuf_realpath(&realpath
, git_common_path("worktrees/%s", wt
->id
), 1);
344 ret
= fspathcmp(path
, realpath
.buf
);
347 strbuf_addf_gently(errmsg
, _("'%s' does not point back to '%s'"),
348 wt
->path
, git_common_path("worktrees/%s", wt
->id
));
351 strbuf_release(&wt_path
);
352 strbuf_release(&realpath
);
356 void update_worktree_location(struct worktree
*wt
, const char *path_
)
358 struct strbuf path
= STRBUF_INIT
;
360 if (is_main_worktree(wt
))
361 BUG("can't relocate main worktree");
363 strbuf_realpath(&path
, path_
, 1);
364 if (fspathcmp(wt
->path
, path
.buf
)) {
365 write_file(git_common_path("worktrees/%s/gitdir", wt
->id
),
366 "%s/.git", path
.buf
);
368 wt
->path
= strbuf_detach(&path
, NULL
);
370 strbuf_release(&path
);
373 int is_worktree_being_rebased(const struct worktree
*wt
,
376 struct wt_status_state state
;
379 memset(&state
, 0, sizeof(state
));
380 found_rebase
= wt_status_check_rebase(wt
, &state
) &&
381 ((state
.rebase_in_progress
||
382 state
.rebase_interactive_in_progress
) &&
384 starts_with(target
, "refs/heads/") &&
385 !strcmp(state
.branch
, target
+ strlen("refs/heads/")));
391 int is_worktree_being_bisected(const struct worktree
*wt
,
394 struct wt_status_state state
;
397 memset(&state
, 0, sizeof(state
));
398 found_rebase
= wt_status_check_bisect(wt
, &state
) &&
400 starts_with(target
, "refs/heads/") &&
401 !strcmp(state
.branch
, target
+ strlen("refs/heads/"));
407 * note: this function should be able to detect shared symref even if
408 * HEAD is temporarily detached (e.g. in the middle of rebase or
409 * bisect). New commands that do similar things should update this
412 const struct worktree
*find_shared_symref(const char *symref
,
415 const struct worktree
*existing
= NULL
;
416 static struct worktree
**worktrees
;
420 free_worktrees(worktrees
);
421 worktrees
= get_worktrees(0);
423 for (i
= 0; worktrees
[i
]; i
++) {
424 struct worktree
*wt
= worktrees
[i
];
425 const char *symref_target
;
426 struct ref_store
*refs
;
432 if (wt
->is_detached
&& !strcmp(symref
, "HEAD")) {
433 if (is_worktree_being_rebased(wt
, target
)) {
437 if (is_worktree_being_bisected(wt
, target
)) {
443 refs
= get_worktree_ref_store(wt
);
444 symref_target
= refs_resolve_ref_unsafe(refs
, symref
, 0,
446 if ((flags
& REF_ISSYMREF
) &&
447 symref_target
&& !strcmp(symref_target
, target
)) {
456 int submodule_uses_worktrees(const char *path
)
458 char *submodule_gitdir
;
459 struct strbuf sb
= STRBUF_INIT
, err
= STRBUF_INIT
;
463 struct repository_format format
= REPOSITORY_FORMAT_INIT
;
465 submodule_gitdir
= git_pathdup_submodule(path
, "%s", "");
466 if (!submodule_gitdir
)
469 /* The env would be set for the superproject. */
470 get_common_dir_noenv(&sb
, submodule_gitdir
);
471 free(submodule_gitdir
);
473 strbuf_addstr(&sb
, "/config");
474 read_repository_format(&format
, sb
.buf
);
475 if (verify_repository_format(&format
, &err
)) {
476 strbuf_release(&err
);
478 clear_repository_format(&format
);
481 clear_repository_format(&format
);
482 strbuf_release(&err
);
484 /* Replace config by worktrees. */
485 strbuf_setlen(&sb
, sb
.len
- strlen("config"));
486 strbuf_addstr(&sb
, "worktrees");
488 /* See if there is any file inside the worktrees directory. */
489 dir
= opendir(sb
.buf
);
495 while ((d
= readdir(dir
)) != NULL
) {
496 if (is_dot_or_dotdot(d
->d_name
))
506 int parse_worktree_ref(const char *worktree_ref
, const char **name
,
507 int *name_length
, const char **ref
)
509 if (skip_prefix(worktree_ref
, "main-worktree/", &worktree_ref
)) {
520 if (skip_prefix(worktree_ref
, "worktrees/", &worktree_ref
)) {
521 const char *slash
= strchr(worktree_ref
, '/');
523 if (!slash
|| slash
== worktree_ref
|| !slash
[1])
526 *name
= worktree_ref
;
528 *name_length
= slash
- worktree_ref
;
536 void strbuf_worktree_ref(const struct worktree
*wt
,
540 switch (ref_type(refname
)) {
541 case REF_TYPE_PSEUDOREF
:
542 case REF_TYPE_PER_WORKTREE
:
543 if (wt
&& !wt
->is_current
) {
544 if (is_main_worktree(wt
))
545 strbuf_addstr(sb
, "main-worktree/");
547 strbuf_addf(sb
, "worktrees/%s/", wt
->id
);
551 case REF_TYPE_MAIN_PSEUDOREF
:
552 case REF_TYPE_OTHER_PSEUDOREF
:
555 case REF_TYPE_NORMAL
:
557 * For shared refs, don't prefix worktrees/ or
558 * main-worktree/. It's not necessary and
559 * files-backend.c can't handle it anyway.
563 strbuf_addstr(sb
, refname
);
566 const char *worktree_ref(const struct worktree
*wt
, const char *refname
)
568 static struct strbuf sb
= STRBUF_INIT
;
571 strbuf_worktree_ref(wt
, &sb
, refname
);
575 int other_head_refs(each_ref_fn fn
, void *cb_data
)
577 struct worktree
**worktrees
, **p
;
580 worktrees
= get_worktrees(0);
581 for (p
= worktrees
; *p
; p
++) {
582 struct worktree
*wt
= *p
;
583 struct object_id oid
;
589 if (!refs_read_ref_full(get_main_ref_store(the_repository
),
590 worktree_ref(wt
, "HEAD"),
593 ret
= fn(worktree_ref(wt
, "HEAD"), &oid
, flag
, cb_data
);
597 free_worktrees(worktrees
);