From: John Cowan <xxxxxx@ccil.org>
Date: Wednesday, September 16, 2020 4:08 PM

Fixed.  But now I realize we have another problem:  terminal? can no longer accept an unwrapped fd, so the use case (terminal? 0) no longer works.  Three resolutions:

1) Provide fd->fdo.  I think this is dangerous and we shouldn't do it

2) Change terminal? to accept a fd, a fdo, or a port.  Easy to implement but harder to understand.

3) Let terminal? accept a port only, and encourage people to call it on (current-input-port) or (current-output-port) at the top level of the program, before these parameters can be rebound by anything.

4) Let terminal? accept a port only, and modify the fdo->port procedures to accept unwrapped fds as well.  That way if a program knows when it starts up that a source of characters is open on fd 7, it can convert it to a port with (fdo->textual-input-port 7) and read it with read-char or whatever it wants.

I think #4 is the slickest and has general applicability, but I could live with #3.  What do you think?

I agree that #1 is dangerous, and I currently take advantage of the fact that all fdos are assumed to be legit.  #3 is extremely inelegant, I don't like restricting the user like that.

I think we should consider the API of terminal? separate from #4.

As discussed recently WRI to another example like this, we shouldn't make the user dance to feed a plain fd to terminal?, especially to go all the way to making a port.  Especially since fd->*port calls dup() and returns that new fd in that port, the user would then be responsible for the gratuitously created port and its new fd.

I don't see it being really troublesome to document that terminal? can take all three arguments, and the code is quite easy, since in all cases the underlying %isatty takes an integer fd, I just add back a clause in a cond.

#4 minus changing terminal to only take ports could be the slickest, although, again, it wouldn't be reading from fd 7, but a dup()ed fd of 7, unless we change that behavior when handed an integer instead of an fdo to not do the dup(), which is again simple in the code.

- Harold

On Wed, Sep 16, 2020 at 1:33 PM <xxxxxx@ancell-ent.com> wrote:

Implementing a trivial File Descriptor Object (FDO) wrapper (no use of Chibi Scheme's fileno object, just the fd integer), and noticed these signatures should be updated.  That "should" is pretty much a "must", since they imply they're returning an integer fd, not one wrapped in an FDO, which I assure you leads to coding errors:

(port-internal-fd port)  → fdo

(close-fd fdo)  → undefined   POSIX close()

(port->fd port)  → fdo    POSIX dup()

- Harold