diff options
author | Eduardo Julian | 2023-01-21 19:12:00 -0400 |
---|---|---|
committer | Eduardo Julian | 2023-01-21 19:12:00 -0400 |
commit | 4ec923fe46f66ba8731fc4b7334e724d63dec73e (patch) | |
tree | 8b60788689aaa09906614b02132b735d443bbba4 | |
parent | 670438b982bbe0b662b0a65958dc4f8b289d3906 (diff) |
Can now extract values from the C++ interpreter for evaluation.
17 files changed, 634 insertions, 140 deletions
diff --git a/lux-c++/source/program.lux b/lux-c++/source/program.lux index 6261269f5..3f734b572 100644 --- a/lux-c++/source/program.lux +++ b/lux-c++/source/program.lux @@ -7,7 +7,6 @@ [lux (.except) [program (.only program)] ["[0]" ffi (.only import)] - ["[0]" debug] [abstract [monad (.only do)]] [control @@ -16,7 +15,8 @@ ["[0]" exception (.only Exception)] ["[0]" io (.only IO io)] [concurrency - ["[0]" async (.only Async)]]] + ["[0]" async (.only Async)] + ["[0]" atom]]] [data ["[0]" product] ["[0]" text (.only) @@ -24,7 +24,8 @@ [encoding ["[0]" utf8]]] [collection - ["[0]" array (.only Array)]]] + ["[0]" array + ["[1]" \\unsafe (.only Array)]]]] [math [number ["n" nat] @@ -34,6 +35,7 @@ ["[0]" file] ["[0]" environment]] [meta + ["[0]" static] [macro ["^" pattern] ["[0]" template]] @@ -60,7 +62,6 @@ ["[0]" reference] ["/" c++ (.only) ["[1][0]" runtime] - ["[1][0]" type] ["[1][0]" primitive] ["[1][0]" reference]]]]]] [default @@ -69,36 +70,148 @@ ["[0]" cli] ["[0]" context] [archive (.only Archive) - ["[0]" unit]] + ["[0]" unit] + ["[0]" module]] ["[0]" packager ["[1]" script]]]]]]] [program ["[0]" compositor]]) +(type Globals + Any) + (import cppyy "[1]::[0]" ("static" cppdef [Text] "io" Bit) - ("static" gbl (ffi.Object Any))) + ("static" gbl Globals)) + +(ffi.import (getattr [Any Text] Any)) + +(ffi.import (tuple [(Array Any)] Any)) -(ffi.import (getattr [(ffi.Object Any) Text] Any)) +(ffi.import (str [Any] Text)) (def nested (-> Text Text) - (text.replaced text.\n (%.format text.\n text.\t))) + (let [\n\t (%.format text.\n text.\t)] + (|>> (text.replaced text.\n \n\t) + (%.format text.\t)))) + +(def module + module.ID + (-- 0)) + +(type Runtime + Any) + +(type Value + Any) + +(def (runtime globals) + (-> Any + Runtime) + (getattr globals /runtime.namespace)) + +(with_template [<short> <type>] + [(def (<short> @ it) + (-> Runtime Any + <type>) + (let [on (as (-> Any + <type>) + (getattr @ (template.symbol [/runtime._] [<short>])))] + (on it)))] + + [object_tag Nat] + [lux_bit Bit] + [lux_i64 Int] + [lux_text Text] + + [variant_lefts Nat] + [variant_right? Bit] + [variant_choice Value] + + [tuple_arity Nat] + ) + +(def (lux_variant lefts right? choice) + (-> Nat Bit Value + Any) + (|> (array.empty 3) + (array.has! 0 lefts) + (array.has! 1 (if right? + [] + (.python_object_none#))) + (array.has! 2 choice) + ..tuple)) + +(def (tuple_member @ member it) + (-> Runtime Nat Any + Value) + (let [on (as (-> Nat Any + Value) + (getattr @ /runtime.tuple_member))] + (on member it))) + +(def (lux_tuple @ lux_value input) + (-> Runtime (-> Runtime Any Value) Any + Any) + (let [arity (tuple_arity @ input)] + (loop (next [member 0 + output (array.empty arity)]) + (if (n.< arity member) + (next (++ member) + (array.has! member (lux_value @ (tuple_member @ member input)) + output)) + output)))) + +(def (lux_value @ it) + (-> Runtime Value + Any) + (when (object_tag @ it) + /runtime.bit_tag + (lux_bit @ it) + + /runtime.i64_tag + (lux_i64 @ it) + + ... /runtime.f64_tag + + /runtime.text_tag + (..str (lux_text @ it)) + + /runtime.variant_tag + (lux_variant (variant_lefts @ it) + (variant_right? @ it) + (lux_value @ (variant_choice @ it))) + + /runtime.tuple_tag + (lux_tuple @ lux_value it) + + ... /runtime.function_tag + + tag + (panic! (when tag + 2 "F64" + 6 "FUNCTION" + _ "???")))) (def host (IO (Host /runtime.Value /runtime.Declaration)) - (io (let [\n\t (%.format text.\n text.\t) - evaluate! (is (-> unit.ID [(Maybe unit.ID) /runtime.Value] (Try Any)) - (function (evaluate! context [_ input]) - (let [global (reference.artifact context) - definition (_.constant (_.local global) /type.value input)] + (io (let [id (atom.atom 0) + \n\t (%.format text.\n text.\t) + evaluate! (is (-> [(Maybe unit.ID) /runtime.Value] (Try Any)) + (function (evaluate! [_ input]) + (let [[id _] (io.run! (atom.update! ++ id)) + global (reference.artifact [..module id]) + definition (_.constant (_.local global) /runtime.value_type input)] (exec (.log!# "[evaluate!]") (.log!# (..nested (_.code definition))) (if (io.run! (cppyy::cppdef (_.code definition))) - {try.#Success (getattr (io.run! (cppyy::gbl)) global)} + {try.#Success (let [globals (io.run! (cppyy::gbl))] + (lux_value (..runtime globals) + (getattr globals global)))} {try.#Failure "Cannot evaluate!"}))))) execute! (is (-> /runtime.Declaration (Try Any)) @@ -118,9 +231,11 @@ custom) @global (_.local global)] (do try.monad - [.let [definition (_.constant @global /type.value input)] + [.let [definition (_.constant @global /runtime.value_type input)] _ (execute! definition) - .let [value (getattr (io.run! (cppyy::gbl)) global)]] + .let [globals (io.run! (cppyy::gbl)) + value (lux_value (..runtime globals) + (getattr globals global))]] (in [global value definition])))) (def (ingest context content) @@ -135,7 +250,7 @@ (def (re_load context custom content) (do try.monad [_ (execute! content)] - (evaluate! context [{.#None} (_.local (reference.artifact context))])))))))) + (evaluate! [{.#None} (_.local (reference.artifact context))])))))))) (def phase_wrapper phase.Wrapper diff --git a/stdlib/source/library/lux/math/number/ratio.lux b/stdlib/source/library/lux/math/number/ratio.lux index 9fafc9911..15135ceb7 100644 --- a/stdlib/source/library/lux/math/number/ratio.lux +++ b/stdlib/source/library/lux/math/number/ratio.lux @@ -56,10 +56,10 @@ (def .public (= parameter subject) (-> Ratio Ratio Bit) - (and (n.= (the #numerator parameter) - (the #numerator subject)) - (n.= (the #denominator parameter) - (the #denominator subject)))) + (n.= (n.* (the #numerator parameter) + (the #denominator subject)) + (n.* (the #denominator parameter) + (the #numerator subject)))) (def .public equivalence (Equivalence Ratio) diff --git a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/primitive.lux b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/primitive.lux index 6b45145c1..b4c7a811c 100644 --- a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/primitive.lux +++ b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/primitive.lux @@ -16,7 +16,7 @@ (-> Bit _.Expression) (|>> _.bool - (runtime.simple type.bit))) + (runtime.simple runtime.Bit))) (def .public i64 (-> (I64 Any) @@ -24,16 +24,16 @@ (|>> .int _.int _.int64_t - (runtime.simple type.i64))) + (runtime.simple runtime.I64))) (def .public f64 (-> Frac _.Expression) (|>> _.double - (runtime.simple type.f64))) + (runtime.simple runtime.F64))) (def .public text (-> Text _.Expression) (|>> _.u32_string - (runtime.simple type.text))) + (runtime.simple runtime.Text))) diff --git a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/runtime.lux b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/runtime.lux index 47719dab3..aff1774a1 100644 --- a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/runtime.lux +++ b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/runtime.lux @@ -3,7 +3,8 @@ (.require [library - [lux (.except Declaration) + [lux (.except Type Declaration + Bit I64 F64 Text Variant Tuple) [abstract ["[0]" monad (.only do)]] [data @@ -33,6 +34,7 @@ [meta [archive (.only Output Archive) ["[0]" registry (.only Registry)] + ["[0]" artifact] ["[0]" unit]]]]]) (type .public Anchor @@ -61,13 +63,6 @@ (-> Phase Archive (it synthesis.Term) (Operation Value))) -(def .public (host_value of it) - (-> _.Type _.Expression - _.Expression) - (|> it - (_.do "get" (list) (list)) - (_.as (_.* of)))) - (def .public namespace _.Namespace "lux") @@ -82,104 +77,299 @@ (with_expansions [<clean_up> (..name) - <variant> (..name) + <Variant> (..name) <lefts> (..name) <right?> (..name) <choice> (..name) - <tuple> (..name) + <Tuple> (..name) <arity> (..name) <values> (..name) - <unit> (..name)] + <Type> (..name) + <bit?> (..name) + <i64?> (..name) + <f64?> (..name) + <text?> (..name) + <variant?> (..name) + <tuple?> (..name) + <function?> (..name) + + <Object> (..name) + <Object/type> (..name) + <Object/value> (..name) + + <unit> (..name) + + <object_tag> (..name) + <lux_bit> (..name) + <lux_i64> (..name) + <lux_text> (..name) + + <variant_lefts> (..name) + <variant_right?> (..name) + <variant_choice> (..name) + + <tuple_arity> (..name) + <tuple_member> (..name)] + (with_template [<code> <name>] + [(def .public <name> + Nat + <code>)] + + [0 bit_tag] + [1 i64_tag] + [2 f64_tag] + [3 text_tag] + [4 variant_tag] + [5 tuple_tag] + [6 function_tag] + ) + + (with_template [<lux> <rt>] + [(def .public <lux> + .Text + <rt>)] + + [object_tag <object_tag>] + [lux_bit <lux_bit>] + [lux_i64 <lux_i64>] + [lux_text <lux_text>] + + [variant_lefts <variant_lefts>] + [variant_right? <variant_right?>] + [variant_choice <variant_choice>] + + [tuple_arity <tuple_arity>] + [tuple_member <tuple_member>] + ) + + (def object_type + _.Type + (_.type (_.global [(list ..namespace) <Object>] (list)))) + + (def .public value_type + _.Type + (type.shared_ptr object_type)) + (def .public clean_up (-> _.Type _.Expression) (|>> (list) - (_.global [..namespace <clean_up>]))) + (_.global [(list ..namespace) <clean_up>]))) - (def .public (lux_value of it) - (-> _.Type _.Expression + (type .public Type + [_.Expression _.Type]) + + (def variant_type + (_.type (_.global [(list ..namespace) <Variant>] (list)))) + + (def tuple_type + (_.type (_.global [(list ..namespace) <Tuple>] (list)))) + + (with_template [<name> <tag> <type>] + [(def .public <name> + ..Type + [(_.global [(list ..namespace <Type>) <tag>] (list)) + <type>])] + + [Bit <bit?> //type.bit] + [I64 <i64?> //type.i64] + [F64 <f64?> //type.f64] + [Text <text?> //type.text] + [Variant <variant?> ..variant_type] + [Tuple <tuple?> ..tuple_type] + ) + + (def (lux_value [tag of] it) + (-> ..Type _.Expression _.Expression) - (_.on (list it (clean_up of)) - (_.global [_.standard "shared_ptr"] (list type.void)))) + (_.on (list (_.new (_.structure object_type (list tag it))) + (clean_up of)) + (_.global [(list _.standard) "shared_ptr"] (list object_type)))) - (def .public (simple of it) + (def .public (host_value of it) (-> _.Type _.Expression _.Expression) - (lux_value of + (|> it + (_.the* <Object/value>) + (_.is (_.* of)))) + + (def .public (simple [tag of] it) + (-> ..Type _.Expression + _.Expression) + (lux_value [tag of] (_.new (_.of (list it) of)))) (def .public (variant lefts right? choice) (-> _.Expression _.Expression _.Expression _.Expression) - (let [type (_.type (_.global [..namespace <variant>] (list)))] - (lux_value type - (_.new (_.structure type (list lefts right? choice)))))) + (|> (list lefts + right? + choice) + (_.structure ..variant_type) + _.new + (lux_value ..Variant))) (def .public (tuple values) (-> (List _.Expression) _.Expression) - (let [arity (_.int (.int (list.size values))) - type (_.type (_.global [..namespace <tuple>] (list)))] - (lux_value type - (_.new (_.structure type (list arity (_.new (_.array //type.value arity values)))))))) + (let [arity (_.int (.int (list.size values)))] + (|> (list arity + (_.new (_.array value_type arity values))) + (_.structure ..tuple_type) + _.new + (lux_value ..Tuple)))) (def .public declaration _.Declaration - (let [clean_up (let [of (_.type_name "Of") - it (_.local "it")] - (_.function (_.local <clean_up>) - (list of) - (list [(_.* of) it]) - type.void - (_.delete it))) - - $variant (_.local <variant>) - $tuple (_.local <tuple>) + (let [$Variant (_.local <Variant>) + $Tuple (_.local <Tuple>) $values (_.local <values>) - :variant (_.type $variant) - :tuple (_.type $tuple)] + $Type (_.local <Type>) + $bit? (_.local <bit?>) + $i64? (_.local <i64?>) + $f64? (_.local <f64?>) + $text? (_.local <text?>) + $variant? (_.local <variant?>) + $tuple? (_.local <tuple?>) + $function? (_.local <function?>) + + $Object (_.local <Object>) + $value (_.local <Object/value>) + :Object (_.type $Object)] (all _.also (_.include "memory") + (_.include "codecvt") + (_.include "locale") (<| (_.namespace ..namespace) - (all _.also - clean_up - - (_.constant (_.local <unit>) - //type.value - (..simple //type.text (_.u32_string ""))) - - (<| (_.structure_definition $variant) - [(list [(_.local <lefts>) //type.lefts] - [(_.local <right?>) //type.right?] - [(_.local <choice>) //type.value]) - (list)]) - - (<| (_.structure_definition $tuple) - [(list [(_.local <arity>) //type.arity] - [$values (_.* //type.value)]) - (list (<| (_.destructor $tuple) - (_.delete_array $values)))]) - ))))) + (`` (all _.also + (<| (_.enum_definition $Type) + (list $bit? + $i64? + $f64? + $text? + $variant? + $tuple? + $function?)) + + (<| (_.structure_definition $Object) + [(list [(_.local <Object/type>) (_.type $Type)] + [(_.local <Object/value>) (_.* type.void)]) + (list)]) + + (<| (_.structure_definition $Variant) + [(list [(_.local <lefts>) //type.lefts] + [(_.local <right?>) //type.right?] + [(_.local <choice>) value_type]) + (list)]) + + (<| (_.structure_definition $Tuple) + [(list [(_.local <arity>) //type.arity] + [$values (_.* value_type)]) + (list (<| (_.destructor $Tuple) + (_.delete_array $values)))]) + + (let [of (_.type_name "Of") + it (_.local "it")] + (_.function (_.local <clean_up>) + (list of) + (list [(_.* :Object) it]) + type.void + (all _.then + (_.delete (host_value of it)) + (_.delete it) + ))) + + (_.constant (_.local <unit>) + value_type + (..simple ..Text (_.u32_string ""))) + + ... Out functions + (let [it (_.local "it")] + (_.function (_.local <object_tag>) + (list) + (list [..value_type it]) + //type.i64 + (_.return (_.the* <Object/type> it)))) + + (,, (with_template [<name> <type>] + [(let [it (_.local "it")] + (_.function (_.local <name>) + (list) + (list [..value_type it]) + <type> + (_.return (_.deref (host_value <type> it)))))] + + [<lux_bit> //type.bit] + [<lux_i64> //type.i64] + )) + + (let [it (_.local "it") + converter (_.local "converter") + converter_type (_.type (_.global [(list _.standard) "wstring_convert"] + (list (_.type (_.global [(list _.standard) "codecvt_utf8"] + (list type.char32))) + type.char32)))] + (_.function (_.local <lux_text>) + (list) + (list [..value_type it]) + type.string + (all _.then + (_.var_declaration converter converter_type) + (_.return (_.do "to_bytes" + (list) + (list (_.deref (host_value //type.text it))) + converter))))) + + (,, (with_template [<name> <field> <type>] + [(let [it (_.local "it")] + (_.function (_.local <name>) + (list) + (list [..value_type it]) + <type> + (_.return (_.the* <field> (host_value ..variant_type it)))))] + + [<variant_lefts> <lefts> //type.i64] + [<variant_right?> <right?> //type.bit] + [<variant_choice> <choice> ..value_type] + )) + + (let [it (_.local "it")] + (_.function (_.local <tuple_arity>) + (list) + (list [..value_type it]) + //type.i64 + (_.return (_.the* <arity> (host_value ..tuple_type it))))) + + (let [item (_.local "item") + it (_.local "it")] + (_.function (_.local <tuple_member>) + (list) + (list [//type.i64 item] + [..value_type it]) + ..value_type + (_.return (_.item item (_.the* <values> (host_value ..tuple_type it)))))) + )))))) (def .public unit _.Expression - (_.global [..namespace <unit>] (list))) + (_.global [(list ..namespace) <unit>] (list))) ) -(def artifact_id +(def .public id + artifact.ID 0) (def .public translation (Operation [Registry Output]) (do phase.monad [_ (translation.execute! ..declaration) - _ (translation.save! ..artifact_id {.#None} ..declaration)] + _ (translation.save! ..id {.#None} ..declaration)] (in [(|> registry.empty (registry.resource .true unit.none) product.right) - (sequence.sequence [..artifact_id {.#None} + (sequence.sequence [..id {.#None} (of utf8.codec encoded (_.code ..declaration))])]))) diff --git a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/type.lux b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/type.lux index 378105897..500452fed 100644 --- a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/type.lux +++ b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/type.lux @@ -26,10 +26,6 @@ _.Type type.u32_string) -(def .public value - _.Type - (type.shared_ptr type.void)) - (def .public lefts _.Type type.char) diff --git a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/when.lux b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/when.lux index 7dda901f2..5d694d973 100644 --- a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/when.lux +++ b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/c++/when.lux @@ -24,7 +24,6 @@ [target ["_" c++]]]]]] ["[0]" // - ["[1][0]" type] ["[1][0]" reference] ["[1][0]" runtime (.only Operation Phase Term)] [//// @@ -53,7 +52,7 @@ bindings (monad.each ! (function (_ [binding value]) (do ! [value (next archive value)] - (in (_.variable (//reference.local binding) //type.value value)))) + (in (_.variable (//reference.local binding) //runtime.value_type value)))) (list.partial context tail)) body (next archive body)] @@ -62,7 +61,7 @@ [0 _] (list) [_ _] (list _.all_by_value)) (list) - {.#Some //type.value} + {.#Some //runtime.value_type} (list#mix _.then (_.return body) (list.reversed bindings)) @@ -79,7 +78,7 @@ (in (_.on (list) (_.lambda (list _.all_by_value) (list) - {.#Some //type.value} + {.#Some //runtime.value_type} (list#mix _.then (_.return after) (list.reversed all_before))))))) diff --git a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/jvm/function/abstract.lux b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/jvm/function/abstract.lux index b02273a95..8b3e56817 100644 --- a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/jvm/function/abstract.lux +++ b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/jvm/function/abstract.lux @@ -12,14 +12,19 @@ [target [jvm ["[0]" type (.only Type) - [category (.only Method)]]]]]]]] + [category (.only Method)]]]] + [meta + [archive + ["[0]" artifact]]]]]]] [// [field [constant ["[0]" arity]]]]) -... (def .public artifact_id -... 1) +(def .public id + artifact.ID + ... (++ runtime.id) + 1) (def .public class ... (type.class (%.nat artifact_id) (list)) diff --git a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/jvm/runtime.lux b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/jvm/runtime.lux index e842eb060..be90a4867 100644 --- a/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/jvm/runtime.lux +++ b/stdlib/source/library/lux/meta/compiler/language/lux/phase/translation/jvm/runtime.lux @@ -106,11 +106,12 @@ "." (%.nat module) "." (%.nat id))) -(def artifact_id +(def .public id + artifact.ID 0) (def .public class - (type.class (class_name [0 ..artifact_id]) (list))) + (type.class (class_name [0 ..id]) (list))) (def procedure (-> Text (Type category.Method) (Bytecode Any)) @@ -593,8 +594,8 @@ (list)))] (do phase.monad [_ (translation.execute! [class bytecode]) - _ (translation.save! ..artifact_id {.#None} [class bytecode])] - (in [..artifact_id {.#None} bytecode])))) + _ (translation.save! ..id {.#None} [class bytecode])] + (in [..id {.#None} bytecode])))) (def translate_function (Operation Any) @@ -655,7 +656,7 @@ (list)))] (do phase.monad [_ (translation.execute! [class bytecode]) - ... _ (translation.save! //function.artifact_id {.#None} [class bytecode]) + ... _ (translation.save! //function.id {.#None} [class bytecode]) ] (in [])))) diff --git a/stdlib/source/library/lux/meta/compiler/language/lux/synthesis.lux b/stdlib/source/library/lux/meta/compiler/language/lux/synthesis.lux index d10fdd654..81f4e5393 100644 --- a/stdlib/source/library/lux/meta/compiler/language/lux/synthesis.lux +++ b/stdlib/source/library/lux/meta/compiler/language/lux/synthesis.lux @@ -106,9 +106,9 @@ (type .public (If of) (Record - [##if_when of + [#if_when of #if_then of - ##if_else of])) + #if_else of])) (type .public (Branch of) (Variant diff --git a/stdlib/source/library/lux/meta/compiler/target/c++.lux b/stdlib/source/library/lux/meta/compiler/target/c++.lux index 014bf887a..dc080c656 100644 --- a/stdlib/source/library/lux/meta/compiler/target/c++.lux +++ b/stdlib/source/library/lux/meta/compiler/target/c++.lux @@ -4,7 +4,7 @@ (.require [library [lux (.except Code Type Global Declaration Definition - int as function template local global type also of) + int as function template local global type also of is) [abstract [equivalence (.only Equivalence)]] [control @@ -29,6 +29,8 @@ (def statement_separator ";") (def parameter_separator (%.format "," " ")) +(def namespace_separator "::") + (def term_delimiters ["(" ")"]) (def template_delimiters ["<" ">"]) (def initialization_delimiters ["{" "}"]) @@ -149,13 +151,15 @@ (text.interposed ..parameter_separator) (text.enclosed ..template_delimiters))))) - (def .public (global [ns name] parameters) - (-> [Namespace Text] (List Type) + (def .public (global [ns/* name] parameters) + (-> [(List Namespace) Text] (List Type) Global) (<% (let [instance (%.format name (instantiation parameters))] - (when ns - "" instance - _ (%.format ns "::" instance))))) + (when ns/* + (list) instance + _ (%.format (text.interposed ..namespace_separator ns/*) + ..namespace_separator + instance))))) (def .public type (-> Reference @@ -181,10 +185,12 @@ (text.prefix "*") <%)) - (def .public (as type term) + (def .public (is type term) (-> Type Expression Computation) - (<% (%.format "(" (%> type) ")" + (<| <% + (text.enclosed ..term_delimiters) + (%.format "(" (%> type) ")" " " (%> term)))) (def .public int @@ -418,6 +424,16 @@ methods)) (text.interposed \n)))))) + (def .public (enum_definition name options) + (-> Local (List Local) + Definition) + (..statement + (%.format "enum" + " " (%> name) + " " (block (|> options + (list#each ..code) + (text.interposed ..parameter_separator)))))) + (def captures (-> (List Capture) Text) @@ -453,4 +469,14 @@ (%.format (%> when) " ? " (%> then) " : " (%> else)))) + + (def .public (the* field owner) + (-> Text Expression + Expression) + (<% (%.format (%> owner) "->" field))) + + (def .public (item index array) + (-> Expression Expression + Expression) + (<% (%.format (%> array) "[" (%> index) "]"))) ) diff --git a/stdlib/source/library/lux/meta/compiler/target/c++/type.lux b/stdlib/source/library/lux/meta/compiler/target/c++/type.lux index 0227ed9a5..e8365ff52 100644 --- a/stdlib/source/library/lux/meta/compiler/target/c++/type.lux +++ b/stdlib/source/library/lux/meta/compiler/target/c++/type.lux @@ -9,30 +9,26 @@ ["[0]" template]]]]] ["/" //]) -(with_template [<ns> <name>/*] - [(`` (with_template [<name>] - [(def .public <name> - /.Type - (/.type (/.global [<ns> (template.text [<name>])] (list))))] - - (,, (template.spliced <name>/*))))] - - ["" - [[void] - [bool] - [char] - [short] - [int] - [long] - [float] - [double]]] +(with_template [<name>] + [(def .public <name> + /.Type + (/.type (/.global [(list) (template.text [<name>])] (list))))] + + [void] + [bool] + [char] + [short] + [int] + [long] + [float] + [double] ) (with_template [<ns> <name>/*] [(`` (with_template [<lux> <c++>] [(def .public <lux> /.Type - (/.type (/.global [<ns> <c++>] (list))))] + (/.type (/.global [(list <ns>) <c++>] (list))))] (,, (template.spliced <name>/*))))] @@ -48,7 +44,11 @@ (with_template [<lux> <c++>] [(def .public <lux> /.Type - (/.type (/.global ["" <c++>] (list))))] + (/.type (/.global [(list) <c++>] (list))))] + + [char08 "char8_t"] + [char16 "char16_t"] + [char32 "char32_t"] [int_08 "int8_t"] [int_16 "int16_t"] @@ -91,5 +91,5 @@ (-> /.Type /.Type) (|>> list - (/.global [/.standard "shared_ptr"]) + (/.global [(list /.standard) "shared_ptr"]) /.type)) diff --git a/stdlib/source/library/lux/meta/compiler/target/jvm/modifier.lux b/stdlib/source/library/lux/meta/compiler/target/jvm/modifier.lux index 5308b33f7..b3f78693a 100644 --- a/stdlib/source/library/lux/meta/compiler/target/jvm/modifier.lux +++ b/stdlib/source/library/lux/meta/compiler/target/jvm/modifier.lux @@ -31,11 +31,13 @@ //unsigned.U2 (def .public code - (-> (Modifier Any) //unsigned.U2) + (-> (Modifier Any) + //unsigned.U2) (|>> representation)) (def .public equivalence - (All (_ of) (Equivalence (Modifier of))) + (All (_ of) + (Equivalence (Modifier of))) (implementation (def (= reference sample) (of //unsigned.equivalence = @@ -56,14 +58,17 @@ //unsigned.value)])) (def .public (has? sub super) - (All (_ of) (-> (Modifier of) (Modifier of) Bit)) + (All (_ of) + (-> (Modifier of) (Modifier of) + Bit)) (let [sub (!representation sub)] (|> (!representation super) (i64.and sub) (of i64.equivalence = sub)))) (def .public monoid - (All (_ of) (Monoid (Modifier of))) + (All (_ of) + (Monoid (Modifier of))) (implementation (def identity (!abstraction (hex "0000"))) @@ -77,7 +82,8 @@ (of ..monoid identity)) (def .public format - (All (_ of) (Format (Modifier of))) + (All (_ of) + (Format (Modifier of))) (|>> representation //unsigned.format/2)) ) diff --git a/stdlib/source/test/lux/meta/compiler/language/lux/phase/translation/jvm/function.lux b/stdlib/source/test/lux/meta/compiler/language/lux/phase/translation/jvm/function.lux index 906c23a71..fc26af607 100644 --- a/stdlib/source/test/lux/meta/compiler/language/lux/phase/translation/jvm/function.lux +++ b/stdlib/source/test/lux/meta/compiler/language/lux/phase/translation/jvm/function.lux @@ -40,7 +40,9 @@ ["[0]" phase] ["[0]" synthesis] ["[0]" translation]]]]]] - [/ + ["[0]" / + ["[1][0]" abstract] + ["[1][0]" method] [field [constant ["[0]T" arity]] @@ -148,6 +150,8 @@ (and exact_arity! multiple_applications!))) + /abstract.test + /method.test arityT.test countT.test ))) diff --git a/stdlib/source/test/lux/meta/compiler/language/lux/phase/translation/jvm/function/abstract.lux b/stdlib/source/test/lux/meta/compiler/language/lux/phase/translation/jvm/function/abstract.lux new file mode 100644 index 000000000..79465cb59 --- /dev/null +++ b/stdlib/source/test/lux/meta/compiler/language/lux/phase/translation/jvm/function/abstract.lux @@ -0,0 +1,115 @@ +... This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. +... If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. + +(.require + [library + [lux (.except) + ["[0]" ffi] + [abstract + [monad (.only do)]] + [control + ["[0]" try (.use "[1]#[0]" functor)] + ["[0]" io]] + [math + ["[0]" random (.only Random)] + [number + ["n" nat]]] + [meta + ["[0]" location] + [compiler + [target + [jvm + ["[0]" reflection] + ["[0]" type (.only) + ["[1]/[0]" reflection]]]] + [meta + ["[0]" archive]]]] + [test + ["_" property (.only Test)]]]] + [\\library + ["[0]" / (.only) + [//// + ["[0]" jvm (.only) + ["[0]" host] + ["[0]" runtime] + [/// + ["[0]" extension] + [// + ["[0]" phase] + ["[0]" synthesis] + ["[0]" translation]]]]]]] + [/// + ["[0]T" complex]]) + +(ffi.import java/lang/String + "[1]::[0]") + +(ffi.import (java/lang/Class of) + "[1]::[0]" + (getCanonicalName [] java/lang/String)) + +(ffi.import java/lang/Object + "[1]::[0]" + (getClass [] (java/lang/Class [? < java/lang/Object]))) + +(ffi.import java/lang/ClassLoader + "[1]::[0]" + ("static" getSystemClassLoader [] java/lang/ClassLoader)) + +(def (function? loader it) + (-> java/lang/ClassLoader Any + Bit) + (let [super (type/reflection.reflection (type.reflection /.class)) + sub (|> it + (as java/lang/Object) + java/lang/Object::getClass + java/lang/Class::getCanonicalName + ffi.of_string)] + (try.else false + (reflection.sub? loader super sub)))) + +(def .public test + Test + (<| (_.covering /._) + (do [! random.monad] + [module (random.lower_cased 1) + expected_i64 random.i64 + arity (of ! each (|>> (n.% 10) ++) random.nat) + + .let [system_class_loader (java/lang/ClassLoader::getSystemClassLoader)]]) + (all _.and + (_.coverage [/.id] + (not (n.= runtime.id /.id))) + (_.coverage [/.class] + (let [lux_makes_functions! + (..function? system_class_loader ..function?) + + compiler_makes_functions! + (|> (do try.monad + [.let [extender (is extension.Extender + (function (_ _) + (undefined))) + next (jvm.translate extender complexT.lux) + @ [module 0 0]] + [_ archive] (archive.reserve "" archive.empty) + [_ archive] (archive.reserve module archive) + .let [[class_loader host] (io.run! host.host) + state (is runtime.State + (translation.state host module))]] + (<| (phase.result state) + (do phase.monad + [_ (translation.set_buffer translation.empty_buffer) + it (next archive + (<| (synthesis.function/abstraction @) + [(list) 1 (synthesis.i64 @ expected_i64)]))] + (in (|> it + [{.#None}] + (of host evaluate) + (try#each (..function? class_loader)) + (try.else false)))))) + (try.else false))] + (and lux_makes_functions! + compiler_makes_functions!))) + (_.coverage [/.init] + true) + ))) diff --git a/stdlib/source/test/lux/meta/compiler/language/lux/phase/translation/jvm/function/method.lux b/stdlib/source/test/lux/meta/compiler/language/lux/phase/translation/jvm/function/method.lux new file mode 100644 index 000000000..b8af5f99f --- /dev/null +++ b/stdlib/source/test/lux/meta/compiler/language/lux/phase/translation/jvm/function/method.lux @@ -0,0 +1,31 @@ +... This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. +... If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. + +(.require + [library + [lux (.except) + [abstract + [monad (.only do)]] + [math + ["[0]" random (.only Random)]] + [meta + [compiler + [target + [jvm + ["[0]" modifier] + ["[0]" method]]]]] + [test + ["_" property (.only Test)]]]] + [\\library + ["[0]" /]]) + +(def .public test + Test + (<| (_.covering /._) + (do [! random.monad] + []) + (all _.and + (_.coverage [/.modifier] + (and (modifier.has? method.public /.modifier) + (modifier.has? method.strict /.modifier))) + ))) diff --git a/stdlib/source/test/lux/meta/macro/syntax/declaration.lux b/stdlib/source/test/lux/meta/macro/syntax/declaration.lux index 07b6a3a70..84e59f20a 100644 --- a/stdlib/source/test/lux/meta/macro/syntax/declaration.lux +++ b/stdlib/source/test/lux/meta/macro/syntax/declaration.lux @@ -35,7 +35,8 @@ (def .public test Test (<| (_.covering /._) - (_.for [/.Declaration]) + (_.for [/.Declaration + /.#name /.#arguments]) (all _.and (_.for [/.equivalence] (equivalenceT.spec /.equivalence ..random)) diff --git a/stdlib/source/test/lux/world/finance/market/price.lux b/stdlib/source/test/lux/world/finance/market/price.lux index cef90b094..c321ac3a8 100644 --- a/stdlib/source/test/lux/world/finance/market/price.lux +++ b/stdlib/source/test/lux/world/finance/market/price.lux @@ -48,14 +48,19 @@ subject (..random currency.usd 1000,00) from (moneyT.random currency.usd 1000,00) - to (moneyT.random currency.usd 1000,00)]) + to (moneyT.random currency.usd 1000,00) + + not_free (moneyT.random currency.usd 1000,00)]) (_.for [/.Price /.Action]) (all _.and (_.for [/.equivalence /.=] (equivalenceT.spec /.equivalence (..random currency.usd 1000,00))) (_.for [/.order /.<] (orderT.spec /.order (..random currency.usd 1000,00))) - + + (_.coverage [/.free] + (money.<= not_free + (/.free currency.usd))) (_.coverage [/.action /.currency /.movement] (let [it (/.action from to)] (and (same? currency.usd (/.currency it)) |