aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/type.lux
blob: 09c30fd03f5e712e6de96b403bed6b7523cf4ade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
(.module: {#.doc "Basic functionality for working with types."}
  [lux (#- function)
   [control
    [equivalence (#+ Equivalence)]
    [monad (#+ do Monad)]
    ["p" parser]]
   [data
    [text ("text/" Monoid<Text> Equivalence<Text>)]
    [ident ("ident/" Equivalence<Ident> Codec<Text,Ident>)]
    [number ("nat/" Codec<Text,Nat>)]
    [maybe]
    [collection [list ("list/" Functor<List> Monoid<List> Fold<List>)]]]
   ["." macro
    [code]
    ["s" syntax (#+ Syntax syntax:)]]
   ])

## [Utils]
(def: (beta-reduce env type)
  (-> (List Type) Type Type)
  (case type
    (#.Primitive name params)
    (#.Primitive name (list/map (beta-reduce env) params))
    
    (^template [<tag>]
      (<tag> left right)
      (<tag> (beta-reduce env left) (beta-reduce env right)))
    ([#.Sum]      [#.Product]
     [#.Function] [#.Apply])
    
    (^template [<tag>]
      (<tag> old-env def)
      (case old-env
        #.Nil
        (<tag> env def)

        _
        (<tag> (list/map (beta-reduce env) old-env) def)))
    ([#.UnivQ]
     [#.ExQ])
    
    (#.Parameter idx)
    (maybe.default (error! (text/compose "Unknown type var: " (nat/encode idx)))
                   (list.nth idx env))
    
    _
    type
    ))

## [Structures]
(structure: #export _ (Equivalence Type)
  (def: (= x y)
    (case [x y]
      [(#.Primitive xname xparams) (#.Primitive yname yparams)]
      (and (text/= xname yname)
           (n/= (list.size yparams) (list.size xparams))
           (list/fold (.function (_ [x y] prev) (and prev (= x y)))
                      true
                      (list.zip2 xparams yparams)))

      (^template [<tag>]
        [(<tag> xid) (<tag> yid)]
        (n/= yid xid))
      ([#.Var] [#.Ex] [#.Parameter])

      (^or [(#.Function xleft xright) (#.Function yleft yright)]
           [(#.Apply xleft xright) (#.Apply yleft yright)])
      (and (= xleft yleft)
           (= xright yright))

      [(#.Named xname xtype) (#.Named yname ytype)]
      (and (ident/= xname yname)
           (= xtype ytype))

      (^template [<tag>]
        [(<tag> xL xR) (<tag> yL yR)]
        (and (= xL yL) (= xR yR)))
      ([#.Sum] [#.Product])
      
      (^or [(#.UnivQ xenv xbody) (#.UnivQ yenv ybody)]
           [(#.ExQ xenv xbody) (#.ExQ yenv ybody)])
      (and (n/= (list.size yenv) (list.size xenv))
           (= xbody ybody)
           (list/fold (.function (_ [x y] prev) (and prev (= x y)))
                      true
                      (list.zip2 xenv yenv)))

      _
      false
      )))

## [Values]
(do-template [<name> <tag>]
  [(def: #export (<name> type)
     (-> Type [Nat Type])
     (loop [num-args +0
            type type]
       (case type
         (<tag> env sub-type)
         (recur (inc num-args) sub-type)

         _
         [num-args type])))]

  [flatten-univ-q #.UnivQ]
  [flatten-ex-q   #.ExQ]
  )

(def: #export (flatten-function type)
  (-> Type [(List Type) Type])
  (case type
    (#.Function in out')
    (let [[ins out] (flatten-function out')]
      [(list& in ins) out])

    _
    [(list) type]))

(def: #export (flatten-application type)
  (-> Type [Type (List Type)])
  (case type
    (#.Apply arg func')
    (let [[func args] (flatten-application func')]
      [func (list/compose args (list arg))])

    _
    [type (list)]))

(do-template [<name> <tag>]
  [(def: #export (<name> type)
     (-> Type (List Type))
     (case type
       (<tag> left right)
       (list& left (<name> right))

       _
       (list type)))]

  [flatten-variant #.Sum]
  [flatten-tuple   #.Product]
  )

(def: #export (apply params func)
  (-> (List Type) Type (Maybe Type))
  (case params
    #.Nil
    (#.Some func)

    (#.Cons param params')
    (case func
      (^template [<tag>]
        (<tag> env body)
        (|> body
            (beta-reduce (list& func param env))
            (apply params')))
      ([#.UnivQ] [#.ExQ])

      (#.Apply A F)
      (apply (list& A params) F)

      (#.Named name unnamed)
      (apply params unnamed)
      
      _
      #.None)))

(def: #export (to-code type)
  (-> Type Code)
  (case type
    (#.Primitive name params)
    (` (#.Primitive (~ (code.text name))
                    (.list (~+ (list/map to-code params)))))

    (^template [<tag>]
      (<tag> idx)
      (` (<tag> (~ (code.nat idx)))))
    ([#.Var] [#.Ex] [#.Parameter])

    (^template [<tag>]
      (<tag> left right)
      (` (<tag> (~ (to-code left))
                (~ (to-code right)))))
    ([#.Sum] [#.Product] [#.Function] [#.Apply])

    (#.Named name sub-type)
    (code.symbol name)

    (^template [<tag>]
      (<tag> env body)
      (` (<tag> (.list (~+ (list/map to-code env)))
                (~ (to-code body)))))
    ([#.UnivQ] [#.ExQ])
    ))

(def: #export (to-text type)
  (-> Type Text)
  (case type
    (#.Primitive name params)
    (case params
      #.Nil
      ($_ text/compose "(primitive " name ")")

      _
      ($_ text/compose "(primitive " name " " (|> params (list/map to-text) list.reverse (list.interpose " ") (list/fold text/compose "")) ")"))

    (^template [<tag> <open> <close> <flatten>]
      (<tag> _)
      ($_ text/compose <open>
          (|> (<flatten> type)
              (list/map to-text)
              list.reverse
              (list.interpose " ")
              (list/fold text/compose ""))
          <close>))
    ([#.Sum  "(| " ")" flatten-variant]
     [#.Product "["   "]" flatten-tuple])

    (#.Function input output)
    (let [[ins out] (flatten-function type)]
      ($_ text/compose  "(-> "
          (|> ins
              (list/map to-text)
              list.reverse
              (list.interpose " ")
              (list/fold text/compose ""))
          " " (to-text out) ")"))

    (#.Parameter idx)
    (nat/encode idx)

    (#.Var id)
    ($_ text/compose "⌈v:" (nat/encode id) "⌋")

    (#.Ex id)
    ($_ text/compose "⟨e:" (nat/encode id) "⟩")

    (#.Apply param fun)
    (let [[type-func type-args] (flatten-application type)]
      ($_ text/compose  "(" (to-text type-func) " " (|> type-args (list/map to-text) list.reverse (list.interpose " ") (list/fold text/compose "")) ")"))

    (^template [<tag> <desc>]
      (<tag> env body)
      ($_ text/compose "(" <desc> " {" (|> env (list/map to-text) (text.join-with " ")) "} " (to-text body) ")"))
    ([#.UnivQ "All"]
     [#.ExQ "Ex"])

    (#.Named [module name] type)
    ($_ text/compose module "." name)
    ))

(def: #export (un-alias type)
  (-> Type Type)
  (case type
    (#.Named _ (#.Named ident type'))
    (un-alias (#.Named ident type'))

    _
    type))

(def: #export (un-name type)
  (-> Type Type)
  (case type
    (#.Named ident type')
    (un-name type')

    _
    type))

(do-template [<name> <base> <ctor>]
  [(def: #export (<name> types)
     (-> (List Type) Type)
     (case types
       #.Nil
       <base>

       (#.Cons type #.Nil)
       type

       (#.Cons type types')
       (<ctor> type (<name> types'))))]

  [variant Nothing #.Sum]
  [tuple   Any     #.Product]
  )

(def: #export (function inputs output)
  (-> (List Type) Type Type)
  (case inputs
    #.Nil
    output

    (#.Cons input inputs')
    (#.Function input (function inputs' output))))

(def: #export (application params quant)
  (-> (List Type) Type Type)
  (case params
    #.Nil
    quant

    (#.Cons param params')
    (application params' (#.Apply param quant))))

(do-template [<name> <tag>]
  [(def: #export (<name> size body)
     (-> Nat Type Type)
     (case size
       +0 body
       _  (|> body (<name> (dec size)) (<tag> (list)))))]

  [univ-q #.UnivQ]
  [ex-q   #.ExQ]
  )

(def: #export (quantified? type)
  (-> Type Bool)
  (case type
    (#.Named [module name] _type)
    (quantified? _type)

    (#.Apply A F)
    (maybe.default false
                   (do maybe.Monad<Maybe>
                     [applied (apply (list A) F)]
                     (wrap (quantified? applied))))
    
    (^or (#.UnivQ _) (#.ExQ _))
    true

    _
    false))

(def: #export (array level elem-type)
  (-> Nat Type Type)
  (case level
    +0 elem-type
    _ (|> elem-type (array (dec level)) (list) (#.Primitive "#Array"))))

(syntax: #export (:log! {input (p.alt s.symbol
                                      s.any)})
  (case input
    (#.Left valueN)
    (do @
      [cursor macro.cursor
       valueT (macro.find-type valueN)
       #let [_ (log! ($_ text/compose
                         ":log!" " @ " (.cursor-description cursor) "\n"
                         (ident/encode valueN) " : " (..to-text valueT) "\n"))]]
      (wrap (list (' []))))

    (#.Right valueC)
    (macro.with-gensyms [g!value]
      (wrap (list (` (.let [(~ g!value) (~ valueC)]
                       (..:log! (~ g!value)))))))))

(def: type-parameters
  (Syntax (List Text))
  (s.tuple (p.some s.local-symbol)))

(syntax: #export (:cast {type-vars type-parameters}
                        input
                        output
                        {value (p.maybe s.any)})
  (let [casterC (` (: (All [(~+ (list/map code.local-symbol type-vars))]
                        (-> (~ input) (~ output)))
                      (|>> :assume)))]
    (case value
      #.None
      (wrap (list casterC))
      
      (#.Some value)
      (wrap (list (` ((~ casterC) (~ value))))))))

(type: Typed
  {#type Code
   #expression Code})

(def: typed
  (Syntax Typed)
  (s.record (p.seq s.any s.any)))

(syntax: #export (:share {type-vars type-parameters}
                         {exemplar typed}
                         {computation typed})
  (macro.with-gensyms [g!_]
    (let [shareC (` (: (All [(~+ (list/map code.local-symbol type-vars))]
                         (-> (~ (get@ #type exemplar))
                             (~ (get@ #type computation))))
                       (.function ((~ g!_) (~ g!_))
                         (:assume (~ (get@ #expression computation))))))]
      (wrap (list (` ((~ shareC) (~ (get@ #expression exemplar)))))))))