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 (
|
2019-12-05 18:36:43 +00:00
|
|
|
ConfigKey(..),
|
|
|
|
ConfigValue(..),
|
2017-01-30 21:36:45 +00:00
|
|
|
setGlobalConfig,
|
|
|
|
unsetGlobalConfig,
|
|
|
|
getGlobalConfig,
|
|
|
|
loadGlobalConfig,
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Annex.Common
|
|
|
|
import Logs
|
|
|
|
import Logs.MapLog
|
|
|
|
import qualified Annex.Branch
|
2019-12-05 18:36:43 +00:00
|
|
|
import Git.Types (ConfigKey(..), ConfigValue(..))
|
2017-01-30 21:36:45 +00:00
|
|
|
|
|
|
|
import qualified Data.Map as M
|
2019-12-04 17:15:34 +00:00
|
|
|
import qualified Data.ByteString as S
|
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
|
|
|
|
2019-12-04 17:15:34 +00:00
|
|
|
setGlobalConfig :: ConfigKey -> ConfigValue -> Annex ()
|
2017-01-30 21:36:45 +00:00
|
|
|
setGlobalConfig name new = do
|
|
|
|
curr <- getGlobalConfig name
|
|
|
|
when (curr /= Just new) $
|
|
|
|
setGlobalConfig' name new
|
|
|
|
|
2019-12-04 17:15:34 +00:00
|
|
|
setGlobalConfig' :: ConfigKey -> ConfigValue -> Annex ()
|
2017-01-30 21:36:45 +00:00
|
|
|
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
|
|
|
|
2019-12-04 17:15:34 +00:00
|
|
|
unsetGlobalConfig :: ConfigKey -> Annex ()
|
2017-01-30 21:36:45 +00:00
|
|
|
unsetGlobalConfig name = do
|
|
|
|
curr <- getGlobalConfig name
|
|
|
|
when (curr /= Nothing) $
|
2019-12-05 18:36:43 +00:00
|
|
|
-- set to empty string to unset
|
|
|
|
setGlobalConfig' name (ConfigValue mempty)
|
2017-01-30 21:36:45 +00:00
|
|
|
|
2017-02-03 17:40:14 +00:00
|
|
|
-- Reads the global config log every time.
|
2019-12-20 14:55:23 +00:00
|
|
|
-- It's more efficient to use Config.GitConfig.
|
2019-12-04 17:15:34 +00:00
|
|
|
getGlobalConfig :: ConfigKey -> 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-12-04 17:15:34 +00:00
|
|
|
buildGlobalConfig :: MapLog ConfigKey ConfigValue -> Builder
|
|
|
|
buildGlobalConfig = buildMapLog configkeybuilder valuebuilder
|
2019-01-09 17:06:37 +00:00
|
|
|
where
|
2019-12-05 18:36:43 +00:00
|
|
|
configkeybuilder (ConfigKey k) = byteString k
|
|
|
|
valuebuilder (ConfigValue v) = byteString v
|
2020-04-13 17:35:22 +00:00
|
|
|
valuebuilder NoConfigValue = mempty
|
2019-01-09 17:06:37 +00:00
|
|
|
|
2019-12-04 17:15:34 +00:00
|
|
|
parseGlobalConfig :: L.ByteString -> MapLog ConfigKey ConfigValue
|
|
|
|
parseGlobalConfig = parseMapLog configkeyparser valueparser
|
2019-01-10 17:23:42 +00:00
|
|
|
where
|
2019-12-04 17:15:34 +00:00
|
|
|
configkeyparser = ConfigKey <$> A.takeByteString
|
2019-12-05 18:36:43 +00:00
|
|
|
valueparser = ConfigValue <$> A.takeByteString
|
2017-01-30 21:36:45 +00:00
|
|
|
|
2019-12-04 17:15:34 +00:00
|
|
|
loadGlobalConfig :: Annex (M.Map ConfigKey ConfigValue)
|
2020-04-15 17:04:00 +00:00
|
|
|
loadGlobalConfig = M.filter nonempty
|
2019-12-05 18:36:43 +00:00
|
|
|
. simpleMap
|
|
|
|
. parseGlobalConfig
|
2017-02-03 17:40:14 +00:00
|
|
|
<$> Annex.Branch.get configLog
|
2020-04-15 17:04:00 +00:00
|
|
|
where
|
|
|
|
nonempty (ConfigValue v) = not (S.null v)
|
|
|
|
nonempty NoConfigValue = True
|