2010-10-27 17:12:02 +00:00
|
|
|
{- git repository command queue
|
2010-10-27 20:53:54 +00:00
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
2010-10-26 19:59:50 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
module GitQueue (
|
|
|
|
Queue,
|
|
|
|
empty,
|
|
|
|
add,
|
|
|
|
run
|
|
|
|
) where
|
|
|
|
|
|
|
|
import qualified Data.Map as M
|
2010-10-27 17:12:02 +00:00
|
|
|
import System.IO
|
|
|
|
import System.Cmd.Utils
|
|
|
|
import Data.String.Utils
|
2010-11-06 21:07:11 +00:00
|
|
|
import Control.Monad (unless)
|
2010-10-26 19:59:50 +00:00
|
|
|
|
|
|
|
import qualified GitRepo as Git
|
|
|
|
|
|
|
|
{- An action to perform in a git repository. The file to act on
|
|
|
|
- is not included, and must be able to be appended after the params. -}
|
|
|
|
data Action = Action {
|
2010-10-31 19:25:55 +00:00
|
|
|
getSubcommand :: String,
|
|
|
|
getParams :: [String]
|
2010-10-26 19:59:50 +00:00
|
|
|
} deriving (Show, Eq, Ord)
|
|
|
|
|
|
|
|
{- A queue of actions to perform (in any order) on a git repository,
|
|
|
|
- with lists of files to perform them on. This allows coalescing
|
|
|
|
- similar git commands. -}
|
|
|
|
type Queue = M.Map Action [FilePath]
|
|
|
|
|
|
|
|
{- Constructor for empty queue. -}
|
|
|
|
empty :: Queue
|
|
|
|
empty = M.empty
|
|
|
|
|
|
|
|
{- Adds an action to a queue. -}
|
|
|
|
add :: Queue -> String -> [String] -> FilePath -> Queue
|
|
|
|
add queue subcommand params file = M.insertWith (++) action [file] queue
|
|
|
|
where
|
|
|
|
action = Action subcommand params
|
|
|
|
|
|
|
|
{- Runs a queue on a git repository. -}
|
|
|
|
run :: Git.Repo -> Queue -> IO ()
|
|
|
|
run repo queue = do
|
2010-11-22 19:46:57 +00:00
|
|
|
_ <- mapM (uncurry $ runAction repo) $ M.toList queue
|
2010-10-26 19:59:50 +00:00
|
|
|
return ()
|
|
|
|
|
|
|
|
{- Runs an Action on a list of files in a git repository.
|
|
|
|
-
|
|
|
|
- Complicated by commandline length limits. -}
|
|
|
|
runAction :: Git.Repo -> Action -> [FilePath] -> IO ()
|
|
|
|
runAction repo action files = do
|
2010-10-28 16:40:05 +00:00
|
|
|
unless (null files) runxargs
|
2010-10-26 19:59:50 +00:00
|
|
|
where
|
2010-10-31 19:25:55 +00:00
|
|
|
runxargs = pOpen WriteToPipe "xargs" ("-0":gitcmd) feedxargs
|
2010-11-22 19:46:57 +00:00
|
|
|
gitcmd = "git" : Git.gitCommandLine repo
|
2010-11-06 21:07:11 +00:00
|
|
|
(getSubcommand action:getParams action)
|
2010-10-27 17:12:02 +00:00
|
|
|
feedxargs h = hPutStr h $ join "\0" files
|