aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/php.lux
blob: c7ec0f9f5232c6bbdc6059d76d3102b55884de16 (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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
(.using
 [library
  [lux (.except Location Code Global Label static int if cond or and not comment for try global the parameter)
   ["@" target]
   [abstract
    [equivalence (.only Equivalence)]
    [hash (.only Hash)]
    ["[0]" enum]]
   [control
    ["[0]" pipe]
    [parser
     ["<[0]>" code]]]
   [data
    ["[0]" text (.only)
     ["%" \\format (.only format)]]
    [collection
     ["[0]" list (.open: "[1]#[0]" functor mix)]]]
   [macro
    [syntax (.only syntax)]
    ["[0]" template]
    ["[0]" code]]
   [math
    [number
     ["n" nat]
     ["f" frac]]]
   [type
    [primitive (.except)]]]])

(def input_separator ", ")
(def statement_suffix ";")

... Added the carriage return for better Windows compatibility.
(def \n+
  Text
  (format text.carriage_return text.new_line))

(def nested
  (-> Text Text)
  (.let [nested_new_line (format text.new_line text.tab)]
    (|>> (format \n+)
         (text.replaced text.new_line nested_new_line))))

(def block
  (-> Text Text)
  (|>> ..nested (text.enclosed ["{" (format \n+ "}")])))

(def group
  (-> Text Text)
  (text.enclosed ["(" ")"]))

(primitive .public (Code brand)
  Text

  (def .public equivalence
    (All (_ brand) (Equivalence (Code brand)))
    (implementation
     (def (= reference subject)
       (at text.equivalence = (representation reference) (representation subject)))))

  (def .public hash
    (All (_ brand) (Hash (Code brand)))
    (implementation
     (def equivalence ..equivalence)
     (def hash (|>> representation (at text.hash hash)))))

  (def .public manual
    (-> Text Code)
    (|>> abstraction))

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

  (with_template [<type> <super>+]
    [(with_expansions [<brand> (template.symbol [<type> "'"])]
       (primitive (<brand> brand) Any)
       (`` (type: .public <type> (|> Any <brand> (~~ (template.spliced <super>+))))))]
    
    [Expression [Code]]
    [Computation [Expression' Code]]
    [Location [Computation' Expression' Code]]
    [Statement [Code]]
    )

  (with_template [<type> <super>+]
    [(with_expansions [<brand> (template.symbol [<type> "'"])]
       (primitive .public <brand> Any)
       (`` (type: .public <type> (|> <brand> (~~ (template.spliced <super>+))))))]

    [Literal [Computation' Expression' Code]]
    [Var [Location' Computation' Expression' Code]]
    [Access [Location' Computation' Expression' Code]]
    [Constant [Location' Computation' Expression' Code]]
    [Global [Location' Computation' Expression' Code]]
    [Label [Code]]
    )

  (type: .public Argument
    (Record
     [#reference? Bit
      #var Var]))

  (def .public ;
    (-> Expression Statement)
    (|>> representation
         (text.suffix ..statement_suffix)
         abstraction))

  (def .public var
    (-> Text Var)
    (|>> (format "$") abstraction))

  (with_template [<name> <type>]
    [(def .public <name>
       (-> Text <type>)
       (|>> abstraction))]

    [constant Constant]
    [label Label]
    )

  (def .public (set_label label)
    (-> Label Statement)
    (abstraction (format (representation label) ":")))

  (def .public (go_to label)
    (-> Label Statement)
    (abstraction
     (format "goto " (representation label) ..statement_suffix)))

  (def .public null
    Literal
    (abstraction "NULL"))

  (def .public bool
    (-> Bit Literal)
    (|>> (pipe.case
           #0 "false"
           #1 "true")
         abstraction))

  (def .public int
    (-> Int Literal)
    (.let [to_hex (at n.hex encoded)]
      (|>> .nat
           to_hex
           (format "0x")
           abstraction)))

  (def .public float
    (-> Frac Literal)
    (|>> (pipe.cond [(f.= f.positive_infinity)]
                    [(pipe.new "+INF" [])]
                    
                    [(f.= f.negative_infinity)]
                    [(pipe.new "-INF" [])]
                    
                    [(f.= f.not_a_number)]
                    [(pipe.new "NAN" [])]
                    
                    ... else
                    [%.frac])
         abstraction))

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

                   ["\" "\\"]
                   [text.tab "\t"]
                   [text.vertical_tab "\v"]
                   [text.null "\0"]
                   [text.back_space "\b"]
                   [text.form_feed "\f"]
                   [text.new_line "\n"]
                   [text.carriage_return "\r"]
                   [text.double_quote (format "\" text.double_quote)]
                   ["$" "\$"]
                   ))
             )))

  (def .public string
    (-> Text Literal)
    (|>> ..safe
         (text.enclosed [text.double_quote text.double_quote])
         abstraction))

  (def arguments
    (-> (List Expression) Text)
    (|>> (list#each ..code) (text.interposed ..input_separator) ..group))

  (def .public (apply args func)
    (-> (List Expression) Expression Computation)
    (|> (format (representation func) (..arguments args))
        abstraction))

  ... TODO: Remove when no longer using JPHP.
  (def .public (apply' args func)
    (-> (List Expression) Expression Computation)
    (apply (list.partial func args) (..constant "call_user_func")))

  (def parameters
    (-> (List Argument) Text)
    (|>> (list#each (function (_ [reference? var])
                      (.if reference?
                        (format "&" (representation var))
                        (representation var))))
         (text.interposed ..input_separator)
         ..group))

  (with_template [<name> <reference?>]
    [(def .public <name>
       (-> Var Argument)
       (|>> [<reference?>]))]

    [parameter #0]
    [reference #1]
    )

  (def .public (closure uses arguments body!)
    (-> (List Argument) (List Argument) Statement Literal)
    (let [uses (case uses
                 {.#End}
                 ""

                 _
                 (format "use " (..parameters uses)))]
      (|> (format "function " (..parameters arguments)
                  " " uses " "
                  (..block (representation body!)))
          ..group
          abstraction)))

  (def arity_inputs
    (syntax (_ [arity <code>.nat])
      (in (case arity
            0 (.list)
            _ (|> (-- arity)
                  (enum.range n.enum 0)
                  (list#each (|>> %.nat code.local)))))))

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

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

       (with_template [<function>]
         [(`` (def .public (~~ (template.symbol [<function> "/" <arity>]))
                (<apply> (..constant <function>))))]

         <definitions>))]

    [0
     [["func_num_args"]
      ["func_get_args"]
      ["time"]
      ["phpversion"]]]

    [1
     [["isset"]
      ["var_dump"]
      ["is_null"]
      ["empty"]
      ["count"]
      ["array_pop"]
      ["array_reverse"]
      ["intval"]
      ["floatval"]
      ["strval"]
      ["ord"]
      ["chr"]
      ["print"]
      ["exit"]
      ["iconv_strlen"] ["strlen"]
      ["log"]
      ["ceil"]
      ["floor"]
      ["is_nan"]]]

    [2
     [["intdiv"]
      ["fmod"]
      ["number_format"]
      ["array_key_exists"]
      ["call_user_func_array"]
      ["array_slice"]
      ["array_push"]
      ["pack"]
      ["unpack"]
      ["iconv_strpos"] ["strpos"]
      ["pow"]
      ["max"]]]

    [3
     [["array_fill"]
      ["array_slice"]
      ["array_splice"]
      ["iconv"]
      ["iconv_strpos"] ["strpos"]
      ["iconv_substr"] ["substr"]]]
    )

  (def .public (key_value key value)
    (-> Expression Expression Expression)
    (abstraction (format (representation key) " => " (representation value))))

  (def .public (array/* values)
    (-> (List Expression) Literal)
    (|> values
        (list#each ..code)
        (text.interposed ..input_separator)
        ..group
        (format "array")
        abstraction))

  (def .public (array_merge/+ required optionals)
    (-> Expression (List Expression) Computation)
    (..apply (list.partial required optionals) (..constant "array_merge")))

  (def .public (array/** kvs)
    (-> (List [Expression Expression]) Literal)
    (|> kvs
        (list#each (function (_ [key value])
                     (format (representation key) " => " (representation value))))
        (text.interposed ..input_separator)
        ..group
        (format "array")
        abstraction))

  (def .public (new constructor inputs)
    (-> Constant (List Expression) Computation)
    (|> (format "new " (representation constructor) (arguments inputs))
        abstraction))

  (def .public (the field object)
    (-> Text Expression Computation)
    (|> (format (representation object) "->" field)
        abstraction))

  (def .public (do method inputs object)
    (-> Text (List Expression) Expression Computation)
    (|> (format (representation (..the method object))
                (..arguments inputs))
        abstraction))

  (def .public (item idx array)
    (-> Expression Expression Access)
    (|> (format (representation array) "[" (representation idx) "]")
        abstraction))

  (def .public (global name)
    (-> Text Global)
    (|> (..var "GLOBALS") (..item (..string name)) transmutation))

  (def .public (? test then else)
    (-> Expression Expression Expression Computation)
    (|> (format (..group (representation test)) " ? "
                (..group (representation then)) " : "
                (..group (representation else)))
        ..group
        abstraction))

  (with_template [<name> <op>]
    [(def .public (<name> parameter subject)
       (-> Expression Expression Computation)
       (|> (format (representation subject) " " <op> " " (representation parameter))
           ..group
           abstraction))]

    [or      "||"]
    [and     "&&"]
    [==      "=="]
    [===     "==="]
    [<       "<"]
    [<=      "<="]
    [>       ">"]
    [>=      ">="]
    [+       "+"]
    [-       "-"]
    [*       "*"]
    [/       "/"]
    [%       "%"]
    [bit_or  "|"]
    [bit_and "&"]
    [bit_xor "^"]
    [bit_shl "<<"]
    [bit_shr ">>"]
    [concat  "."]
    )

  (with_template [<unary> <name>]
    [(def .public <name>
       (-> Computation Computation)
       (|>> representation (format <unary>) abstraction))]

    ["!" not]
    ["~" bit_not]
    ["-" opposite]
    )

  (def .public (set var value)
    (-> Location Expression Computation)
    (|> (format (representation var) " = " (representation value))
        ..group
        abstraction))

  (def .public (set! var value)
    (-> Location Expression Statement)
    (abstraction (format (representation var) " = " (representation value) ";")))

  (def .public (set? var)
    (-> Var Computation)
    (..apply/1 [var] (..constant "isset")))

  (with_template [<name> <modifier>]
    [(def .public <name>
       (-> Var Statement)
       (|>> representation (format <modifier> " ") (text.suffix ..statement_suffix) abstraction))]

    [define_global "global"]
    )

  (with_template [<name> <modifier> <location>]
    [(def .public (<name> location value)
       (-> <location> Expression Statement)
       (abstraction (format <modifier> " " (representation location)
                            " = " (representation value)
                            ..statement_suffix)))]

    [define_static   "static" Var]
    [define_constant "const"  Constant]
    )

  (def .public (if test then! else!)
    (-> Expression Statement Statement Statement)
    (abstraction
     (format "if" (..group (representation test)) " "
             (..block (representation then!))
             " else "
             (..block (representation else!)))))

  (def .public (when test then!)
    (-> Expression Statement Statement)
    (abstraction
     (format "if" (..group (representation test)) " "
             (..block (representation then!)))))

  (def .public (then pre! post!)
    (-> Statement Statement Statement)
    (abstraction
     (format (representation pre!)
             \n+
             (representation post!))))

  (def .public (while test body!)
    (-> Expression Statement Statement)
    (abstraction
     (format "while" (..group (representation test)) " "
             (..block (representation body!)))))

  (def .public (do_while test body!)
    (-> Expression Statement Statement)
    (abstraction
     (format "do " (..block (representation body!))
             " while" (..group (representation test))
             ..statement_suffix)))

  (def .public (for_each array value body!)
    (-> Expression Var Statement Statement)
    (abstraction
     (format "foreach(" (representation array)
             " as " (representation value)
             ") " (..block (representation body!)))))

  (type: .public Except
    (Record
     [#class Constant
      #exception Var
      #handler Statement]))

  (def (catch except)
    (-> Except Text)
    (let [declaration (format (representation (.the #class except))
                              " " (representation (.the #exception except)))]
      (format "catch" (..group declaration) " "
              (..block (representation (.the #handler except))))))
  
  (def .public (try body! excepts)
    (-> Statement (List Except) Statement)
    (abstraction
     (format "try " (..block (representation body!))
             \n+
             (|> excepts
                 (list#each catch)
                 (text.interposed \n+)))))

  (with_template [<name> <keyword>]
    [(def .public <name>
       (-> Expression Statement)
       (|>> representation (format <keyword> " ") (text.suffix ..statement_suffix) abstraction))]

    [throw  "throw"]
    [return "return"]
    [echo   "echo"]
    )

  (def .public (define name value)
    (-> Constant Expression Expression)
    (..apply/2 (..constant "define")
               [(|> name representation ..string)
                value]))

  (def .public (define_function name arguments body!)
    (-> Constant (List Argument) Statement Statement)
    (abstraction
     (format "function " (representation name)
             (..parameters arguments)
             " "
             (..block (representation body!)))))

  (with_template [<name> <keyword>]
    [(def .public <name>
       Statement
       (|> <keyword>
           (text.suffix ..statement_suffix)
           abstraction))]

    [break "break"]
    [continue "continue"]
    )

  (def .public splat
    (-> Expression Expression)
    (|>> representation  (format "...") abstraction))
  )

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

(def .public command_line_arguments
  Var
  (..var "argv"))