1#ifndef WORKTREE_H 2#define WORKTREE_H 3 4#include"refs.h" 5 6struct strbuf; 7 8struct worktree { 9char*path; 10char*id; 11char*head_ref;/* NULL if HEAD is broken or detached */ 12char*lock_reason;/* internal use */ 13struct object_id head_oid; 14int is_detached; 15int is_bare; 16int is_current; 17int lock_reason_valid; 18}; 19 20/* Functions for acting on the information about worktrees. */ 21 22#define GWT_SORT_LINKED (1 << 0)/* keeps linked worktrees sorted */ 23 24/* 25 * Get the worktrees. The primary worktree will always be the first returned, 26 * and linked worktrees will be pointed to by 'next' in each subsequent 27 * worktree. No specific ordering is done on the linked worktrees. 28 * 29 * The caller is responsible for freeing the memory from the returned 30 * worktree(s). 31 */ 32externstruct worktree **get_worktrees(unsigned flags); 33 34/* 35 * Returns 1 if linked worktrees exist, 0 otherwise. 36 */ 37externintsubmodule_uses_worktrees(const char*path); 38 39/* 40 * Return git dir of the worktree. Note that the path may be relative. 41 * If wt is NULL, git dir of current worktree is returned. 42 */ 43externconst char*get_worktree_git_dir(const struct worktree *wt); 44 45/* 46 * Search a worktree that can be unambiguously identified by 47 * "arg". "prefix" must not be NULL. 48 */ 49externstruct worktree *find_worktree(struct worktree **list, 50const char*prefix, 51const char*arg); 52 53/* 54 * Return true if the given worktree is the main one. 55 */ 56externintis_main_worktree(const struct worktree *wt); 57 58/* 59 * Return the reason string if the given worktree is locked or NULL 60 * otherwise. 61 */ 62externconst char*is_worktree_locked(struct worktree *wt); 63 64#define WT_VALIDATE_WORKTREE_MISSING_OK (1 << 0) 65 66/* 67 * Return zero if the worktree is in good condition. Error message is 68 * returned if "errmsg" is not NULL. 69 */ 70externintvalidate_worktree(const struct worktree *wt, 71struct strbuf *errmsg, 72unsigned flags); 73 74/* 75 * Update worktrees/xxx/gitdir with the new path. 76 */ 77externvoidupdate_worktree_location(struct worktree *wt, 78const char*path_); 79 80/* 81 * Free up the memory for worktree(s) 82 */ 83externvoidfree_worktrees(struct worktree **); 84 85/* 86 * Check if a per-worktree symref points to a ref in the main worktree 87 * or any linked worktree, and return the worktree that holds the ref, 88 * or NULL otherwise. The result may be destroyed by the next call. 89 */ 90externconst struct worktree *find_shared_symref(const char*symref, 91const char*target); 92 93/* 94 * Similar to head_ref() for all HEADs _except_ one from the current 95 * worktree, which is covered by head_ref(). 96 */ 97intother_head_refs(each_ref_fn fn,void*cb_data); 98 99intis_worktree_being_rebased(const struct worktree *wt,const char*target); 100intis_worktree_being_bisected(const struct worktree *wt,const char*target); 101 102/* 103 * Similar to git_path() but can produce paths for a specified 104 * worktree instead of current one 105 */ 106externconst char*worktree_git_path(const struct worktree *wt, 107const char*fmt, ...) 108__attribute__((format(printf,2,3))); 109 110#endif