aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/r.lux
blob: e6b4bb611a4e95d4532a8c151c387937dc2954f1 (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
(.module:
  [library
   [lux {"-" [Code or and list if function cond not int]}
    [control
     [pipe {"+" [case> cond> new>]}]
     ["." function]
     ["." maybe ("#\." functor)]
     [parser
      ["<.>" code]]]
    [data
     ["." text
      ["%" format {"+" [format]}]]
     [collection
      ["." list ("#\." functor mix)]]]
    [macro
     [syntax {"+" [syntax:]}]
     ["." template]
     ["." code]]
    [math
     [number
      ["f" frac]]]
    [type
     abstract]]])

(abstract: .public (Code kind)
  Text

  {}

  (template [<type> <super>+]
    [(with_expansions [<kind> (template.identifier [<type> "'"])]
       (abstract: .public (<kind> kind) Any)
       (`` (type: .public <type> (|> Any <kind> (~~ (template.spliced <super>+))))))]
    
    [Expression [Code]]
    )

  (template [<type> <super>+]
    [(with_expansions [<kind> (template.identifier [<type> "'"])]
       (abstract: .public (<kind> kind) Any)
       (`` (type: .public (<type> <brand>) (|> <brand> <kind> (~~ (template.spliced <super>+))))))]
    
    [Var [Expression' Code]]
    )

  (template [<var> <kind>]
    [(abstract: .public <kind> Any)
     (type: .public <var> (Var <kind>))]

    [SVar Single]
    [PVar Poly]
    )

  (def: .public var
    (-> Text SVar)
    (|>> :abstraction))
  
  (def: .public var_args
    PVar
    (:abstraction "..."))

  (def: .public manual
    (-> Text Code)
    (|>> :abstraction))
  
  (def: .public code
    (-> (Code Any) Text)
    (|>> :representation))

  (def: (self_contained code)
    (-> Text Expression)
    (:abstraction
     (format "(" code ")")))

  (def: nested_new_line
    (format text.new_line text.tab))

  (def: nested
    (-> Text Text)
    (|>> (text.replaced text.new_line ..nested_new_line)
         (format ..nested_new_line)))

  (def: (_block expression)
    (-> Text Text)
    (format "{" (nested expression) text.new_line "}"))

  (def: .public (block expression)
    (-> Expression Expression)
    (:abstraction
     (format "{"
             (..nested (:representation expression))
             text.new_line "}")))

  (template [<name> <r>]
    [(def: .public <name>
       Expression
       (:abstraction <r>))]

    [null "NULL"]
    [n/a "NA"]
    )

  (template [<name>]
    [(def: .public <name> Expression n/a)]

    [not_available]
    [not_applicable]
    [no_answer]
    )

  (def: .public bool
    (-> Bit Expression)
    (|>> (case> #0 "FALSE"
                #1 "TRUE")
         :abstraction))

  (def: .public int
    (-> Int Expression)
    (|>> %.int :abstraction))

  (def: .public float
    (-> Frac Expression)
    (|>> (cond> [(f.= f.positive_infinity)]
                [(new> "1.0/0.0" [])]
                
                [(f.= f.negative_infinity)]
                [(new> "-1.0/0.0" [])]
                
                [(f.= f.not_a_number)]
                [(new> "0.0/0.0" [])]
                
                ... else
                [%.frac])
         ..self_contained))

  (def: safe
    (-> Text Text)
    (`` (|>> (~~ (template [<find> <replace>]
                   [(text.replaced <find> <replace>)]

                   ["\" "\\"]
                   ["|" "\|"]
                   [text.alarm "\a"]
                   [text.back_space "\b"]
                   [text.tab "\t"]
                   [text.new_line "\n"]
                   [text.carriage_return "\r"]
                   [text.double_quote (format "\" text.double_quote)]
                   ))
             )))

  (def: .public string
    (-> Text Expression)
    (|>> ..safe %.text :abstraction))

  (def: .public (slice from to list)
    (-> Expression Expression Expression Expression)
    (..self_contained
     (format (:representation list)
             "[" (:representation from) ":" (:representation to) "]")))

  (def: .public (slice_from from list)
    (-> Expression Expression Expression)
    (..self_contained
     (format (:representation list)
             "[-1"  ":-" (:representation from) "]")))

  (def: .public (apply args func)
    (-> (List Expression) Expression Expression)
    (let [func (:representation func)
          spacing (|> " "
                      (list.repeated (text.size func))
                      text.together)]
      (:abstraction
       (format func "("
               (|> args
                   (list\each ..code)
                   (text.interposed (format "," text.new_line))
                   ..nested)
               ")"))))

  (template [<name> <function>]
    [(def: .public (<name> members)
       (-> (List Expression) Expression)
       (..apply members (..var <function>)))]

    [vector "c"]
    [list   "list"]
    )

  (def: .public named_list
    (-> (List [Text Expression]) Expression)
    (|>> (list\each (.function (_ [key value])
                      (:abstraction (format key "=" (:representation value)))))
         ..list))

  (def: .public (apply_kw args kw_args func)
    (-> (List Expression) (List [Text Expression]) Expression Expression)
    (..self_contained
     (format (:representation func)
             (format "("
                     (text.interposed "," (list\each ..code args)) ","
                     (text.interposed "," (list\each (.function (_ [key val])
                                                       (format key "=" (:representation val)))
                                                     kw_args))
                     ")"))))

  (syntax: (arity_inputs [arity <code>.nat])
    (in (case arity
          0 (.list)
          _ (|> arity
                list.indices
                (list\each (|>> %.nat code.local_identifier))))))

  (syntax: (arity_types [arity <code>.nat])
    (in (list.repeated arity (` ..Expression))))

  (template [<arity> <function>+]
    [(with_expansions [<apply> (template.identifier ["apply/" <arity>])
                       <inputs> (arity_inputs <arity>)
                       <types> (arity_types <arity>)
                       <definitions> (template.spliced <function>+)]
       (def: .public (<apply> function [<inputs>])
         (-> Expression [<types>] Expression)
         (..apply (.list <inputs>) function))

       (template [<function>]
         [(`` (def: .public (~~ (template.identifier [<function> "/" <arity>]))
                (-> [<types>] Expression)
                (<apply> (..var <function>))))]

         <definitions>))]

    [0
     [["commandArgs"]]]
    [1
     [["intToUtf8"]]]
    [2
     [["paste"]]]
    )

  (def: .public as::integer
    (-> Expression Expression)
    (..apply/1 (..var "as.integer")))

  (def: .public (item idx list)
    (-> Expression Expression Expression)
    (..self_contained
     (format (:representation list) "[[" (:representation idx) "]]")))

  (def: .public (if test then else)
    (-> Expression Expression Expression Expression)
    (:abstraction
     (format "if(" (:representation test) ")"
             " " (.._block (:representation then))
             " else " (.._block (:representation else)))))

  (def: .public (when test then)
    (-> Expression Expression Expression)
    (:abstraction
     (format "if(" (:representation test) ") {"
             (.._block (:representation then))
             text.new_line "}")))

  (def: .public (cond clauses else)
    (-> (List [Expression Expression]) Expression Expression)
    (list\mix (.function (_ [test then] next)
                (if test then next))
              else
              (list.reversed clauses)))

  (template [<name> <op>]
    [(def: .public (<name> param subject)
       (-> Expression Expression Expression)
       (..self_contained
        (format (:representation subject)
                " " <op> " "
                (:representation param))))]

    [=       "=="]
    [<       "<"]
    [<=      "<="]
    [>       ">"]
    [>=      ">="]
    [+       "+"]
    [-       "-"]
    [*       "*"]
    [/       "/"]
    [%%      "%%"]
    [**      "**"]
    [or      "||"]
    [and     "&&"]
    )

  (template [<name> <func>]
    [(def: .public (<name> param subject)
       (-> Expression Expression Expression)
       (..apply (.list subject param) (..var <func>)))]

    [bit_or   "bitwOr"]
    [bit_and  "bitwAnd"]
    [bit_xor  "bitwXor"]
    [bit_shl  "bitwShiftL"]
    [bit_ushr "bitwShiftR"]
    )

  (def: .public (bit_not subject)
    (-> Expression Expression)
    (..apply (.list subject) (..var "bitwNot")))

  (template [<name> <op>]
    [(def: .public <name>
       (-> Expression Expression)
       (|>> :representation (format <op>) ..self_contained))]

    [not    "!"]
    [negate "-"]
    )
  
  (def: .public (length list)
    (-> Expression Expression)
    (..apply (.list list) (..var "length")))

  (def: .public (range from to)
    (-> Expression Expression Expression)
    (..self_contained
     (format (:representation from) ":" (:representation to))))

  (def: .public (function inputs body)
    (-> (List (Ex (_ k) (Var k))) Expression Expression)
    (let [args (|> inputs (list\each ..code) (text.interposed ", "))]
      (..self_contained
       (format "function(" args ") "
               (.._block (:representation body))))))

  (def: .public (try body warning error finally)
    (-> Expression (Maybe Expression) (Maybe Expression) (Maybe Expression) Expression)
    (let [optional (: (-> Text (Maybe Expression) (-> Text Text) Text)
                      (.function (_ parameter value preparation)
                        (|> value
                            (maybe\each (|>> :representation preparation (format ", " parameter " = ")))
                            (maybe.else ""))))]
      (..self_contained
       (format "tryCatch("
               (.._block (:representation body))
               (optional "warning" warning function.identity)
               (optional "error" error function.identity)
               (optional "finally" finally .._block)
               ")"))))

  (def: .public (while test body)
    (-> Expression Expression Expression)
    (..self_contained
     (format "while (" (:representation test) ") "
             (.._block (:representation body)))))

  (def: .public (for_in var inputs body)
    (-> SVar Expression Expression Expression)
    (..self_contained
     (format "for (" (:representation var) " in " (:representation inputs) ")"
             (.._block (:representation body)))))

  (template [<name> <keyword>]
    [(def: .public (<name> message)
       (-> Expression Expression)
       (..apply (.list message) (..var <keyword>)))]

    [stop  "stop"]
    [print "print"]
    )

  (def: .public (set! var value)
    (-> SVar Expression Expression)
    (..self_contained
     (format (:representation var) " <- " (:representation value))))

  (def: .public (set_item! idx value list)
    (-> Expression Expression SVar Expression)
    (..self_contained
     (format (:representation list) "[[" (:representation idx) "]] <- " (:representation value))))

  (def: .public (then pre post)
    (-> Expression Expression Expression)
    (:abstraction
     (format (:representation pre)
             text.new_line
             (:representation post))))
  )