2011-06-21 18:09:06 +00:00
|
|
|
{- git-union-merge library
|
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2011-06-30 17:32:47 +00:00
|
|
|
module Git.UnionMerge (
|
2011-06-21 23:09:20 +00:00
|
|
|
merge,
|
2011-10-07 17:17:54 +00:00
|
|
|
merge_index,
|
2011-06-23 15:37:26 +00:00
|
|
|
update_index,
|
2011-06-23 21:38:27 +00:00
|
|
|
update_index_line,
|
|
|
|
ls_tree
|
2011-06-21 18:09:06 +00:00
|
|
|
) where
|
|
|
|
|
|
|
|
import System.Cmd.Utils
|
|
|
|
import Data.List
|
|
|
|
import Data.Maybe
|
|
|
|
import Data.String.Utils
|
2011-09-29 23:19:28 +00:00
|
|
|
import qualified Data.ByteString.Lazy.Char8 as L
|
2011-06-21 18:09:06 +00:00
|
|
|
|
2011-10-07 17:17:54 +00:00
|
|
|
import Common
|
2011-06-30 17:32:47 +00:00
|
|
|
import Git
|
2011-06-21 18:09:06 +00:00
|
|
|
|
2011-06-21 23:52:40 +00:00
|
|
|
{- Performs a union merge between two branches, staging it in the index.
|
|
|
|
- Any previously staged changes in the index will be lost.
|
2011-06-21 21:39:45 +00:00
|
|
|
-
|
2011-06-21 23:52:40 +00:00
|
|
|
- Should be run with a temporary index file configured by Git.useIndex.
|
2011-06-21 21:39:45 +00:00
|
|
|
-}
|
2011-11-08 19:34:10 +00:00
|
|
|
merge :: String -> String -> Repo -> IO ()
|
|
|
|
merge x y repo = do
|
|
|
|
a <- ls_tree x repo
|
|
|
|
b <- merge_trees x y repo
|
|
|
|
update_index repo (a++b)
|
2011-10-07 17:17:54 +00:00
|
|
|
|
|
|
|
{- Merges a list of branches into the index. Previously staged changed in
|
|
|
|
- the index are preserved (and participate in the merge). -}
|
|
|
|
merge_index :: Repo -> [String] -> IO ()
|
2011-11-08 19:34:10 +00:00
|
|
|
merge_index repo bs =
|
2011-11-11 05:52:58 +00:00
|
|
|
update_index repo =<< concat <$> mapM (`merge_tree_index` repo) bs
|
2011-06-21 18:09:06 +00:00
|
|
|
|
2011-06-21 23:52:40 +00:00
|
|
|
{- Feeds a list into update-index. Later items in the list can override
|
|
|
|
- earlier ones, so the list can be generated from any combination of
|
2011-06-22 17:59:42 +00:00
|
|
|
- ls_tree, merge_trees, and merge_tree_index. -}
|
2011-06-30 17:32:47 +00:00
|
|
|
update_index :: Repo -> [String] -> IO ()
|
2011-11-08 19:34:10 +00:00
|
|
|
update_index repo l = togit ["update-index", "-z", "--index-info"] (join "\0" l)
|
2011-06-21 18:09:06 +00:00
|
|
|
where
|
2011-11-08 19:34:10 +00:00
|
|
|
togit ps content = pipeWrite (map Param ps) (L.pack content) repo
|
2011-06-21 18:09:06 +00:00
|
|
|
>>= forceSuccess
|
|
|
|
|
2011-06-23 15:37:26 +00:00
|
|
|
{- Generates a line suitable to be fed into update-index, to add
|
|
|
|
- a given file with a given sha. -}
|
|
|
|
update_index_line :: String -> FilePath -> String
|
|
|
|
update_index_line sha file = "100644 blob " ++ sha ++ "\t" ++ file
|
|
|
|
|
2011-06-21 23:52:40 +00:00
|
|
|
{- Gets the contents of a tree in a format suitable for update_index. -}
|
2011-11-08 19:34:10 +00:00
|
|
|
ls_tree :: String -> Repo -> IO [String]
|
|
|
|
ls_tree x = pipeNullSplit params
|
|
|
|
where
|
|
|
|
params = map Param ["ls-tree", "-z", "-r", "--full-tree", x]
|
2011-06-21 23:52:40 +00:00
|
|
|
|
|
|
|
{- For merging two trees. -}
|
2011-11-08 19:34:10 +00:00
|
|
|
merge_trees :: String -> String -> Repo -> IO [String]
|
|
|
|
merge_trees x y = calc_merge $ "diff-tree":diff_opts ++ [x, y]
|
2011-06-21 23:52:40 +00:00
|
|
|
|
|
|
|
{- For merging a single tree into the index. -}
|
2011-11-08 19:34:10 +00:00
|
|
|
merge_tree_index :: String -> Repo -> IO [String]
|
|
|
|
merge_tree_index x = calc_merge $ "diff-index":diff_opts ++ ["--cached", x]
|
2011-06-23 21:38:27 +00:00
|
|
|
|
|
|
|
diff_opts :: [String]
|
|
|
|
diff_opts = ["--raw", "-z", "-r", "--no-renames", "-l0"]
|
2011-06-21 23:52:40 +00:00
|
|
|
|
|
|
|
{- Calculates how to perform a merge, using git to get a raw diff,
|
|
|
|
- and returning a list suitable for update_index. -}
|
2011-11-08 19:34:10 +00:00
|
|
|
calc_merge :: [String] -> Repo -> IO [String]
|
|
|
|
calc_merge differ repo = do
|
|
|
|
diff <- pipeNullSplit (map Param differ) repo
|
|
|
|
l <- mapM (\p -> mergeFile p repo) (pairs diff)
|
2011-06-21 23:52:40 +00:00
|
|
|
return $ catMaybes l
|
|
|
|
where
|
2011-06-21 18:09:06 +00:00
|
|
|
pairs [] = []
|
2011-06-22 17:59:42 +00:00
|
|
|
pairs (_:[]) = error "calc_merge parse error"
|
2011-06-21 18:09:06 +00:00
|
|
|
pairs (a:b:rest) = (a,b):pairs rest
|
2011-06-22 17:59:42 +00:00
|
|
|
|
2011-09-29 23:19:28 +00:00
|
|
|
{- Injects some content into git, returning its hash. -}
|
2011-11-08 19:34:10 +00:00
|
|
|
hashObject :: L.ByteString -> Repo -> IO String
|
|
|
|
hashObject content repo = getSha subcmd $ do
|
|
|
|
(h, s) <- pipeWriteRead (map Param params) content repo
|
2011-09-29 23:19:28 +00:00
|
|
|
L.length s `seq` do
|
|
|
|
forceSuccess h
|
|
|
|
reap -- XXX unsure why this is needed
|
|
|
|
return $ L.unpack s
|
|
|
|
where
|
|
|
|
subcmd = "hash-object"
|
|
|
|
params = [subcmd, "-w", "--stdin"]
|
|
|
|
|
2011-06-22 17:59:42 +00:00
|
|
|
{- Given an info line from a git raw diff, and the filename, generates
|
|
|
|
- a line suitable for update_index that union merges the two sides of the
|
|
|
|
- diff. -}
|
2011-11-08 19:34:10 +00:00
|
|
|
mergeFile :: (String, FilePath) -> Repo -> IO (Maybe String)
|
|
|
|
mergeFile (info, file) repo = case filter (/= nullsha) [asha, bsha] of
|
2011-06-22 17:59:42 +00:00
|
|
|
[] -> return Nothing
|
2011-06-23 15:37:26 +00:00
|
|
|
(sha:[]) -> return $ Just $ update_index_line sha file
|
2011-06-22 17:59:42 +00:00
|
|
|
shas -> do
|
2011-11-08 19:34:10 +00:00
|
|
|
content <- pipeRead (map Param ("show":shas)) repo
|
|
|
|
sha <- hashObject (unionmerge content) repo
|
2011-06-23 15:37:26 +00:00
|
|
|
return $ Just $ update_index_line sha file
|
2011-06-22 17:59:42 +00:00
|
|
|
where
|
|
|
|
[_colonamode, _bmode, asha, bsha, _status] = words info
|
2011-07-15 07:12:05 +00:00
|
|
|
nullsha = replicate shaSize '0'
|
2011-09-29 23:19:28 +00:00
|
|
|
unionmerge = L.unlines . nub . L.lines
|