2011-11-26 12:39:47 +00:00
|
|
|
{-# LANGUAGE BangPatterns #-}
|
|
|
|
|
2010-10-09 23:22:40 +00:00
|
|
|
{- git-annex location log
|
|
|
|
-
|
2011-04-02 19:50:51 +00:00
|
|
|
- git-annex keeps track of which repositories have the contents of annexed
|
|
|
|
- files.
|
2010-10-09 23:22:40 +00:00
|
|
|
-
|
2010-10-12 22:06:34 +00:00
|
|
|
- Repositories record their UUID and the date when they --get or --drop
|
2010-10-13 00:04:36 +00:00
|
|
|
- a value.
|
2010-10-10 16:31:14 +00:00
|
|
|
-
|
2011-04-02 19:50:51 +00:00
|
|
|
- Copyright 2010-2011 Joey Hess <joey@kitenet.net>
|
2010-10-27 20:53:54 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
2010-10-09 23:22:40 +00:00
|
|
|
-}
|
|
|
|
|
2011-10-15 20:21:08 +00:00
|
|
|
module Logs.Location (
|
2010-10-12 22:25:41 +00:00
|
|
|
LogStatus(..),
|
2010-10-13 19:55:18 +00:00
|
|
|
logChange,
|
2011-03-16 15:53:46 +00:00
|
|
|
readLog,
|
2011-04-02 19:50:51 +00:00
|
|
|
keyLocations,
|
2011-07-01 21:23:01 +00:00
|
|
|
loggedKeys,
|
2011-10-29 21:49:37 +00:00
|
|
|
loggedKeysFor,
|
2011-07-01 21:23:01 +00:00
|
|
|
logFile,
|
2011-07-05 22:31:46 +00:00
|
|
|
logFileKey
|
2010-10-11 21:52:46 +00:00
|
|
|
) where
|
2010-10-09 23:22:40 +00:00
|
|
|
|
2011-10-05 20:02:51 +00:00
|
|
|
import Common.Annex
|
2011-10-04 04:40:47 +00:00
|
|
|
import qualified Annex.Branch
|
2011-10-15 20:21:08 +00:00
|
|
|
import Logs.Presence
|
2011-12-02 20:59:55 +00:00
|
|
|
import Logs.Trust
|
2010-10-09 23:22:40 +00:00
|
|
|
|
2011-06-22 20:01:32 +00:00
|
|
|
{- Log a change in the presence of a key's value in a repository. -}
|
2011-11-09 05:15:51 +00:00
|
|
|
logChange :: Key -> UUID -> LogStatus -> Annex ()
|
|
|
|
logChange key (UUID u) s = addLog (logFile key) =<< logNow s u
|
|
|
|
logChange _ NoUUID _ = return ()
|
2010-10-12 22:25:41 +00:00
|
|
|
|
|
|
|
{- Returns a list of repository UUIDs that, according to the log, have
|
2011-12-02 20:59:55 +00:00
|
|
|
- the value of a key.
|
|
|
|
-
|
|
|
|
- Dead repositories are skipped.
|
|
|
|
-}
|
2011-06-22 20:13:43 +00:00
|
|
|
keyLocations :: Key -> Annex [UUID]
|
2011-12-02 20:59:55 +00:00
|
|
|
keyLocations key = do
|
|
|
|
l <- map toUUID <$> (currentLog . logFile) key
|
|
|
|
snd <$> trustPartition DeadTrusted l
|
2011-04-02 19:50:51 +00:00
|
|
|
|
2011-04-03 00:36:01 +00:00
|
|
|
{- Finds all keys that have location log information.
|
|
|
|
- (There may be duplicate keys in the list.) -}
|
2011-06-23 03:24:14 +00:00
|
|
|
loggedKeys :: Annex [Key]
|
2011-10-04 04:40:47 +00:00
|
|
|
loggedKeys = mapMaybe (logFileKey . takeFileName) <$> Annex.Branch.files
|
2011-07-01 21:23:01 +00:00
|
|
|
|
2011-10-29 21:49:37 +00:00
|
|
|
{- Finds all keys that have location log information indicating
|
|
|
|
- they are present for the specified repository. -}
|
|
|
|
loggedKeysFor :: UUID -> Annex [Key]
|
|
|
|
loggedKeysFor u = filterM isthere =<< loggedKeys
|
|
|
|
where
|
|
|
|
{- This should run strictly to avoid the filterM
|
|
|
|
- building many thunks containing keyLocations data. -}
|
|
|
|
isthere k = do
|
|
|
|
us <- keyLocations k
|
|
|
|
let !there = u `elem` us
|
|
|
|
return there
|
|
|
|
|
2011-07-01 21:23:01 +00:00
|
|
|
{- The filename of the log file for a given key. -}
|
|
|
|
logFile :: Key -> String
|
|
|
|
logFile key = hashDirLower key ++ keyFile key ++ ".log"
|
|
|
|
|
|
|
|
{- Converts a log filename into a key. -}
|
|
|
|
logFileKey :: FilePath -> Maybe Key
|
|
|
|
logFileKey file
|
2011-12-15 22:11:42 +00:00
|
|
|
| ext == ".log" = fileKey base
|
2011-07-01 21:23:01 +00:00
|
|
|
| otherwise = Nothing
|
|
|
|
where
|
2011-12-15 22:11:42 +00:00
|
|
|
(base, ext) = splitAt (length file - 4) file
|