2010-10-09 19:22:40 -04:00
|
|
|
{- git-annex location log
|
|
|
|
-
|
2011-04-02 15:50:51 -04:00
|
|
|
- git-annex keeps track of which repositories have the contents of annexed
|
|
|
|
- files.
|
2010-10-09 19:22:40 -04:00
|
|
|
-
|
2010-10-12 18:06:34 -04:00
|
|
|
- Repositories record their UUID and the date when they --get or --drop
|
2010-10-12 20:04:36 -04:00
|
|
|
- a value.
|
2010-10-10 12:31:14 -04:00
|
|
|
-
|
2011-04-02 15:50:51 -04:00
|
|
|
- Copyright 2010-2011 Joey Hess <joey@kitenet.net>
|
2010-10-27 16:53:54 -04:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
2010-10-09 19:22:40 -04:00
|
|
|
-}
|
|
|
|
|
2010-10-11 17:52:46 -04:00
|
|
|
module LocationLog (
|
2010-10-12 18:25:41 -04:00
|
|
|
LogStatus(..),
|
2010-10-13 15:55:18 -04:00
|
|
|
logChange,
|
2011-03-16 11:53:46 -04:00
|
|
|
readLog,
|
|
|
|
writeLog,
|
2011-04-02 15:50:51 -04:00
|
|
|
keyLocations,
|
2011-07-01 17:23:01 -04:00
|
|
|
loggedKeys,
|
|
|
|
logFile,
|
2011-07-05 18:31:46 -04:00
|
|
|
logFileKey
|
2010-10-11 17:52:46 -04:00
|
|
|
) where
|
2010-10-09 19:22:40 -04:00
|
|
|
|
2011-04-02 15:50:51 -04:00
|
|
|
import System.FilePath
|
2011-01-04 17:03:29 -04:00
|
|
|
import Control.Monad (when)
|
2011-04-02 15:50:51 -04:00
|
|
|
import Data.Maybe
|
2010-10-16 16:20:49 -04:00
|
|
|
|
2011-06-30 13:16:57 -04:00
|
|
|
import qualified Git
|
2011-06-22 16:01:32 -04:00
|
|
|
import qualified Branch
|
2010-10-12 18:06:34 -04:00
|
|
|
import UUID
|
2010-10-14 03:18:11 -04:00
|
|
|
import Types
|
2010-10-10 15:54:02 -04:00
|
|
|
import Locations
|
2011-07-01 15:24:07 -04:00
|
|
|
import PresenceLog
|
2010-10-09 19:22:40 -04:00
|
|
|
|
2011-06-22 16:01:32 -04:00
|
|
|
{- Log a change in the presence of a key's value in a repository. -}
|
|
|
|
logChange :: Git.Repo -> Key -> UUID -> LogStatus -> Annex ()
|
2010-10-31 15:50:07 -04:00
|
|
|
logChange repo key u s = do
|
2011-01-04 17:03:29 -04:00
|
|
|
when (null u) $
|
2011-04-01 21:24:06 -04:00
|
|
|
error $ "unknown UUID for " ++ Git.repoDescribe repo ++
|
|
|
|
" (have you run git annex init there?)"
|
2011-07-01 17:15:46 -04:00
|
|
|
addLog (logFile key) =<< logNow s u
|
2010-10-12 18:25:41 -04:00
|
|
|
|
|
|
|
{- Returns a list of repository UUIDs that, according to the log, have
|
2010-10-12 20:04:36 -04:00
|
|
|
- the value of a key. -}
|
2011-06-22 16:13:43 -04:00
|
|
|
keyLocations :: Key -> Annex [UUID]
|
2011-07-01 15:24:07 -04:00
|
|
|
keyLocations key = currentLog $ logFile key
|
2011-04-02 15:50:51 -04:00
|
|
|
|
2011-04-02 20:36:01 -04:00
|
|
|
{- Finds all keys that have location log information.
|
|
|
|
- (There may be duplicate keys in the list.) -}
|
2011-06-22 23:24:14 -04:00
|
|
|
loggedKeys :: Annex [Key]
|
2011-07-15 03:12:05 -04:00
|
|
|
loggedKeys = return . mapMaybe (logFileKey . takeFileName) =<< Branch.files
|
2011-07-01 17:23:01 -04: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-07-07 17:04:21 -04:00
|
|
|
| end == ".log" = fileKey beginning
|
2011-07-01 17:23:01 -04:00
|
|
|
| otherwise = Nothing
|
|
|
|
where
|
|
|
|
(beginning, end) = splitAt (length file - 4) file
|