From: Caleb White <cdwhite3@pm.me>
To: git@vger.kernel.org
Cc: Caleb White <cdwhite3@pm.me>
Subject: [PATCH 1/4] worktree: refactor infer_backlink() to use *strbuf
Date: Sun, 06 Oct 2024 04:59:21 +0000 [thread overview]
Message-ID: <20241006045847.159937-2-cdwhite3@pm.me> (raw)
In-Reply-To: <20241006045847.159937-1-cdwhite3@pm.me>
[-- Attachment #1: Type: text/plain, Size: 3498 bytes --]
This refactors the `infer_backlink` function to return an integer
result and use a pre-allocated `strbuf` for the inferred backlink
path, replacing the previous `char*` return type.
This lays the groundwork for the next patch, which needs the
resultant backlink as a `strbuf`. There was no need to go from
`strbuf -> char* -> strbuf` again. This change also aligns the
function's signature with other `strbuf`-based functions.
Signed-off-by: Caleb White <cdwhite3@pm.me>
---
worktree.c | 26 ++++++++++++++------------
1 file changed, 14 insertions(+), 12 deletions(-)
diff --git a/worktree.c b/worktree.c
index 0f032cc..c6d2ede 100644
--- a/worktree.c
+++ b/worktree.c
@@ -642,10 +642,9 @@ static int is_main_worktree_path(const char *path)
* be able to infer the gitdir by manually reading /path/to/worktree/.git,
* extracting the <id>, and checking if <repo>/worktrees/<id> exists.
*/
-static char *infer_backlink(const char *gitfile)
+static int infer_backlink(st
ruct strbuf *inferred, const char *gitfile)
{
struct strbuf actual = STRBUF_INIT;
- struct strbuf inferred = STRBUF_INIT;
const char *id;
if (strbuf_read_file(&actual, gitfile, 0) < 0)
@@ -658,17 +657,16 @@ static char *infer_backlink(const char *gitfile)
id++; /* advance past '/' to point at <id> */
if (!*id)
goto error;
- strbuf_git_common_path(&inferred, the_repository, "worktrees/%s", id);
- if (!is_directory(inferred.buf))
+ strbuf_git_common_path(inferred, the_repository, "worktrees/%s", id);
+ if (!is_directory(inferred->buf))
goto error;
strbuf_release(&actual);
- return strbuf_detach(&inferred, NULL);
+ return 0;
error:
strbuf_release(&actual);
- strbuf_release(&inferred);
- return NULL;
+ return 1;
}
/*
@@ -680,9 +678,10 @@ void repair_worktree_at_path(const char *path,
{
struct strbuf dotgit = STRBUF_INIT;
struct strbuf realdotgit = STRBUF_INIT;
+ struct strbuf backlink = STRBUF_INIT;
struct strbuf gitd
ir = STRBUF_INIT;
struct strbuf olddotgit = STRBUF_INIT;
- char *backlink = NULL;
+ char *git_contents = NULL;
const char *repair = NULL;
int err;
@@ -698,21 +697,23 @@ void repair_worktree_at_path(const char *path,
goto done;
}
- backlink = xstrdup_or_null(read_gitfile_gently(realdotgit.buf, &err));
+ git_contents = xstrdup_or_null(read_gitfile_gently(realdotgit.buf, &err));
if (err == READ_GITFILE_ERR_NOT_A_FILE) {
fn(1, realdotgit.buf, _("unable to locate repository; .git is not a file"), cb_data);
goto done;
} else if (err == READ_GITFILE_ERR_NOT_A_REPO) {
- if (!(backlink = infer_backlink(realdotgit.buf))) {
+ if (infer_backlink(&backlink, realdotgit.buf)) {
fn(1, realdotgit.buf, _("unable to locate repository; .git file does not reference a repository"), cb_data);
goto done;
}
} else if (err) {
fn(1, realdotgit.buf, _("unable to locate repository; .git file broken"), cb_data);
goto done;
+ } else if (git_conte
nts) {
+ strbuf_addstr(&backlink, git_contents);
}
- strbuf_addf(&gitdir, "%s/gitdir", backlink);
+ strbuf_addf(&gitdir, "%s/gitdir", backlink.buf);
if (strbuf_read_file(&olddotgit, gitdir.buf, 0) < 0)
repair = _("gitdir unreadable");
else {
@@ -726,8 +727,9 @@ void repair_worktree_at_path(const char *path,
write_file(gitdir.buf, "%s", realdotgit.buf);
}
done:
- free(backlink);
+ free(git_contents);
strbuf_release(&olddotgit);
+ strbuf_release(&backlink);
strbuf_release(&gitdir);
strbuf_release(&realdotgit);
strbuf_release(&dotgit);
--
2.46.2
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 509 bytes --]
next prev parent reply other threads:[~2024-10-06 4:59 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-06 4:59 [PATCH 0/4] Link worktrees with relative paths Caleb White
2024-10-06 4:59 ` Caleb White [this message]
2024-10-06 4:59 ` [PATCH 2/4] worktree: link " Caleb White
2024-10-06 4:59 ` [PATCH 3/4] worktree: sync worktree paths after gitdir move Caleb White
2024-10-06 4:59 ` [PATCH 4/4] worktree: prevent null pointer dereference Caleb White
2024-10-06 5:04 ` [PATCH 0/4] Link worktrees with relative paths Eric Sunshine
2024-10-06 5:11 ` Caleb White
2024-10-06 5:14 ` Eric Sunshine
2024-10-06 5:16 ` Eric Sunshine
[not found] ` <TEfKiit-RYyr0ZuiQszaKaM64iSonfaQwWRqExOgXyPR1tVWyAzR3kVKmCd3aREZwDGuS5VXcHjCvneY-gCg2OuZyv2N2EkfARlZu4AVSsU=@pm.me>
[not found] ` <CAPig+cTE0gaD=7dwSqY4S+7AqRoU9yOrS4sdBoybj0Pfyk9vxA@mail.gmail.com>
2024-10-06 5:41 ` Caleb White
2024-10-06 5:50 ` Eric Sunshine
2024-10-06 6:05 ` Caleb White
2024-10-06 6:16 ` Eric Sunshine
2024-10-06 6:23 ` Caleb White
2024-10-06 7:45 ` Eric Sunshine
2024-10-06 9:00 ` Kristoffer Haugsbakk
2024-10-06 22:10 ` Caleb White
2024-10-06 22:08 ` Caleb White
2024-10-06 22:24 ` Eric Sunshine
2024-10-06 22:32 ` Caleb White
2024-10-06 5:11 ` Eric Sunshine
2024-10-06 22:01 ` Caleb White
2024-10-06 22:19 ` Eric Sunshine
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241006045847.159937-2-cdwhite3@pm.me \
--to=cdwhite3@pm.me \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).