2023-01-09 20:21:30 +03:00
|
|
|
module Commands.Dev.Core.Strip where
|
|
|
|
|
|
|
|
import Commands.Base
|
|
|
|
import Commands.Dev.Core.Strip.Options
|
|
|
|
import Juvix.Compiler.Core.Pipeline qualified as Core
|
|
|
|
import Juvix.Compiler.Core.Pretty qualified as Core
|
|
|
|
import Juvix.Compiler.Core.Translation.FromSource qualified as Core
|
|
|
|
import Juvix.Compiler.Core.Translation.Stripped.FromCore qualified as Stripped
|
|
|
|
|
|
|
|
runCommand :: forall r a. (Members '[Embed IO, App] r, CanonicalProjection a Core.Options, CanonicalProjection a CoreStripOptions) => a -> Sem r ()
|
|
|
|
runCommand opts = do
|
|
|
|
inputFile :: Path Abs File <- someBaseToAbs' sinputFile
|
|
|
|
s' <- embed (readFile $ toFilePath inputFile)
|
2023-03-14 18:24:07 +03:00
|
|
|
tab <- getRight (mapLeft JuvixError (Core.runParserMain inputFile Core.emptyInfoTable s'))
|
2023-01-09 20:21:30 +03:00
|
|
|
let tab' = Stripped.fromCore (Core.toStripped tab)
|
|
|
|
unless (project opts ^. coreStripNoPrint) $ do
|
|
|
|
renderStdOut (Core.ppOut opts tab')
|
|
|
|
where
|
|
|
|
sinputFile :: SomeBase File
|
|
|
|
sinputFile = project opts ^. coreStripInputFile . pathPath
|