blob: d242a6e71c0333f80b76e44976f0c4356f99bec3 [file] [log] [blame]
Michael Rappazzoac6c5612015-10-02 07:55:31 -04001#ifndef WORKTREE_H
2#define WORKTREE_H
3
Elijah Newrenef3ca952018-08-15 10:54:05 -07004#include "cache.h"
Nguyễn Thái Ngọc Duyd0c39a42017-08-23 19:36:59 +07005#include "refs.h"
6
Nguyễn Thái Ngọc Duy4ddddc12018-01-24 16:53:51 +07007struct strbuf;
8
Michael Rappazzo51934902015-10-08 13:01:03 -04009struct worktree {
10 char *path;
Nguyễn Thái Ngọc Duy69dfe3b2016-04-22 20:01:26 +070011 char *id;
Nguyễn Thái Ngọc Duyfa099d22017-04-24 17:01:23 +070012 char *head_ref; /* NULL if HEAD is broken or detached */
Nickolai Belakovskid236f122018-10-29 23:24:09 -070013 char *lock_reason; /* private - use worktree_lock_reason */
brian m. carlson0f051542017-10-15 22:07:08 +000014 struct object_id head_oid;
Michael Rappazzo92718b72015-10-08 13:01:04 -040015 int is_detached;
16 int is_bare;
Nguyễn Thái Ngọc Duy750e8a62016-04-22 20:01:28 +070017 int is_current;
Nickolai Belakovskie21cc072018-10-29 23:24:08 -070018 int lock_reason_valid; /* private */
Michael Rappazzo51934902015-10-08 13:01:03 -040019};
20
21/* Functions for acting on the information about worktrees. */
22
Nguyễn Thái Ngọc Duy4df1d4d2016-11-28 16:36:56 +070023#define GWT_SORT_LINKED (1 << 0) /* keeps linked worktrees sorted */
24
Michael Rappazzo51934902015-10-08 13:01:03 -040025/*
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 Liu55454422019-04-29 04:28:14 -040033struct worktree **get_worktrees(unsigned flags);
Michael Rappazzo51934902015-10-08 13:01:03 -040034
35/*
Stefan Beller1a248cf2016-12-12 11:04:33 -080036 * Returns 1 if linked worktrees exist, 0 otherwise.
37 */
Denton Liu55454422019-04-29 04:28:14 -040038int submodule_uses_worktrees(const char *path);
Stefan Beller1a248cf2016-12-12 11:04:33 -080039
40/*
Nguyễn Thái Ngọc Duy69dfe3b2016-04-22 20:01:26 +070041 * 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 Liu55454422019-04-29 04:28:14 -040044const char *get_worktree_git_dir(const struct worktree *wt);
Nguyễn Thái Ngọc Duy69dfe3b2016-04-22 20:01:26 +070045
46/*
Eric Sunshinea80c4c22020-02-24 04:08:46 -050047 * 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 Duy68353142016-06-03 19:19:39 +070059 */
Denton Liu55454422019-04-29 04:28:14 -040060struct worktree *find_worktree(struct worktree **list,
Denton Liuad6dad02019-04-29 04:28:23 -040061 const char *prefix,
62 const char *arg);
Nguyễn Thái Ngọc Duy68353142016-06-03 19:19:39 +070063
64/*
Eric Sunshinebb4995f2020-02-24 04:08:47 -050065 * Return the worktree corresponding to `path`, or NULL if no such worktree
66 * exists.
67 */
68struct worktree *find_worktree_by_path(struct worktree **, const char *path);
69
70/*
Nguyễn Thái Ngọc Duy984ad9e2016-06-03 19:19:40 +070071 * Return true if the given worktree is the main one.
72 */
Denton Liu55454422019-04-29 04:28:14 -040073int is_main_worktree(const struct worktree *wt);
Nguyễn Thái Ngọc Duy984ad9e2016-06-03 19:19:40 +070074
75/*
Nguyễn Thái Ngọc Duy346ef532016-06-13 19:18:23 +070076 * Return the reason string if the given worktree is locked or NULL
77 * otherwise.
78 */
Denton Liu55454422019-04-29 04:28:14 -040079const char *worktree_lock_reason(struct worktree *wt);
Nguyễn Thái Ngọc Duy346ef532016-06-13 19:18:23 +070080
Nguyễn Thái Ngọc Duyee6763a2018-02-12 16:49:40 +070081#define WT_VALIDATE_WORKTREE_MISSING_OK (1 << 0)
82
Nguyễn Thái Ngọc Duy346ef532016-06-13 19:18:23 +070083/*
Nguyễn Thái Ngọc Duy4ddddc12018-01-24 16:53:51 +070084 * Return zero if the worktree is in good condition. Error message is
85 * returned if "errmsg" is not NULL.
86 */
Denton Liu55454422019-04-29 04:28:14 -040087int validate_worktree(const struct worktree *wt,
Denton Liuad6dad02019-04-29 04:28:23 -040088 struct strbuf *errmsg,
89 unsigned flags);
Nguyễn Thái Ngọc Duy4ddddc12018-01-24 16:53:51 +070090
91/*
Nguyễn Thái Ngọc Duy9c620fc2018-02-12 16:49:35 +070092 * Update worktrees/xxx/gitdir with the new path.
93 */
Denton Liu55454422019-04-29 04:28:14 -040094void update_worktree_location(struct worktree *wt,
Denton Liuad6dad02019-04-29 04:28:23 -040095 const char *path_);
Nguyễn Thái Ngọc Duy9c620fc2018-02-12 16:49:35 +070096
97/*
Michael Rappazzo51934902015-10-08 13:01:03 -040098 * Free up the memory for worktree(s)
99 */
Denton Liu55454422019-04-29 04:28:14 -0400100void free_worktrees(struct worktree **);
Michael Rappazzo51934902015-10-08 13:01:03 -0400101
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400102/*
103 * Check if a per-worktree symref points to a ref in the main worktree
Nguyễn Thái Ngọc Duyd3b9ac02016-04-22 20:01:27 +0700104 * 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 Rappazzoac6c5612015-10-02 07:55:31 -0400106 */
Denton Liu55454422019-04-29 04:28:14 -0400107const struct worktree *find_shared_symref(const char *symref,
Denton Liuad6dad02019-04-29 04:28:23 -0400108 const char *target);
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400109
Nguyễn Thái Ngọc Duyd0c39a42017-08-23 19:36:59 +0700110/*
111 * Similar to head_ref() for all HEADs _except_ one from the current
112 * worktree, which is covered by head_ref().
113 */
114int other_head_refs(each_ref_fn fn, void *cb_data);
115
Nguyễn Thái Ngọc Duy14ace5b2016-04-22 20:01:36 +0700116int is_worktree_being_rebased(const struct worktree *wt, const char *target);
117int is_worktree_being_bisected(const struct worktree *wt, const char *target);
118
Nguyễn Thái Ngọc Duy2e641d52016-04-22 20:01:29 +0700119/*
120 * Similar to git_path() but can produce paths for a specified
121 * worktree instead of current one
122 */
Denton Liub199d712019-04-29 04:28:20 -0400123const char *worktree_git_path(const struct worktree *wt,
Denton Liuad6dad02019-04-29 04:28:23 -0400124 const char *fmt, ...)
Nguyễn Thái Ngọc Duy2e641d52016-04-22 20:01:29 +0700125 __attribute__((format (printf, 2, 3)));
126
Nguyễn Thái Ngọc Duy3a3b9d82018-10-21 10:08:54 +0200127/*
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 */
134int parse_worktree_ref(const char *worktree_ref, const char **name,
135 int *name_length, const char **ref);
Nguyễn Thái Ngọc Duyab3e1f72018-10-21 10:08:56 +0200136
137/*
138 * Return a refname suitable for access from the current ref store.
139 */
140void 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 */
148const char *worktree_ref(const struct worktree *wt,
149 const char *refname);
150
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400151#endif