|
3 | 3 | #include "strbuf.h"
|
4 | 4 | #include "worktree.h"
|
5 | 5 |
|
| 6 | +void free_worktrees(struct worktree **worktrees) |
| 7 | +{ |
| 8 | + int i = 0; |
| 9 | + |
| 10 | + for (i = 0; worktrees[i]; i++) { |
| 11 | + free(worktrees[i]->path); |
| 12 | + free(worktrees[i]); |
| 13 | + } |
| 14 | + free (worktrees); |
| 15 | +} |
| 16 | + |
6 | 17 | /*
|
7 | 18 | * read 'path_to_ref' into 'ref'. Also if is_detached is not NULL,
|
8 | 19 | * set is_detached to 1 (0) if the ref is detatched (is not detached).
|
@@ -38,87 +49,138 @@ static int parse_ref(char *path_to_ref, struct strbuf *ref, int *is_detached)
|
38 | 49 | return 0;
|
39 | 50 | }
|
40 | 51 |
|
41 |
| -static char *find_main_symref(const char *symref, const char *branch) |
| 52 | +/** |
| 53 | + * get the main worktree |
| 54 | + */ |
| 55 | +static struct worktree *get_main_worktree(void) |
42 | 56 | {
|
43 |
| - struct strbuf sb = STRBUF_INIT; |
| 57 | + struct worktree *worktree = NULL; |
44 | 58 | struct strbuf path = STRBUF_INIT;
|
| 59 | + struct strbuf worktree_path = STRBUF_INIT; |
45 | 60 | struct strbuf gitdir = STRBUF_INIT;
|
46 |
| - char *existing = NULL; |
| 61 | + struct strbuf head_ref = STRBUF_INIT; |
47 | 62 |
|
48 |
| - strbuf_addf(&path, "%s/%s", get_git_common_dir(), symref); |
49 |
| - if (parse_ref(path.buf, &sb, NULL) < 0) |
50 |
| - goto done; |
51 |
| - if (strcmp(sb.buf, branch)) |
52 |
| - goto done; |
53 |
| - strbuf_addstr(&gitdir, get_git_common_dir()); |
54 |
| - strbuf_strip_suffix(&gitdir, ".git"); |
55 |
| - existing = strbuf_detach(&gitdir, NULL); |
56 |
| -done: |
| 63 | + strbuf_addf(&gitdir, "%s", absolute_path(get_git_common_dir())); |
| 64 | + strbuf_addbuf(&worktree_path, &gitdir); |
| 65 | + if (!strbuf_strip_suffix(&worktree_path, "/.git")) |
| 66 | + strbuf_strip_suffix(&worktree_path, "/."); |
| 67 | + |
| 68 | + strbuf_addf(&path, "%s/HEAD", get_git_common_dir()); |
| 69 | + |
| 70 | + if (parse_ref(path.buf, &head_ref, NULL) >= 0) { |
| 71 | + worktree = xmalloc(sizeof(struct worktree)); |
| 72 | + worktree->path = strbuf_detach(&worktree_path, NULL); |
| 73 | + worktree->git_dir = strbuf_detach(&gitdir, NULL); |
| 74 | + } |
57 | 75 | strbuf_release(&path);
|
58 |
| - strbuf_release(&sb); |
59 | 76 | strbuf_release(&gitdir);
|
60 |
| - |
61 |
| - return existing; |
| 77 | + strbuf_release(&worktree_path); |
| 78 | + strbuf_release(&head_ref); |
| 79 | + return worktree; |
62 | 80 | }
|
63 | 81 |
|
64 |
| -static char *find_linked_symref(const char *symref, const char *branch, |
65 |
| - const char *id) |
| 82 | +static struct worktree *get_linked_worktree(const char *id) |
66 | 83 | {
|
67 |
| - struct strbuf sb = STRBUF_INIT; |
| 84 | + struct worktree *worktree = NULL; |
68 | 85 | struct strbuf path = STRBUF_INIT;
|
| 86 | + struct strbuf worktree_path = STRBUF_INIT; |
69 | 87 | struct strbuf gitdir = STRBUF_INIT;
|
70 |
| - char *existing = NULL; |
| 88 | + struct strbuf head_ref = STRBUF_INIT; |
71 | 89 |
|
72 | 90 | if (!id)
|
73 | 91 | die("Missing linked worktree name");
|
74 | 92 |
|
75 |
| - strbuf_addf(&path, "%s/worktrees/%s/%s", get_git_common_dir(), id, symref); |
76 |
| - |
77 |
| - if (parse_ref(path.buf, &sb, NULL) < 0) |
78 |
| - goto done; |
79 |
| - if (strcmp(sb.buf, branch)) |
| 93 | + strbuf_addf(&gitdir, "%s/worktrees/%s", |
| 94 | + absolute_path(get_git_common_dir()), id); |
| 95 | + strbuf_addf(&path, "%s/gitdir", gitdir.buf); |
| 96 | + if (strbuf_read_file(&worktree_path, path.buf, 0) <= 0) |
| 97 | + /* invalid gitdir file */ |
80 | 98 | goto done;
|
| 99 | + |
| 100 | + strbuf_rtrim(&worktree_path); |
| 101 | + if (!strbuf_strip_suffix(&worktree_path, "/.git")) { |
| 102 | + strbuf_reset(&worktree_path); |
| 103 | + strbuf_addstr(&worktree_path, absolute_path(".")); |
| 104 | + strbuf_strip_suffix(&worktree_path, "/."); |
| 105 | + } |
| 106 | + |
81 | 107 | strbuf_reset(&path);
|
82 |
| - strbuf_addf(&path, "%s/worktrees/%s/gitdir", get_git_common_dir(), id); |
83 |
| - if (strbuf_read_file(&gitdir, path.buf, 0) <= 0) |
84 |
| - goto done; |
85 |
| - strbuf_rtrim(&gitdir); |
86 |
| - strbuf_strip_suffix(&gitdir, ".git"); |
| 108 | + strbuf_addf(&path, "%s/worktrees/%s/HEAD", get_git_common_dir(), id); |
| 109 | + |
| 110 | + if (parse_ref(path.buf, &head_ref, NULL) >= 0) { |
| 111 | + worktree = xmalloc(sizeof(struct worktree)); |
| 112 | + worktree->path = strbuf_detach(&worktree_path, NULL); |
| 113 | + worktree->git_dir = strbuf_detach(&gitdir, NULL); |
| 114 | + } |
87 | 115 |
|
88 |
| - existing = strbuf_detach(&gitdir, NULL); |
89 | 116 | done:
|
90 | 117 | strbuf_release(&path);
|
91 |
| - strbuf_release(&sb); |
92 | 118 | strbuf_release(&gitdir);
|
93 |
| - |
94 |
| - return existing; |
| 119 | + strbuf_release(&worktree_path); |
| 120 | + strbuf_release(&head_ref); |
| 121 | + return worktree; |
95 | 122 | }
|
96 | 123 |
|
97 |
| -char *find_shared_symref(const char *symref, const char *target) |
| 124 | +struct worktree **get_worktrees(void) |
98 | 125 | {
|
| 126 | + struct worktree **list = NULL; |
99 | 127 | struct strbuf path = STRBUF_INIT;
|
100 | 128 | DIR *dir;
|
101 | 129 | struct dirent *d;
|
102 |
| - char *existing; |
| 130 | + int counter = 0, alloc = 2; |
| 131 | + |
| 132 | + list = xmalloc(alloc * sizeof(struct worktree *)); |
103 | 133 |
|
104 |
| - if ((existing = find_main_symref(symref, target))) |
105 |
| - return existing; |
| 134 | + if ((list[counter] = get_main_worktree())) |
| 135 | + counter++; |
106 | 136 |
|
107 | 137 | strbuf_addf(&path, "%s/worktrees", get_git_common_dir());
|
108 | 138 | dir = opendir(path.buf);
|
109 | 139 | strbuf_release(&path);
|
110 |
| - if (!dir) |
111 |
| - return NULL; |
| 140 | + if (dir) { |
| 141 | + while ((d = readdir(dir)) != NULL) { |
| 142 | + struct worktree *linked = NULL; |
| 143 | + if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, "..")) |
| 144 | + continue; |
112 | 145 |
|
113 |
| - while ((d = readdir(dir)) != NULL) { |
114 |
| - if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, "..")) |
| 146 | + if ((linked = get_linked_worktree(d->d_name))) { |
| 147 | + ALLOC_GROW(list, counter + 1, alloc); |
| 148 | + list[counter++] = linked; |
| 149 | + } |
| 150 | + } |
| 151 | + closedir(dir); |
| 152 | + } |
| 153 | + ALLOC_GROW(list, counter + 1, alloc); |
| 154 | + list[counter] = NULL; |
| 155 | + return list; |
| 156 | +} |
| 157 | + |
| 158 | +char *find_shared_symref(const char *symref, const char *target) |
| 159 | +{ |
| 160 | + char *existing = NULL; |
| 161 | + struct strbuf path = STRBUF_INIT; |
| 162 | + struct strbuf sb = STRBUF_INIT; |
| 163 | + struct worktree **worktrees = get_worktrees(); |
| 164 | + int i = 0; |
| 165 | + |
| 166 | + for (i = 0; worktrees[i]; i++) { |
| 167 | + strbuf_reset(&path); |
| 168 | + strbuf_reset(&sb); |
| 169 | + strbuf_addf(&path, "%s/%s", worktrees[i]->git_dir, symref); |
| 170 | + |
| 171 | + if (parse_ref(path.buf, &sb, NULL)) { |
115 | 172 | continue;
|
116 |
| - existing = find_linked_symref(symref, target, d->d_name); |
117 |
| - if (existing) |
118 |
| - goto done; |
| 173 | + } |
| 174 | + |
| 175 | + if (!strcmp(sb.buf, target)) { |
| 176 | + existing = xstrdup(worktrees[i]->path); |
| 177 | + break; |
| 178 | + } |
119 | 179 | }
|
120 |
| -done: |
121 |
| - closedir(dir); |
| 180 | + |
| 181 | + strbuf_release(&path); |
| 182 | + strbuf_release(&sb); |
| 183 | + free_worktrees(worktrees); |
122 | 184 |
|
123 | 185 | return existing;
|
124 | 186 | }
|
0 commit comments