aboutsummaryrefslogtreecommitdiff
path: root/lux-python
diff options
context:
space:
mode:
authorEduardo Julian2021-07-08 23:59:00 -0400
committerEduardo Julian2021-07-08 23:59:00 -0400
commitf3e869d0246e956399ec31a074c6c6299ff73602 (patch)
treeba67c7713bbe4ec48232f58a4b324bd364111f95 /lux-python
parent2b909032e7a0bd10cd7db52067d2fb701bfa95e5 (diff)
Made sure the "phase" parameter of extensions is always usable (even across language boundaries)
Diffstat (limited to 'lux-python')
-rw-r--r--lux-python/source/program.lux190
1 files changed, 111 insertions, 79 deletions
diff --git a/lux-python/source/program.lux b/lux-python/source/program.lux
index c014e8386..e1e3e48a3 100644
--- a/lux-python/source/program.lux
+++ b/lux-python/source/program.lux
@@ -9,6 +9,7 @@
["." try (#+ Try)]
["." exception (#+ exception:)]
["." io (#+ IO io)]
+ ["." function]
[concurrency
["." promise (#+ Promise)]]]
[data
@@ -18,7 +19,8 @@
[encoding
["." utf8]]]
[collection
- ["." array (#+ Array)]]]
+ ["." array (#+ Array)]
+ ["." list]]]
[macro
["." template]]
[math
@@ -32,7 +34,7 @@
["_" python]]
[tool
[compiler
- [phase (#+ Operation Phase)]
+ ["." phase (#+ Operation Phase)]
[reference
[variable (#+ Register)]]
[language
@@ -43,7 +45,7 @@
[analysis
[macro (#+ Expander)]]
[phase
- ["." extension (#+ Bundle Extender Handler)
+ ["." extension (#+ Extender Handler)
["#/." bundle]
["." analysis #_
["#" python]]
@@ -56,6 +58,7 @@
[default
["." platform (#+ Platform)]]
[meta
+ [archive (#+ Archive)]
["." packager #_
["#" script]]]]]]
[program
@@ -334,97 +337,95 @@
[_ (execute! content)]
(evaluate! context (_.var (reference.artifact context)))))))))))})
-(def: platform
- (IO (Platform Register (_.Expression Any) (_.Statement Any)))
- (do io.monad
- [host ..host]
- (wrap {#platform.&file_system (file.async file.default)
- #platform.host host
- #platform.phase python.generate
- #platform.runtime runtime.generate
- #platform.write (|>> _.code (\ utf8.codec encode))})))
-
-(def: (program context program)
- (Program (_.Expression Any) (_.Statement Any))
- ($_ _.then
- (_.import "sys")
- (_.when (_.= (_.string "__main__") (_.var "__name__"))
- (_.statement (_.apply/2 program
- (|> (_.var "sys") (_.the "argv")
- ## The first entry in the list will be the program.py file itself
- ## so, it must be removed so only the program's arguments are left.
- (_.slice_from (_.int +1))
- runtime.lux::program_args)
- _.none)))))
-
(for {@.old
- (as_is (exception: #export (cannot_parse_phase_inputs {arity Nat})
+ (as_is (exception: #export (invaid_phase_application {partial_application (List Any)}
+ {arity Nat})
(exception.report
+ ["Partial Application" (%.nat (list.size partial_application))]
["Arity" (%.nat arity)]))
- (def: (host_phase phase)
+ (def: (host_phase partial_application phase)
(All [s i o]
- (-> (Phase [Bundle s] i o)
+ (-> (List Any) (Phase [extension.Bundle s] i o)
org/python/core/PyObject))
(ffi.object [] org/python/core/PyObject []
[]
## Methods
(org/python/core/PyObject
[] (__call__ self
- {_ org/python/core/ThreadState}
- {input/0 org/python/core/PyObject})
+ {inputs [org/python/core/PyObject]}
+ {keywords [java/lang/String]})
org/python/core/PyObject
- (case [(..read input/0)]
- [(#try.Success input/0)]
- (host_phase (:assume ((:coerce (-> Nat Nat Nat []) phase)
- (:coerce Nat input/0))))
-
- _
- (error! (exception.construct ..cannot_parse_phase_inputs [1]))))
-
- (org/python/core/PyObject
- [] (__call__ self
- {_ org/python/core/ThreadState}
- {input/0 org/python/core/PyObject}
- {input/1 org/python/core/PyObject})
- org/python/core/PyObject
- (case [(..read input/0) (..read input/1)]
- [(#try.Success input/0) (#try.Success input/1)]
- (host_phase (:assume ((:coerce (-> Nat Nat Nat []) phase)
- (:coerce Nat input/0)
- (:coerce Nat input/1))))
-
- _
- (error! (exception.construct ..cannot_parse_phase_inputs [2]))))
+ (try.assume
+ (case (array.to_list inputs)
+ (^ (list))
+ (\ try.monad wrap (host_phase (list) phase))
+
+ (^ (list input/0))
+ (do try.monad
+ [input/0 (..read input/0)]
+ (case partial_application
+ (^ (list partial/0 partial/1))
+ (wrap (..to_host ((:coerce (-> Any Any Any Any) phase)
+ partial/0
+ partial/1
+ input/0)))
+
+ (^ (list partial/0))
+ (wrap (host_phase (list partial/0 input/0) phase))
+
+ (^ (list))
+ (wrap (host_phase (list input/0) phase))
+
+ _
+ (exception.throw ..invaid_phase_application [partial_application (array.size inputs)])))
+
+ (^ (list input/0 input/1))
+ (do try.monad
+ [input/0 (..read input/0)
+ input/1 (..read input/1)]
+ (case partial_application
+ (^ (list partial/0))
+ (wrap (..to_host ((:coerce (-> Any Any Any Any) phase)
+ partial/0
+ input/0
+ input/1)))
+
+ (^ (list))
+ (wrap (host_phase (list input/0 input/1) phase))
+
+ _
+ (exception.throw ..invaid_phase_application [partial_application (array.size inputs)])))
+
+ (^ (list input/0 input/1 input/2))
+ (do try.monad
+ [input/0 (..read input/0)
+ input/1 (..read input/1)
+ input/2 (..read input/2)]
+ (case partial_application
+ (^ (list))
+ (wrap (..to_host ((:coerce (-> Any Any Any Any) phase)
+ input/0
+ input/1
+ input/2)))
+
+ _
+ (exception.throw ..invaid_phase_application [partial_application (array.size inputs)])))
- (org/python/core/PyObject
- [] (__call__ self
- {_ org/python/core/ThreadState}
- {input/0 org/python/core/PyObject}
- {input/1 org/python/core/PyObject}
- {input/2 org/python/core/PyObject})
- org/python/core/PyObject
- (case [(..read input/0) (..read input/1) (..read input/2)]
- [(#try.Success input/0) (#try.Success input/1) (#try.Success input/2)]
- (..to_host ((:coerce (-> Nat Nat Nat []) phase)
- (:coerce Nat input/0)
- (:coerce Nat input/1)
- (:coerce Nat input/2)))
-
- _
- (error! (exception.construct ..cannot_parse_phase_inputs [3]))))))
+ _
+ (exception.throw ..invaid_phase_application [partial_application (array.size inputs)]))))))
- (def: extender
- Extender
+ (def: (extender phase_wrapper)
+ (-> platform.Phase_Wrapper Extender)
## TODO: Stop relying on coercions ASAP.
(<| (:coerce Extender)
- (function (@self handler))
+ (function (_ handler))
(:coerce Handler)
- (function (@self name phase))
+ (function (_ name phase))
(:coerce Phase)
- (function (@self archive parameters))
+ (function (_ archive parameters))
(:coerce Operation)
- (function (@self state))
+ (function (_ state))
(:coerce Try)
try.assume
(:coerce Try)
@@ -432,7 +433,7 @@
[handler (try.from_maybe (..ensure_function handler))
output (org/python/core/PyFunction::__call__ (|> (ffi.array org/python/core/PyObject 5)
(ffi.array_write 0 (org/python/core/PyString::new name))
- (ffi.array_write 1 (..host_phase phase))
+ (ffi.array_write 1 (:coerce org/python/core/PyObject (phase_wrapper phase)))
(ffi.array_write 2 (..to_host archive))
(ffi.array_write 3 (..to_host parameters))
(ffi.array_write 4 (..to_host state)))
@@ -440,10 +441,41 @@
(..read output)))))
@.python
- (def: (extender handler)
- Extender
+ (def: (extender phase_wrapper handler)
+ (-> platform.Phase_Wrapper Extender)
(:assume handler))})
+(def: (phase_wrapper archive)
+ (-> Archive (runtime.Operation platform.Phase_Wrapper))
+ (do phase.monad
+ []
+ (wrap (:coerce platform.Phase_Wrapper
+ (..host_phase (list))))))
+
+(def: platform
+ (IO (Platform Register (_.Expression Any) (_.Statement Any)))
+ (do io.monad
+ [host ..host]
+ (wrap {#platform.&file_system (file.async file.default)
+ #platform.host host
+ #platform.phase python.generate
+ #platform.runtime runtime.generate
+ #platform.phase_wrapper ..phase_wrapper
+ #platform.write (|>> _.code (\ utf8.codec encode))})))
+
+(def: (program context program)
+ (Program (_.Expression Any) (_.Statement Any))
+ ($_ _.then
+ (_.import "sys")
+ (_.when (_.= (_.string "__main__") (_.var "__name__"))
+ (_.statement (_.apply/2 program
+ (|> (_.var "sys") (_.the "argv")
+ ## The first entry in the list will be the program.py file itself
+ ## so, it must be removed so only the program's arguments are left.
+ (_.slice_from (_.int +1))
+ runtime.lux::program_args)
+ _.none)))))
+
(def: (declare_success! _)
(-> Any (Promise Any))
(promise.future (\ world/program.default exit +0)))
@@ -472,7 +504,7 @@
analysis.bundle
..platform
generation.bundle
- extension/bundle.empty
+ (function.constant extension/bundle.empty)
..program
[Register
(type (_.Expression Any))