Would it be possible to combine the structure constructor name with a means of providing default structure values on a per slot basis? I had always thought it would be nice if the auto-v argument to make-struct-type took an old-style lambda list (i.e., an improper list or, in the degenerate case, an atom) to allow specification of slot-specific automatic (default) values - with the cdr of an improper list (or the atom in the degenerate case) being used for the remaining elements. Then, define-struct could support a #:default field option for each slot. Just a thought.<br>
<br><div class="gmail_quote">On Fri, Apr 2, 2010 at 3:30 PM, Matthew Flatt <span dir="ltr">&lt;<a href="mailto:mflatt@cs.utah.edu">mflatt@cs.utah.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Version 4.2.5.5 in the SVN trunk includes experimental features to<br>
support the following proposed Racket features. You can try the<br>
proposals with `#lang racket&#39; in MzScheme.<br>
<br>
Structure Constructor Names<br>
---------------------------<br>
<br>
Proposal: The default constructor name bound by `define-struct&#39; in<br>
Racket should be the same as the type name, instead of having a `make-&#39;<br>
prefix.<br>
<br>
Example:<br>
<br>
     &gt; (define-struct a (x y))<br>
     &gt; a<br>
     #&lt;procedure:a&gt;<br>
     &gt; (a 1 2)<br>
     #&lt;a&gt;<br>
<br>
To help support this potential feature, the `define-struct&#39; form of<br>
`scheme/base&#39; now accepts a `#:constructor-name&#39; argument to give the<br>
constructor a name other than the one prefixed with `make-&#39;. In<br>
particular, the constructor name can be the same as the type name:<br>
<br>
     &gt; (define-struct a (x y))<br>
     &gt; make-a<br>
     #&lt;procedure:make-a&gt;<br>
     &gt; (define-struct a (x y) #:constructor-name a)<br>
     &gt; a<br>
     #&lt;procedure:a&gt;<br>
     &gt; (a 1 2)<br>
     #&lt;a&gt;<br>
<br>
A natural (and generally backward-compatible) to change to `match&#39;<br>
would be to treat structure-type names as pattern constructors, so that<br>
<br>
     (match (a 1 2)<br>
       [(a x y) x])<br>
<br>
would produce 1.<br>
<br>
<br>
Semi-quasiquote Printing<br>
------------------------<br>
<br>
Proposal: Use quasiquote printing as Racket&#39;s default printing mode,<br>
but only for transparent values.<br>
<br>
Functional programmers long ago figured out that it&#39;s better to print a<br>
value in the same way as an expression that produces the value.<br>
Printing with `quasiquote&#39;, meanwhile, mostly preserves the Lisp<br>
tradition of printing values that represent expressions as the<br>
expressions that they represent.<br>
<br>
Some values, however, cannot be printed easily as expressions that<br>
produce the same value. For example, In DrScheme with quasiquote<br>
printing,<br>
<br>
 (list 1 (let ([f (lambda (x) x)]) f))<br>
<br>
prints as<br>
<br>
 `(1 ,(lambda (a1) ...))<br>
<br>
The printer cannot actually print a function, so it has to invent a<br>
`lambda&#39; expression that approximates the value. The problem is worse<br>
with objects, classes, and other opaque types. Expressions with graphs<br>
print as a `shared&#39; expression.<br>
<br>
Other implementations of functional languages punt on opaque values.<br>
Here&#39;s an example in OCaml, which prints functions as just `&lt;fun&gt;&#39;:<br>
<br>
 # Some 10;;<br>
 - : int option = Some 10<br>
 # sqrt;;<br>
 - : float -&gt; float = &lt;fun&gt;<br>
 # [sqrt;sqrt];;<br>
 - : (float -&gt; float) list = [&lt;fun&gt;; &lt;fun&gt;]<br>
<br>
This seems like the right compromise for Racket. For example,<br>
<br>
 (list 1 (let ([f (lambda (x) x)]) f))<br>
<br>
could print as<br>
<br>
 `(1 #&lt;procedure:f&gt;)<br>
<br>
(Note that there&#39;s no need for an unquote when printing a value as a<br>
non-expression. Non-S-expression forms are &quot;self-unquoting&quot;.)<br>
<br>
Transparent (or prtially transparent) structures can print with<br>
constructors, while opaque structures can print as non-S-expressions:<br>
<br>
   &gt; (define-struct a (x y))<br>
   &gt; (list 1 (a 2 3))<br>
   `(1 #&lt;a&gt;)<br>
   &gt; (define-struct a (x y) #:transparent)<br>
   &gt; (list 1 (a 2 3))<br>
   `(1 ,(a 2 3))<br>
<br>
Instances of prefab structure types, meanwhile, should stick to<br>
quasiquoting:<br>
<br>
   &gt; (define-struct b (x y) #:prefab)<br>
   &gt; (list 1 (b (a 2 3) &#39;x))<br>
   `(1 #s(b ,(a 2 3) x))<br>
<br>
Graphs can still use the compact #n= notation:<br>
<br>
   &gt; (read (open-input-string &quot;#0=(1 . #0#)&quot;))<br>
   `#0=(1 . #0#)<br>
<br>
Unlike DrScheme&#39;s quasiquote printing, semi-quasiquote printing is<br>
easily implemented by parameterizing our existing printer(s).<br>
<br>
A new `print-as-quasiquote&#39; parameter directs `print&#39; and<br>
`pretty-print&#39; to use semi-quasiquote style. (The parameter does not<br>
affect `write&#39;.)<br>
<br>
  Welcome to MzScheme v4.2.5.5 [3m], Copyright (c) 2004-2010 PLT Scheme Inc.<br>
  &gt; &#39;x<br>
  x<br>
  &gt; (print-as-quasiquote #t)<br>
  &gt; &#39;x<br>
  &#39;x<br>
  &gt; (list 1 2 3)<br>
  `(1 2 3)<br>
  &gt; sqrt<br>
  #&lt;procedure:sqrt&gt;<br>
  &gt; (list 1 sqrt)<br>
  `(1 #&lt;procedure:sqrt&gt;)<br>
<br>
The `port-print-handler&#39; and `prop:write&#39; protocols have been changed<br>
(in a mostly backward-compatible way) to make semi-quasiquote printing<br>
extensible.<br>
<br>
<br>
Language-Specific Run-Time Configuration<br>
----------------------------------------<br>
<br>
Proposal: The main language of a program should determine a run-time<br>
configuration, including the style for printing values.<br>
<br>
Assuming the changes above, we&#39;d want<br>
<br>
  #lang scheme<br>
  (define-struct a (x y) #:transparent)<br>
  (list (make-a 1 2))<br>
<br>
to produce<br>
<br>
  (#(struct:a 1 2))<br>
<br>
while<br>
<br>
  #lang racket<br>
  (define-struct a (x y) #:transparent)<br>
  (list (a 1 2))<br>
<br>
should produce<br>
<br>
  `(,(a 1 2))<br>
<br>
Along the same lines, we&#39;d want<br>
<br>
  #lang scheme<br>
  (define-struct a (x y) #:transparent)<br>
  (+ &#39;x (list (make-a 1 2)))<br>
<br>
to produce the error message<br>
<br>
  +: expects type &lt;number&gt; as 1st argument, given: x; other arguments<br>
  were: (#(struct:a 1 2))<br>
<br>
while<br>
<br>
  #lang racket<br>
  (define-struct a (x y) #:transparent)<br>
  (+ &#39;x (list (a 1 2)))<br>
<br>
should produce the error message<br>
<br>
  +: expects type &lt;number&gt; as 1st argument, given: &#39;x; other arguments<br>
  were: `(,(a 1 2))<br>
<br>
The different `define-struct&#39;s are easily support through different<br>
bindings imported by `scheme&#39; and `racket&#39;. Similarly, for printing<br>
top-level results in a module, you might imagine that `scheme&#39; and<br>
`racket&#39; use different printing functions. The different error formats,<br>
however, are not so easily controlled through bindings.<br>
<br>
Setting `print-as-quasiquote&#39; to #t is enough to get the Racket-style<br>
error format, but having `#lang racket&#39; inject `(print-as-quasiquote<br>
#t)&#39; in the module top-level would not work well when modules from<br>
different languages are mixed together. For example, if a program<br>
imports both<br>
<br>
  ;; s.ss:<br>
  #lang scheme<br>
  (define (s-bad v) (error &#39;s-bad &quot;~e&quot; v))<br>
  (provide s-bad)<br>
<br>
and<br>
<br>
  ;; r.rkt<br>
  #lang racket<br>
  (define (r-bad v) (error &#39;r-bad &quot;~e&quot; v))<br>
  (provide r-bad)<br>
<br>
the way an error message is printed by `s-bad&#39; and `r-bad&#39; shouldn&#39;t<br>
depend on the order that the modules are instantiated.<br>
<br>
To accommodate run-time configuration of the environment, such as<br>
setting the way that values are printed, `mzscheme&#39; now treats the main<br>
module of a program specially. It extracts information about the<br>
module&#39;s language --- specifically, whether the language declares a<br>
run-time configuration action. If so, `mzscheme&#39; runs the<br>
language-configuration action before it instantiates the module.<br>
<br>
As a result, when you put either version of the code above in &quot;ex.ss&quot;,<br>
then `mzscheme ex.ss&#39; produces the right error message.<br>
<br>
Here&#39;s how it works in more detail for the case of `#lang racket&#39;:<br>
<br>
 * The `racket&#39; module reader has implemented in `racket/lang/reader&#39;<br>
   associates a &#39;module-language property with `module&#39; form that it<br>
   produces from &quot;ex.ss&quot;. The &#39;module-language property essentially<br>
   points back to `racket/lang/reader&#39;.<br>
<br>
 * The macro expander and bytecode compiler preserves the<br>
   &#39;module-language information so that it&#39;s available through<br>
   `module-compiled-language-info&#39; (from the unevaluated bytecode)<br>
   and/or `module-&gt;language-info&#39; (from the evaluated module<br>
   declaration).<br>
<br>
 * When the `mzscheme&#39; executable is given a module to run, it uses<br>
   `module-&gt;language-info&#39; to get the module&#39;s language information<br>
   before `require&#39;ing the module. The `module-&gt;language-info&#39; loads<br>
   &quot;ex.ss&quot; (from source or bytecode) and extracts language info from<br>
   the declared module.<br>
<br>
   The language info on the declaration of the module from &quot;ex.ss&quot;<br>
   points back to the `get-info&#39; export of `racket/lang/reader&#39;. The<br>
   `mzscheme&#39; executable calls that function with the<br>
   &#39;configure-runtime key.<br>
<br>
 * The `get-info&#39; function of `racket/lang/reader&#39; recognizes the<br>
   &#39;configure-runtime key and reports back the `configure&#39; function<br>
   provided by `racket/private/runtime&#39;.<br>
<br>
   [Why doesn&#39;t `get-info&#39; just call `configure&#39; directly? See below<br>
    on creating executables.]<br>
<br>
 * The `mzscheme&#39; executable calls the `configure&#39; function of<br>
   `racket/private/runtime&#39; calls it. The `configure&#39; function simply<br>
   sets the `print-as-quasiquote&#39; parameter to #t.<br>
<br>
 * Having finished running the language&#39;s configuration action, the<br>
   `mzscheme&#39; executable `require&#39;s the &quot;ex.ss&quot; module to instantiate<br>
   it. (Although `module-&gt;language-info&#39; has already loaded the module,<br>
   `module-&gt;language-info&#39; doesn&#39;t instantiate the module.)<br>
<br>
   Instantiating the module runs the expressions in its body,<br>
   triggering the `+&#39; error. The error message uses the right style for<br>
   printing values because the `print-as-quasiquote&#39; parameter was set<br>
   to #t by `configure&#39;.<br>
<br>
If you run `mzc --exe ex ex.ss&#39;, the generated executable prints the<br>
right error message, too. That&#39;s because `mzc&#39; extracts the main<br>
module&#39;s language information in the same way as `mzscheme&#39;. Based on<br>
the result for &#39;confgure-runtime for the module&#39;s language, `mzc&#39;<br>
embeds the `racket/private/runtime&#39; module in the generated executable<br>
(and that&#39;s why `get-info&#39; doesn&#39;t call `configure&#39; itself). The<br>
generated executable includes a start-up action that calls `configure&#39;<br>
before running the main module.<br>
<br>
<br>
DrScheme should similarly extract language information and call<br>
`configure&#39; before running the module. It may be that a single<br>
side-affecting `configure&#39; function isn&#39;t the right interface for<br>
DrScheme, and so experiments with DrScheme may lead to a different<br>
protocol for `mzscheme&#39; and `mzc&#39;.<br>
<br>
<br>
When `mzscheme&#39; is run in interactive module, the initialization<br>
module&#39;s language is used to initialize the run-time configuration. The<br>
`racket&#39;, `racket/base&#39; and `racket/init&#39; modules are implemented in<br>
Racket, so<br>
<br>
   mzscheme -I racket/init<br>
<br>
gives you a REPL like `racket&#39; could give you (when it exists).<br>
<br>
_________________________________________________<br>
  For list-related administrative tasks:<br>
  <a href="http://list.cs.brown.edu/mailman/listinfo/plt-dev" target="_blank">http://list.cs.brown.edu/mailman/listinfo/plt-dev</a><br>
</blockquote></div><br>