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 | /* |
Nguyễn Thái Ngọc Duy | 6835314 | 2016-06-03 19:19:39 +0700 | [diff] [blame] | 47 | * Search a worktree that can be unambiguously identified by |
| 48 | * "arg". "prefix" must not be NULL. |
| 49 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 50 | struct worktree *find_worktree(struct worktree **list, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 51 | const char *prefix, |
| 52 | const char *arg); |
Nguyễn Thái Ngọc Duy | 6835314 | 2016-06-03 19:19:39 +0700 | [diff] [blame] | 53 | |
| 54 | /* |
Nguyễn Thái Ngọc Duy | 984ad9e | 2016-06-03 19:19:40 +0700 | [diff] [blame] | 55 | * Return true if the given worktree is the main one. |
| 56 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 57 | 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] | 58 | |
| 59 | /* |
Nguyễn Thái Ngọc Duy | 346ef53 | 2016-06-13 19:18:23 +0700 | [diff] [blame] | 60 | * Return the reason string if the given worktree is locked or NULL |
| 61 | * otherwise. |
| 62 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 63 | 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] | 64 | |
Nguyễn Thái Ngọc Duy | ee6763a | 2018-02-12 16:49:40 +0700 | [diff] [blame] | 65 | #define WT_VALIDATE_WORKTREE_MISSING_OK (1 << 0) |
| 66 | |
Nguyễn Thái Ngọc Duy | 346ef53 | 2016-06-13 19:18:23 +0700 | [diff] [blame] | 67 | /* |
Nguyễn Thái Ngọc Duy | 4ddddc1 | 2018-01-24 16:53:51 +0700 | [diff] [blame] | 68 | * Return zero if the worktree is in good condition. Error message is |
| 69 | * returned if "errmsg" is not NULL. |
| 70 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 71 | int validate_worktree(const struct worktree *wt, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 72 | struct strbuf *errmsg, |
| 73 | unsigned flags); |
Nguyễn Thái Ngọc Duy | 4ddddc1 | 2018-01-24 16:53:51 +0700 | [diff] [blame] | 74 | |
| 75 | /* |
Nguyễn Thái Ngọc Duy | 9c620fc | 2018-02-12 16:49:35 +0700 | [diff] [blame] | 76 | * Update worktrees/xxx/gitdir with the new path. |
| 77 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 78 | void update_worktree_location(struct worktree *wt, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 79 | const char *path_); |
Nguyễn Thái Ngọc Duy | 9c620fc | 2018-02-12 16:49:35 +0700 | [diff] [blame] | 80 | |
| 81 | /* |
Michael Rappazzo | 5193490 | 2015-10-08 13:01:03 -0400 | [diff] [blame] | 82 | * Free up the memory for worktree(s) |
| 83 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 84 | void free_worktrees(struct worktree **); |
Michael Rappazzo | 5193490 | 2015-10-08 13:01:03 -0400 | [diff] [blame] | 85 | |
Michael Rappazzo | ac6c561 | 2015-10-02 07:55:31 -0400 | [diff] [blame] | 86 | /* |
| 87 | * 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] | 88 | * or any linked worktree, and return the worktree that holds the ref, |
| 89 | * or NULL otherwise. The result may be destroyed by the next call. |
Michael Rappazzo | ac6c561 | 2015-10-02 07:55:31 -0400 | [diff] [blame] | 90 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 91 | const struct worktree *find_shared_symref(const char *symref, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 92 | const char *target); |
Michael Rappazzo | ac6c561 | 2015-10-02 07:55:31 -0400 | [diff] [blame] | 93 | |
Nguyễn Thái Ngọc Duy | d0c39a4 | 2017-08-23 19:36:59 +0700 | [diff] [blame] | 94 | /* |
| 95 | * Similar to head_ref() for all HEADs _except_ one from the current |
| 96 | * worktree, which is covered by head_ref(). |
| 97 | */ |
| 98 | int other_head_refs(each_ref_fn fn, void *cb_data); |
| 99 | |
Nguyễn Thái Ngọc Duy | 14ace5b | 2016-04-22 20:01:36 +0700 | [diff] [blame] | 100 | int is_worktree_being_rebased(const struct worktree *wt, const char *target); |
| 101 | int is_worktree_being_bisected(const struct worktree *wt, const char *target); |
| 102 | |
Nguyễn Thái Ngọc Duy | 2e641d5 | 2016-04-22 20:01:29 +0700 | [diff] [blame] | 103 | /* |
| 104 | * Similar to git_path() but can produce paths for a specified |
| 105 | * worktree instead of current one |
| 106 | */ |
Denton Liu | b199d71 | 2019-04-29 04:28:20 -0400 | [diff] [blame] | 107 | const char *worktree_git_path(const struct worktree *wt, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 108 | const char *fmt, ...) |
Nguyễn Thái Ngọc Duy | 2e641d5 | 2016-04-22 20:01:29 +0700 | [diff] [blame] | 109 | __attribute__((format (printf, 2, 3))); |
| 110 | |
Nguyễn Thái Ngọc Duy | 3a3b9d8 | 2018-10-21 10:08:54 +0200 | [diff] [blame] | 111 | /* |
| 112 | * Parse a worktree ref (i.e. with prefix main-worktree/ or |
| 113 | * worktrees/) and return the position of the worktree's name and |
| 114 | * length (or NULL and zero if it's main worktree), and ref. |
| 115 | * |
| 116 | * All name, name_length and ref arguments could be NULL. |
| 117 | */ |
| 118 | int parse_worktree_ref(const char *worktree_ref, const char **name, |
| 119 | int *name_length, const char **ref); |
Nguyễn Thái Ngọc Duy | ab3e1f7 | 2018-10-21 10:08:56 +0200 | [diff] [blame] | 120 | |
| 121 | /* |
| 122 | * Return a refname suitable for access from the current ref store. |
| 123 | */ |
| 124 | void strbuf_worktree_ref(const struct worktree *wt, |
| 125 | struct strbuf *sb, |
| 126 | const char *refname); |
| 127 | |
| 128 | /* |
| 129 | * Return a refname suitable for access from the current ref |
| 130 | * store. The result will be destroyed at the next call. |
| 131 | */ |
| 132 | const char *worktree_ref(const struct worktree *wt, |
| 133 | const char *refname); |
| 134 | |
Michael Rappazzo | ac6c561 | 2015-10-02 07:55:31 -0400 | [diff] [blame] | 135 | #endif |