Michael Rappazzo | ac6c561 | 2015-10-02 07:55:31 -0400 | [diff] [blame] | 1 | #ifndef WORKTREE_H |
| 2 | #define WORKTREE_H |
| 3 | |
Elijah Newren | ef3ca95 | 2018-08-15 10:54:05 -0700 | [diff] [blame] | 4 | #include "cache.h" |
Nguyễn Thái Ngọc Duy | d0c39a4 | 2017-08-23 19:36:59 +0700 | [diff] [blame] | 5 | #include "refs.h" |
| 6 | |
Nguyễn Thái Ngọc Duy | 4ddddc1 | 2018-01-24 16:53:51 +0700 | [diff] [blame] | 7 | struct strbuf; |
| 8 | |
Michael Rappazzo | 5193490 | 2015-10-08 13:01:03 -0400 | [diff] [blame] | 9 | struct worktree { |
| 10 | char *path; |
Nguyễn Thái Ngọc Duy | 69dfe3b | 2016-04-22 20:01:26 +0700 | [diff] [blame] | 11 | char *id; |
Nguyễn Thái Ngọc Duy | fa099d2 | 2017-04-24 17:01:23 +0700 | [diff] [blame] | 12 | char *head_ref; /* NULL if HEAD is broken or detached */ |
Nickolai Belakovski | d236f12 | 2018-10-29 23:24:09 -0700 | [diff] [blame] | 13 | char *lock_reason; /* private - use worktree_lock_reason */ |
brian m. carlson | 0f05154 | 2017-10-15 22:07:08 +0000 | [diff] [blame] | 14 | struct object_id head_oid; |
Michael Rappazzo | 92718b7 | 2015-10-08 13:01:04 -0400 | [diff] [blame] | 15 | int is_detached; |
| 16 | int is_bare; |
Nguyễn Thái Ngọc Duy | 750e8a6 | 2016-04-22 20:01:28 +0700 | [diff] [blame] | 17 | int is_current; |
Nickolai Belakovski | e21cc07 | 2018-10-29 23:24:08 -0700 | [diff] [blame] | 18 | int lock_reason_valid; /* private */ |
Michael Rappazzo | 5193490 | 2015-10-08 13:01:03 -0400 | [diff] [blame] | 19 | }; |
| 20 | |
| 21 | /* Functions for acting on the information about worktrees. */ |
| 22 | |
Nguyễn Thái Ngọc Duy | 4df1d4d | 2016-11-28 16:36:56 +0700 | [diff] [blame] | 23 | #define GWT_SORT_LINKED (1 << 0) /* keeps linked worktrees sorted */ |
| 24 | |
Michael Rappazzo | 5193490 | 2015-10-08 13:01:03 -0400 | [diff] [blame] | 25 | /* |
| 26 | * Get the worktrees. The primary worktree will always be the first returned, |
| 27 | * and linked worktrees will be pointed to by 'next' in each subsequent |
| 28 | * worktree. No specific ordering is done on the linked worktrees. |
| 29 | * |
| 30 | * The caller is responsible for freeing the memory from the returned |
| 31 | * worktree(s). |
| 32 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 33 | struct worktree **get_worktrees(unsigned flags); |
Michael Rappazzo | 5193490 | 2015-10-08 13:01:03 -0400 | [diff] [blame] | 34 | |
| 35 | /* |
Stefan Beller | 1a248cf | 2016-12-12 11:04:33 -0800 | [diff] [blame] | 36 | * Returns 1 if linked worktrees exist, 0 otherwise. |
| 37 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 38 | int submodule_uses_worktrees(const char *path); |
Stefan Beller | 1a248cf | 2016-12-12 11:04:33 -0800 | [diff] [blame] | 39 | |
| 40 | /* |
Nguyễn Thái Ngọc Duy | 69dfe3b | 2016-04-22 20:01:26 +0700 | [diff] [blame] | 41 | * Return git dir of the worktree. Note that the path may be relative. |
| 42 | * If wt is NULL, git dir of current worktree is returned. |
| 43 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 44 | const char *get_worktree_git_dir(const struct worktree *wt); |
Nguyễn Thái Ngọc Duy | 69dfe3b | 2016-04-22 20:01:26 +0700 | [diff] [blame] | 45 | |
| 46 | /* |
Eric Sunshine | a80c4c2 | 2020-02-24 04:08:46 -0500 | [diff] [blame] | 47 | * Search for the worktree identified unambiguously by `arg` -- typically |
| 48 | * supplied by the user via the command-line -- which may be a pathname or some |
| 49 | * shorthand uniquely identifying a worktree, thus making it convenient for the |
| 50 | * user to specify a worktree with minimal typing. For instance, if the last |
| 51 | * component (say, "foo") of a worktree's pathname is unique among worktrees |
| 52 | * (say, "work/foo" and "work/bar"), it can be used to identify the worktree |
| 53 | * unambiguously. |
| 54 | * |
| 55 | * `prefix` should be the `prefix` handed to top-level Git commands along with |
| 56 | * `argc` and `argv`. |
| 57 | * |
| 58 | * Return the worktree identified by `arg`, or NULL if not found. |
Nguyễn Thái Ngọc Duy | 6835314 | 2016-06-03 19:19:39 +0700 | [diff] [blame] | 59 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 60 | struct worktree *find_worktree(struct worktree **list, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 61 | const char *prefix, |
| 62 | const char *arg); |
Nguyễn Thái Ngọc Duy | 6835314 | 2016-06-03 19:19:39 +0700 | [diff] [blame] | 63 | |
| 64 | /* |
Eric Sunshine | bb4995f | 2020-02-24 04:08:47 -0500 | [diff] [blame] | 65 | * Return the worktree corresponding to `path`, or NULL if no such worktree |
| 66 | * exists. |
| 67 | */ |
| 68 | struct worktree *find_worktree_by_path(struct worktree **, const char *path); |
| 69 | |
| 70 | /* |
Nguyễn Thái Ngọc Duy | 984ad9e | 2016-06-03 19:19:40 +0700 | [diff] [blame] | 71 | * Return true if the given worktree is the main one. |
| 72 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 73 | int is_main_worktree(const struct worktree *wt); |
Nguyễn Thái Ngọc Duy | 984ad9e | 2016-06-03 19:19:40 +0700 | [diff] [blame] | 74 | |
| 75 | /* |
Nguyễn Thái Ngọc Duy | 346ef53 | 2016-06-13 19:18:23 +0700 | [diff] [blame] | 76 | * Return the reason string if the given worktree is locked or NULL |
| 77 | * otherwise. |
| 78 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 79 | const char *worktree_lock_reason(struct worktree *wt); |
Nguyễn Thái Ngọc Duy | 346ef53 | 2016-06-13 19:18:23 +0700 | [diff] [blame] | 80 | |
Nguyễn Thái Ngọc Duy | ee6763a | 2018-02-12 16:49:40 +0700 | [diff] [blame] | 81 | #define WT_VALIDATE_WORKTREE_MISSING_OK (1 << 0) |
| 82 | |
Nguyễn Thái Ngọc Duy | 346ef53 | 2016-06-13 19:18:23 +0700 | [diff] [blame] | 83 | /* |
Nguyễn Thái Ngọc Duy | 4ddddc1 | 2018-01-24 16:53:51 +0700 | [diff] [blame] | 84 | * Return zero if the worktree is in good condition. Error message is |
| 85 | * returned if "errmsg" is not NULL. |
| 86 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 87 | int validate_worktree(const struct worktree *wt, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 88 | struct strbuf *errmsg, |
| 89 | unsigned flags); |
Nguyễn Thái Ngọc Duy | 4ddddc1 | 2018-01-24 16:53:51 +0700 | [diff] [blame] | 90 | |
| 91 | /* |
Nguyễn Thái Ngọc Duy | 9c620fc | 2018-02-12 16:49:35 +0700 | [diff] [blame] | 92 | * Update worktrees/xxx/gitdir with the new path. |
| 93 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 94 | void update_worktree_location(struct worktree *wt, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 95 | const char *path_); |
Nguyễn Thái Ngọc Duy | 9c620fc | 2018-02-12 16:49:35 +0700 | [diff] [blame] | 96 | |
| 97 | /* |
Michael Rappazzo | 5193490 | 2015-10-08 13:01:03 -0400 | [diff] [blame] | 98 | * Free up the memory for worktree(s) |
| 99 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 100 | void free_worktrees(struct worktree **); |
Michael Rappazzo | 5193490 | 2015-10-08 13:01:03 -0400 | [diff] [blame] | 101 | |
Michael Rappazzo | ac6c561 | 2015-10-02 07:55:31 -0400 | [diff] [blame] | 102 | /* |
| 103 | * Check if a per-worktree symref points to a ref in the main worktree |
Nguyễn Thái Ngọc Duy | d3b9ac0 | 2016-04-22 20:01:27 +0700 | [diff] [blame] | 104 | * or any linked worktree, and return the worktree that holds the ref, |
| 105 | * or NULL otherwise. The result may be destroyed by the next call. |
Michael Rappazzo | ac6c561 | 2015-10-02 07:55:31 -0400 | [diff] [blame] | 106 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 107 | const struct worktree *find_shared_symref(const char *symref, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 108 | const char *target); |
Michael Rappazzo | ac6c561 | 2015-10-02 07:55:31 -0400 | [diff] [blame] | 109 | |
Nguyễn Thái Ngọc Duy | d0c39a4 | 2017-08-23 19:36:59 +0700 | [diff] [blame] | 110 | /* |
| 111 | * Similar to head_ref() for all HEADs _except_ one from the current |
| 112 | * worktree, which is covered by head_ref(). |
| 113 | */ |
| 114 | int other_head_refs(each_ref_fn fn, void *cb_data); |
| 115 | |
Nguyễn Thái Ngọc Duy | 14ace5b | 2016-04-22 20:01:36 +0700 | [diff] [blame] | 116 | int is_worktree_being_rebased(const struct worktree *wt, const char *target); |
| 117 | int is_worktree_being_bisected(const struct worktree *wt, const char *target); |
| 118 | |
Nguyễn Thái Ngọc Duy | 2e641d5 | 2016-04-22 20:01:29 +0700 | [diff] [blame] | 119 | /* |
| 120 | * Similar to git_path() but can produce paths for a specified |
| 121 | * worktree instead of current one |
| 122 | */ |
Denton Liu | b199d71 | 2019-04-29 04:28:20 -0400 | [diff] [blame] | 123 | const char *worktree_git_path(const struct worktree *wt, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 124 | const char *fmt, ...) |
Nguyễn Thái Ngọc Duy | 2e641d5 | 2016-04-22 20:01:29 +0700 | [diff] [blame] | 125 | __attribute__((format (printf, 2, 3))); |
| 126 | |
Nguyễn Thái Ngọc Duy | 3a3b9d8 | 2018-10-21 10:08:54 +0200 | [diff] [blame] | 127 | /* |
| 128 | * Parse a worktree ref (i.e. with prefix main-worktree/ or |
| 129 | * worktrees/) and return the position of the worktree's name and |
| 130 | * length (or NULL and zero if it's main worktree), and ref. |
| 131 | * |
| 132 | * All name, name_length and ref arguments could be NULL. |
| 133 | */ |
| 134 | int parse_worktree_ref(const char *worktree_ref, const char **name, |
| 135 | int *name_length, const char **ref); |
Nguyễn Thái Ngọc Duy | ab3e1f7 | 2018-10-21 10:08:56 +0200 | [diff] [blame] | 136 | |
| 137 | /* |
| 138 | * Return a refname suitable for access from the current ref store. |
| 139 | */ |
| 140 | void strbuf_worktree_ref(const struct worktree *wt, |
| 141 | struct strbuf *sb, |
| 142 | const char *refname); |
| 143 | |
| 144 | /* |
| 145 | * Return a refname suitable for access from the current ref |
| 146 | * store. The result will be destroyed at the next call. |
| 147 | */ |
| 148 | const char *worktree_ref(const struct worktree *wt, |
| 149 | const char *refname); |
| 150 | |
Michael Rappazzo | ac6c561 | 2015-10-02 07:55:31 -0400 | [diff] [blame] | 151 | #endif |