diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-14 21:18:17 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-14 21:39:14 +0100 |
commit | 3bb1c548e2696abd3f7dc2d7b9fbc27ceb490c36 (patch) | |
tree | 67cb5d9f33483fe5393bfda89b10b63c5420e962 /src/Command.hs | |
parent | f8b2df887d3847041a81b00dbea70db30b07eb92 (diff) |
Evaluate repo definitions
Diffstat (limited to 'src/Command.hs')
-rw-r--r-- | src/Command.hs | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/Command.hs b/src/Command.hs index c9a77e6..aaaaca1 100644 --- a/src/Command.hs +++ b/src/Command.hs @@ -12,6 +12,7 @@ module Command ( getConfigPath, getConfig, getRepo, getDefaultRepo, tryGetDefaultRepo, + getEvalInput, getTerminalOutput, ) where @@ -29,6 +30,7 @@ import System.Exit import System.IO import Config +import Eval import Repo import Terminal @@ -98,7 +100,8 @@ data CommandInput = CommandInput { ciOptions :: CommonOptions , ciConfigPath :: Maybe FilePath , ciConfig :: Either String Config - , ciRepos :: [ ( Maybe RepoName, Repo ) ] + , ciContainingRepo :: Maybe Repo + , ciOtherRepos :: [ ( RepoName, Repo ) ] , ciTerminalOutput :: TerminalOutput } @@ -119,7 +122,7 @@ getConfig = do getRepo :: RepoName -> CommandExec Repo getRepo name = do - CommandExec (asks (lookup (Just name) . ciRepos)) >>= \case + CommandExec (asks (lookup name . ciOtherRepos)) >>= \case Just repo -> return repo Nothing -> tfail $ "repo `" <> textRepoName name <> "' not declared" @@ -130,7 +133,13 @@ getDefaultRepo = do Nothing -> tfail $ "no default repo" tryGetDefaultRepo :: CommandExec (Maybe Repo) -tryGetDefaultRepo = CommandExec $ asks (lookup Nothing . ciRepos) +tryGetDefaultRepo = CommandExec $ asks ciContainingRepo + +getEvalInput :: CommandExec EvalInput +getEvalInput = CommandExec $ do + eiContainingRepo <- asks ciContainingRepo + eiOtherRepos <- asks ciOtherRepos + return EvalInput {..} getTerminalOutput :: CommandExec TerminalOutput getTerminalOutput = CommandExec (asks ciTerminalOutput) |