git-annex/UUID.hs

159 lines
3.8 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.
-
2010-10-27 20:53:54 +00:00
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
2010-10-12 17:10:07 +00:00
-}
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,
reposWithoutUUID,
2010-10-16 00:20:16 +00:00
prettyPrintUUIDs,
2010-10-16 20:15:31 +00:00
describeUUID,
uuidLog,
trustLog,
getTrusted,
setTrusted
2010-10-12 17:10:07 +00:00
) where
2010-10-14 01:28:47 +00:00
import Control.Monad.State
import Data.Maybe
import Data.List
2010-10-12 17:10:07 +00:00
import System.Cmd.Utils
import System.IO
2010-10-16 00:20:16 +00:00
import qualified Data.Map as M
2010-10-16 20:20:49 +00:00
2010-10-14 06:36:41 +00:00
import qualified GitRepo as Git
2010-10-14 07:18:11 +00:00
import Types
2010-10-16 00:20:16 +00:00
import Locations
2010-10-14 07:18:11 +00:00
import qualified Annex
2010-10-16 20:15:31 +00:00
import Utility
2010-10-12 17:10:07 +00:00
2010-10-12 19:48:00 +00:00
type UUID = String
2010-10-31 20:04:19 +00:00
configkey :: 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-16 00:20:16 +00:00
genUUID :: IO UUID
2010-10-14 01:28:47 +00:00
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
2010-10-31 20:04:19 +00:00
let c = cached g
let u = uncached
2010-10-19 17:39:53 +00:00
if c /= u && u /= ""
then do
2010-10-31 20:04:19 +00:00
updatecache g u
return u
else return c
where
2010-10-31 20:04:19 +00:00
uncached = Git.configGet r "annex.uuid" ""
cached g = Git.configGet g cachekey ""
updatecache g u = when (g /= r) $ Annex.setConfig cachekey u
cachekey = "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
2010-10-28 16:40:05 +00:00
when ("" == u) $ do
uuid <- liftIO $ genUUID
Annex.setConfig configkey uuid
2010-10-14 17:49:45 +00:00
{- 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]
reposByUUID repos uuids = filterM match repos
2010-10-14 01:28:47 +00:00
where
match r = do
u <- getUUID r
return $ isJust $ elemIndex u uuids
2010-10-14 03:18:58 +00:00
{- Filters a list of repos to ones that do not have the listed UUIDs. -}
reposWithoutUUID :: [Git.Repo] -> [UUID] -> Annex [Git.Repo]
reposWithoutUUID repos uuids = filterM unmatch repos
where
unmatch r = do
u <- getUUID r
return $ not $ isJust $ elemIndex u uuids
2010-10-16 00:20:16 +00:00
{- Pretty-prints a list of UUIDs -}
2010-10-15 23:32:56 +00:00
prettyPrintUUIDs :: [UUID] -> Annex String
2010-10-16 00:20:16 +00:00
prettyPrintUUIDs uuids = do
m <- uuidMap
return $ unwords $ map (\u -> "\t" ++ prettify m u ++ "\n") uuids
2010-10-16 00:20:16 +00:00
where
prettify m u =
if not $ null $ findlog m u
then u ++ " -- " ++ findlog m u
2010-10-16 00:20:16 +00:00
else u
findlog m u = M.findWithDefault "" u m
{- Records a description for a uuid in the uuidLog. -}
describeUUID :: UUID -> String -> Annex ()
describeUUID uuid desc = do
m <- uuidMap
let m' = M.insert uuid desc m
2010-10-31 20:04:19 +00:00
logfile <- uuidLog
liftIO $ safeWriteFile logfile (serialize m')
2010-10-16 00:20:16 +00:00
where
serialize m = unlines $ map (\(u, d) -> u++" "++d) $ M.toList m
2010-10-14 03:18:58 +00:00
2010-10-16 00:20:16 +00:00
{- Read and parse the uuidLog into a Map -}
uuidMap :: Annex (M.Map UUID String)
uuidMap = do
2010-10-31 20:04:19 +00:00
logfile <- uuidLog
s <- liftIO $ catch (readFile logfile) ignoreerror
return $ M.fromList $ map pair $ lines s
2010-10-16 00:20:16 +00:00
where
pair l =
if 1 < length (words l)
then (head $ words l, unwords $ drop 1 $ words l)
2010-10-16 00:20:16 +00:00
else ("", "")
2010-10-31 20:04:19 +00:00
ignoreerror _ = return ""
2010-10-16 00:20:16 +00:00
{- Filename of uuid.log. -}
uuidLog :: Annex FilePath
2010-10-16 00:20:16 +00:00
uuidLog = do
g <- Annex.gitRepo
return $ gitStateDir g ++ "uuid.log"
{- Filename of trust.log. -}
trustLog :: Annex FilePath
trustLog = do
g <- Annex.gitRepo
return $ gitStateDir g ++ "trust.log"
{- List of trusted UUIDs. -}
getTrusted :: Annex [UUID]
getTrusted = do
logfile <- trustLog
s <- liftIO $ catch (readFile logfile) ignoreerror
return $ map (\l -> head $ words l) $ lines s
where
ignoreerror _ = return ""
{- Changes the list of trusted UUIDs. -}
setTrusted :: [UUID] -> Annex ()
setTrusted u = do
logfile <- trustLog
liftIO $ safeWriteFile logfile $ unlines u