git-annex/Logs/Remote.hs

43 lines
969 B
Haskell
Raw Normal View History

2011-07-06 00:16:57 +00:00
{- git-annex remote log
-
- Copyright 2011-2019 Joey Hess <id@joeyh.name>
2011-07-06 00:16:57 +00:00
-
- Licensed under the GNU AGPL version 3 or higher.
2011-07-06 00:16:57 +00:00
-}
2011-10-15 20:21:08 +00:00
module Logs.Remote (
remoteLog,
2011-07-06 00:16:57 +00:00
readRemoteLog,
configSet,
keyValToConfig,
configToKeyVal,
2012-12-20 04:02:33 +00:00
showConfig,
2011-07-06 00:16:57 +00:00
2015-11-16 18:37:31 +00:00
prop_isomorphic_configEscape,
2012-12-20 04:02:33 +00:00
prop_parse_show_Config,
2011-07-06 00:16:57 +00:00
) where
import Annex.Common
2011-10-04 04:40:47 +00:00
import qualified Annex.Branch
2011-07-06 00:16:57 +00:00
import Types.Remote
import Logs
2011-10-15 20:21:08 +00:00
import Logs.UUIDBased
import Logs.Remote.Pure
import Annex.SpecialRemote.Config
2011-07-06 00:16:57 +00:00
import qualified Data.Map as M
2011-07-06 00:16:57 +00:00
{- Adds or updates a remote's config in the log. -}
configSet :: UUID -> RemoteConfig -> Annex ()
configSet u cfg = do
c <- liftIO currentVectorClock
2011-10-06 20:07:51 +00:00
Annex.Branch.change remoteLog $
buildRemoteConfigLog
. changeLog c u (removeSameasInherited cfg)
. parseRemoteConfigLog
2011-07-06 00:16:57 +00:00
{- Map of remotes by uuid containing key/value config maps. -}
readRemoteLog :: Annex (M.Map UUID RemoteConfig)
readRemoteLog = calcRemoteConfigMap
<$> Annex.Branch.get remoteLog