git-annex/Logs/Remote.hs

101 lines
2.5 KiB
Haskell
Raw Normal View History

2011-07-06 00:16:57 +00:00
{- git-annex remote log
-
- Copyright 2011 Joey Hess <joey@kitenet.net>
-
- 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,
parseConfig,
2011-07-06 00:16:57 +00:00
2012-12-20 04:02:33 +00:00
prop_idempotent_configEscape,
prop_parse_show_Config,
2011-07-06 00:16:57 +00:00
) where
import qualified Data.Map as M
2011-10-06 20:07:51 +00:00
import Data.Time.Clock.POSIX
2011-07-06 00:16:57 +00:00
import Data.Char
2011-10-05 20:02:51 +00:00
import Common.Annex
2011-10-04 04:40:47 +00:00
import qualified Annex.Branch
2011-07-06 00:16:57 +00:00
import Types.Remote
2011-10-15 20:21:08 +00:00
import Logs.UUIDBased
2011-07-06 00:16:57 +00:00
{- Filename of remote.log. -}
remoteLog :: FilePath
remoteLog = "remote.log"
{- Adds or updates a remote's config in the log. -}
configSet :: UUID -> RemoteConfig -> Annex ()
2011-10-06 20:07:51 +00:00
configSet u c = do
2011-11-11 05:52:58 +00:00
ts <- liftIO getPOSIXTime
2011-10-06 20:07:51 +00:00
Annex.Branch.change remoteLog $
showLog showConfig . changeLog ts u c . parseLog parseConfig
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 parseConfig <$> Annex.Branch.get remoteLog
2011-10-06 20:07:51 +00:00
parseConfig :: String -> Maybe RemoteConfig
parseConfig = Just . keyValToConfig . words
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 -}
prop_idempotent_configEscape :: String -> Bool
prop_idempotent_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
-- whitespace and '=' are not supported in keys
2013-04-03 07:52:41 +00:00
| any (\k -> any isSpace k || elem '=' k) (M.keys c) = True
2012-12-20 04:02:33 +00:00
| otherwise = parseConfig (showConfig c) ~~ Just c
where
normalize v = sort . M.toList <$> v
a ~~ b = normalize a == normalize b