summaryrefslogtreecommitdiff
path: root/Logs/PreferredContent.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-03-15 17:08:55 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-03-15 17:08:55 -0400
commitb3bd559c7c814fc26c2887a535837ff4fb4c7c51 (patch)
treeed19959410b91060550b799b2e91578db12e3680 /Logs/PreferredContent.hs
parent0897e17b533593418890a1e57939520c5a242d06 (diff)
finish wiring up groupwanted
Diffstat (limited to 'Logs/PreferredContent.hs')
-rw-r--r--Logs/PreferredContent.hs25
1 files changed, 17 insertions, 8 deletions
diff --git a/Logs/PreferredContent.hs b/Logs/PreferredContent.hs
index 93609da5e..a0bb4ffda 100644
--- a/Logs/PreferredContent.hs
+++ b/Logs/PreferredContent.hs
@@ -58,8 +58,9 @@ preferredContentMapLoad :: Annex Annex.PreferredContentMap
preferredContentMapLoad = do
groupmap <- groupMap
configmap <- readRemoteLog
+ groupwantedmap <- groupPreferredContentMapRaw
m <- simpleMap
- . parseLogWithUUID ((Just .) . makeMatcher groupmap configmap)
+ . parseLogWithUUID ((Just .) . makeMatcher groupmap configmap groupwantedmap)
<$> Annex.Branch.get preferredContentLog
Annex.changeState $ \s -> s { Annex.preferredcontentmap = Just m }
return m
@@ -68,18 +69,26 @@ preferredContentMapLoad = do
- because the configuration is shared among repositories and newer
- versions of git-annex may add new features. Instead, parse errors
- result in a Matcher that will always succeed. -}
-makeMatcher :: GroupMap -> M.Map UUID RemoteConfig -> UUID -> PreferredContentExpression -> FileMatcher
-makeMatcher groupmap configmap u = go True
+makeMatcher :: GroupMap -> M.Map UUID RemoteConfig -> M.Map Group PreferredContentExpression -> UUID -> PreferredContentExpression -> FileMatcher
+makeMatcher groupmap configmap groupwantedmap u = go True True
where
- go expandstandard expr
+ go expandstandard expandgroupwanted expr
| null (lefts tokens) = Utility.Matcher.generate $ rights tokens
| otherwise = matchAll
where
- tokens = exprParser matchstandard groupmap configmap (Just u) expr
+ tokens = exprParser matchstandard matchgroupwanted groupmap configmap (Just u) expr
matchstandard
- | expandstandard = maybe matchAll (go False . preferredContent) $
- getStandardGroup =<< u `M.lookup` groupsByUUID groupmap
+ | expandstandard = maybe matchAll (go False False)
+ (standardPreferredContent <$> getStandardGroup mygroups)
| otherwise = matchAll
+ matchgroupwanted
+ | expandgroupwanted = maybe matchAll (go True False)
+ (groupwanted mygroups)
+ | otherwise = matchAll
+ mygroups = fromMaybe S.empty (u `M.lookup` groupsByUUID groupmap)
+ groupwanted s = case M.elems $ M.filterWithKey (\k _ -> S.member k s) groupwantedmap of
+ [pc] -> Just pc
+ _ -> Nothing
{- Checks if an expression can be parsed, if not returns Just error -}
checkPreferredContentExpression :: PreferredContentExpression -> Maybe String
@@ -87,7 +96,7 @@ checkPreferredContentExpression expr = case parsedToMatcher tokens of
Left e -> Just e
Right _ -> Nothing
where
- tokens = exprParser matchAll emptyGroupMap M.empty Nothing expr
+ tokens = exprParser matchAll matchAll emptyGroupMap M.empty Nothing expr
{- Puts a UUID in a standard group, and sets its preferred content to use
- the standard expression for that group, unless something is already set. -}