aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/js.lux
blob: e0278ceeb4ece4784ba4d93b88c348049e1474e8 (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:
  lux
  (lux (control ["ex" exception #+ exception:]
                pipe)
       (data [bit]
             [maybe]
             ["e" error #+ Error]
             [text "text/" Eq<Text>]
             text/format
             (coll [array]))
       [macro]
       [io #+ Process]
       [host #+ class: object]
       (world [file #+ File]))
  (luxc [lang]
        [".C" io]))

(type: #export JS Text)

(type: #export Expression JS)

(type: #export Statement JS)

(host.import java/lang/Object
  (toString [] String))

(host.import java/lang/String
  (getBytes [String] #try (Array byte)))

(host.import java/lang/Number
  (doubleValue [] double))

(host.import java/lang/Integer
  (longValue [] Long))

(host.import java/lang/Long
  (intValue [] Integer))

(host.import java/lang/AbstractStringBuilder
  (append [String] AbstractStringBuilder))

(host.import java/lang/StringBuilder
  (new [])
  (toString [] String))

(host.import javax/script/ScriptEngine
  (eval [String] #try #? Object))

(host.import javax/script/ScriptEngineFactory
  (getScriptEngine [] ScriptEngine))

(host.import jdk/nashorn/api/scripting/NashornScriptEngineFactory
  (new []))

(host.import jdk/nashorn/api/scripting/NashornScriptEngine)

(host.import jdk/nashorn/api/scripting/JSObject
  (isArray [] boolean)
  (isFunction [] boolean)
  (getMember [String] #? Object)
  (hasMember [String] boolean))

(host.import jdk/nashorn/api/scripting/AbstractJSObject)

(host.import jdk/nashorn/api/scripting/ScriptObjectMirror)

(host.import jdk/nashorn/internal/runtime/Undefined)

(host.import java/util/Arrays
  (#static [t] copyOfRange [(Array t) int int] (Array t)))

(type: #export Host
  {## #artifacts Artifacts
   ## #context [Text Nat]

   #interpreter ScriptEngine
   #module-buffer (Maybe StringBuilder)
   #program-buffer StringBuilder
   })

(def: #export (init _)
  (-> Top Host)
  {#interpreter (ScriptEngineFactory::getScriptEngine [] (NashornScriptEngineFactory::new []))
   #module-buffer #.None
   #program-buffer (StringBuilder::new [])})

(def: #export module-js-name Text "module.js")

(def: #export (init-module-buffer _)
  (-> Top (Meta Unit))
  (function [compiler]
    (#e.Success [(update@ #.host
                          (|>> (:! Host)
                               (set@ #module-buffer (#.Some (StringBuilder::new [])))
                               (:! Void))
                          compiler)
                 []])))

(exception: #export No-Active-Module-Buffer)
(exception: #export Cannot-Execute)
(exception: #export Cannot-Evaluate)

(def: #export module-buffer
  (Meta StringBuilder)
  (function [compiler]
    (case (|> compiler (get@ #.host) (:! Host) (get@ #module-buffer))
      #.None
      ((lang.fail (No-Active-Module-Buffer "")) compiler)
      
      (#.Some module-buffer)
      (#e.Success [compiler module-buffer]))))

(def: #export program-buffer
  (Meta StringBuilder)
  (function [compiler]
    (#e.Success [compiler (|> compiler (get@ #.host) (:! Host) (get@ #program-buffer))])))

(def: (execute code)
  (-> Expression (Meta Unit))
  (function [compiler]
    (case (|> compiler
              (get@ #.host)
              (:! Host)
              (get@ #interpreter)
              (ScriptEngine::eval [code]))
      (#e.Error error)
      ((lang.fail (Cannot-Execute error)) compiler)
      
      (#e.Success _)
      (#e.Success [compiler []]))))

(def: (::toString js-object)
  (-> Top JSObject)
  (object [] AbstractJSObject []
    []
    (AbstractJSObject (isFunction) boolean
                      true)
    (AbstractJSObject (call [args (Array Object)]) Object
                      (Object::toString [] (:! Object js-object)))
    ))

(def: (::slice js-object value)
  (-> (-> Object JSObject) (Array Object) JSObject)
  (object [] AbstractJSObject []
    []
    (AbstractJSObject (isFunction) boolean
                      true)
    (AbstractJSObject (call [args (Array Object)]) Object
                      (:! Object
                          (js-object (Arrays::copyOfRange [value
                                                           (|> args (array.read +0) maybe.assume (:! Int))
                                                           (nat-to-int (array.size value))]))))
    ))

(exception: #export Unknown-Member)

(def: int-high-field Text "H")
(def: int-low-field Text "L")

(def: jvm-int
  (-> Nat Integer)
  (|>> (:! Long) (Long::intValue [])))

(def: low-mask
  Nat
  (|> +1 (bit.shift-left +32) n/dec))

(def: high (-> Nat Nat) (bit.shift-right +32))
(def: low (-> Nat Nat) (bit.and low-mask))

(class: #final LuxInt AbstractJSObject []
  ## Fields
  (#public value Long)
  ## Methods
  (#public [] (new [value Long]) []
           (exec (:= ::value value)
             []))
  (AbstractJSObject [] (getMember [member String]) Object
                    (cond (text/= int-high-field member)
                          (|> ::value int-to-nat high jvm-int)
                          
                          (text/= int-low-field member)
                          (|> ::value int-to-nat low jvm-int)
                          
                          ## else
                          (error! (Unknown-Member (format "     member = " member "\n"
                                                          "object(int) = " (%i ::value) "\n"))))))

(host.import luxc/lang/translation/js/LuxInt
  (value Long)
  (new [Long]))

(class: #final LuxArray AbstractJSObject []
  ## Fields
  (#public structure (Array Object))
  ## Methods
  (#public [] (new [structure (Array Object)]) []
           (exec (:= ::structure structure)
             []))
  (AbstractJSObject [] (isArray) boolean
                    true)
  (AbstractJSObject [] (getMember [member String]) Object
                    (cond (text/= "toString" member)
                          (:! Object
                              (::toString ::structure))
                          
                          (text/= "length" member)
                          (jvm-int (array.size ::structure))
                          
                          (text/= "slice" member)
                          (let [js-object (: (-> Object JSObject)
                                             (|>> (cond> [(host.instance? (Array Object))]
                                                         [(:! (Array Object)) [] ::new!]

                                                         [(host.instance? Long)]
                                                         [(:! Long) [] LuxInt::new]

                                                         ## else
                                                         [(:! JSObject)])))]
                            (:! Object
                                (::slice js-object ::structure)))
                          
                          ## else
                          (error! (Unknown-Member (format "           member = " (:! Text member) "\n"
                                                          "object(structure) = " (Object::toString [] (:! Object ::structure)) "\n")))))
  (AbstractJSObject [] (getSlot [idx int]) Object
                    (|> ::structure
                        (array.read (|> idx (Integer::longValue []) (:! Nat)))
                        maybe.assume
                        (cond> [(host.instance? (Array Object))]
                               [(:! (Array Object)) [] ::new!]

                               [(host.instance? Long)]
                               [(:! Long) [] LuxInt::new]

                               ## else
                               [(:! JSObject)])))
  )

(host.import luxc/lang/translation/js/LuxArray
  (structure (Array Object))
  (new [(Array Object)]))

## (def: (wrap-lux-object object)
##   (-> Top JSObject)
##   (if (host.instance? JSObject object)
##     (lux-obj object)
##     obj))

(def: (int js-object)
  (-> JSObject (Maybe Int))
  (case [(JSObject::getMember [int-high-field] js-object)
         (JSObject::getMember [int-low-field] js-object)]
    (^multi [(#.Some high) (#.Some low)]
            (and (host.instance? Number high)
                 (host.instance? Number low))
            [[(Number::longValue [] high) (Number::longValue [] low)]
             [high low]])
    (#.Some (nat-to-int (n/+ (-> high (:! Int) int-to-nat (bit.shift-left +32))
                             (-> low (:! Int) int-to-nat))))

    _
    #.None))

(def: (extend-array by input)
  (All [a] (-> Nat (Array a) (Array a)))
  (let [size (array.size input)]
    (|> (array.new (n/+ by size))
        (array.copy size +0 input +0))))

(def: (array js-object)
  (-> ScriptObjectMirror (Maybe (Array Object)))
  (if (JSObject::isArray [] js-object)
    (#.Some (loop [num-keys (ScriptObjectMirror::size js-object)
                   idx +0
                   output (: (Array Object)
                             (array.new num-keys))]
              (if (n/< num-keys idx)
                (let [idx-key (|> idx nat-to-int %i)]
                  (case (JSObject::getMember idx-key js-object)
                    (#.Some member)
                    (recur num-keys
                           (n/inc idx)
                           (array.write idx output member))
                    
                    #.None
                    (recur (n/inc num-keys)
                           (n/inc idx)
                           (extend-array +1 output))))
                output)))
    #.None))

(exception: #export Unknown-Kind-Of-JS-Object)
(exception: #export Null-Has-No-Lux-Representation)

(def: (lux-object js-object)
  (-> Object (Error Top))
  (cond (host.null? js-object)
        (ex.throw Null-Has-No-Lux-Representation "")
        
        (host.instance? java.lang.Integer js-object)
        (ex.return (Integer::longValue [] js-object))

        (or (host.instance? java.lang.Boolean js-object)
            (host.instance? java.lang.String js-object))
        (ex.return js-object)

        (host.instance? java.lang.Number js-object)
        (ex.return (Number::doubleValue [] (:! java.lang.Number js-object)))

        (host.instance? LuxArray js-object)
        (ex.return (LuxArray::structure [] (:! LuxArray js-object)))

        (host.instance? LuxInt js-object)
        (ex.return (LuxInt::value [] (:! LuxInt js-object)))

        (host.instance? JSObject js-object)
        (let [js-object (:! JSObject js-object)]
          (case (int js-object)
            (#.Some value)
            (ex.return value)

            #.None
            (case (array lux-object js-object)
              (#.Some value)
              (ex.return value)

              #.None
              ## (JSObject::isFunction [] js-object)
              ## js-object

              ## else
              (ex.throw Unknown-Kind-Of-JS-Object (Object::toString [] (:! Object js-object))))))
        
        ## else
        (ex.throw Unknown-Kind-Of-JS-Object (Object::toString [] (:! Object js-object)))))

(def: #export (eval code)
  (-> Expression (Meta Top))
  (function [compiler]
    (case (|> compiler
              (:! Host)
              (get@ #interpreter)
              (ScriptEngine::eval [code]))
      (#e.Error error)
      ((lang.fail (Cannot-Evaluate error)) compiler)
      
      (#e.Success output)
      (#e.Success [compiler (case output
                              #.None
                              []

                              (#.Some output)
                              (js-to-lux output))]))))

(def: #export unit Text "\u0000")

(def: (module-name module)
  (-> Text Text)
  (-> module
      (text.replace-all "/" "$")
      (text.replace-all "-" "_")))

(def: (definition-name [module name])
  (-> Ident Text)
  (format (module-name module) "$" (&host/def-name name)))

(def: #export (save-definition name code)
  (-> Ident Expression (Meta Unit))
  (do macro.Monad<Meta>
    [#let [js-definition (format "var " (definition-name name) " = " code ";\n")]
     module-buffer module-buffer
     #let [_ (StringBuilder::append [js-definition] module-buffer)]]
    (execute js-definition)))

(def: #export (save-module! target)
  (-> File (Meta (Process Unit)))
  (do macro.Monad<Meta>
    [module macro.current-module-name
     module-buffer module-buffer
     program-buffer program-buffer
     #let [_ (StringBuilder::append [(format module-buffer "\n")] program-buffer)]]
    (wrap (ioC.write target
                     (format module "/" module-js-name)
                     (|> module-buffer
                         (StringBuilder::toString [])
                         (String::getBytes ["UTF-8"])
                         e.assume)))))