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
|
|
|
-}
|
|
|
|
|
2012-02-15 15:13:13 +00:00
|
|
|
{-# LANGUAGE BangPatterns #-}
|
|
|
|
|
2011-06-30 17:25:37 +00:00
|
|
|
module Git.Queue (
|
2010-10-26 19:59:50 +00:00
|
|
|
Queue,
|
2011-12-20 18:37:53 +00:00
|
|
|
new,
|
2010-10-26 19:59:50 +00:00
|
|
|
add,
|
2011-03-16 19:10:15 +00:00
|
|
|
size,
|
2011-04-07 17:59:31 +00:00
|
|
|
full,
|
2012-02-15 15:13:13 +00:00
|
|
|
flush,
|
2010-10-26 19:59:50 +00:00
|
|
|
) 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-10-26 19:59:50 +00:00
|
|
|
|
2012-02-01 20:05:02 +00:00
|
|
|
import Utility.SafeCommand
|
2011-12-20 18:37:53 +00:00
|
|
|
import Common
|
2011-06-30 17:25:37 +00:00
|
|
|
import Git
|
2011-12-14 19:56:11 +00:00
|
|
|
import Git.Command
|
2010-10-26 19:59:50 +00:00
|
|
|
|
|
|
|
{- 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. -}
|
2011-08-22 20:14:12 +00:00
|
|
|
data Action = Action
|
|
|
|
{ getSubcommand :: String
|
|
|
|
, getParams :: [CommandParam]
|
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. -}
|
2012-02-15 15:13:13 +00:00
|
|
|
data Queue = Queue
|
|
|
|
{ size :: Int
|
|
|
|
, _limit :: Int
|
|
|
|
, _items :: M.Map Action [FilePath]
|
|
|
|
}
|
2011-03-16 19:10:15 +00:00
|
|
|
deriving (Show, Eq)
|
2010-10-26 19:59:50 +00:00
|
|
|
|
2011-04-07 17:59:31 +00:00
|
|
|
{- A recommended maximum size for the queue, after which it should be
|
|
|
|
- run.
|
|
|
|
-
|
|
|
|
- 10240 is semi-arbitrary. If we assume git filenames are between 10 and
|
|
|
|
- 255 characters long, then the queue will build up between 100kb and
|
|
|
|
- 2550kb long commands. The max command line length on linux is somewhere
|
|
|
|
- above 20k, so this is a fairly good balance -- the queue will buffer
|
|
|
|
- only a few megabytes of stuff and a minimal number of commands will be
|
|
|
|
- run by xargs. -}
|
2012-02-15 15:13:13 +00:00
|
|
|
defaultLimit :: Int
|
|
|
|
defaultLimit = 10240
|
2011-04-07 17:59:31 +00:00
|
|
|
|
2010-10-26 19:59:50 +00:00
|
|
|
{- Constructor for empty queue. -}
|
2012-02-15 15:13:13 +00:00
|
|
|
new :: Maybe Int -> Queue
|
|
|
|
new lim = Queue 0 (fromMaybe defaultLimit lim) M.empty
|
2010-10-26 19:59:50 +00:00
|
|
|
|
|
|
|
{- Adds an action to a queue. -}
|
2011-07-14 20:56:06 +00:00
|
|
|
add :: Queue -> String -> [CommandParam] -> [FilePath] -> Queue
|
2012-02-15 15:13:13 +00:00
|
|
|
add (Queue cur lim m) subcommand params files = Queue (cur + 1) lim m'
|
2010-10-26 19:59:50 +00:00
|
|
|
where
|
|
|
|
action = Action subcommand params
|
2011-04-07 19:00:06 +00:00
|
|
|
-- There are probably few items in the map, but there
|
|
|
|
-- can be a lot of files per item. So, optimise adding
|
|
|
|
-- files.
|
2011-07-14 20:56:06 +00:00
|
|
|
m' = M.insertWith' const action fs m
|
2012-02-15 15:13:13 +00:00
|
|
|
!fs = files ++ M.findWithDefault [] action m
|
2010-10-26 19:59:50 +00:00
|
|
|
|
2011-04-07 17:59:31 +00:00
|
|
|
{- Is a queue large enough that it should be flushed? -}
|
|
|
|
full :: Queue -> Bool
|
2012-02-15 15:13:13 +00:00
|
|
|
full (Queue cur lim _) = cur > lim
|
2011-04-07 17:59:31 +00:00
|
|
|
|
2010-10-26 19:59:50 +00:00
|
|
|
{- Runs a queue on a git repository. -}
|
2011-11-08 19:34:10 +00:00
|
|
|
flush :: Queue -> Repo -> IO Queue
|
2012-02-15 15:13:13 +00:00
|
|
|
flush (Queue _ lim m) repo = do
|
2011-03-16 19:10:15 +00:00
|
|
|
forM_ (M.toList m) $ uncurry $ runAction repo
|
2012-02-15 15:13:13 +00:00
|
|
|
return $ Queue 0 lim M.empty
|
2010-10-26 19:59:50 +00:00
|
|
|
|
|
|
|
{- Runs an Action on a list of files in a git repository.
|
|
|
|
-
|
2011-07-14 20:56:06 +00:00
|
|
|
- Complicated by commandline length limits.
|
|
|
|
-
|
|
|
|
- Intentionally runs the command even if the list of files is empty;
|
|
|
|
- this allows queueing commands that do not need a list of files. -}
|
2011-06-30 17:25:37 +00:00
|
|
|
runAction :: Repo -> Action -> [FilePath] -> IO ()
|
2011-07-14 20:56:06 +00:00
|
|
|
runAction repo action files =
|
|
|
|
pOpen WriteToPipe "xargs" ("-0":"git":params) feedxargs
|
2010-10-26 19:59:50 +00:00
|
|
|
where
|
2011-11-08 19:34:10 +00:00
|
|
|
params = toCommand $ gitCommandLine
|
|
|
|
(Param (getSubcommand action):getParams action) repo
|
support all filename encodings with ghc 7.4
Under ghc 7.4, this seems to be able to handle all filename encodings
again. Including filename encodings that do not match the LANG setting.
I think this will not work with earlier versions of ghc, it uses some ghc
internals.
Turns out that ghc 7.4 has a special filesystem encoding that it uses when
reading/writing filenames (as FilePaths). This encoding is documented
to allow "arbitrary undecodable bytes to be round-tripped through it".
So, to get FilePaths from eg, git ls-files, set the Handle that is reading
from git to use this encoding. Then things basically just work.
However, I have not found a way to make Text read using this encoding.
Text really does assume unicode. So I had to switch back to using String
when reading/writing data to git. Which is a pity, because it's some
percent slower, but at least it works.
Note that stdout and stderr also have to be set to this encoding, or
printing out filenames that contain undecodable bytes causes a crash.
IMHO this is a misfeature in ghc, that the user can pass you a filename,
which you can readFile, etc, but that default, putStr of filename may
cause a crash!
Git.CheckAttr gave me special trouble, because the filenames I got back
from git, after feeding them in, had further encoding breakage.
Rather than try to deal with that, I just zip up the input filenames
with the attributes. Which must be returned in the same order queried
for this to work.
Also of note is an apparent GHC bug I worked around in Git.CheckAttr. It
used to forkProcess and feed git from the child process. Unfortunatly,
after this forkProcess, accessing the `files` variable from the parent
returns []. Not the value that was passed into the function. This screams
of a bad bug, that's clobbering a variable, but for now I just avoid
forkProcess there to work around it. That forkProcess was itself only added
because of a ghc bug, #624389. I've confirmed that the test case for that
bug doesn't reproduce it with ghc 7.4. So that's ok, except for the new ghc
bug I have not isolated and reported. Why does this simple bit of code
magnet the ghc bugs? :)
Also, the symlink touching code is currently broken, when used on utf-8
filenames in a non-utf-8 locale, or probably on any filename containing
undecodable bytes, and I temporarily commented it out.
2012-02-03 19:12:41 +00:00
|
|
|
feedxargs h = do
|
|
|
|
fileEncoding h
|
|
|
|
hPutStr h $ join "\0" files
|