From: Nguyễn Thái Ngọc Duy Date: Fri, 3 Jun 2016 12:19:39 +0000 (+0700) Subject: worktree.c: add find_worktree() X-Git-Tag: v2.10.0-rc0~78^2~5 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=6835314459794831a1b88bed56549653710e910c;p=git-core%2Fgit.git worktree.c: add find_worktree() So far we haven't needed to identify an existing worktree from command line. Future commands such as lock or move will need it. The current implementation identifies worktrees by path (*). In future, the function could learn to identify by $(basename $path) or tags... (*) We could probably go cheaper with comparing inode number (and probably more reliable than paths when unicode enters the game). But not all systems have good inode that so let's stick to something simple for now. Helped-by: Eric Sunshine Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/worktree.c b/worktree.c index f4a4f3809..0782e0098 100644 --- a/worktree.c +++ b/worktree.c @@ -214,6 +214,21 @@ const char *get_worktree_git_dir(const struct worktree *wt) return git_common_path("worktrees/%s", wt->id); } +struct worktree *find_worktree(struct worktree **list, + const char *prefix, + const char *arg) +{ + char *path; + + arg = prefix_filename(prefix, strlen(prefix), arg); + path = xstrdup(real_path(arg)); + for (; *list; list++) + if (!fspathcmp(path, real_path((*list)->path))) + break; + free(path); + return *list; +} + int is_worktree_being_rebased(const struct worktree *wt, const char *target) { diff --git a/worktree.h b/worktree.h index 13949093c..7ad15da0d 100644 --- a/worktree.h +++ b/worktree.h @@ -30,6 +30,14 @@ extern struct worktree **get_worktrees(void); extern const char *get_worktree_git_dir(const struct worktree *wt); /* + * Search a worktree that can be unambiguously identified by + * "arg". "prefix" must not be NULL. + */ +extern struct worktree *find_worktree(struct worktree **list, + const char *prefix, + const char *arg); + +/* * Free up the memory for worktree(s) */ extern void free_worktrees(struct worktree **);