git-annex/Logs/Remote.hs

108 lines
3 KiB
Haskell
Raw Normal View History

2011-07-06 00:16:57 +00:00
{- git-annex remote log
-
- Copyright 2011 Joey Hess <id@joeyh.name>
2011-07-06 00:16:57 +00:00
-
- Licensed under the GNU GPL version 3 or higher.
-}
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
2011-07-06 00:16:57 +00:00
import qualified Data.Map as M
import Data.Char
import qualified Data.Attoparsec.ByteString.Lazy as A
import Data.ByteString.Builder
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 $
buildLog (byteString . encodeBS . showConfig)
. changeLog c u cfg
. parseLog remoteConfigParser
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 = simpleMap . parseLog remoteConfigParser
<$> Annex.Branch.get remoteLog
2011-10-06 20:07:51 +00:00
remoteConfigParser :: A.Parser RemoteConfig
remoteConfigParser = keyValToConfig . words . decodeBS <$> A.takeByteString
2011-10-06 20:07:51 +00:00
showConfig :: RemoteConfig -> String
showConfig = unwords . configToKeyVal
2011-07-06 00:16:57 +00:00
{- Given Strings like "key=value", generates a RemoteConfig. -}
keyValToConfig :: [String] -> RemoteConfig
keyValToConfig ws = M.fromList $ map (/=/) ws
2012-11-11 04:51:07 +00:00
where
(/=/) s = (k, v)
where
k = takeWhile (/= '=') s
v = configUnEscape $ drop (1 + length k) s
2011-07-06 00:16:57 +00:00
configToKeyVal :: M.Map String String -> [String]
configToKeyVal m = map toword $ sort $ M.toList m
2012-11-11 04:51:07 +00:00
where
toword (k, v) = k ++ "=" ++ configEscape v
2011-07-06 00:16:57 +00:00
configEscape :: String -> String
configEscape = concatMap escape
2012-11-11 04:51:07 +00:00
where
escape c
| isSpace c || c `elem` "&" = "&" ++ show (ord c) ++ ";"
| otherwise = [c]
2011-07-06 00:16:57 +00:00
configUnEscape :: String -> String
configUnEscape = unescape
2012-11-11 04:51:07 +00:00
where
unescape [] = []
unescape (c:rest)
| c == '&' = entity rest
| otherwise = c : unescape rest
entity s
| not (null num) && ";" `isPrefixOf` r =
chr (Prelude.read num) : unescape rest
| otherwise =
'&' : unescape s
where
num = takeWhile isNumber s
r = drop (length num) s
rest = drop 1 r
2011-07-06 00:16:57 +00:00
{- for quickcheck -}
2015-11-16 18:37:31 +00:00
prop_isomorphic_configEscape :: String -> Bool
prop_isomorphic_configEscape s = s == (configUnEscape . configEscape) s
2012-12-20 04:02:33 +00:00
prop_parse_show_Config :: RemoteConfig -> Bool
prop_parse_show_Config c
2019-01-21 16:38:00 +00:00
-- whitespace and '=' are not supported in config keys
| any (\k -> any isSpace k || elem '=' k) (M.keys c) = True
2019-01-21 22:39:25 +00:00
| any (any excluded) (M.keys c) = True
| any (any excluded) (M.elems c) = True
| otherwise = A.parseOnly remoteConfigParser (encodeBS $ showConfig c) ~~ Right c
2012-12-20 04:02:33 +00:00
where
normalize v = sort . M.toList <$> v
a ~~ b = normalize a == normalize b
2019-01-21 22:39:25 +00:00
-- limit to ascii alphanumerics for simplicity; characters not
-- allowed by the current character set in the config may not
-- round-trip in an identical representation due to the use of the
-- filesystem encoding.
2019-01-22 00:40:30 +00:00
excluded ch = not (isAlphaNum ch) || not (isAscii ch)