Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: Feature request: ZSH_XTRACEFD variable



On Sat, 2020-05-02 at 20:02 +0200, Timothée Mazzucotelli wrote:
> I wrote such a test and noticed that file descriptors were being
> closed each time ZSH_XTRACEFD was (re)assigned, even as a local
> variable.  So I removed the code lines closing the previous file
> descriptor in xtracefdsetfn, and it seemed to work well.

This re-introduces the file descriptor leak I was at pains to remove.
It apparently works because the test isn't sensitive to the leak ---
that's hard to fix in a standard way, i.e. with1out having some limit you
can rely on on file descriptors being created.

The key to this is the same as the point Daniel made: there needs to be
special handling in parameter start/end scope for local variables.

There are other variables that have some prior art for this ---
e.g. SECONDS has special handling to make sure we get back the prevoius
starting point for times.  This variable might want something similar to
make sure we remember the previous file descriptor rather than close it,
but also make sure we close a local file descriptor on exit.

It might be possible to detect in the parameter-specific functions that
a new file descriptor is being called locally and the old one needs
saving in a way it can be restored, but that might be harder than
special code in the parmater scope hanling which should at least pick up
all cases.

As you'll see I haven't really thought this through at the moment...

pws



Messages sorted by: Reverse Date, Date, Thread, Author