From 221cf3ea1bd48a8c678d3447558ea94631114ebc Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sat, 4 Aug 2018 10:05:26 -0400 Subject: Made some adjustments to fit stdlib's compiler infrastructure to new-luxc. --- stdlib/source/lux/cli.lux | 24 +++- stdlib/source/lux/compiler/default.lux | 142 +++++++++++---------- .../lux/compiler/default/phase/analysis/module.lux | 4 +- stdlib/source/lux/compiler/meta/io/context.lux | 32 +++-- stdlib/source/lux/io.lux | 23 ++-- stdlib/source/lux/world/file.lux | 28 ++-- 6 files changed, 138 insertions(+), 115 deletions(-) (limited to 'stdlib') diff --git a/stdlib/source/lux/cli.lux b/stdlib/source/lux/cli.lux index 1ad54189c..abb1d0c38 100644 --- a/stdlib/source/lux/cli.lux +++ b/stdlib/source/lux/cli.lux @@ -9,10 +9,14 @@ ["." text ("text/." Equivalence) format] ["E" error]] - ["." io] [macro (#+ with-gensyms) ["." code] - ["s" syntax (#+ syntax: Syntax)]]]) + ["s" syntax (#+ syntax: Syntax)]] + [compiler + ["." host]] + ["." io] + [concurrency + ["." process]]]) ## [Types] (type: #export (CLI a) @@ -92,6 +96,12 @@ #.Nil (#E.Success [inputs []]) _ (#E.Error (format "Unknown parameters: " (text.join-with " " inputs)))))) +(def: #export (parameter [short long]) + (-> [Text Text] (CLI Text)) + (|> ..any + (p.after (p.either (..this short) (..this long))) + ..somewhere)) + ## [Syntax] (type: Program-Args (#Raw Text) @@ -144,14 +154,18 @@ list/join)) (~ g!_) ..end] ((~' wrap) ((~! do) (~! io.Monad) - [] - (~ body))))) + [(~ g!output) (~ body) + (~+ (`` (for {(~~ (static host.jvm)) + (list)} + (list g!_ + (` process.run!)))))] + ((~' wrap) (~ g!output)))))) (~ g!args)) (#E.Success [(~ g!_) (~ g!output)]) (~ g!output) (#E.Error (~ g!message)) - (error! (~ g!message)) + (.error! (~ g!message)) )))) ))) ))) diff --git a/stdlib/source/lux/compiler/default.lux b/stdlib/source/lux/compiler/default.lux index d5b97ad36..c85df80c1 100644 --- a/stdlib/source/lux/compiler/default.lux +++ b/stdlib/source/lux/compiler/default.lux @@ -1,5 +1,5 @@ (.module: - [lux #* + [lux (#- Source) [control [monad (#+ do)] ["ex" exception (#+ exception:)]] @@ -13,9 +13,6 @@ ["." dictionary]]] [type (#+ :share)] ["." macro] - [concurrency - ["." promise ("promise/." Monad)] - ["." task (#+ Task)]] [world ["." file (#+ File)]]] [// @@ -67,28 +64,32 @@ ## ## (format module-name "/" cache.descriptor-name) ## ## (encoding.to-utf8 (%code (cache/description.write file-name module)))))) -(type: Configuration +(type: #export Configuration {#sources (List File) #target File}) -(type: (Platform anchor expression statement) +(type: #export (Platform fs anchor expression statement) {#host (Host expression statement) #phase (translation.Phase anchor expression statement) #runtime (translation.Operation anchor expression statement Any) - #file-system (file.System Task)}) + #file-system (file.System fs)}) -(with-expansions [ (as-is (Platform anchor expression statement)) +(type: #export Source + {#name Text + #code Text}) + +(with-expansions [ (as-is (Platform fs anchor expression statement)) (as-is (statement.Operation anchor expression statement Any)) (as-is (statement.State+ anchor expression statement))] - (def: (begin-module-compilation module-name file-name source-code) + (def: (begin-module-compilation module-name source) (All [anchor expression statement] - (-> Text Text Text )) + (-> Text Source )) (statement.lift-analysis! (do phase.Monad - [_ (module.create (text/hash source-code) module-name) + [_ (module.create (text/hash (get@ #code source)) module-name) _ (analysis.set-current-module module-name)] - (analysis.set-source-code (init.source file-name source-code))))) + (analysis.set-source-code (init.source (get@ #name source) (get@ #code source)))))) (def: (end-module-compilation module-name) (All [anchor expression statement] @@ -111,75 +112,76 @@ _ (totalS.phase code)] (forgive-eof (recur [])))))) - (def: (perform-module-compilation module-name file-name source-code) + (def: (perform-module-compilation module-name source) (All [anchor expression statement] - (-> Text Text Text )) + (-> Text Source )) (do phase.Monad - [_ (begin-module-compilation module-name file-name source-code) + [_ (begin-module-compilation module-name source) _ (loop-module-compilation module-name)] (end-module-compilation module-name))) (def: #export (compile-module platform configuration module-name compiler) - (All [anchor expression statement] - (-> Configuration Text (Task ))) - (do task.Monad - [[file-name source-code] (context.read (get@ #file-system platform) - (get@ #sources configuration) - module-name) - [compiler' _] (<| promise/wrap - (phase.run' compiler) - (:share [anchor expression statement] - { - platform} - { - (perform-module-compilation module-name file-name source-code)})) + (All [fs anchor expression statement] + (-> Configuration Text (fs ))) + (do (:: (get@ #file-system platform) &monad) + [source (context.read (get@ #file-system platform) + (get@ #sources configuration) + module-name) ## _ (&io.prepare-module target-dir module-name) ## _ (write-module target-dir file-name module-name module artifacts) ] - (wrap compiler'))) - - (def: (initialize platform configuration) - (All [anchor expression statement] - (-> Configuration (Task ))) - (do task.Monad - [[compiler _] (|> platform - (get@ #runtime) - statement.lift-translation! - (phase.run' (init.state (get@ #host platform) - (get@ #phase platform))) - promise/wrap) - ## compiler (case (runtimeT.translate ## (initL.compiler (io.run js.init)) - ## (initL.compiler (io.run hostL.init-host)) - ## ) - ## ## (#error.Success [compiler disk-write]) - ## ## (do @ - ## ## [_ (&io.prepare-target target) - ## ## _ disk-write - ## ## ## _ (cache/io.pre-load sources target (commonT.load-definition compiler)) - ## ## ] - ## ## (wrap (|> compiler - ## ## (set@ [#.info #.mode] #.Build)))) - - ## (#error.Success [compiler [runtime-bc function-bc]]) - ## (do @ - ## [_ (&io.prepare-target target) - ## ## _ (&io.write target (format hostL.runtime-class ".class") runtime-bc) - ## ## _ (&io.write target (format hostL.function-class ".class") function-bc) - ## ## _ (cache/io.pre-load sources target (commonT.load-definition compiler)) - ## ] - ## (wrap (|> compiler - ## (set@ [#.info #.mode] #.Build)))) - - ## (#error.Error error) - ## (io.fail error)) - ] - (compile-module platform configuration prelude compiler))) + (<| (:: @ map product.left) + (:: (get@ #file-system platform) lift) + (phase.run' compiler) + (:share [fs anchor expression statement] + { + platform} + { + (perform-module-compilation module-name source)})))) + + (def: (initialize-runtime platform configuration) + (All [fs anchor expression statement] + (-> Configuration (fs ))) + (|> platform + (get@ #runtime) + statement.lift-translation! + (phase.run' (init.state (get@ #host platform) + (get@ #phase platform))) + (:: error.Functor map product.left) + (:: (get@ #file-system platform) lift)) + + ## (case (runtimeT.translate ## (initL.compiler (io.run js.init)) + ## (initL.compiler (io.run hostL.init-host)) + ## ) + ## ## (#error.Success [compiler disk-write]) + ## ## (do @ + ## ## [_ (&io.prepare-target target) + ## ## _ disk-write + ## ## ## _ (cache/io.pre-load sources target (commonT.load-definition compiler)) + ## ## ] + ## ## (wrap (|> compiler + ## ## (set@ [#.info #.mode] #.Build)))) + + ## (#error.Success [compiler [runtime-bc function-bc]]) + ## (do @ + ## [_ (&io.prepare-target target) + ## ## _ (&io.write target (format hostL.runtime-class ".class") runtime-bc) + ## ## _ (&io.write target (format hostL.function-class ".class") function-bc) + ## ## _ (cache/io.pre-load sources target (commonT.load-definition compiler)) + ## ] + ## (wrap (|> compiler + ## (set@ [#.info #.mode] #.Build)))) + + ## (#error.Error error) + ## (io.fail error)) + ) (def: #export (compile platform configuration program) - (All [anchor expression statement] - (-> Configuration Text (Task Any))) - (do task.Monad - [compiler (initialize platform configuration) + (All [fs anchor expression statement] + (-> Configuration Text (fs Any))) + (do (:: (get@ #file-system platform) &monad) + [compiler (initialize-runtime platform configuration) + _ (compile-module platform configuration ..prelude compiler) _ (compile-module platform configuration program compiler) ## _ (cache/io.clean target ...) #let [_ (log! "Compilation complete!")]] diff --git a/stdlib/source/lux/compiler/default/phase/analysis/module.lux b/stdlib/source/lux/compiler/default/phase/analysis/module.lux index 47b7d7331..d8736ad72 100644 --- a/stdlib/source/lux/compiler/default/phase/analysis/module.lux +++ b/stdlib/source/lux/compiler/default/phase/analysis/module.lux @@ -20,7 +20,7 @@ (type: #export Tag Text) (exception: #export (unknown-module {module Text}) - module) + (ex.report ["Module" module])) (exception: #export (cannot-declare-tag-twice {module Text} {tag Text}) (ex.report ["Module" module] @@ -36,7 +36,7 @@ ) (exception: #export (cannot-define-more-than-once {name Name}) - (%name name)) + (ex.report ["Definition" (%name name)])) (exception: #export (can-only-change-state-of-active-module {module Text} {state Module-State}) (ex.report ["Module" module] diff --git a/stdlib/source/lux/compiler/meta/io/context.lux b/stdlib/source/lux/compiler/meta/io/context.lux index b0a35cf61..615cd8d94 100644 --- a/stdlib/source/lux/compiler/meta/io/context.lux +++ b/stdlib/source/lux/compiler/meta/io/context.lux @@ -9,7 +9,7 @@ format ["." encoding]]] [world - ["." file (#+ File System)] + ["." file (#+ File)] [binary (#+ Binary)]]] ["." // (#+ Context Module) [/// @@ -18,7 +18,7 @@ (type: #export Extension Text) (def: #export (file System context module) - (All [m] (-> (System m) Context Module File)) + (All [m] (-> (file.System m) Context Module File)) (|> module (//.sanitize System) (format context (:: System separator)))) @@ -37,6 +37,8 @@ (def: lux-extension Extension ".lux") +(def: full-extension Extension (format host-extension lux-extension)) + (do-template [] [(exception: #export ( {module Module}) (ex.report ["Module" module]))] @@ -46,7 +48,9 @@ ) (def: (find-source System contexts module extension) - (All [m] (-> (System m) (List Context) Module Text (m (Maybe [Module File])))) + (All [fs] + (-> (file.System fs) (List Context) Module Extension + (fs (Maybe [Module File])))) (case contexts #.Nil (:: (:: System &monad) wrap #.None) @@ -57,10 +61,10 @@ ? (file.exists? System file)] (if ? (wrap (#.Some [module file])) - (find-source System contexts' module))))) + (find-source System contexts' module extension))))) (def: (try System computations exception message) - (All [m a e] (-> (System m) (List (m (Maybe a))) (Exception e) e (m a))) + (All [m a e] (-> (file.System m) (List (m (Maybe a))) (Exception e) e (m a))) (case computations #.Nil (:: System throw exception message) @@ -77,20 +81,20 @@ (type: #export Code Text) -(def: #export (read System contexts name) - (All [m] - (-> (System m) (List Context) Module - (m [Text Code]))) - (let [find-source' (find-source System contexts name)] +(def: #export (read System contexts module) + (All [fs] + (-> (file.System fs) (List Context) Module + (fs [Text Code]))) + (let [find-source' (find-source System contexts module)] (do (:: System &monad) [[path file] (try System - (list (find-source' (format host-extension lux-extension)) - (find-source' lux-extension)) - module-not-found [name]) + (list (find-source' ..full-extension) + (find-source' ..lux-extension)) + ..module-not-found [module]) binary (:: System read file)] (case (encoding.from-utf8 binary) (#error.Success code) (wrap [path code]) (#error.Error _) - (:: System throw cannot-read-module [name]))))) + (:: System throw ..cannot-read-module [module]))))) diff --git a/stdlib/source/lux/io.lux b/stdlib/source/lux/io.lux index 9295795be..5ec03c749 100644 --- a/stdlib/source/lux/io.lux +++ b/stdlib/source/lux/io.lux @@ -6,8 +6,9 @@ [monad (#+ do Monad)] ["ex" exception (#+ Exception)]] [data - ["e" error (#+ Error)] - [collection [list]]]]) + ["." error (#+ Error)] + [collection + [list]]]]) (type: #export (IO a) {#.doc "A type that represents synchronous, effectful computations that may interact with the outside world."} @@ -61,31 +62,35 @@ (structure: #export _ (Functor Process) (def: (map f ma) - (io (:: e.Functor map f (run ma))))) + (io (:: error.Functor map f (run ma))))) (structure: #export _ (Apply Process) (def: functor Functor) (def: (apply ff fa) - (io (:: e.Apply apply (run ff) (run fa))))) + (io (:: error.Apply apply (run ff) (run fa))))) (structure: #export _ (Monad Process) (def: functor Functor) (def: (wrap x) - (io (:: e.Monad wrap x))) + (io (:: error.Monad wrap x))) (def: (join mma) (case (run mma) - (#e.Success ma) + (#error.Success ma) ma - (#e.Error error) - (io (#e.Error error))))) + (#error.Error error) + (io (#error.Error error))))) + +(def: #export from-io + (All [a] (-> (IO a) (Process a))) + (:: Functor map (|>> #error.Success))) (def: #export (fail error) (All [a] (-> Text (Process a))) - (io (#e.Error error))) + (io (#error.Error error))) (def: #export (throw exception message) (All [e a] (-> (Exception e) e (Process a))) diff --git a/stdlib/source/lux/world/file.lux b/stdlib/source/lux/world/file.lux index 912c448e9..76f03a835 100644 --- a/stdlib/source/lux/world/file.lux +++ b/stdlib/source/lux/world/file.lux @@ -2,8 +2,7 @@ [lux #* [control ["." monad (#+ Monad do)] - ["ex" exception (#+ Exception exception:)] - pipe] + ["ex" exception (#+ Exception exception:)]] [data ["." error (#+ Error)] [text @@ -105,20 +104,19 @@ (`` (for {(~~ (static host.jvm)) (as-is (import: #long java/io/File (new [String]) - (exists [] #io #try boolean) - (mkdirs [] #io #try boolean) - (delete [] #io #try boolean) + (~~ (do-template [] + [( [] #io #try boolean)] + + [exists] [mkdirs] [delete] + [isFile] [isDirectory] + [canRead] [canWrite] [canExecute])) + (length [] #io #try long) (listFiles [] #io #try #? (Array java/io/File)) (getAbsolutePath [] #io #try String) (renameTo [java/io/File] #io #try boolean) - (isFile [] #io #try boolean) - (isDirectory [] #io #try boolean) (lastModified [] #io #try long) (setLastModified [long] #io #try boolean) - (canRead [] #io #try boolean) - (canWrite [] #io #try boolean) - (canExecute [] #io #try boolean) (#static separator String)) (import: java/lang/AutoCloseable @@ -245,8 +243,8 @@ (def: #export (exists? System file) (All [m] (-> (System m) File (m Bit))) - (|> file - (do> (:: System &monad) - [(:: System file?)] - [(if> [(wrap #1)] - [(:: System directory? file)])]))) + (do (:: System &monad) + [??? (:: System file? file)] + (if ??? + (wrap #1) + (:: System directory? file)))) -- cgit v1.2.3