From f3dbad3df9f8c9c1aca873d74a34c6f9169133b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Sun, 23 Mar 2025 12:40:53 +0100 Subject: Evaluate canonical job ids Changelog: Added `jobid` command resolving job reference to canonical id --- src/Command/JobId.hs | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/Command/JobId.hs (limited to 'src/Command/JobId.hs') diff --git a/src/Command/JobId.hs b/src/Command/JobId.hs new file mode 100644 index 0000000..9f531d6 --- /dev/null +++ b/src/Command/JobId.hs @@ -0,0 +1,39 @@ +module Command.JobId ( + JobIdCommand, +) where + +import Control.Monad.IO.Class + +import Data.Text (Text) +import Data.Text qualified as T +import Data.Text.IO qualified as T + +import Command +import Eval +import Job.Types + + +data JobIdCommand = JobIdCommand JobRef + +instance Command JobIdCommand where + commandName _ = "jobid" + commandDescription _ = "Resolve job reference to canonical job ID" + + type CommandArguments JobIdCommand = Text + + commandUsage _ = T.pack $ unlines $ + [ "Usage: minici jobid " + ] + + commandInit _ _ = JobIdCommand . JobRef . T.splitOn "." + commandExec = cmdJobId + + +cmdJobId :: JobIdCommand -> CommandExec () +cmdJobId (JobIdCommand ref) = do + config <- getConfig + einput <- getEvalInput + JobId ids <- either (tfail . textEvalError) return =<< + liftIO (runEval (evalJobReference config ref) einput) + + liftIO $ T.putStrLn $ T.intercalate "." $ map textJobIdPart ids -- cgit v1.2.3