{-# LANGUAGE OverloadedStrings #-}
module Data.Git.Path where
import System.Random
import Data.Git.Ref
import Data.Git.Imports
import Data.Git.OS
import Data.String
configPath, headsPath, tagsPath, remotesPath, packedRefsPath :: LocalPath -> LocalPath
configPath gitRepo = gitRepo </> "config"
headsPath gitRepo = gitRepo </> "refs" </> "heads" </> ""
tagsPath gitRepo = gitRepo </> "refs" </> "tags" </> ""
remotesPath gitRepo = gitRepo </> "refs" </> "remotes" </> ""
packedRefsPath gitRepo = gitRepo </> "packed-refs"
headPath, tagPath, remotePath, specialPath :: LocalPath -> String -> LocalPath
headPath gitRepo name = headsPath gitRepo </> fromString name
tagPath gitRepo name = tagsPath gitRepo </> fromString name
remotePath gitRepo name = remotesPath gitRepo </> fromString name
specialPath gitRepo name = gitRepo </> fromString name
remoteEntPath :: LocalPath -> String -> String -> LocalPath
remoteEntPath gitRepo name ent = remotePath gitRepo name </> fromString ent
packDirPath :: LocalPath -> LocalPath
packDirPath repoPath = repoPath </> "objects" </> "pack"
indexPath, packPath :: LocalPath -> Ref hash -> LocalPath
indexPath repoPath indexRef =
packDirPath repoPath </> fromString ("pack-" ++ toHexString indexRef ++ ".idx")
packPath repoPath packRef =
packDirPath repoPath </> fromString ("pack-" ++ toHexString packRef ++ ".pack")
objectPath :: LocalPath -> String -> String -> LocalPath
objectPath repoPath d f = repoPath </> "objects" </> fromString d </> fromString f
objectPathOfRef :: HashAlgorithm hash => LocalPath -> Ref hash -> LocalPath
objectPathOfRef repoPath ref = objectPath repoPath d f
where (d,f) = toFilePathParts ref
objectTemporaryPath :: LocalPath -> IO LocalPath
objectTemporaryPath repoPath = do
r <- fst . random <$> getStdGen :: IO Int
return (repoPath </> "objects" </> fromString ("tmp-" ++ show r ++ ".tmp"))