diff options
author | Marvin Borner | 2024-03-02 11:21:44 +0100 |
---|---|---|
committer | Marvin Borner | 2024-03-02 11:21:44 +0100 |
commit | eff903fc61b060b6333cb60bfced95e44da000ba (patch) | |
tree | b99fb2070843ed33f4449c0c9d7777d2db337e79 /src/Target.hs | |
parent | fe951a51daa805f1abb9a973bbe749888d8f9a83 (diff) |
Started non-outsourced optimizer
Diffstat (limited to 'src/Target.hs')
-rw-r--r-- | src/Target.hs | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/Target.hs b/src/Target.hs new file mode 100644 index 0000000..ea46161 --- /dev/null +++ b/src/Target.hs @@ -0,0 +1,66 @@ +-- MIT License, Copyright (c) 2024 Marvin Borner +-- BLoC format is used in combination with BLoCade the BLoC-aid. +module Target + ( toTarget + ) where + +import Binary +import Control.Exception +import qualified Data.BitString as Bit +import qualified Data.ByteString.Lazy.Char8 as Byte +import Helper +import System.IO +import System.Process + +tryIO :: IO a -> IO (Either IOException a) +tryIO = try + +compile :: Expression -> String -> IO (Failable String) +compile e target = do + res <- tryIO $ createProcess + (shell $ "bloc -v -i - --from-blc | blocade -v -i - -t " <> target) + { std_in = CreatePipe + , std_out = CreatePipe + } + case res of + Right (Just inH, Just outH, _, _) -> do + let binary = toBinary e + hSetBuffering inH NoBuffering + hSetBuffering outH NoBuffering + hSetBinaryMode outH True + hIsOpen inH >>= print + hIsWritable inH >>= print + putStrLn "sending binary" + hPutStrLn inH binary + hPutStr inH "\0" + hFlush inH + content <- hGetContents' outH + hClose outH + hClose inH + return $ case content of + "" -> Left $ OptimizerError "blocade returned empty string" + _ -> Right content + _ -> return $ Left $ OptimizerError "can't read from blocade" + +-- TODO: add more targets (including other PL compilation) +toExpression :: String -> String -> Expression +toExpression "blc" = fromBinary +toExpression "unblc" = fromBinary +toExpression "bblc" = + fromBinary . fromBitString . Bit.bitStringLazy . Byte.pack +toExpression "unbblc" = + fromBinary . fromBitString . Bit.bitStringLazy . Byte.pack +toExpression _ = invalidProgramState + +toTarget :: EvalConf -> Expression -> IO Expression +toTarget conf e = do + let target = _toTarget conf + case target of + "" -> return e -- No target, fallback to unoptimized expression + _ -> do + maybeRes <- compile e target + case maybeRes of + Left err -> do + print err + return e -- Fallback to unoptimized expression + Right res -> return $ toExpression target res |