blob: caecc7a281cc6778447a5c70bc7a756306bbbd3b [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/*
Nguyễn Thái Ngọc Duy68353142016-06-03 19:19:39 +070047 * Search a worktree that can be unambiguously identified by
48 * "arg". "prefix" must not be NULL.
49 */
Denton Liu55454422019-04-29 04:28:14 -040050struct worktree *find_worktree(struct worktree **list,
Denton Liuad6dad02019-04-29 04:28:23 -040051 const char *prefix,
52 const char *arg);
Nguyễn Thái Ngọc Duy68353142016-06-03 19:19:39 +070053
54/*
Nguyễn Thái Ngọc Duy984ad9e2016-06-03 19:19:40 +070055 * Return true if the given worktree is the main one.
56 */
Denton Liu55454422019-04-29 04:28:14 -040057int is_main_worktree(const struct worktree *wt);
Nguyễn Thái Ngọc Duy984ad9e2016-06-03 19:19:40 +070058
59/*
Nguyễn Thái Ngọc Duy346ef532016-06-13 19:18:23 +070060 * Return the reason string if the given worktree is locked or NULL
61 * otherwise.
62 */
Denton Liu55454422019-04-29 04:28:14 -040063const char *worktree_lock_reason(struct worktree *wt);
Nguyễn Thái Ngọc Duy346ef532016-06-13 19:18:23 +070064
Nguyễn Thái Ngọc Duyee6763a2018-02-12 16:49:40 +070065#define WT_VALIDATE_WORKTREE_MISSING_OK (1 << 0)
66
Nguyễn Thái Ngọc Duy346ef532016-06-13 19:18:23 +070067/*
Nguyễn Thái Ngọc Duy4ddddc12018-01-24 16:53:51 +070068 * Return zero if the worktree is in good condition. Error message is
69 * returned if "errmsg" is not NULL.
70 */
Denton Liu55454422019-04-29 04:28:14 -040071int validate_worktree(const struct worktree *wt,
Denton Liuad6dad02019-04-29 04:28:23 -040072 struct strbuf *errmsg,
73 unsigned flags);
Nguyễn Thái Ngọc Duy4ddddc12018-01-24 16:53:51 +070074
75/*
Nguyễn Thái Ngọc Duy9c620fc2018-02-12 16:49:35 +070076 * Update worktrees/xxx/gitdir with the new path.
77 */
Denton Liu55454422019-04-29 04:28:14 -040078void update_worktree_location(struct worktree *wt,
Denton Liuad6dad02019-04-29 04:28:23 -040079 const char *path_);
Nguyễn Thái Ngọc Duy9c620fc2018-02-12 16:49:35 +070080
81/*
Michael Rappazzo51934902015-10-08 13:01:03 -040082 * Free up the memory for worktree(s)
83 */
Denton Liu55454422019-04-29 04:28:14 -040084void free_worktrees(struct worktree **);
Michael Rappazzo51934902015-10-08 13:01:03 -040085
Michael Rappazzoac6c5612015-10-02 07:55:31 -040086/*
87 * 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 +070088 * 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 Rappazzoac6c5612015-10-02 07:55:31 -040090 */
Denton Liu55454422019-04-29 04:28:14 -040091const struct worktree *find_shared_symref(const char *symref,
Denton Liuad6dad02019-04-29 04:28:23 -040092 const char *target);
Michael Rappazzoac6c5612015-10-02 07:55:31 -040093
Nguyễn Thái Ngọc Duyd0c39a42017-08-23 19:36:59 +070094/*
95 * Similar to head_ref() for all HEADs _except_ one from the current
96 * worktree, which is covered by head_ref().
97 */
98int other_head_refs(each_ref_fn fn, void *cb_data);
99
Nguyễn Thái Ngọc Duy14ace5b2016-04-22 20:01:36 +0700100int is_worktree_being_rebased(const struct worktree *wt, const char *target);
101int is_worktree_being_bisected(const struct worktree *wt, const char *target);
102
Nguyễn Thái Ngọc Duy2e641d52016-04-22 20:01:29 +0700103/*
104 * Similar to git_path() but can produce paths for a specified
105 * worktree instead of current one
106 */
Denton Liub199d712019-04-29 04:28:20 -0400107const char *worktree_git_path(const struct worktree *wt,
Denton Liuad6dad02019-04-29 04:28:23 -0400108 const char *fmt, ...)
Nguyễn Thái Ngọc Duy2e641d52016-04-22 20:01:29 +0700109 __attribute__((format (printf, 2, 3)));
110
Nguyễn Thái Ngọc Duy3a3b9d82018-10-21 10:08:54 +0200111/*
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 */
118int parse_worktree_ref(const char *worktree_ref, const char **name,
119 int *name_length, const char **ref);
Nguyễn Thái Ngọc Duyab3e1f72018-10-21 10:08:56 +0200120
121/*
122 * Return a refname suitable for access from the current ref store.
123 */
124void 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 */
132const char *worktree_ref(const struct worktree *wt,
133 const char *refname);
134
Michael Rappazzoac6c5612015-10-02 07:55:31 -0400135#endif