This is not necessarily the current version of this TIP.
| TIP: | 332 |
| Title: | Half-Close for Bidirectional Channels |
| Version: | $Revision: 1.6 $ |
| Author: | Alexandre Ferrieux <alexandre dot ferrieux at gmail dot com> |
| State: | Final |
| Type: | Project |
| Tcl-Version: | 8.6 |
| Vote: | Done |
| Created: | Thursday, 25 September 2008 |
| Obsoletes: | TIP #301 |
| Keywords: | Tcl, channel, close, socket, shutdown |
This TIP proposes to extend the close/chan close commands to let them perform an unidirectional "half-close" on bidirectional channels.
Bidirectional channels (sockets and command pipelines) allow Tcl to make an efficient use of a "filter process", by exchanging data back and forth over an abstract "single" channel.
However, this single channel abstraction comes with a too coarse-grained close primitive. Indeed, it closes both directions simultaneously, while it is often desirable to close "gracefully" the half-connection to the filter process, leaving the return path open. The effect of such a half-close is that the filter receives a bona fide EOF alone, without a nearly simultaneous SIGPIPE on its write end if it happens to be writing at that time. Moreover, if the filter is itself comprised of a pipeline of processes, some of which doing buffered I/O, then this graceful EOF may be the only way of flushing the chain and receiving back precious data.
This technique is supported by all modern OSes: for pipes there are actually two separate file descriptors/handles, and it suffices to close() the write side; for sockets, a single fd is used, but a specific syscall, shutdown(), brings back the ability to half-close. Hence it is fairly natural for a universal "OS glove" like Tcl to expose this universal feature.
This TIP proposes to extend the close and twin brother chan close commands to take an optional extra "direction" argument, indicating a half-close on the substream going in that direction:
close channel ?read|write?
When the extra direction argument (which may be abbreviated) is given, first the OS-level half