aboutsummaryrefslogtreecommitdiff
path: root/Utility/Matcher.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-10-13 15:17:15 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-10-13 15:17:15 -0400
commit2c1c19b85a363089e1bb8276a4300effcf004a2d (patch)
tree502d9bb5abd1840a672469f17d0d96dc8452400a /Utility/Matcher.hs
parent49bee9969e30ee05848cff8354671420425b6fb5 (diff)
avoid duplicate code with a more generic monadic matcher
Interesting type signature ghc derived for this: forall o (m :: * -> *). Monad m => Matcher o -> (o -> m Bool) -> m Bool
Diffstat (limited to 'Utility/Matcher.hs')
-rw-r--r--Utility/Matcher.hs21
1 files changed, 10 insertions, 11 deletions
diff --git a/Utility/Matcher.hs b/Utility/Matcher.hs
index 6e88aa100..edb4cadd6 100644
--- a/Utility/Matcher.hs
+++ b/Utility/Matcher.hs
@@ -15,6 +15,8 @@
- Licensed under the GNU GPL version 3 or higher.
-}
+{-# LANGUAGE Rank2Types, KindSignatures #-}
+
module Utility.Matcher (
Token(..),
Matcher,
@@ -23,7 +25,7 @@ module Utility.Matcher (
generate,
match,
matchM,
- matchM2,
+ matchMrun,
matchesAny
) where
@@ -89,22 +91,19 @@ match a m v = go m
{- Runs a monadic Matcher, where Operations are actions in the monad. -}
matchM :: Monad m => Matcher (v -> m Bool) -> v -> m Bool
-matchM m v = go m
- where
- go MAny = return True
- go (MAnd m1 m2) = go m1 <&&> go m2
- go (MOr m1 m2) = go m1 <||> go m2
- go (MNot m1) = liftM not (go m1)
- go (MOp o) = o v
+matchM m v = matchMrun m $ \o -> o v
-matchM2 :: Monad m => Matcher (v1 -> v2 -> m Bool) -> v1 -> v2 -> m Bool
-matchM2 m v1 v2 = go m
+{- More generic running of a monadic Matcher, with full control over running
+ - of Operations. Mostly useful in order to match on more than one
+ - parameter. -}
+matchMrun :: forall o (m :: * -> *). Monad m => Matcher o -> (o -> m Bool) -> m Bool
+matchMrun m run = go m
where
go MAny = return True
go (MAnd m1 m2) = go m1 <&&> go m2
go (MOr m1 m2) = go m1 <||> go m2
go (MNot m1) = liftM not (go m1)
- go (MOp o) = o v1 v2
+ go (MOp o) = run o
{- Checks is a matcher contains no limits, and so (presumably) matches
- anything. Note that this only checks the trivial case; it is possible