diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2025-07-06 12:48:04 +0200 | 
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-07-06 14:42:05 +0200 | 
| commit | 95d084f71ca84400dd24030ec608c84727bc5405 (patch) | |
| tree | 41a3dc80cebef91bc9106c514196cc0d699478dd /src/Command/Shell.hs | |
| parent | d87acf3a084349c9575f1ecb53f5003733d407c0 (diff) | |
Shell command
Changelog: Added `shell` command to open a shell prepared for given job
Diffstat (limited to 'src/Command/Shell.hs')
| -rw-r--r-- | src/Command/Shell.hs | 46 | 
1 files changed, 46 insertions, 0 deletions
| diff --git a/src/Command/Shell.hs b/src/Command/Shell.hs new file mode 100644 index 0000000..4cd2b7e --- /dev/null +++ b/src/Command/Shell.hs @@ -0,0 +1,46 @@ +module Command.Shell ( +    ShellCommand, +) where + +import Control.Monad +import Control.Monad.IO.Class + +import Data.Maybe +import Data.Text (Text) +import Data.Text qualified as T + +import System.Environment +import System.Process hiding (ShellCommand) + +import Command +import Eval +import Job +import Job.Types + + +data ShellCommand = ShellCommand JobRef + +instance Command ShellCommand where +    commandName _ = "shell" +    commandDescription _ = "Open a shell prepared for given job" + +    type CommandArguments ShellCommand = Text + +    commandUsage _ = T.unlines $ +        [ "Usage: minici shell <job ref>" +        ] + +    commandInit _ _ = ShellCommand . parseJobRef +    commandExec = cmdShell + + +cmdShell :: ShellCommand -> CommandExec () +cmdShell (ShellCommand ref) = do +    einput <- getEvalInput +    job <- either (tfail . textEvalError) (return . fst) =<< +        liftIO (runEval (evalJobReference ref) einput) +    sh <- fromMaybe "/bin/sh" <$> liftIO (lookupEnv "SHELL") +    storageDir <- getStorageDir +    prepareJob storageDir job $ \checkoutPath _ -> do +        liftIO $ withCreateProcess (proc sh []) { cwd = Just checkoutPath } $ \_ _ _ ph -> do +            void $ waitForProcess ph |