2015-01-27 21:38:06 +00:00
|
|
|
{- git-annex difference log
|
|
|
|
-
|
|
|
|
- Copyright 2015 Joey Hess <id@joeyh.name>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Logs.Difference (
|
|
|
|
recordDifferences,
|
|
|
|
recordedDifferences,
|
|
|
|
recordedDifferencesFor,
|
|
|
|
module Logs.Difference.Pure
|
|
|
|
) where
|
|
|
|
|
|
|
|
import qualified Data.Map as M
|
|
|
|
|
2016-01-20 20:36:33 +00:00
|
|
|
import Annex.Common
|
2015-01-27 21:38:06 +00:00
|
|
|
import Types.Difference
|
|
|
|
import qualified Annex.Branch
|
|
|
|
import Logs
|
|
|
|
import Logs.UUIDBased
|
|
|
|
import Logs.Difference.Pure
|
|
|
|
|
|
|
|
recordDifferences :: Differences -> UUID -> Annex ()
|
2015-06-11 20:25:37 +00:00
|
|
|
recordDifferences ds@(Differences {}) uuid = do
|
2017-08-14 17:55:38 +00:00
|
|
|
c <- liftIO currentVectorClock
|
2015-01-27 21:38:06 +00:00
|
|
|
Annex.Branch.change differenceLog $
|
2017-08-14 17:55:38 +00:00
|
|
|
showLog id . changeLog c uuid (showDifferences ds) . parseLog Just
|
2015-01-28 17:47:41 +00:00
|
|
|
recordDifferences UnknownDifferences _ = return ()
|
2015-01-27 21:38:06 +00:00
|
|
|
|
|
|
|
-- Map of UUIDs that have Differences recorded.
|
|
|
|
-- If a new version of git-annex has added a Difference this version
|
|
|
|
-- doesn't know about, it will contain UnknownDifferences.
|
|
|
|
recordedDifferences :: Annex (M.Map UUID Differences)
|
|
|
|
recordedDifferences = parseDifferencesLog <$> Annex.Branch.get differenceLog
|
|
|
|
|
|
|
|
recordedDifferencesFor :: UUID -> Annex Differences
|
|
|
|
recordedDifferencesFor u = fromMaybe mempty . M.lookup u
|
|
|
|
<$> recordedDifferences
|