summaryrefslogtreecommitdiff
path: root/src/Command
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2024-06-02 21:00:37 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2024-06-07 22:20:21 +0200
commitba789c3413ac996cb65314cb5ac9f77bd9617ff9 (patch)
treebef3d623dd4326a44d0af3996c4c5e446a40ea9b /src/Command
parenta66cf7cf7d897e87fef715daf36dd773562241ec (diff)
Patchset parameter for `run' command
Diffstat (limited to 'src/Command')
-rw-r--r--src/Command/Run.hs27
1 files changed, 21 insertions, 6 deletions
diff --git a/src/Command/Run.hs b/src/Command/Run.hs
index 3b997b5..28b35c3 100644
--- a/src/Command/Run.hs
+++ b/src/Command/Run.hs
@@ -7,10 +7,12 @@ import Control.Concurrent.STM
import Control.Monad
import Control.Monad.Reader
+import Data.Maybe
import Data.Text (Text)
import Data.Text qualified as T
import Data.Text.IO qualified as T
+import System.Exit
import System.IO
import System.Process
@@ -18,20 +20,33 @@ import Command
import Config
import Job
-data RunCommand = RunCommand
+data RunCommand = RunCommand Text
instance Command RunCommand where
commandName _ = "run"
- commandInit _ = RunCommand
- commandExec _ = cmdRun
+ type CommandArguments RunCommand = Maybe Text
-cmdRun :: CommandExec ()
-cmdRun = do
+ commandInit _ _ = RunCommand . fromMaybe "HEAD"
+ commandExec = cmdRun
+
+cmdRun :: RunCommand -> CommandExec ()
+cmdRun (RunCommand changeset) = do
config <- getConfig
+ ( base, tip ) <- case T.splitOn (T.pack "..") changeset of
+ base : tip : _ -> return ( T.unpack base, T.unpack tip )
+ [ param ] -> liftIO $ do
+ [ deref ] <- readProcessWithExitCode "git" [ "symbolic-ref", "--quiet", T.unpack param ] "" >>= \case
+ ( ExitSuccess, out, _ ) -> return $ lines out
+ ( _, _, _ ) -> return [ T.unpack param ]
+ [ _, tip ] : _ <- fmap words . lines <$> readProcess "git" [ "show-ref", deref ] ""
+ [ base ] <- lines <$> readProcess "git" [ "for-each-ref", "--format=%(upstream)", tip ] ""
+ return ( base, tip )
+ [] -> error "splitOn should not return empty list"
+
liftIO $ do
commits <- map (fmap (drop 1) . (span (/=' '))) . lines <$>
- readProcess "git" ["log", "--pretty=oneline", "--first-parent", "--reverse", "origin/master..HEAD"] ""
+ readProcess "git" [ "log", "--pretty=oneline", "--first-parent", "--reverse", base <> ".." <> tip ] ""
putStr $ replicate (8 + 50) ' '
forM_ (configJobs config) $ \job -> do