git-annex/UUID.hs

98 lines
2.2 KiB
Haskell
Raw Normal View History

2010-10-12 17:10:07 +00:00
{- git-annex uuids
-
- Each git repository used by git-annex has an annex.uuid setting that
- uniquely identifies that repository.
-
-}
module UUID (
2010-10-12 22:06:34 +00:00
UUID,
2010-10-12 17:10:07 +00:00
getUUID,
prepUUID,
genUUID,
2010-10-14 03:18:58 +00:00
reposByUUID,
prettyPrintUUIDs
2010-10-12 17:10:07 +00:00
) where
2010-10-14 01:28:47 +00:00
import Control.Monad.State
import Maybe
import List
2010-10-12 17:10:07 +00:00
import System.Cmd.Utils
import System.IO
2010-10-14 06:36:41 +00:00
import qualified GitRepo as Git
2010-10-14 07:18:11 +00:00
import Types
import qualified Annex
2010-10-12 17:10:07 +00:00
2010-10-12 19:48:00 +00:00
type UUID = String
2010-10-12 17:10:07 +00:00
configkey="annex.uuid"
{- Generates a UUID. There is a library for this, but it's not packaged,
- so use the command line tool. -}
2010-10-14 01:28:47 +00:00
genUUID :: Annex UUID
genUUID = liftIO $ pOpen ReadFromPipe "uuid" ["-m"] $ \h -> hGetLine h
2010-10-12 17:10:07 +00:00
{- Looks up a repo's UUID. May return "" if none is known.
-
- UUIDs of remotes are cached in git config, using keys named
- remote.<name>.annex-uuid
-
- -}
2010-10-14 06:36:41 +00:00
getUUID :: Git.Repo -> Annex UUID
2010-10-14 01:28:47 +00:00
getUUID r = do
2010-10-14 17:49:45 +00:00
g <- Annex.gitRepo
let c = cached r g
let u = uncached r
if (c /= u && u /= "")
then do
updatecache g r u
return u
else return c
where
2010-10-14 17:49:45 +00:00
uncached r = Git.configGet r "annex.uuid" ""
cached r g = Git.configGet g (cachekey r) ""
updatecache g r u = do
if (g /= r)
then setConfig (cachekey r) u
2010-10-14 17:49:45 +00:00
else return ()
cachekey r = "remote." ++ (Git.repoRemoteName r) ++ ".annex-uuid"
2010-10-12 17:10:07 +00:00
{- Make sure that the repo has an annex.uuid setting. -}
2010-10-14 01:28:47 +00:00
prepUUID :: Annex ()
prepUUID = do
2010-10-14 07:18:11 +00:00
g <- Annex.gitRepo
2010-10-14 01:28:47 +00:00
u <- getUUID g
if ("" == u)
2010-10-12 17:10:07 +00:00
then do
uuid <- genUUID
2010-10-14 17:49:45 +00:00
setConfig configkey uuid
2010-10-14 01:28:47 +00:00
else return ()
2010-10-14 17:49:45 +00:00
{- Changes a git config setting in both internal state and .git/config -}
setConfig :: String -> String -> Annex ()
setConfig key value = do
g <- Annex.gitRepo
liftIO $ Git.run g ["config", key, value]
-- re-read git config and update the repo's state
g' <- liftIO $ Git.configRead g
Annex.gitRepoChange g'
return ()
{- Filters a list of repos to ones that have listed UUIDs. -}
2010-10-14 06:36:41 +00:00
reposByUUID :: [Git.Repo] -> [UUID] -> Annex [Git.Repo]
2010-10-14 01:28:47 +00:00
reposByUUID repos uuids = do
filterM match repos
where
match r = do
u <- getUUID r
return $ isJust $ elemIndex u uuids
2010-10-14 03:18:58 +00:00
{- Pretty-prints a list of UUIDs
- TODO: use lookup file to really show pretty names. -}
prettyPrintUUIDs :: [UUID] -> String
prettyPrintUUIDs uuids =
unwords $ map (\u -> "\tUUID "++u++"\n") uuids