2017-02-03 17:40:14 +00:00
|
|
|
{- git-annex repository-global config log
|
2017-01-30 21:36:45 +00:00
|
|
|
-
|
2019-01-09 17:06:37 +00:00
|
|
|
- Copyright 2017-2019 Joey Hess <id@joeyh.name>
|
2017-01-30 21:36:45 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2017-01-30 21:36:45 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
module Logs.Config (
|
|
|
|
ConfigName,
|
|
|
|
ConfigValue,
|
|
|
|
setGlobalConfig,
|
|
|
|
unsetGlobalConfig,
|
|
|
|
getGlobalConfig,
|
|
|
|
loadGlobalConfig,
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Annex.Common
|
|
|
|
import Logs
|
|
|
|
import Logs.MapLog
|
|
|
|
import qualified Annex.Branch
|
|
|
|
|
|
|
|
import qualified Data.Map as M
|
2019-01-10 17:23:42 +00:00
|
|
|
import qualified Data.ByteString.Lazy as L
|
|
|
|
import qualified Data.Attoparsec.ByteString.Lazy as A
|
2019-01-09 17:06:37 +00:00
|
|
|
import Data.ByteString.Builder
|
2017-01-30 21:36:45 +00:00
|
|
|
|
|
|
|
type ConfigName = String
|
|
|
|
type ConfigValue = String
|
|
|
|
|
|
|
|
setGlobalConfig :: ConfigName -> ConfigValue -> Annex ()
|
|
|
|
setGlobalConfig name new = do
|
|
|
|
curr <- getGlobalConfig name
|
|
|
|
when (curr /= Just new) $
|
|
|
|
setGlobalConfig' name new
|
|
|
|
|
|
|
|
setGlobalConfig' :: ConfigName -> ConfigValue -> Annex ()
|
|
|
|
setGlobalConfig' name new = do
|
2017-08-14 17:55:38 +00:00
|
|
|
c <- liftIO currentVectorClock
|
2017-01-30 21:36:45 +00:00
|
|
|
Annex.Branch.change configLog $
|
2019-01-10 17:23:42 +00:00
|
|
|
buildGlobalConfig . changeMapLog c name new . parseGlobalConfig
|
2017-01-30 21:36:45 +00:00
|
|
|
|
|
|
|
unsetGlobalConfig :: ConfigName -> Annex ()
|
|
|
|
unsetGlobalConfig name = do
|
|
|
|
curr <- getGlobalConfig name
|
|
|
|
when (curr /= Nothing) $
|
|
|
|
setGlobalConfig' name "" -- set to empty string to unset
|
|
|
|
|
2017-02-03 17:40:14 +00:00
|
|
|
-- Reads the global config log every time.
|
2017-01-30 21:36:45 +00:00
|
|
|
getGlobalConfig :: ConfigName -> Annex (Maybe ConfigValue)
|
2017-02-03 17:40:14 +00:00
|
|
|
getGlobalConfig name = M.lookup name <$> loadGlobalConfig
|
2017-01-30 21:36:45 +00:00
|
|
|
|
2019-01-09 17:06:37 +00:00
|
|
|
buildGlobalConfig :: MapLog ConfigName ConfigValue -> Builder
|
|
|
|
buildGlobalConfig = buildMapLog fieldbuilder valuebuilder
|
|
|
|
where
|
|
|
|
fieldbuilder = byteString . encodeBS
|
|
|
|
valuebuilder = byteString . encodeBS
|
|
|
|
|
2019-01-10 17:23:42 +00:00
|
|
|
parseGlobalConfig :: L.ByteString -> MapLog ConfigName ConfigValue
|
|
|
|
parseGlobalConfig = parseMapLog string string
|
|
|
|
where
|
|
|
|
string = decodeBS <$> A.takeByteString
|
2017-01-30 21:36:45 +00:00
|
|
|
|
|
|
|
loadGlobalConfig :: Annex (M.Map ConfigName ConfigValue)
|
2019-01-10 17:23:42 +00:00
|
|
|
loadGlobalConfig = M.filter (not . null) . simpleMap . parseGlobalConfig
|
2017-02-03 17:40:14 +00:00
|
|
|
<$> Annex.Branch.get configLog
|