[racket] JSON module: why symbols for object keys? lists for arrays?

From: Matthias Felleisen (matthias at ccs.neu.edu)
Date: Tue Apr 23 12:35:00 EDT 2013

On Apr 23, 2013, at 12:14 PM, Erik Pearson <erik at adaptations.com> wrote:

> Thanks, I've started my signature/unit lesson now. It will take me a
> couple of days absorbing the documentation and poring over the racket
> usage to grasp it. The racket code has some really clean code that I
> can actually follow (in areas I'm familiar with, like networking
> protocols). Much better than toy factories and toy stores!
> 
> But wait, I did notice in the docs the sidebar note:
>  ftp@ and ftp^ are deprecated. They exist for backward-compatibility and will
>  likely be removed in the future. New code should use the net/ftp module.
> 
> I noticed the same for base64, and I presume it is a change across the
> code base. The net/ftp module is just a plain racket module. No
> sig/unit magic. I would think one of the neat uses of sig/unit would
> be to implement well known protocols like these, which might have a
> standard racket implementation but allow for specialized or enhanced
> ones.  Fits the model of json encoding, decoding, manipulation quite
> well. What's up?


Short: 

Your thinking is correct but until now we haven't found a need for such 
parameterizations. Perhaps we aren't doing enough networking code. Perhaps
our reaction against units went a bit too far. 

;; --- 

Long and some history: In the 90s, we had no modules just units. We happily 
programmed with units even though using them is a significant syntactic 
overhead over a plain module system. Units were motivated by some use
cases (you need units if you'd like to parameterize modules over other
modules and especially if you use different instantiations within one
application). 

But Racket is really a programming language programming language (yes, 
I mean to use this repetition and it is my favorite slogan-description)
and our major tool is the syntax system. Eventually we wanted to create
syntactic libraries. While we had a design that worked for units, it 
looked cumbersome and we had no usable implementation (as in programmers
can use it immediately with the rest of Racket or PLT Scheme as it was
called then). 

Matthew eventually bit the bullet and added the modules we have now and
showed how modules can be libraries of syntax and DSLs etc. Modules became
so easily usable that we went with modules whenever it wasn't clear that 
units would offer any benefits. Sometimes we even went to the effort to 
eliminate units so that it became easier for the 'programmer on the street' 
to use the libraries. 

So what you and others encounter in some places in the code base is easily 
explained by this history. 

-- Matthias



Posted on the users mailing list.