All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tobias Klauser <tklauser@distanz.ch>
To: Matthieu Moy <Matthieu.Moy@grenoble-inp.fr>
Cc: Junio C Hamano <gitster@pobox.com>,
	Christian Couder <chriscool@tuxfamily.org>,
	Eric Sunshine <sunshine@sunshineco.com>,
	git@vger.kernel.org
Subject: Re: [PATCH 2/2] interpret-trailers: add option for in-place editing
Date: Mon, 11 Jan 2016 18:13:45 +0100	[thread overview]
Message-ID: <20160111171345.GA26950@distanz.ch> (raw)
In-Reply-To: <vpqziwc3wjv.fsf@anie.imag.fr>

Oops, I just realized I forgot the v2 in the subject line :-( Sorry
about that.

On 2016-01-11 at 17:33:56 +0100, Matthieu Moy <Matthieu.Moy@grenoble-inp.fr> wrote:
> Tobias Klauser <tklauser@distanz.ch> writes:
> 
> > @@ -843,7 +844,9 @@ static void free_all(struct trailer_item **first)
> >  	}
> >  }
> >  
> > -void process_trailers(const char *file, int trim_empty, struct string_list *trailers)
> > +static struct tempfile trailers_tempfile;
> 
> Does this need to be a static global? I'd rather have this be a local
> variable of process_trailers.

I'm using a static global in order to have it automatically zeroed out
and according to the documentation in tempfile.h it can be reused. Also,
all other users of struct tempfile (except for lockfile.h) are using it
this way.

> 
> > +			die_errno(_("could not fdopen tempfile"));
> 
> I think you should spell it "could not open temporary file" to be more
> user-friendly.

Ok, will adjust.

> > @@ -872,5 +900,10 @@ void process_trailers(const char *file, int trim_empty, struct string_list *trai
> >  	/* Print the lines after the trailers as is */
> >  	print_lines(outfile, lines, trailer_end, INT_MAX);
> >  
> > +	if (in_place) {
> > +		if (rename_tempfile(&trailers_tempfile, file))
> > +			die_errno(_("could not rename tempfile"));
> > +	}
> 
> When this happens, I think you also want to try removing the temporary
> file. Not sure, though: it may be nice to leave the tempfile for the
> user to debug. What do we do in other places of the code?

According to the comment in tempfile.h an atexit(3) handler is installed
by prepare_tempfile_object() (which in turn is called by
x?mks_tempfile_*) which will remove the file in this case. Or did I miss
something here?

AFAICS the two other current users of rename_tempfile() also don't
explicitely treat the tempfile on error.

> It may help the user to get "could not rename temporary file %s to %s"
> in case this happens.

I think if we keep the current semantics (where the tempfile will be
deleted by the atexit(3) handler), it doesn't make sense to mention the
filename in the error message as the file will be gone by the time the
user has any chance to react. I'd suggest somethin like "could not
rename temporary file to %s".

> On overall, the split makes the series much more pleasant to review, and
> other than these details, this sounds good to me. Thanks!

Thanks a lot for your feedback!

  reply	other threads:[~2016-01-11 17:13 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-11 13:33 [PATCH 0/2] Add in-place editing support to git interpret-trailers Tobias Klauser
2016-01-11 13:33 ` [PATCH 1/2] trailer: use fprintf instead of printf Tobias Klauser
2016-01-11 13:33 ` [PATCH 2/2] interpret-trailers: add option for in-place editing Tobias Klauser
2016-01-11 16:33   ` Matthieu Moy
2016-01-11 17:13     ` Tobias Klauser [this message]
2016-01-11 17:24       ` Matthieu Moy

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=20160111171345.GA26950@distanz.ch \
    --to=tklauser@distanz.ch \
    --cc=Matthieu.Moy@grenoble-inp.fr \
    --cc=chriscool@tuxfamily.org \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=sunshine@sunshineco.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.