git-annex/Logs/Remote.hs

43 lines
969 B
Haskell
Raw Normal View History

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