From 0658710f7fcd2ac57abfaf1c387ef363a4a889da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Wed, 5 Mar 2025 20:42:14 +0100 Subject: Checkout command Changelog: Added `checkout` command --- src/Command.hs | 30 +++++++++++++++++++++------ src/Command/Checkout.hs | 34 +++++++++++++++++++++++++++++++ src/Main.hs | 54 +++++++++++++++++++++++++++++++++++++++++-------- src/Repo.hs | 27 ++++++++++++++++++++++++- 4 files changed, 130 insertions(+), 15 deletions(-) create mode 100644 src/Command/Checkout.hs (limited to 'src') diff --git a/src/Command.hs b/src/Command.hs index 2114d90..8ca0655 100644 --- a/src/Command.hs +++ b/src/Command.hs @@ -10,6 +10,7 @@ module Command ( getCommonOptions, getConfigPath, getConfig, + getRepo, getDefaultRepo, getTerminalOutput, ) where @@ -25,15 +26,18 @@ import System.Exit import System.IO import Config +import Repo import Terminal data CommonOptions = CommonOptions { optJobs :: Int + , optRepo :: [ DeclaredRepo ] } defaultCommonOptions :: CommonOptions defaultCommonOptions = CommonOptions { optJobs = 2 + , optRepo = [] } class CommandArgumentsType (CommandArguments c) => Command c where @@ -79,10 +83,16 @@ instance CommandArgumentsType [ Text ] where newtype CommandExec a = CommandExec (ReaderT CommandInput IO a) deriving (Functor, Applicative, Monad, MonadIO) +instance MonadFail CommandExec where + fail err = liftIO $ do + hPutStrLn stderr err + exitFailure + data CommandInput = CommandInput { ciOptions :: CommonOptions , ciConfigPath :: Maybe FilePath , ciConfig :: Either String Config + , ciRepos :: [ ( Maybe RepoName, Repo ) ] , ciTerminalOutput :: TerminalOutput } @@ -92,18 +102,26 @@ getCommonOptions = CommandExec (asks ciOptions) getConfigPath :: CommandExec FilePath getConfigPath = CommandExec $ do asks ciConfigPath >>= \case - Nothing -> liftIO $ do - hPutStrLn stderr "no job file found" - exitFailure + Nothing -> fail $ "no job file found" Just path -> return path getConfig :: CommandExec Config getConfig = CommandExec $ do asks ciConfig >>= \case - Left err -> liftIO $ do - hPutStrLn stderr err - exitFailure + Left err -> fail err Right config -> return config +getRepo :: RepoName -> CommandExec Repo +getRepo name = CommandExec $ do + asks (lookup (Just name) . ciRepos) >>= \case + Just repo -> return repo + Nothing -> fail $ "repo `" <> showRepoName name <> "' not declared" + +getDefaultRepo :: CommandExec Repo +getDefaultRepo = CommandExec $ do + asks (lookup Nothing . ciRepos) >>= \case + Just repo -> return repo + Nothing -> fail $ "no defalut repo" + getTerminalOutput :: CommandExec TerminalOutput getTerminalOutput = CommandExec (asks ciTerminalOutput) diff --git a/src/Command/Checkout.hs b/src/Command/Checkout.hs new file mode 100644 index 0000000..c180a34 --- /dev/null +++ b/src/Command/Checkout.hs @@ -0,0 +1,34 @@ +module Command.Checkout ( + CheckoutCommand, +) where + +import Data.Text (Text) +import Data.Text qualified as T + +import Command +import Repo + + +data CheckoutCommand = CheckoutCommand (Maybe RepoName) Text + +instance Command CheckoutCommand where + commandName _ = "checkout" + commandDescription _ = "Checkout (part of) a given repository" + + type CommandArguments CheckoutCommand = [ Text ] + + commandUsage _ = T.pack $ unlines $ + [ "Usage: minici checkout [ []] [