Re: [PATCH 2/2] interpret-trailers: add option for in-place editing

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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@xxxxxxxxxxxxxxx> wrote:
> Tobias Klauser <tklauser@xxxxxxxxxx> 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!
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]