From: Junio C Hamano <gitster@pobox.com>
To: Phillip Wood <phillip.wood123@gmail.com>
Cc: Git Mailing List <git@vger.kernel.org>,
Li Chen <me@linux.beauty>,
Kristoffer Haugsbakk <kristofferhaugsbakk@fastmail.com>,
Phillip Wood <phillip.wood@dunelm.org.uk>
Subject: Re: [PATCH v8 2/6] interpret-trailers: refactor create_in_place_tempfile()
Date: Fri, 06 Mar 2026 13:05:44 -0800 [thread overview]
Message-ID: <xmqqjyvozn13.fsf@gitster.g> (raw)
In-Reply-To: <5a4d03ab375bbba84436796ca6871204f47521eb.1772808594.git.phillip.wood@dunelm.org.uk> (Phillip Wood's message of "Fri, 6 Mar 2026 14:53:28 +0000")
Phillip Wood <phillip.wood123@gmail.com> writes:
> From: Phillip Wood <phillip.wood@dunelm.org.uk>
>
> Refactor create_in_place_tempfile() in preparation for moving it
> to tralier.c. Change the return type to return a `struct tempfile*`
> instead of a `FILE*` so that we can remove the file scope tempfile
> variable. Since 076aa2cbda5 (tempfile: auto-allocate tempfiles on
> heap, 2017-09-05) it has not been necessary to make tempfile varibales
> static so this is safe. Also use error() and return NULL in place of
> die() so the caller can exit gracefully and use find_last_dir_sep()
> rather than strchr() to find the parent directory.
>
> Signed-off-by: Phillip Wood <phillip.wood@dunelm.org.uk>
> ---
> builtin/interpret-trailers.c | 51 ++++++++++++++++++++----------------
> 1 file changed, 29 insertions(+), 22 deletions(-)
Yes, this organization is much nicer. Thanks for cleaning it up.
>
> diff --git a/builtin/interpret-trailers.c b/builtin/interpret-trailers.c
> index 69f9d67ec0e..033c2e46713 100644
> --- a/builtin/interpret-trailers.c
> +++ b/builtin/interpret-trailers.c
> @@ -93,35 +93,37 @@ static int parse_opt_parse(const struct option *opt, const char *arg,
> return 0;
> }
>
> -static struct tempfile *trailers_tempfile;
>
> -static FILE *create_in_place_tempfile(const char *file)
> +static struct tempfile *create_in_place_tempfile(const char *file)
> {
> + struct tempfile *tempfile = NULL;
> struct stat st;
> struct strbuf filename_template = STRBUF_INIT;
> const char *tail;
> - FILE *outfile;
> -
> - if (stat(file, &st))
> - die_errno(_("could not stat %s"), file);
> - if (!S_ISREG(st.st_mode))
> - die(_("file %s is not a regular file"), file);
> - if (!(st.st_mode & S_IWUSR))
> - die(_("file %s is not writable by user"), file);
>
> + if (stat(file, &st)) {
> + error_errno(_("could not stat %s"), file);
> + return NULL;
> + }
> + if (!S_ISREG(st.st_mode)) {
> + error(_("file %s is not a regular file"), file);
> + return NULL;
> + }
> + if (!(st.st_mode & S_IWUSR)) {
> + error(_("file %s is not writable by user"), file);
> + return NULL;
> + }
> /* Create temporary file in the same directory as the original */
> - tail = strrchr(file, '/');
> + tail = find_last_dir_sep(file);
> if (tail)
> strbuf_add(&filename_template, file, tail - file + 1);
> strbuf_addstr(&filename_template, "git-interpret-trailers-XXXXXX");
>
> - trailers_tempfile = xmks_tempfile_m(filename_template.buf, st.st_mode);
> + tempfile = mks_tempfile_m(filename_template.buf, st.st_mode);
> +
> strbuf_release(&filename_template);
> - outfile = fdopen_tempfile(trailers_tempfile, "w");
> - if (!outfile)
> - die_errno(_("could not open temporary file"));
>
> - return outfile;
> + return tempfile;
> }
>
> static void read_input_file(struct strbuf *sb, const char *file)
> @@ -178,20 +180,25 @@ static void interpret_trailers(const struct process_trailer_options *opts,
> {
> struct strbuf input = STRBUF_INIT;
> struct strbuf out = STRBUF_INIT;
> - FILE *outfile = stdout;
> + struct tempfile *tempfile = NULL;
> + int fd = 1;
>
> trailer_config_init();
>
> read_input_file(&input, file);
>
> - if (opts->in_place)
> - outfile = create_in_place_tempfile(file);
> -
> + if (opts->in_place) {
> + tempfile = create_in_place_tempfile(file);
> + if (!tempfile)
> + die(NULL);
> + fd = tempfile->fd;
> + }
> process_trailers(opts, new_trailer_head, &input, &out);
>
> - strbuf_write(&out, outfile);
> + if (write_in_full(fd, out.buf, out.len) < 0)
> + die_errno(_("could not write to temporary file '%s'"), file);
> if (opts->in_place)
> - if (rename_tempfile(&trailers_tempfile, file))
> + if (rename_tempfile(&tempfile, file))
> die_errno(_("could not rename temporary file to %s"), file);
>
> strbuf_release(&input);
next prev parent reply other threads:[~2026-03-06 21:05 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-24 7:05 [PATCH v7 0/5] rebase: support --trailer Li Chen
2026-02-24 7:05 ` [PATCH v7 1/5] interpret-trailers: factor trailer rewriting Li Chen
2026-03-02 14:56 ` Phillip Wood
2026-03-02 15:00 ` Li Chen
2026-02-24 7:05 ` [PATCH v7 2/5] trailer: move process_trailers to trailer.h Li Chen
2026-03-02 14:56 ` phillip.wood123
2026-02-24 7:05 ` [PATCH v7 3/5] trailer: append trailers without fork/exec Li Chen
2026-03-02 14:56 ` Phillip Wood
2026-02-24 7:05 ` [PATCH v7 4/5] commit, tag: parse --trailer with OPT_STRVEC Li Chen
2026-03-02 14:56 ` Phillip Wood
2026-02-24 7:05 ` [PATCH v7 5/5] rebase: support --trailer Li Chen
2026-03-03 15:05 ` Phillip Wood
2026-03-03 20:36 ` Kristoffer Haugsbakk
2026-03-03 21:18 ` Junio C Hamano
2026-03-04 15:53 ` Phillip Wood
2026-03-04 17:22 ` Junio C Hamano
2026-02-26 16:52 ` [PATCH v7 0/5] " Junio C Hamano
2026-02-26 18:15 ` Phillip Wood
2026-02-26 21:12 ` Kristoffer Haugsbakk
2026-03-04 14:29 ` Phillip Wood
2026-03-05 13:49 ` Li Chen
2026-03-06 14:55 ` Phillip Wood
2026-03-06 14:53 ` [PATCH v8 0/6] " Phillip Wood
2026-03-06 14:53 ` [PATCH v8 1/6] interpret-trailers: factor trailer rewriting Phillip Wood
2026-03-06 21:04 ` Junio C Hamano
2026-03-09 10:36 ` Phillip Wood
2026-03-06 14:53 ` [PATCH v8 2/6] interpret-trailers: refactor create_in_place_tempfile() Phillip Wood
2026-03-06 21:05 ` Junio C Hamano [this message]
2026-03-06 14:53 ` [PATCH v8 3/6] trailer: libify a couple of functions Phillip Wood
2026-03-06 14:53 ` [PATCH v8 4/6] trailer: append trailers without fork/exec Phillip Wood
2026-03-06 14:53 ` [PATCH v8 5/6] commit, tag: parse --trailer with OPT_STRVEC Phillip Wood
2026-03-06 14:53 ` [PATCH v8 6/6] rebase: support --trailer Phillip Wood
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=xmqqjyvozn13.fsf@gitster.g \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=kristofferhaugsbakk@fastmail.com \
--cc=me@linux.beauty \
--cc=phillip.wood123@gmail.com \
--cc=phillip.wood@dunelm.org.uk \
/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