module SHC.Utils
where
import Data.List
import Data.Function (on)
import Data.Traversable (traverse)
import Control.Monad (guard, unless)
import Control.Applicative ((<$>), (<*>))
import System.Process (readProcess)
import System.FilePath ((</>))
import System.Directory (doesDirectoryExist, getDirectoryContents)
import System.Directory.Tree (AnchoredDirTree(..), dirTree, readDirectoryWith)
import SHC.Types
readP :: String -> [String] -> IO String
readP name args = init <$> readProcess name args [] -- strip trailing \n
git :: [String] -> IO String
git = readP "git"
stack :: [String] -> IO String
stack = readP "stack"
-- | Get information about the Git repo in the current directory.
getGitInfo :: IO GitInfo
getGitInfo = GitInfo <$> headRef <*> branch <*> getRemotes
where headRef = Commit <$> git ["rev-parse", "HEAD"]
<*> git ["log", "-1", "--pretty=%aN"]
<*> git ["log", "-1", "--pretty=%aE"]
<*> git ["log", "-1", "--pretty=%cN"]
<*> git ["log", "-1", "--pretty=%cE"]
<*> git ["log", "-1", "--pretty=%s"]
branch = git ["rev-parse", "--abbrev-ref", "HEAD"]
getRemotes :: IO [Remote]
getRemotes = nubBy ((==) `on` name) <$> parseRemotes <$> git ["remote", "-v"]
where parseRemotes :: String -> [Remote]
parseRemotes input = do
line <- lines input
let fields = words line
guard $ length fields >= 2
return $ Remote (head fields) (fields !! 1)
getHpcDir :: String -> IO FilePath
getHpcDir package = (</> package) <$> stack ["path", "--local-hpc-root"]
getMixDir :: IO FilePath
getMixDir = (</> "hpc") <$> stack ["path", "--dist-dir"]
dumpDirectory :: FilePath -> IO ()
dumpDirectory path = do
directoryExists <- doesDirectoryExist path
unless directoryExists $ putStrLn ("Couldn't find the directory " ++ path)
putStrLn $ "Dumping " ++ path ++ " directory content:"
contents <- getDirectoryContents path
traverse putStrLn contents
return ()
dumpDirectoryTree :: FilePath -> IO ()
dumpDirectoryTree path = do
putStrLn $ "Dumping " ++ path ++ " directory tree:"
tree <- readDirectoryWith return path
traverse putStrLn $ dirTree tree
return ()
fst3 :: (a, b, c) -> a
fst3 (x, _, _) = x
snd3 :: (a, b, c) -> b
snd3 (_, x, _) = x
trd3 :: (a, b, c) -> c
trd3 (_, _, x) = x
fst4 :: (a, b, c, d) -> a
fst4 (x, _, _, _) = x
toFirstAndRest :: (a, b, c, d) -> (a, (b, c, d))
toFirstAndRest (a, b, c, d) = (a, (b, c, d))
listToMaybe :: [a] -> Maybe [a]
listToMaybe [] = Nothing
listToMaybe xs = Just xs
mcons :: Maybe a -> [a] -> [a]
mcons Nothing xs = xs
mcons (Just x) xs = x : xs
matchAny :: [String] -> String -> Bool
matchAny patterns fileName = any (`isPrefixOf` fileName) patterns
mapFirst :: (a -> a) -> [a] -> [a]
mapFirst f (x : xs) = f x : xs
mapFirst _ [] = []
mapLast :: (a -> a) -> [a] -> [a]
mapLast f [x] = [f x]
mapLast f (x : xs) = x : mapLast f xs
mapLast _ [] = []
subSeq :: Int -> Int -> [a] -> [a]
subSeq start end = drop start . take end
subSubSeq :: Int -> Int -> [[a]] -> [[a]]
subSubSeq start end = mapFirst (drop start) . mapLast (take end)
groupByIndex :: Int -> [(Int, a)] -> [[a]]
groupByIndex size = take size . flip (++) (repeat []) . groupByIndex' 0 []
where groupByIndex' _ ys [] = [ys]
groupByIndex' i ys xx@((xi, x) : xs) = if xi == i
then groupByIndex' i (x : ys) xs
else ys : groupByIndex' (i + 1) [] xx