git-annex/GitRepo.hs

296 lines
8.4 KiB
Haskell
Raw Normal View History

2010-10-12 03:22:38 +00:00
{- git repository handling
-
- This is written to be completely independant of git-annex and should be
- suitable for other uses.
-
2010-10-14 06:36:41 +00:00
-}
2010-10-10 01:06:46 +00:00
2010-10-11 21:52:46 +00:00
module GitRepo (
2010-10-14 06:36:41 +00:00
Repo,
repoFromCwd,
repoFromPath,
repoFromUrl,
2010-10-22 18:05:30 +00:00
repoIsUrl,
2010-10-22 17:40:19 +00:00
repoIsSsh,
2010-10-14 06:36:41 +00:00
repoDescribe,
workTree,
dir,
relative,
urlPath,
urlHost,
2010-10-14 06:36:41 +00:00
configGet,
configMap,
configRead,
run,
2010-10-16 18:20:43 +00:00
pipeRead,
2010-10-14 06:36:41 +00:00
attributes,
remotes,
remotesAdd,
2010-10-16 18:20:43 +00:00
repoRemoteName,
2010-10-16 18:58:14 +00:00
inRepo,
notInRepo
2010-10-11 21:52:46 +00:00
) where
2010-10-10 01:06:46 +00:00
import Directory
2010-10-12 03:22:38 +00:00
import System
2010-10-10 01:06:46 +00:00
import System.Directory
2010-10-12 16:47:11 +00:00
import System.Posix.Directory
2010-10-10 02:09:10 +00:00
import System.Path
2010-10-12 21:43:54 +00:00
import System.Cmd
import System.Cmd.Utils
import System.IO
2010-10-12 16:47:11 +00:00
import IO (bracket_)
2010-10-10 01:06:46 +00:00
import Data.String.Utils
2010-10-12 05:35:32 +00:00
import Data.Map as Map hiding (map, split)
2010-10-12 04:53:42 +00:00
import Network.URI
import Maybe
2010-10-16 20:20:49 +00:00
2010-10-10 03:35:05 +00:00
import Utility
2010-10-11 21:19:55 +00:00
2010-10-22 18:05:30 +00:00
{- There are two types of repositories; those on local disk and those
- accessed via an URL. -}
2010-10-14 06:36:41 +00:00
data Repo =
2010-10-22 18:05:30 +00:00
Repo {
2010-10-12 04:53:42 +00:00
top :: FilePath,
2010-10-13 18:01:17 +00:00
config :: Map String String,
2010-10-14 06:36:41 +00:00
remotes :: [Repo],
2010-10-13 18:01:17 +00:00
-- remoteName holds the name used for this repo in remotes
remoteName :: Maybe String
2010-10-22 18:05:30 +00:00
} | UrlRepo {
2010-10-22 16:38:20 +00:00
url :: URI,
2010-10-13 18:01:17 +00:00
config :: Map String String,
2010-10-14 06:36:41 +00:00
remotes :: [Repo],
2010-10-13 18:01:17 +00:00
remoteName :: Maybe String
2010-10-22 16:38:20 +00:00
} deriving (Show, Eq)
2010-10-12 04:53:42 +00:00
2010-10-14 06:36:41 +00:00
{- Local Repo constructor. -}
repoFromPath :: FilePath -> Repo
repoFromPath dir =
2010-10-22 18:05:30 +00:00
Repo {
2010-10-12 03:22:38 +00:00
top = dir,
2010-10-13 18:01:17 +00:00
config = Map.empty,
2010-10-14 02:59:43 +00:00
remotes = [],
2010-10-13 18:01:17 +00:00
remoteName = Nothing
2010-10-10 22:05:37 +00:00
}
2010-10-10 06:22:47 +00:00
2010-10-14 06:36:41 +00:00
{- Remote Repo constructor. Throws exception on invalid url. -}
repoFromUrl :: String -> Repo
repoFromUrl url =
2010-10-22 18:05:30 +00:00
UrlRepo {
2010-10-22 16:38:20 +00:00
url = fromJust $ parseURI url,
2010-10-13 18:01:17 +00:00
config = Map.empty,
2010-10-14 02:59:43 +00:00
remotes = [],
2010-10-13 18:01:17 +00:00
remoteName = Nothing
2010-10-12 04:53:42 +00:00
}
{- User-visible description of a git repo. -}
2010-10-14 06:36:41 +00:00
repoDescribe repo =
if (isJust $ remoteName repo)
then fromJust $ remoteName repo
2010-10-22 18:05:30 +00:00
else if (not $ repoIsUrl repo)
then top repo
2010-10-22 16:38:20 +00:00
else show (url repo)
2010-10-13 18:40:56 +00:00
2010-10-14 02:59:43 +00:00
{- Constructs and returns an updated version of a repo with
- different remotes list. -}
2010-10-14 06:36:41 +00:00
remotesAdd :: Repo -> [Repo] -> Repo
remotesAdd repo rs = repo { remotes = rs }
2010-10-14 02:59:43 +00:00
2010-10-13 18:40:56 +00:00
{- Returns the name of the remote that corresponds to the repo, if
- it is a remote. Otherwise, "" -}
2010-10-14 06:36:41 +00:00
repoRemoteName r =
2010-10-13 18:40:56 +00:00
if (isJust $ remoteName r)
then fromJust $ remoteName r
else ""
2010-10-22 18:05:30 +00:00
{- Some code needs to vary between URL and normal repos,
2010-10-22 16:38:20 +00:00
- or bare and non-bare, these functions help with that. -}
2010-10-22 18:05:30 +00:00
repoIsUrl repo = case (repo) of
UrlRepo {} -> True
Repo {} -> False
repoIsSsh repo = repoIsUrl repo && (uriScheme $ url repo) == "ssh:"
assertLocal repo action =
if (not $ repoIsUrl repo)
2010-10-12 04:53:42 +00:00
then action
else error $ "acting on URL git repo " ++ (repoDescribe repo) ++
2010-10-12 06:51:44 +00:00
" not supported"
2010-10-22 18:05:30 +00:00
assertUrl repo action =
if (repoIsUrl repo)
2010-10-22 17:40:19 +00:00
then action
else error $ "acting on local git repo " ++ (repoDescribe repo) ++
" not supported"
assertssh repo action =
if (repoIsSsh repo)
then action
else error $ "unsupported url " ++ (show $ url repo)
2010-10-14 06:36:41 +00:00
bare :: Repo -> Bool
bare repo =
if (member b (config repo))
then ("true" == fromJust (Map.lookup b (config repo)))
2010-10-14 06:36:41 +00:00
else error $ "it is not known if git repo " ++ (repoDescribe repo) ++
" is a bare repository; config not read"
where
b = "core.bare"
2010-10-11 21:52:46 +00:00
{- Path to a repository's gitattributes file. -}
2010-10-14 06:36:41 +00:00
attributes :: Repo -> String
2010-10-22 18:05:30 +00:00
attributes repo = assertLocal repo $ do
2010-10-10 23:14:32 +00:00
if (bare repo)
2010-10-12 04:53:42 +00:00
then (top repo) ++ "/info/.gitattributes"
else (top repo) ++ "/.gitattributes"
2010-10-10 06:29:58 +00:00
{- Path to a repository's .git directory, relative to its workTree. -}
2010-10-14 06:36:41 +00:00
dir :: Repo -> String
2010-10-22 17:40:19 +00:00
dir repo = if (bare repo) then "" else ".git"
2010-10-10 06:29:58 +00:00
{- Path to a repository's --work-tree, that is, its top.
-
- Note that for URL repositories, this is relative to the urlHost -}
2010-10-14 06:36:41 +00:00
workTree :: Repo -> FilePath
2010-10-22 17:40:19 +00:00
workTree repo =
2010-10-22 18:05:30 +00:00
if (not $ repoIsUrl repo)
2010-10-22 17:40:19 +00:00
then top repo
else urlPath repo
2010-10-12 04:53:42 +00:00
{- Given a relative or absolute filename in a repository, calculates the
- name to use to refer to the file relative to a git repository's top.
2010-10-10 02:09:10 +00:00
- This is the same form displayed and used by git. -}
2010-10-14 06:36:41 +00:00
relative :: Repo -> String -> String
relative repo file = assertLocal repo $ drop (length absrepo) absfile
2010-10-10 02:09:10 +00:00
where
-- normalize both repo and file, so that repo
-- will be substring of file
absrepo = case (absNormPath "/" (top repo)) of
2010-10-10 02:09:10 +00:00
Just f -> f ++ "/"
Nothing -> error $ "bad repo" ++ (top repo)
2010-10-10 02:09:10 +00:00
absfile = case (secureAbsNormPath absrepo file) of
Just f -> f
Nothing -> error $ file ++ " is not located inside git repository " ++ absrepo
{- Hostname of an URL repo. (May include a username and/or port too.) -}
urlHost :: Repo -> String
urlHost repo = assertUrl repo $
(uriUserInfo a) ++ (uriRegName a) ++ (uriPort a)
where
a = fromJust $ uriAuthority $ url repo
{- Path of an URL repo. -}
urlPath :: Repo -> String
urlPath repo = assertUrl repo $
uriPath $ url repo
2010-10-12 03:22:38 +00:00
{- Constructs a git command line operating on the specified repo. -}
2010-10-14 06:36:41 +00:00
gitCommandLine :: Repo -> [String] -> [String]
2010-10-22 18:05:30 +00:00
gitCommandLine repo params = assertLocal repo $
2010-10-12 03:22:38 +00:00
-- force use of specified repo via --git-dir and --work-tree
2010-10-14 06:36:41 +00:00
["--git-dir="++(top repo)++"/"++(dir repo), "--work-tree="++(top repo)] ++ params
2010-10-12 03:22:38 +00:00
{- Runs git in the specified repo. -}
2010-10-14 06:36:41 +00:00
run :: Repo -> [String] -> IO ()
2010-10-22 18:05:30 +00:00
run repo params = assertLocal repo $ do
2010-10-19 05:19:56 +00:00
r <- safeSystem "git" (gitCommandLine repo params)
2010-10-12 06:51:44 +00:00
return ()
2010-10-10 19:04:18 +00:00
2010-10-12 03:22:38 +00:00
{- Runs a git subcommand and returns its output. -}
2010-10-16 18:20:43 +00:00
pipeRead :: Repo -> [String] -> IO String
2010-10-22 18:05:30 +00:00
pipeRead repo params = assertLocal repo $ do
2010-10-12 06:51:44 +00:00
pOpen ReadFromPipe "git" (gitCommandLine repo params) $ \h -> do
ret <- hGetContentsStrict h
return ret
2010-10-12 03:22:38 +00:00
2010-10-16 18:20:43 +00:00
{- Passed a location, recursively scans for all files that
- are checked into git at that location. -}
2010-10-16 18:58:14 +00:00
inRepo :: Repo -> FilePath -> IO [FilePath]
inRepo repo location = do
s <- pipeRead repo ["ls-files", "--cached", "--exclude-standard", location]
2010-10-16 18:20:43 +00:00
return $ lines s
{- Passed a location, recursively scans for all files that are not checked
- into git, and not gitignored. -}
2010-10-16 18:58:14 +00:00
notInRepo :: Repo -> FilePath -> IO [FilePath]
notInRepo repo location = do
s <- pipeRead repo ["ls-files", "--others", "--exclude-standard", location]
2010-10-16 18:20:43 +00:00
return $ lines s
2010-10-12 16:47:11 +00:00
{- Runs git config and populates a repo with its config. -}
2010-10-14 06:36:41 +00:00
configRead :: Repo -> IO Repo
2010-10-22 18:05:30 +00:00
configRead repo =
if (not $ repoIsUrl repo)
2010-10-22 16:38:20 +00:00
then do
2010-10-22 18:05:30 +00:00
{- Cannot use pipeRead because it relies on the config having
been already read. Instead, chdir to the repo. -}
2010-10-22 16:38:20 +00:00
cwd <- getCurrentDirectory
bracket_ (changeWorkingDirectory (top repo))
(\_ -> changeWorkingDirectory cwd) $
pOpen ReadFromPipe "git" ["config", "--list"] proc
else assertssh repo $ do
pOpen ReadFromPipe "ssh" [urlHost repo, sshcommand] proc
2010-10-22 16:38:20 +00:00
where
sshcommand = "cd " ++ (shellEscape $ urlPath repo) ++ " && git config --list"
2010-10-22 16:38:20 +00:00
proc h = do
val <- hGetContentsStrict h
let r = repo { config = configParse val }
return r { remotes = configRemotes r }
2010-10-14 02:59:43 +00:00
{- Calculates a list of a repo's configured remotes, by parsing its config. -}
2010-10-14 06:36:41 +00:00
configRemotes :: Repo -> [Repo]
configRemotes repo = map construct remotes
2010-10-14 02:59:43 +00:00
where
remotes = toList $ filter $ config repo
filter = filterWithKey (\k _ -> isremote k)
isremote k = (startswith "remote." k) && (endswith ".url" k)
remotename k = (split "." k) !! 1
construct (k,v) = (gen v) { remoteName = Just $ remotename k }
gen v = if (isURI v)
2010-10-14 06:36:41 +00:00
then repoFromUrl v
else repoFromPath v
2010-10-12 03:41:12 +00:00
{- Parses git config --list output into a config map. -}
2010-10-14 06:36:41 +00:00
configParse :: String -> Map.Map String String
configParse s = Map.fromList $ map pair $ lines s
2010-10-12 03:41:12 +00:00
where
pair l = (key l, val l)
key l = (keyval l) !! 0
val l = join sep $ drop 1 $ keyval l
keyval l = split sep l :: [String]
sep = "="
2010-10-12 03:22:38 +00:00
{- Returns a single git config setting, or a default value if not set. -}
2010-10-14 06:36:41 +00:00
configGet :: Repo -> String -> String -> String
configGet repo key defaultValue =
2010-10-12 16:31:19 +00:00
Map.findWithDefault defaultValue key (config repo)
2010-10-12 05:35:32 +00:00
2010-10-14 02:59:43 +00:00
{- Access to raw config Map -}
2010-10-14 06:36:41 +00:00
configMap :: Repo -> Map String String
configMap repo = config repo
{- Finds the current git repository, which may be in a parent directory. -}
2010-10-14 06:36:41 +00:00
repoFromCwd :: IO Repo
repoFromCwd = do
2010-10-10 02:09:10 +00:00
cwd <- getCurrentDirectory
top <- seekUp cwd isRepoTop
2010-10-10 01:06:46 +00:00
case top of
2010-10-14 06:36:41 +00:00
(Just dir) -> return $ repoFromPath dir
2010-10-10 01:06:46 +00:00
Nothing -> error "Not in a git repository."
seekUp :: String -> (String -> IO Bool) -> IO (Maybe String)
seekUp dir want = do
ok <- want dir
if ok
then return (Just dir)
else case (parentDir dir) of
2010-10-10 03:35:05 +00:00
"" -> return Nothing
d -> seekUp d want
2010-10-10 01:06:46 +00:00
isRepoTop dir = do
2010-10-14 06:36:41 +00:00
r <- isRepo dir
2010-10-10 01:06:46 +00:00
b <- isBareRepo dir
return (r || b)
where
2010-10-14 06:36:41 +00:00
isRepo dir = gitSignature dir ".git" ".git/config"
isBareRepo dir = gitSignature dir "objects" "config"
gitSignature dir subdir file = do
s <- (doesDirectoryExist (dir ++ "/" ++ subdir))
f <- (doesFileExist (dir ++ "/" ++ file))
return (s && f)