Properly load flag and symbol files

This commit is contained in:
Joscha 2019-11-25 09:57:39 +00:00
parent 7446bcab45
commit 72e21d6ff2
4 changed files with 85 additions and 45 deletions

View file

@ -1,12 +1,15 @@
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE TupleSections #-}
module Mima.IO
( Run
, doRun
, doRun_
, tryRun
, File(..)
, readTextFile
, loadFile
, loadFile'
) where
import Control.Monad.Trans.Class
@ -39,6 +42,12 @@ tryRun r = do
lift $ putStrLn e
pure Nothing
data File
= NoFile
| OptionalFile FilePath
| RequiredFile FilePath
deriving (Show)
readTextFile :: FilePath -> Run T.Text
readTextFile filepath = do
eitherContent <- lift $ catchIOError (Right <$> T.readFile filepath) handleError
@ -49,9 +58,27 @@ readTextFile filepath = do
then pure $ Left $ "Can't load file " ++ filepath ++ ": " ++ ioeGetErrorString e
else ioError e -- This error does not concern us
loadFile :: (FilePath -> T.Text -> Either WeedErrorBundle a) -> FilePath -> Run a
loadFile f filepath = do
content <- readTextFile filepath
case f filepath content of
Left errorBundle -> throwE $ errorBundlePretty errorBundle
Right a -> pure a
loadTextFile :: File -> Run (Maybe (FilePath, T.Text))
loadTextFile NoFile = pure Nothing
loadTextFile (OptionalFile path) = do
mContent <- tryRun $ readTextFile path
pure $ (path,) <$> mContent
loadTextFile (RequiredFile path) = do
content <- readTextFile path
pure $ Just (path, content)
loadFile :: (FilePath -> T.Text -> Either WeedErrorBundle a) -> File -> Run (Maybe a)
loadFile f file = do
mContent <- loadTextFile file
case mContent of
Nothing -> pure Nothing
Just (path, content) -> case f path content of
Left errorBundle -> throwE $ errorBundlePretty errorBundle
Right result -> pure $ Just result
loadFile' :: (FilePath -> T.Text -> Either WeedErrorBundle a) -> FilePath -> Run a
loadFile' f path = do
content <- readTextFile path
case f path content of
Left errorBundle -> throwE $ errorBundlePretty errorBundle
Right result -> pure result

View file

@ -47,13 +47,12 @@ parseSymbolFile = space *> many lNewline *> (combineLines <$> many lLine) <* eof
{- Weeding -}
wBuildMap :: [(WithOffset LabelName, MimaAddress)]
-> Weed WeedError (Map.Map LabelName MimaAddress)
wBuildMap :: [(WithOffset LabelName, MimaAddress)] -> Weed WeedError LabelSpec
wBuildMap = foldM helper Map.empty
where
helper :: Map.Map LabelName MimaAddress
-> (WithOffset LabelName, MimaAddress)
-> Weed WeedError (Map.Map LabelName MimaAddress)
-> Weed WeedError LabelSpec
helper m (l, addr)
| name `Map.member` m = do
harmless $ errorAt l "label was specified more than once"
@ -62,12 +61,12 @@ wBuildMap = foldM helper Map.empty
where name = woValue l
weedSymbolFile :: Map.Map MimaAddress [WithOffset LabelName]
-> Weed WeedError (Map.Map LabelName MimaAddress)
-> Weed WeedError LabelSpec
weedSymbolFile m =
let pairs = [(l, a) | (a, ls) <- Map.assocs m, l <- ls]
in wBuildMap pairs
readSymbolFile :: FilePath -> T.Text -> Either WeedErrorBundle (Map.Map LabelName MimaAddress)
readSymbolFile :: FilePath -> T.Text -> Either WeedErrorBundle LabelSpec
readSymbolFile filename input = do
unweeded <- parse parseSymbolFile filename input
runWeedBundle filename input $ weedSymbolFile unweeded