I am posting this as an individual member of the Scheme
community. I am not speaking for the R6RS editors, and
this message should not be confused with the editors'
eventual formal response.
Mike Sperber wrote:
> As I said, that's possible (essentially by inlining reader/writer
> construction with port construction from readers and writers), but it
> eliminates opportunities for abstraction, such as creating future
> libraries that create readers or writers from different sets of
> primitives, or using a joint primitive infrastructure for other
> approaches to I/O, such as the one in SRFI 80.
If the functions of readers and writers were added to
the port data type, then any future library that would
have created readers or writers would create ports
instead, et cetera. No opportunities for abstraction
would be lost.
> > Where can we find these stated requirements?
>
> The first mention is here:
>
> http://www.r6rs.org/r6rs-editors/2004-November/000371.html
I see no evidence of the community's involvement in
developing those requirements. They appear to have
been posited by a single individual, who also asked
the editors to refrain from criticizing requirements
or design until the proposal was complete. Reading
the entire thread reinforces that impression.
> The first design that was a result of this thread was SRFI 68, which
> also contains them in the Abstract. Requirement statements about
> doing I/O on arbitrary sinks and sources are also in the Abstracts of
> SRFI 79 and 81.
Several of those who commented upon those SRFIs
questioned some of the posited requirements:
http://srfi.schemers.org/srfi-68/mail-archive/msg00062.html
http://srfi.schemers.org/srfi-68/mail-archive/msg00066.html
http://srfi.schemers.org/srfi-68/mail-archive/msg00073.html
http://srfi.schemers.org/srfi-68/mail-archive/msg00085.html
Several people questioned fundamental aspects of the design,
notably the decision to make readers and writers distinct
from ports:
http://srfi.schemers.org/srfi-68/mail-archive/msg00068.html
http://srfi.schemers.org/srfi-68/mail-archive/msg00072.html
http://srfi.schemers.org/srfi-68/mail-archive/msg00094.html
http://srfi.schemers.org/srfi-68/mail-archive/msg00100.html
http://srfi.schemers.org/srfi-68/mail-archive/msg00106.html
http://srfi.schemers.org/srfi-68/mail-archive/msg00112.html
http://srfi.schemers.org/srfi-79/mail-archive/msg00000.html
http://srfi.schemers.org/srfi-79/mail-archive/msg00001.html
http://srfi.schemers.org/srfi-79/mail-archive/msg00002.html
http://srfi.schemers.org/srfi-79/mail-archive/msg00003.html
A month ago, when I stated my understanding that mixed
binary and textual i/o was a requirement, several of
the most knowledgeable and experienced people in the
Scheme community disagreed with that requirement, and
took time to explain to me and other readers of this
list what they regard as the real requirements.
Returning to the message you cited, in which you posited
requirements and outlined a few design ideas while asking
the editors not to criticize, you wrote:
> I'm quoting "port" here because---as I mentioned at the outset---I'm
> playing around with a system similar to what's in the SML Basis. The
> SML Basis has a total of four layers in the I/O system (of which
> Scheme ports would be the outermost), and the creation of new types
> and translation would probably happen in the other layers.
In my opinion, the four layers of the SML i/o system
arose not because that is a good design, but because
Hindley-Milner type inference cannot deal with ad hoc
subtyping. In my opinion, a better design would have
fewer layers, with subtyping relationships between
the layers. Input and output ports would both be
subtypes of ports, and would not necessarily be
disjoint; binary and textual ports would both be
subtypes of ports, would not necessarily be disjoint
(although the discussion here has convinced me they
should be), and the input/output distinction would be
orthogonal to the binary/textual distinction.
What are now readers and writers could be just another
subtype of ports.
That kind of design, in my opinion, would simplify the
API, increase reuse, and is the right kind of design for
Scheme.
SML can't use that kind of design because its partitioned
type system just can't handle it. There is no reason for
the R6RS i/o system to imitate the weaknesses of SML.
Will
Received on Wed Nov 22 2006 - 13:47:50 UTC