aboutsummaryrefslogtreecommitdiff
path: root/lux-r/source/program.lux
blob: 183797d4f2a99c31f8de0d882349237079683721 (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
(.module:
  [lux #*
   [program (#+ program:)]
   ["." ffi]
   ["." debug]
   [abstract
    ["." monad (#+ do)]]
   [control
    [pipe (#+ exec> case> new>)]
    ["." try (#+ Try)]
    ["." exception (#+ exception:)]
    ["." io (#+ IO io)]
    [concurrency
     ["." promise (#+ Promise)]]]
   [data
    ["." maybe]
    ["." text ("#\." hash)
     ["%" format (#+ format)]
     [encoding
      ["." utf8]]]
    [collection
     ["." array (#+ Array)]]]
   [macro
    ["." template]]
   [math
    [number (#+ hex)
     ["n" nat]
     ["." i64]]]
   ["." world #_
    ["." file]
    ["#/." program]]
   ["@" target
    ["_" r]]
   [tool
    [compiler
     [phase (#+ Operation Phase)]
     [reference
      [variable (#+ Register)]]
     [language
      [lux
       [program (#+ Program)]
       [generation (#+ Context Host)]
       ["." synthesis]
       [analysis
        [macro (#+ Expander)]]
       [phase
        ["." extension (#+ Extender Handler)
         ["#/." bundle]
         ["." analysis #_
          ["#" r]]
         ["." generation #_
          ["#" r]]]
        [generation
         ["." reference]
         ["." r
          ["." runtime]]]]]]
     [default
      ["." platform (#+ Platform)]]
     [meta
      ["." packager #_
       ["#" script]]]]]]
  [program
   ["/" compositor
    ["#." cli]
    ["#." static]]])

(ffi.import: java/lang/String)

(ffi.import: (java/lang/Class a)
  ["#::."
   (#static forName [java/lang/String] #try (java/lang/Class java/lang/Object))])

(ffi.import: java/lang/Object
  ["#::."
   (toString [] java/lang/String)
   (getClass [] (java/lang/Class java/lang/Object))])

(ffi.import: java/lang/Long
  ["#::."
   (intValue [] java/lang/Integer)])

(ffi.import: java/lang/Integer
  ["#::."
   (longValue [] long)])

(ffi.import: java/lang/Number
  ["#::."
   (intValue [] java/lang/Integer)
   (longValue [] long)
   (doubleValue [] double)])

(ffi.import: javax/script/ScriptEngine
  ["#::."
   (eval [java/lang/String] #try java/lang/Object)])

(ffi.import: org/renjin/script/RenjinScriptEngine)

(ffi.import: org/renjin/script/RenjinScriptEngineFactory
  ["#::."
   (new [])
   (getScriptEngine [] org/renjin/script/RenjinScriptEngine)])

(template [<name>]
  [(exception: (<name> {object java/lang/Object})
     (exception.report
      ["Class" (java/lang/Object::toString (java/lang/Object::getClass object))]
      ["Object" (java/lang/Object::toString object)]))]

  [unknown_kind_of_object]
  [cannot_apply_a_non_function]
  )

## (def: host_bit
##   (-> Bit org/armedbear/lisp/LispObject)
##   (|>> (case> #0 (org/armedbear/lisp/Nil::NIL)
##               #1 (org/armedbear/lisp/Symbol::T))))

## (def: (host_value value)
##   (-> Any org/armedbear/lisp/LispObject)
##   (let [to_sub (: (-> Any org/armedbear/lisp/LispObject)
##                   (function (_ sub_value)
##                     (let [sub_value (:coerce java/lang/Object sub_value)]
##                       (`` (<| (~~ (template [<type> <then>]
##                                     [(case (ffi.check <type> sub_value)
##                                        (#.Some sub_value)
##                                        (`` (|> sub_value (~~ (template.splice <then>))))
##                                        #.None)]

##                                     [[java/lang/Object] [host_value]]
##                                     [java/lang/Boolean [..host_bit]]
##                                     [java/lang/Integer [java/lang/Integer::longValue org/armedbear/lisp/Fixnum::getInstance]]
##                                     [java/lang/Long [org/armedbear/lisp/Bignum::getInstance]]
##                                     [java/lang/Double [org/armedbear/lisp/DoubleFloat::new]]
##                                     [java/lang/String [org/armedbear/lisp/SimpleString::new]]
##                                     ))
##                               ## else
##                               (:coerce org/armedbear/lisp/LispObject sub_value))))))]
##     (`` (ffi.object [] org/armedbear/lisp/LispObject [program/LuxADT]
##           []
##           ## Methods
##           (program/LuxADT
##            [] (getValue self) java/lang/Object
##            (:coerce java/lang/Object value))

##           (org/armedbear/lisp/LispObject
##            [] (length self)
##            int
##            (|> value
##                (:coerce (Array java/lang/Object))
##                array.size
##                (:coerce java/lang/Long)
##                java/lang/Number::intValue))

##           (~~ (template [<name>]
##                 [(org/armedbear/lisp/LispObject
##                   [] (<name> self {idx int})
##                   org/armedbear/lisp/LispObject
##                   (case (array.read (|> idx java/lang/Integer::longValue (:coerce Nat))
##                                     (:coerce (Array java/lang/Object) value))
##                     (#.Some sub)
##                     (to_sub sub)

##                     #.None
##                     (org/armedbear/lisp/Nil::NIL)))]

##                 [NTH] [SVREF] [elt]
##                 ))
##           ))))

(type: (Reader a)
  (-> a (Try Any)))

## (def: (read_variant read host_object)
##   (-> (Reader org/armedbear/lisp/LispObject) (Reader org/armedbear/lisp/Cons))
##   (do try.monad
##     [tag (read (org/armedbear/lisp/LispObject::NTH +0 host_object))
##      value (read (org/armedbear/lisp/LispObject::NTH +2 host_object))]
##     (wrap [(java/lang/Long::intValue (:coerce java/lang/Long tag))
##            (case (ffi.check org/armedbear/lisp/Nil (org/armedbear/lisp/LispObject::NTH +1 host_object))
##              (#.Some _)
##              (: Any (ffi.null))

##              _
##              (: Any synthesis.unit))
##            value])))

## (def: (read_tuple read host_object)
##   (-> (Reader org/armedbear/lisp/LispObject) (Reader org/armedbear/lisp/SimpleVector))
##   (let [size (.nat (org/armedbear/lisp/LispObject::length host_object))]
##     (loop [idx 0
##            output (:coerce (Array Any) (array.new size))]
##       (if (n.< size idx)
##         ## TODO: Start using "SVREF" instead of "elt" ASAP
##         (case (read (org/armedbear/lisp/LispObject::elt (.int idx) host_object))
##           (#try.Failure error)
##           (#try.Failure error)

##           (#try.Success member)
##           (recur (inc idx) (array.write! idx (:coerce Any member) output)))
##         (#try.Success output)))))

(def: (read host_object)
  (Reader java/lang/Object)
  (`` (<| ## (~~ (template [<class> <post_processing>]
       ##       [(case (ffi.check <class> host_object)
       ##          (#.Some host_object)
       ##          (`` (|> host_object (~~ (template.splice <post_processing>))))

       ##          #.None)]

       ##       [org/armedbear/lisp/Bignum [org/armedbear/lisp/Bignum::longValue #try.Success]]
       ##       [org/armedbear/lisp/Fixnum [org/armedbear/lisp/Fixnum::longValue #try.Success]]
       ##       [org/armedbear/lisp/DoubleFloat [org/armedbear/lisp/DoubleFloat::doubleValue #try.Success]]
       ##       [org/armedbear/lisp/SimpleString [org/armedbear/lisp/SimpleString::getStringValue #try.Success]]
       ##       [org/armedbear/lisp/Cons [(read_variant read)]]
       ##       [org/armedbear/lisp/SimpleVector [(read_tuple read)]]
       ##       [org/armedbear/lisp/Nil [(new> (#try.Success false) [])]]
       ##       [org/armedbear/lisp/Closure [#try.Success]]
       ##       [program/LuxADT [program/LuxADT::getValue #try.Success]]))
       ## (case (ffi.check org/armedbear/lisp/Symbol host_object)
       ##   (#.Some host_object)
       ##   (if (is? (org/armedbear/lisp/Symbol::T) host_object)
       ##     (#try.Success true)
       ##     (exception.throw ..unknown_kind_of_object [host_object]))

       ##   #.None)
       ## else
       (exception.throw ..unknown_kind_of_object [host_object])
       )))

## (def: ensure_macro
##   (-> Macro (Maybe org/armedbear/lisp/Closure))
##   (|>> (:coerce java/lang/Object) (ffi.check org/armedbear/lisp/Closure)))

## (def: (call_macro inputs lux macro)
##   (-> (List Code) Lux org/armedbear/lisp/Closure (Try (Try [Lux (List Code)])))
##   (do try.monad
##     [raw_output (org/armedbear/lisp/LispObject::execute (..host_value inputs) (..host_value lux) macro)]
##     (:coerce (Try (Try [Lux (List Code)]))
##              (..read raw_output))))

(def: (expander macro inputs lux)
  Expander
  ## (case (ensure_macro macro)
  ##   (#.Some macro)
  ##   (call_macro inputs lux macro)

  ##   #.None
  ##   (exception.throw ..cannot_apply_a_non_function (:coerce java/lang/Object macro)))
  (exception.throw ..cannot_apply_a_non_function (:coerce java/lang/Object macro)))

(def: host
  (IO (Host _.Expression _.Expression))
  (io (let [interpreter (|> (org/renjin/script/RenjinScriptEngineFactory::new)
                            org/renjin/script/RenjinScriptEngineFactory::getScriptEngine)
            run! (: (-> (_.Code Any) (Try Any))
                    (function (_ code)
                      (do try.monad
                        [host_value (javax/script/ScriptEngine::eval (_.code code) interpreter)]
                        (read host_value))))]
        (: (Host _.Expression _.Expression)
           (structure
            (def: (evaluate! context code)
              (run! code))
            
            (def: (execute! input)
              (javax/script/ScriptEngine::eval (_.code input) interpreter))
            
            (def: (define! context input)
              (let [global (reference.artifact context)
                    $global (_.var global)]
                (do try.monad
                  [#let [definition (_.set! $global input)]
                   _ (javax/script/ScriptEngine::eval (_.code definition) interpreter)
                   value (run! $global)]
                  (wrap [global value definition]))))

            (def: (ingest context content)
              (|> content (\ utf8.codec decode) try.assume (:coerce _.Expression)))

            (def: (re_learn context content)
              (run! content))
            
            (def: (re_load context content)
              (do try.monad
                [_ (run! content)]
                (run! (_.var (reference.artifact context)))))
            )))))

(def: platform
  (IO (Platform _.SVar _.Expression _.Expression))
  (do io.monad
    [host ..host]
    (wrap {#platform.&file_system (file.async file.default)
           #platform.host host
           #platform.phase r.generate
           #platform.runtime runtime.generate
           #platform.write (|>> _.code (\ utf8.codec encode))})))

(def: (program context program)
  (Program _.Expression _.Expression)
  (_.apply/2 program [(runtime.lux::program_args (_.commandArgs/0 [])) _.null]))

(for {@.old
      (def: extender
        Extender
        ## TODO: Stop relying on coercions ASAP.
        (<| (:coerce Extender)
            (function (@self handler))
            (:coerce Handler)
            (function (@self name phase))
            (:coerce Phase)
            (function (@self archive parameters))
            (:coerce Operation)
            (function (@self state))
            (:coerce Try)
            try.assume
            (:coerce Try)
            (exec
              ("lux io log" "TODO: Extender")
              (#try.Failure "TODO: Extender"))))

      @.r
      (def: (extender handler)
        Extender
        (:assume handler))})

(def: (declare_success! _)
  (-> Any (Promise Any))
  (promise.future (\ world/program.default exit +0)))

(def: (scope body)
  (-> _.Expression _.Expression)
  (let [$program (_.var "lux_program")]
    ($_ _.then
        (_.set! $program (_.function (list) body))
        (_.apply/0 $program [])
        )))

(`` (program: [{service /cli.service}]
      (let [extension ".r"]
        (do io.monad
          [platform ..platform]
          (exec (do promise.monad
                  [_ (/.compiler {#/static.host @.r
                                  #/static.host_module_extension extension
                                  #/static.target (/cli.target service)
                                  #/static.artifact_extension extension}
                                 ..expander
                                 analysis.bundle
                                 (io.io platform)
                                 generation.bundle
                                 extension/bundle.empty
                                 ..program
                                 [_.SVar _.Expression _.Expression]
                                 ..extender
                                 service
                                 [(packager.package (_.manual "")
                                                    _.code
                                                    _.then
                                                    ..scope)
                                  (format (/cli.target service)
                                          (\ file.default separator)
                                          "program"
                                          extension)])]
                  (..declare_success! []))
            (io.io []))))))