2019-02-20 21:22:56 +00:00
|
|
|
{- Remote content identifier logs.
|
|
|
|
-
|
|
|
|
- Copyright 2019 Joey Hess <id@joeyh.name>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Logs.ContentIdentifier (
|
2019-02-21 16:22:50 +00:00
|
|
|
module X,
|
2019-02-20 21:22:56 +00:00
|
|
|
recordContentIdentifier,
|
|
|
|
getContentIdentifiers,
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Annex.Common
|
|
|
|
import Logs
|
|
|
|
import Logs.MapLog
|
2019-02-21 17:43:21 +00:00
|
|
|
import Types.Import
|
2019-02-20 21:22:56 +00:00
|
|
|
import qualified Annex.Branch
|
2019-02-21 16:22:50 +00:00
|
|
|
import Logs.ContentIdentifier.Pure as X
|
2019-02-20 21:22:56 +00:00
|
|
|
import qualified Annex
|
|
|
|
|
|
|
|
import qualified Data.Map as M
|
|
|
|
|
|
|
|
-- | Records a remote's content identifier and the key that it corresponds to.
|
|
|
|
--
|
|
|
|
-- A remote may use multiple content identifiers for the same key over time,
|
|
|
|
-- so ones that were recorded before are preserved.
|
|
|
|
recordContentIdentifier :: UUID -> ContentIdentifier -> Key -> Annex ()
|
|
|
|
recordContentIdentifier u cid k = do
|
|
|
|
c <- liftIO currentVectorClock
|
|
|
|
config <- Annex.getGitConfig
|
|
|
|
Annex.Branch.change (remoteContentIdentifierLogFile config k) $
|
|
|
|
buildLog . addcid c . parseLog
|
|
|
|
where
|
|
|
|
addcid c l = changeMapLog c u (cid:fromMaybe [] (M.lookup u m)) l
|
|
|
|
where
|
|
|
|
m = simpleMap l
|
|
|
|
|
|
|
|
-- | Get all content identifiers that a remote is known to use for a key.
|
|
|
|
getContentIdentifiers :: UUID -> Key -> Annex [ContentIdentifier]
|
|
|
|
getContentIdentifiers u k = do
|
|
|
|
config <- Annex.getGitConfig
|
|
|
|
fromMaybe [] . M.lookup u . simpleMap . parseLog
|
|
|
|
<$> Annex.Branch.get (remoteContentIdentifierLogFile config k)
|