blob: 97cda5f97bbc10b2f5690b945ab42d2beef74e2e [file] [log] [blame]
Michael Rappazzoac6c5612015-10-02 07:55:31 -04001#include "cache.h"
Brandon Williamsb3371722017-06-22 11:43:37 -07002#include "repository.h"
Michael Rappazzoac6c5612015-10-02 07:55:31 -04003#include "refs.h"
4#include "strbuf.h"
5#include "worktree.h"
Nguyễn Thái Ngọc Duy750e8a62016-04-22 20:01:28 +07006#include "dir.h"
Nguyễn Thái Ngọc Duy8d9fdd72016-04-22 20:01:33 +07007#include "wt-status.h"
Michael Rappazzoac6c5612015-10-02 07:55:31 -04008
Michael Rappazzo51934902015-10-08 13:01:03 -04009void free_worktrees(struct worktree **worktrees)
10{
11 int i = 0;
12
13 for (i = 0; worktrees[i]; i++) {
14 free(worktrees[i]->path);
Nguyễn Thái Ngọc Duy69dfe3b2016-04-22 20:01:26 +070015 free(worktrees[i]->id);
Michael Rappazzo92718b72015-10-08 13:01:04 -040016 free(worktrees[i]->head_ref);
Nguyễn Thái Ngọc Duy346ef532016-06-13 19:18:23 +070017 free(worktrees[i]->lock_reason);
Michael Rappazzo51934902015-10-08 13:01:03 -040018 free(worktrees[i]);
19 }
20 free (worktrees);
21}
22
Michael Rappazzo51934902015-10-08 13:01:03 -040023/**
Nguyễn Thái Ngọc Duyfa099d22017-04-24 17:01:23 +070024 * Update head_sha1, head_ref and is_detached of the given worktree
Michael Rappazzo92718b72015-10-08 13:01:04 -040025 */
Nguyễn Thái Ngọc Duyfa099d22017-04-24 17:01:23 +070026static void add_head_info(struct worktree *wt)
Michael Rappazzo92718b72015-10-08 13:01:04 -040027{
Nguyễn Thái Ngọc Duyfa099d22017-04-24 17:01:23 +070028 int flags;
29 const char *target;
30
31 target = refs_resolve_ref_unsafe(get_worktree_ref_store(wt),
32 "HEAD",
Nguyễn Thái Ngọc Duy31824d12017-08-24 17:41:24 +070033 0,
brian m. carlson49e61472017-10-15 22:07:09 +000034 &wt->head_oid, &flags);
Nguyễn Thái Ngọc Duyfa099d22017-04-24 17:01:23 +070035 if (!target)
36 return;
37
38 if (flags & REF_ISSYMREF)
39 wt->head_ref = xstrdup(target);
40 else
41 wt->is_detached = 1;
Michael Rappazzo92718b72015-10-08 13:01:04 -040042}
43
44/**
Michael Rappazzo51934902015-10-08 13:01:03 -040045 * get the main worktree
46 */
47static struct worktree *get_main_worktree(void)
Michael Rappazzo1ceb7f92015-10-08 13:01:02 -040048{
Michael Rappazzo51934902015-10-08 13:01:03 -040049 struct worktree *worktree = NULL;
Michael Rappazzo1ceb7f92015-10-08 13:01:02 -040050 struct strbuf path = STRBUF_INIT;
Michael Rappazzo51934902015-10-08 13:01:03 -040051 struct strbuf worktree_path = STRBUF_INIT;
Michael Rappazzo92718b72015-10-08 13:01:04 -040052 int is_bare = 0;
Michael Rappazzo1ceb7f92015-10-08 13:01:02 -040053
René Scharfefd2e7da2016-07-09 17:43:59 +020054 strbuf_add_absolute_path(&worktree_path, get_git_common_dir());
Michael Rappazzo92718b72015-10-08 13:01:04 -040055 is_bare = !strbuf_strip_suffix(&worktree_path, "/.git");
56 if (is_bare)
Michael Rappazzo51934902015-10-08 13:01:03 -040057 strbuf_strip_suffix(&worktree_path, "/.");
58
59 strbuf_addf(&path, "%s/HEAD", get_git_common_dir());
60
Nguyễn Thái Ngọc Duyf054996d2016-11-22 17:00:44 +070061 worktree = xcalloc(1, sizeof(*worktree));
Michael Rappazzo92718b72015-10-08 13:01:04 -040062 worktree->path = strbuf_detach(&worktree_path, NULL);
Michael Rappazzo92718b72015-10-08 13:01:04 -040063 worktree->is_bare = is_bare;
Nguyễn Thái Ngọc Duyfa099d22017-04-24 17:01:23 +070064 add_head_info(worktree);
Michael Rappazzo92718b72015-10-08 13:01:04 -040065
Michael Rappazzo1ceb7f92015-10-08 13:01:02 -040066 strbuf_release(&path);
Michael Rappazzo51934902015-10-08 13:01:03 -040067 strbuf_release(&worktree_path);
Michael Rappazzo51934902015-10-08 13:01:03 -040068 return worktree;
Michael Rappazzo1ceb7f92015-10-08 13:01:02 -040069}
70
Michael Rappazzo51934902015-10-08 13:01:03 -040071static struct worktree *get_linked_worktree(const char *id)
Michael Rappazzoac6c5612015-10-02 07:55:31 -040072{
Michael Rappazzo51934902015-10-08 13:01:03 -040073 struct worktree *worktree = NULL;
Michael Rappazzoac6c5612015-10-02 07:55:31 -040074 struct strbuf path = STRBUF_INIT;
Michael Rappazzo51934902015-10-08 13:01:03 -040075 struct strbuf worktree_path = STRBUF_INIT;
Michael Rappazzoac6c5612015-10-02 07:55:31 -040076
Michael Rappazzo1ceb7f92015-10-08 13:01:02 -040077 if (!id)
78 die("Missing linked worktree name");
Michael Rappazzoac6c5612015-10-02 07:55:31 -040079
Brandon Williamsb3371722017-06-22 11:43:37 -070080 strbuf_git_common_path(&path, the_repository, "worktrees/%s/gitdir", id);
Michael Rappazzo51934902015-10-08 13:01:03 -040081 if (strbuf_read_file(&worktree_path, path.buf, 0) <= 0)
82 /* invalid gitdir file */
83 goto done;
Michael Rappazzo1ceb7f92015-10-08 13:01:02 -040084
Michael Rappazzo51934902015-10-08 13:01:03 -040085 strbuf_rtrim(&worktree_path);
86 if (!strbuf_strip_suffix(&worktree_path, "/.git")) {
87 strbuf_reset(&worktree_path);
René Scharfefd2e7da2016-07-09 17:43:59 +020088 strbuf_add_absolute_path(&worktree_path, ".");
Michael Rappazzo51934902015-10-08 13:01:03 -040089 strbuf_strip_suffix(&worktree_path, "/.");
90 }
91
Michael Rappazzo1ceb7f92015-10-08 13:01:02 -040092 strbuf_reset(&path);
Michael Rappazzo51934902015-10-08 13:01:03 -040093 strbuf_addf(&path, "%s/worktrees/%s/HEAD", get_git_common_dir(), id);
Michael Rappazzoac6c5612015-10-02 07:55:31 -040094
Nguyễn Thái Ngọc Duyf054996d2016-11-22 17:00:44 +070095 worktree = xcalloc(1, sizeof(*worktree));
Michael Rappazzo92718b72015-10-08 13:01:04 -040096 worktree->path = strbuf_detach(&worktree_path, NULL);
Nguyễn Thái Ngọc Duy69dfe3b2016-04-22 20:01:26 +070097 worktree->id = xstrdup(id);
Nguyễn Thái Ngọc Duyfa099d22017-04-24 17:01:23 +070098 add_head_info(worktree);
Michael Rappazzo51934902015-10-08 13:01:03 -040099
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400100done:
101 strbuf_release(&path);
Michael Rappazzo51934902015-10-08 13:01:03 -0400102 strbuf_release(&worktree_path);
Michael Rappazzo51934902015-10-08 13:01:03 -0400103 return worktree;
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400104}
105
Nguyễn Thái Ngọc Duy750e8a62016-04-22 20:01:28 +0700106static void mark_current_worktree(struct worktree **worktrees)
107{
René Scharfe0aaad412017-01-26 18:54:23 +0100108 char *git_dir = absolute_pathdup(get_git_dir());
Nguyễn Thái Ngọc Duy750e8a62016-04-22 20:01:28 +0700109 int i;
110
Nguyễn Thái Ngọc Duy750e8a62016-04-22 20:01:28 +0700111 for (i = 0; worktrees[i]; i++) {
112 struct worktree *wt = worktrees[i];
Nguyễn Thái Ngọc Duy360af2d2016-05-22 16:33:52 +0700113 const char *wt_git_dir = get_worktree_git_dir(wt);
114
115 if (!fspathcmp(git_dir, absolute_path(wt_git_dir))) {
116 wt->is_current = 1;
Nguyễn Thái Ngọc Duy750e8a62016-04-22 20:01:28 +0700117 break;
Nguyễn Thái Ngọc Duy360af2d2016-05-22 16:33:52 +0700118 }
Nguyễn Thái Ngọc Duy750e8a62016-04-22 20:01:28 +0700119 }
Nguyễn Thái Ngọc Duy360af2d2016-05-22 16:33:52 +0700120 free(git_dir);
Nguyễn Thái Ngọc Duy750e8a62016-04-22 20:01:28 +0700121}
122
Nguyễn Thái Ngọc Duy4df1d4d2016-11-28 16:36:56 +0700123static int compare_worktree(const void *a_, const void *b_)
124{
125 const struct worktree *const *a = a_;
126 const struct worktree *const *b = b_;
127 return fspathcmp((*a)->path, (*b)->path);
128}
129
Nguyễn Thái Ngọc Duy4fff1ef2016-11-28 16:36:55 +0700130struct worktree **get_worktrees(unsigned flags)
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400131{
Michael Rappazzo51934902015-10-08 13:01:03 -0400132 struct worktree **list = NULL;
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400133 struct strbuf path = STRBUF_INIT;
134 DIR *dir;
135 struct dirent *d;
Michael Rappazzo51934902015-10-08 13:01:03 -0400136 int counter = 0, alloc = 2;
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400137
René Scharfe3f646992017-02-25 11:30:03 +0100138 ALLOC_ARRAY(list, alloc);
Michael Rappazzo51934902015-10-08 13:01:03 -0400139
Nguyễn Thái Ngọc Duya2345632016-11-28 16:36:54 +0700140 list[counter++] = get_main_worktree();
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400141
142 strbuf_addf(&path, "%s/worktrees", get_git_common_dir());
143 dir = opendir(path.buf);
144 strbuf_release(&path);
Michael Rappazzo51934902015-10-08 13:01:03 -0400145 if (dir) {
146 while ((d = readdir(dir)) != NULL) {
147 struct worktree *linked = NULL;
Nguyễn Thái Ngọc Duyafb9e302016-05-22 16:33:54 +0700148 if (is_dot_or_dotdot(d->d_name))
Michael Rappazzo51934902015-10-08 13:01:03 -0400149 continue;
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400150
Nguyễn Thái Ngọc Duyd4cddd62016-01-18 18:21:29 +0700151 if ((linked = get_linked_worktree(d->d_name))) {
152 ALLOC_GROW(list, counter + 1, alloc);
153 list[counter++] = linked;
154 }
Michael Rappazzo51934902015-10-08 13:01:03 -0400155 }
156 closedir(dir);
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400157 }
Michael Rappazzo51934902015-10-08 13:01:03 -0400158 ALLOC_GROW(list, counter + 1, alloc);
159 list[counter] = NULL;
Nguyễn Thái Ngọc Duy750e8a62016-04-22 20:01:28 +0700160
Nguyễn Thái Ngọc Duy4df1d4d2016-11-28 16:36:56 +0700161 if (flags & GWT_SORT_LINKED)
162 /*
163 * don't sort the first item (main worktree), which will
164 * always be the first
165 */
166 QSORT(list + 1, counter - 1, compare_worktree);
167
Nguyễn Thái Ngọc Duy750e8a62016-04-22 20:01:28 +0700168 mark_current_worktree(list);
Michael Rappazzo51934902015-10-08 13:01:03 -0400169 return list;
170}
171
Nguyễn Thái Ngọc Duy69dfe3b2016-04-22 20:01:26 +0700172const char *get_worktree_git_dir(const struct worktree *wt)
Michael Rappazzo51934902015-10-08 13:01:03 -0400173{
Nguyễn Thái Ngọc Duy69dfe3b2016-04-22 20:01:26 +0700174 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);
180}
181
Nguyễn Thái Ngọc Duy080739b2016-06-13 19:18:26 +0700182static struct worktree *find_worktree_by_suffix(struct worktree **list,
183 const char *suffix)
184{
185 struct worktree *found = NULL;
186 int nr_found = 0, suffixlen;
187
188 suffixlen = strlen(suffix);
189 if (!suffixlen)
190 return NULL;
191
192 for (; *list && nr_found < 2; list++) {
193 const char *path = (*list)->path;
194 int pathlen = strlen(path);
195 int start = pathlen - suffixlen;
196
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++;
202 }
203 }
204 return nr_found == 1 ? found : NULL;
205}
206
Nguyễn Thái Ngọc Duy68353142016-06-03 19:19:39 +0700207struct worktree *find_worktree(struct worktree **list,
208 const char *prefix,
209 const char *arg)
210{
Nguyễn Thái Ngọc Duy080739b2016-06-13 19:18:26 +0700211 struct worktree *wt;
Nguyễn Thái Ngọc Duy68353142016-06-03 19:19:39 +0700212 char *path;
Jeff Kinge4da43b2017-03-20 21:28:49 -0400213 char *to_free = NULL;
Nguyễn Thái Ngọc Duy68353142016-06-03 19:19:39 +0700214
Nguyễn Thái Ngọc Duy080739b2016-06-13 19:18:26 +0700215 if ((wt = find_worktree_by_suffix(list, arg)))
216 return wt;
217
Jeff Kinge4da43b2017-03-20 21:28:49 -0400218 if (prefix)
219 arg = to_free = prefix_filename(prefix, arg);
Johannes Schindelince83ead2017-03-08 16:43:40 +0100220 path = real_pathdup(arg, 1);
Nguyễn Thái Ngọc Duy68353142016-06-03 19:19:39 +0700221 for (; *list; list++)
222 if (!fspathcmp(path, real_path((*list)->path)))
223 break;
224 free(path);
Jeff Kinge4da43b2017-03-20 21:28:49 -0400225 free(to_free);
Nguyễn Thái Ngọc Duy68353142016-06-03 19:19:39 +0700226 return *list;
227}
228
Nguyễn Thái Ngọc Duy984ad9e2016-06-03 19:19:40 +0700229int is_main_worktree(const struct worktree *wt)
230{
231 return !wt->id;
232}
233
Nguyễn Thái Ngọc Duy346ef532016-06-13 19:18:23 +0700234const char *is_worktree_locked(struct worktree *wt)
235{
236 assert(!is_main_worktree(wt));
237
238 if (!wt->lock_reason_valid) {
239 struct strbuf path = STRBUF_INIT;
240
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);
252 }
253
254 return wt->lock_reason;
255}
256
Nguyễn Thái Ngọc Duy4ddddc12018-01-24 16:53:51 +0700257/* convenient wrapper to deal with NULL strbuf */
258static void strbuf_addf_gently(struct strbuf *buf, const char *fmt, ...)
259{
260 va_list params;
261
262 if (!buf)
263 return;
264
265 va_start(params, fmt);
266 strbuf_vaddf(buf, fmt, params);
267 va_end(params);
268}
269
Nguyễn Thái Ngọc Duyee6763a2018-02-12 16:49:40 +0700270int validate_worktree(const struct worktree *wt, struct strbuf *errmsg,
271 unsigned flags)
Nguyễn Thái Ngọc Duy4ddddc12018-01-24 16:53:51 +0700272{
273 struct strbuf wt_path = STRBUF_INIT;
274 char *path = NULL;
275 int err, ret = -1;
276
277 strbuf_addf(&wt_path, "%s/.git", wt->path);
278
279 if (is_main_worktree(wt)) {
280 if (is_directory(wt_path.buf)) {
281 ret = 0;
282 goto done;
283 }
284 /*
285 * Main worktree using .git file to point to the
286 * repository would make it impossible to know where
287 * the actual worktree is if this function is executed
288 * from another worktree. No .git file support for now.
289 */
290 strbuf_addf_gently(errmsg,
291 _("'%s' at main working tree is not the repository directory"),
292 wt_path.buf);
293 goto done;
294 }
295
296 /*
297 * Make sure "gitdir" file points to a real .git file and that
298 * file points back here.
299 */
300 if (!is_absolute_path(wt->path)) {
301 strbuf_addf_gently(errmsg,
302 _("'%s' file does not contain absolute path to the working tree location"),
303 git_common_path("worktrees/%s/gitdir", wt->id));
304 goto done;
305 }
306
Nguyễn Thái Ngọc Duyee6763a2018-02-12 16:49:40 +0700307 if (flags & WT_VALIDATE_WORKTREE_MISSING_OK &&
308 !file_exists(wt->path)) {
309 ret = 0;
310 goto done;
311 }
312
Nguyễn Thái Ngọc Duy4ddddc12018-01-24 16:53:51 +0700313 if (!file_exists(wt_path.buf)) {
314 strbuf_addf_gently(errmsg, _("'%s' does not exist"), wt_path.buf);
315 goto done;
316 }
317
318 path = xstrdup_or_null(read_gitfile_gently(wt_path.buf, &err));
319 if (!path) {
320 strbuf_addf_gently(errmsg, _("'%s' is not a .git file, error code %d"),
321 wt_path.buf, err);
322 goto done;
323 }
324
325 ret = fspathcmp(path, real_path(git_common_path("worktrees/%s", wt->id)));
326
327 if (ret)
328 strbuf_addf_gently(errmsg, _("'%s' does not point back to '%s'"),
329 wt->path, git_common_path("worktrees/%s", wt->id));
330done:
331 free(path);
332 strbuf_release(&wt_path);
333 return ret;
334}
335
Nguyễn Thái Ngọc Duy9c620fc2018-02-12 16:49:35 +0700336void update_worktree_location(struct worktree *wt, const char *path_)
337{
338 struct strbuf path = STRBUF_INIT;
339
340 if (is_main_worktree(wt))
Johannes Schindelin033abf92018-05-02 11:38:39 +0200341 BUG("can't relocate main worktree");
Nguyễn Thái Ngọc Duy9c620fc2018-02-12 16:49:35 +0700342
343 strbuf_realpath(&path, path_, 1);
344 if (fspathcmp(wt->path, path.buf)) {
345 write_file(git_common_path("worktrees/%s/gitdir", wt->id),
346 "%s/.git", path.buf);
347 free(wt->path);
348 wt->path = strbuf_detach(&path, NULL);
349 }
350 strbuf_release(&path);
351}
352
Nguyễn Thái Ngọc Duy14ace5b2016-04-22 20:01:36 +0700353int is_worktree_being_rebased(const struct worktree *wt,
354 const char *target)
Nguyễn Thái Ngọc Duy8d9fdd72016-04-22 20:01:33 +0700355{
356 struct wt_status_state state;
357 int found_rebase;
358
359 memset(&state, 0, sizeof(state));
360 found_rebase = wt_status_check_rebase(wt, &state) &&
361 ((state.rebase_in_progress ||
362 state.rebase_interactive_in_progress) &&
363 state.branch &&
364 starts_with(target, "refs/heads/") &&
365 !strcmp(state.branch, target + strlen("refs/heads/")));
366 free(state.branch);
367 free(state.onto);
368 return found_rebase;
369}
370
Nguyễn Thái Ngọc Duy14ace5b2016-04-22 20:01:36 +0700371int is_worktree_being_bisected(const struct worktree *wt,
372 const char *target)
Nguyễn Thái Ngọc Duy04a3dfb2016-04-22 20:01:35 +0700373{
374 struct wt_status_state state;
375 int found_rebase;
376
377 memset(&state, 0, sizeof(state));
378 found_rebase = wt_status_check_bisect(wt, &state) &&
379 state.branch &&
380 starts_with(target, "refs/heads/") &&
381 !strcmp(state.branch, target + strlen("refs/heads/"));
382 free(state.branch);
383 return found_rebase;
384}
385
Nguyễn Thái Ngọc Duy8d9fdd72016-04-22 20:01:33 +0700386/*
387 * note: this function should be able to detect shared symref even if
388 * HEAD is temporarily detached (e.g. in the middle of rebase or
389 * bisect). New commands that do similar things should update this
390 * function as well.
391 */
Nguyễn Thái Ngọc Duyd3b9ac02016-04-22 20:01:27 +0700392const struct worktree *find_shared_symref(const char *symref,
393 const char *target)
Michael Rappazzo51934902015-10-08 13:01:03 -0400394{
Nguyễn Thái Ngọc Duyd3b9ac02016-04-22 20:01:27 +0700395 const struct worktree *existing = NULL;
Nguyễn Thái Ngọc Duyd3b9ac02016-04-22 20:01:27 +0700396 static struct worktree **worktrees;
Michael Rappazzo51934902015-10-08 13:01:03 -0400397 int i = 0;
398
Nguyễn Thái Ngọc Duyd3b9ac02016-04-22 20:01:27 +0700399 if (worktrees)
400 free_worktrees(worktrees);
Nguyễn Thái Ngọc Duy4fff1ef2016-11-28 16:36:55 +0700401 worktrees = get_worktrees(0);
Nguyễn Thái Ngọc Duyd3b9ac02016-04-22 20:01:27 +0700402
Michael Rappazzo51934902015-10-08 13:01:03 -0400403 for (i = 0; worktrees[i]; i++) {
Nguyễn Thái Ngọc Duyc8717142016-04-22 20:01:32 +0700404 struct worktree *wt = worktrees[i];
Nguyễn Thái Ngọc Duyfa099d22017-04-24 17:01:23 +0700405 const char *symref_target;
Nguyễn Thái Ngọc Duyfa099d22017-04-24 17:01:23 +0700406 struct ref_store *refs;
407 int flags;
408
Dennis Kaarsemaker171c6462016-10-12 18:41:07 +0200409 if (wt->is_bare)
410 continue;
Nguyễn Thái Ngọc Duyc8717142016-04-22 20:01:32 +0700411
Nguyễn Thái Ngọc Duy8d9fdd72016-04-22 20:01:33 +0700412 if (wt->is_detached && !strcmp(symref, "HEAD")) {
413 if (is_worktree_being_rebased(wt, target)) {
414 existing = wt;
415 break;
416 }
Nguyễn Thái Ngọc Duy04a3dfb2016-04-22 20:01:35 +0700417 if (is_worktree_being_bisected(wt, target)) {
418 existing = wt;
419 break;
420 }
Nguyễn Thái Ngọc Duy8d9fdd72016-04-22 20:01:33 +0700421 }
422
Nguyễn Thái Ngọc Duyfa099d22017-04-24 17:01:23 +0700423 refs = get_worktree_ref_store(wt);
424 symref_target = refs_resolve_ref_unsafe(refs, symref, 0,
René Scharfee691b022017-09-23 11:44:57 +0200425 NULL, &flags);
Jeff Kingdbd2b552017-10-19 13:49:36 -0400426 if ((flags & REF_ISSYMREF) &&
427 symref_target && !strcmp(symref_target, target)) {
Nguyễn Thái Ngọc Duyc8717142016-04-22 20:01:32 +0700428 existing = wt;
Michael Rappazzo51934902015-10-08 13:01:03 -0400429 break;
430 }
431 }
432
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400433 return existing;
434}
Stefan Beller1a248cf2016-12-12 11:04:33 -0800435
436int submodule_uses_worktrees(const char *path)
437{
438 char *submodule_gitdir;
439 struct strbuf sb = STRBUF_INIT;
440 DIR *dir;
441 struct dirent *d;
Stefan Beller7c4be452016-12-27 09:50:13 -0800442 int ret = 0;
Stefan Beller1a248cf2016-12-12 11:04:33 -0800443 struct repository_format format;
444
445 submodule_gitdir = git_pathdup_submodule(path, "%s", "");
446 if (!submodule_gitdir)
447 return 0;
448
449 /* The env would be set for the superproject. */
450 get_common_dir_noenv(&sb, submodule_gitdir);
Johannes Schindelind32de662017-05-04 15:59:19 +0200451 free(submodule_gitdir);
Stefan Beller1a248cf2016-12-12 11:04:33 -0800452
453 /*
454 * The check below is only known to be good for repository format
455 * version 0 at the time of writing this code.
456 */
457 strbuf_addstr(&sb, "/config");
458 read_repository_format(&format, sb.buf);
459 if (format.version != 0) {
460 strbuf_release(&sb);
461 return 1;
462 }
463
464 /* Replace config by worktrees. */
465 strbuf_setlen(&sb, sb.len - strlen("config"));
466 strbuf_addstr(&sb, "worktrees");
467
468 /* See if there is any file inside the worktrees directory. */
469 dir = opendir(sb.buf);
470 strbuf_release(&sb);
Stefan Beller1a248cf2016-12-12 11:04:33 -0800471
472 if (!dir)
473 return 0;
474
475 while ((d = readdir(dir)) != NULL) {
476 if (is_dot_or_dotdot(d->d_name))
477 continue;
478
479 ret = 1;
480 break;
481 }
482 closedir(dir);
483 return ret;
484}
Nguyễn Thái Ngọc Duyd0c39a42017-08-23 19:36:59 +0700485
486int other_head_refs(each_ref_fn fn, void *cb_data)
487{
488 struct worktree **worktrees, **p;
489 int ret = 0;
490
491 worktrees = get_worktrees(0);
492 for (p = worktrees; *p; p++) {
493 struct worktree *wt = *p;
494 struct ref_store *refs;
495
496 if (wt->is_current)
497 continue;
498
499 refs = get_worktree_ref_store(wt);
500 ret = refs_head_ref(refs, fn, cb_data);
501 if (ret)
502 break;
503 }
504 free_worktrees(worktrees);
505 return ret;
506}