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

Re: [RFC] adding zmktemp command



Clinton Bunch wrote on Thu, Mar 28, 2019 at 10:00:24 -0500:
> On 3/28/2019 4:38 AM, Daniel Shahaf wrote:
> > Clinton Bunch wrote on Wed, 27 Mar 2019 21:18 +00:00:
> > > I'm thinking of adding a zmktemp command either in a new module (e.g.
> > > zsh/tempfile) or in the zsh/files module.
> > ...
> > > Thoughts?
> > A few.
> > 
> > - I wonder if implementing mktemp in the shell is easier than expecting
> >    people to install a third-party mktemp(1) binary with whatever
> >    functionality they desire.  BSD systems often have both BSD make and
> >    GNU make, so it's conceivable that HP-UX systems could have both the
> >    native mktemp(1) and a third-party one.
> >    (To be clear, I do not object to your RFC; I just wonder if there's a
> >    better solution to the underlying problem.)
> 
> That situation is why I proposed this.  On my HP-UX systems I use gnu
> coreutils mktemp, but either I have to order my path so that it's before
> /usr/bin, which can get me non-standard versions of standard commands which
> might affect the script,

You neglected to explain why none of the other possible solutions to
this subproblem is suitable for you.  (For starters, there are 'add a
directory to the front of $PATH that contains just GNU mktemp and
nothing else' and 'use the "hash" builtin to specify a different mktemp
than the one in $PATH'.)

> or name it something else (which I did, gmktemp). 
> Either way this makes for less portable scripts.

So your problem statement is "HP-UX and Linux use incompatible mktemp(1)
binaries".  I don't understand why that should be fixed in zsh;
shouldn't that be fixed by getting HP-UX to improve their mktemp?
Compare how there is any number of instances in the FreeBSD man pages of
option flags that have been added for compatibility with coreutils (see
ls(1) and find(1) for example).

(By the way: I wonder if mktemp(1) will be added to POSIX?)

As to your proposal itself, I initially thought you were proposing to
implement a drop-in replacement of some mktemp(1) out there (probably
GNU's, though for license reasons it'd be easier to crib BSD's);
however, reading your responses to Peter and Oliver I see that you might
be thinking of adding an *idiomatic* make-temporary-files interface,
e.g., one that returns an fd and/or returns the filename in REPLY to
save a fork.  Which is it?  Could you sketch the API that will be
provided to script authors?  Is it "see GNU coreutils' mktemp(1) man
page, plus the -f option to return an fd"?

> That also requires that
> the script writer have access to install packages or the wherewithal to
> build these packages and install them in their home directory themselves.

By this argument, we should ship an rsync implementation in zsh if HP-UX
doesn't happen to ship rsync in part of its (HP-UX's) default installation.

> > - O_EXCL is exposed by zsh/system's 'sysopen' builtin, so a pure zsh
> >    implementation should be possible.
> 
> I didn't think about a pure zsh implementation, but modifying the template
> character by character in zsh sounds like at least as much work as it is in
> C, but slower.

Given that there's going to be a syscall at the end anyway [open(O_EXCL)],
I'm not sure if the overhead of zsh over pure C would be noticeable.

I mentioned a pure zsh implementation because it could be implemented as
an autoloaded function and released as a plugin (rather than a module),
so it would be installable by users who don't or can't compile their own
zsh, and it would even be compatible with existing zsh binaries out
there.

Cheers,

Daniel



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