unison/README.md

167 lines
10 KiB
Markdown
Raw Normal View History

2015-05-08 01:09:09 +03:00
The Unison platform
2013-09-20 00:44:05 +04:00
======
2015-05-06 23:29:52 +03:00
2015-05-08 06:03:58 +03:00
[![Join the chat at https://gitter.im/unisonweb/platform](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/unisonweb/platform?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2015-05-08 01:09:09 +03:00
[Unison](http://unisonweb.org) is a new programming platform, currently under active development. This repo contains the code for the Unison node backend (written in Haskell, found in the folder `node`), and the Unison editor (currently written in Elm, found in the folder `editor`).
2015-05-08 06:45:39 +03:00
Since Unison isn't terribly useful in its current form, the rest of this README will focus on stuff that will be of interest for potential contributors, namely, how to build the code, and a brief tour of the (fairly small but action-packed) codebase. If you're just interested in the project and want to follow along with the progress, [unisonweb.org](http://unisonweb.org) is the place to go, or you can also say hello or lurk [in the chat room](https://gitter.im/unisonweb/platform).
2015-05-08 06:03:58 +03:00
Still here? All right then! Let's get to it.
2015-05-08 01:09:09 +03:00
### Build intructions
2015-05-09 02:22:06 +03:00
This assumes you have already installed:
* GHC 7.8.2 or later (earlier versions might work fine, I have not tested) and cabal. [Instructions for installing GHC and cabal for various platforms](https://github.com/bitemyapp/learnhaskell/blob/master/install.md). Installing [the Haskell Platform](https://www.haskell.org/platform/) would probably work as well, but I don't really recommend that.
* [Elm 0.15](http://elm-lang.org/Install.elm)
2015-05-08 06:03:58 +03:00
Then do:
2015-05-08 01:09:09 +03:00
```
$ git clone https://github.com/unisonweb/platform.git unisonweb
$ cd unisonweb/node
$ cabal sandbox init
$ cabal install
2015-05-08 06:03:58 +03:00
$ // wait 20 minutes while half the Haskell ecosystem
$ // gets downloaded and compiled
2015-05-08 01:09:09 +03:00
$ cabal build node
$ ./dist/build/node/node
Setting phasers to stun... (port 8080) (ctrl-c to quit)
```
2015-05-08 06:03:58 +03:00
That last line is a message from [Scotty](https://hackage.haskell.org/package/scotty) telling you that the node HTTP server is running. Leave that running for now.
2015-05-08 01:09:09 +03:00
2015-05-08 06:03:58 +03:00
Next, the _editor_:
2015-05-08 01:09:09 +03:00
```
$ cd unisonweb/editor
$ elm make src/Unison/Editor.elm
Some new packages are needed. Here is the upgrade plan.
Install:
elm-lang/core 2.0.1
evancz/elm-http 1.0.0
Do you approve of this plan? (y/n) y
Downloading elm-lang/core
Downloading evancz/elm-http
Packages configured successfully!
Compiled 62 files
Successfully generated elm.js
$ elm reactor
Elm Reactor 0.3.1 (Elm Platform 0.15)
Listening on http://0.0.0.0:8000/
```
2015-05-08 06:03:58 +03:00
Now open up a browser and go to `http://0.0.0.0:8000/`. Navigate to `src/Unison/Editor.elm`. You should see the Unison expression editor, initially consisting of a single `_`. You can navigate around with the keyboard or mouse. Use `<Enter>` or a click to open a node for editing. Some other keyboard commands:
2015-05-08 01:09:09 +03:00
* `<Enter>` accepts the current selection in the explorer, and arrow keys or the mouse navigate.
* When the explorer is closed:
* `'s'` performs linking + 1 beta reduction of the selected expression.
* `'e'` evaluates the selected expression to weak head normal form.
* `'a'` wraps the current selection in a function call, initially blank
* `'v'` switches between the 'raw' and interpreted view
2015-05-08 06:03:58 +03:00
Somewhat annoying---when the explorer pops up, it doesn't get focus. Hit tab once to make the focus active, or click in the text box. You might notice some other minor issues.
2015-05-08 01:09:09 +03:00
2015-05-08 06:03:58 +03:00
If you have the elm reactor running, you can make edits to the code, save, and refresh the page to see them.
2015-05-08 01:09:09 +03:00
2015-05-08 06:03:58 +03:00
### A brief code tour of the Unison node
2015-05-08 01:09:09 +03:00
2015-05-08 06:03:58 +03:00
The Unison node, living in the `/node` subdirectory, and written in Haskell, is not actually much code right now:
```
$ find src -name '*.hs' | xargs wc -l
39 src/Main.hs
231 src/Node.hs
311 src/Unison/ABT.hs
65 src/Unison/Digest.hs
22 src/Unison/Distance.hs
55 src/Unison/Eval/Interpreter.hs
9 src/Unison/Eval.hs
41 src/Unison/Hash.hs
31 src/Unison/JSON.hs
13 src/Unison/Kind.hs
53 src/Unison/Metadata.hs
163 src/Unison/Node/Implementation.hs
96 src/Unison/Node/Store.hs
74 src/Unison/Node.hs
141 src/Unison/NodeServer.hs
77 src/Unison/Note.hs
19 src/Unison/Reference.hs
51 src/Unison/Symbol.hs
308 src/Unison/Term.hs
196 src/Unison/TermEdit.hs
177 src/Unison/Type.hs
449 src/Unison/Typechecker/Context.hs
132 src/Unison/Typechecker.hs
2753 total
```
Under 3k lines total! Obviously, this number is going to go up over time, but right now, it's pretty bite-sized and (hopefully) easy enough to follow. Certainly not of the scale of something like GHC, which clocks in at [over 100k LOC](http://www.aosabook.org/en/ghc.html)!
Now, where to begin? Everyone learns differently. You might prefer to read the code 'inside out' (or perhaps 'bottom up'), starting from the core language syntax tree and typechecker, then expanding out to where these get exposed to the outside world. If this route sounds appealing, here's a reasonable path:
* `Unison.Term` is the module containing the definition for Unison language _terms_ and `Unison.Type` is the module containing the definition for Unison language _types_. Eventually, we'll add `Unison.TypeDeclaration`.
* In both `Term` and `Type`, the same pattern is used. Each defines a 'base functor' type, `F a`, which is nonrecursive, and the actual thing we use is an _abstract binding tree_ over this base functor, an `ABT F`. `ABT` (for 'abstract binding tree') is defined in `Unison.ABT`. If you aren't familiar with abstract binding trees, [here is a nice blog post explaining one formulation of the idea](http://semantic-domain.blogspot.com/2015/03/abstract-binding-trees.html), which inspired the `Unison.ABT` module. A lot of operations on terms and types just delegate to generic `ABT` operations.
* The main interface to the typechecker is in `Unison.Typechecker`, and the implementation is in `Unison.Typechecker.Context`. There isn't a lot of code here (under 500 LOC presently), since the typechecking algorithm is pretty simple. Unlike a unification-based typechecker, where the typechecking state is an unordered bag of unification constraints and higher-rank polymorphism is usually bolted on awkwardly later, [Dunfield and Krishnaswami's algorithm](http://www.mpi-sws.org/~neelk/bidir.pdf) keeps the typechecking state as a nicely tidy _ordered context_, represented as a regular list manipulated in a stack-like fashion, and the algorithm handles higher-rank polymorphism very cleanly. They've also [extended this work to include features like GADTs](http://semantic-domain.blogspot.com/2015/03/new-draft-sound-and-complete.html), though this new algorithm hasn't been incorporated into Unison yet.
* From here, you can move to `Unison.Node`, which defines the interface satisfied by the node, `Unison.Node.Implementation`, containing a simple implementation of that interface, and `Unison.NodeServer`, which just wraps the node API in an HTTP+JSON interface.
* Lastly, `src/Node.hs` has the code which creates an instance of a `Unison.NodeServer`. The `src/Node.hs` file also has the definition of the current Unison 'standard library'. The node logic is agnostic to the "standard library" chosen, so whatever creates an instance of `Unison.Node` has to supply it with the standard library it should use.
If instead, you'd rather work from the 'outside in' (or perhaps 'top down'), you could start with `Unison.NodeServer` and work your way back the other direction to modules like `Term`, `Type`, and `ABT`. Since the entire point of the node codebase is to expose an API over HTTP, `Unison.NodeServer` will end up referencing directly or indirectly all the code in the node.
### A brief code tour of the Unison editor
2015-05-08 01:09:09 +03:00
2015-05-08 06:45:39 +03:00
The Unison editor, living in the `/editor` subdirectory, and written in Elm, is also not much code right now:
2015-05-08 06:03:58 +03:00
2015-05-08 06:45:39 +03:00
```
$ find src -name '*.elm' | xargs wc -l
24 src/Elmz/Distance.elm
80 src/Elmz/Json/Decoder.elm
109 src/Elmz/Json/Encoder.elm
50 src/Elmz/Json/Request.elm
292 src/Elmz/Layout.elm
8 src/Elmz/List.elm
54 src/Elmz/Matcher.elm
48 src/Elmz/Maybe.elm
83 src/Elmz/Mealy.elm
107 src/Elmz/Moore.elm
115 src/Elmz/Movement.elm
148 src/Elmz/Parser.elm
8 src/Elmz/Result.elm
76 src/Elmz/Selection1D.elm
211 src/Elmz/Signal.elm
75 src/Elmz/Trie.elm
6 src/Elmz/Void.elm
39 src/Unison/Action.elm
131 src/Unison/EditableTerm.elm
314 src/Unison/Editor.elm
17 src/Unison/Hash.elm
93 src/Unison/Metadata.elm
149 src/Unison/Node.elm
119 src/Unison/Path.elm
43 src/Unison/Reference.elm
98 src/Unison/Scope.elm
87 src/Unison/SearchboxParser.elm
231 src/Unison/Styles.elm
54 src/Unison/Symbol.elm
329 src/Unison/Term.elm
311 src/Unison/TermExplorer.elm
47 src/Unison/Terms.elm
130 src/Unison/Type.elm
380 src/Unison/View.elm
4066 total
```
Since most of this code will likely be getting a rewrite when moving away Elm, we'll avoid going into too much detail. At a high level:
* The `Elmz` package has various utility modules, not specific to Unison.
* The `Unison.Editor` module is the main entry point for the editor.
* Many of the modules in the `Unison` package mirror their counterparts in Haskell. The representation of terms and types is a bit different from the Haskell side. Unfortunately, Elm's type system cannot represent abstract binding trees, so the the JSON encoders/decoders in Elm convert both terms and types to and from simpler, more Elm-friendly represenations.
* There are a few modules which get used a lot:
* `Elmz.Layout`, which I'm calling an 'annotated layout tree'. It's a pretty simple idea that lets us use regular pure functions to do hit testing, compute selection highlight regions, and so on. There's a description of the technique and some discussion [in this blog post](http://pchiusano.github.io/2014-12-10/wormhole-antipattern.html). The editor uses this in lots of places.
* `Elmz.Moore` and `Elmz.Mealy` are pure state machine types, with the minor twist that they may drop events. Most of the components of the editor UI are defined as some `Moore i o`, where `i` will be some type which is the union of all events that component can receive, and where `o` might be a view and some other values to pass along. `Moore` and `Mealy` values can be assembled using various combinators, created with recursion, and fed explicitly. This all works out okay and is pretty simple, but it also requires some manual plumbing.
That's all for now!