fbrnch-1.2: src/Cmd/Compare.hs
module Cmd.Compare (
compareCmd)
where
import Branches
import Common
import Common.System
import Git
import Package
compareCmd :: Bool -> Maybe String -> AnyBranch -> AnyBranch -> [String] -> IO ()
compareCmd long mignore br1 br2 pkgs = do
if null pkgs
then do
unlessM isPkgGitRepo $
error' "Please specify at least one package"
else do
whenM isPkgGitRepo $
error' "Cannot specify multiple packages inside a package dir"
let packages = if null pkgs then ["."] else pkgs
mapM_ comparePkg packages
where
comparePkg :: String -> IO ()
comparePkg pkgdir =
withExistingDirectory pkgdir $
unlessM (doesFileExist "dead.package") $ do
let (br1',br2') =
case (br1, br2) of
(RelBranch b1, RelBranch b2) | b2 < b1 -> (br2,br1)
_ -> (br1,br2)
localbranches <- gitLines "branch" ["--format=%(refname:short)"]
forM_ [br1',br2'] $ \br ->
unless (show br `elem` localbranches) $ gitSwitchBranch br
output <- ignoredLines <$> gitLines "log" (["--format=reference" | not long] ++ [show br1' ++ ".." ++ show br2'])
unless (null output) $ do
unless (null pkgs) $
getPackageName pkgdir >>= putPkgHdr
mapM_ putStrLn output
ignoredLines :: [String] -> [String]
ignoredLines =
case mignore of
Nothing -> id
Just ignore -> filter (not . (ignore `isInfixOf`))