{-# LANGUAGE DeriveFunctor, ExistentialQuantification, FlexibleContexts, FlexibleInstances, GeneralizedNewtypeDeriving, LambdaCase, MultiParamTypeClasses, RankNTypes, StandaloneDeriving, TypeOperators, UndecidableInstances #-}
module Control.Effect.Cut
( Cut(..)
, cutfail
, call
, cut
, runCut
, runCutAll
, CutC(..)
) where
import Control.Applicative (Alternative(..))
import Control.Effect.Carrier
import Control.Effect.NonDet
import Control.Effect.Sum
import Control.Monad (MonadPlus(..))
import Control.Monad.Fail
import Control.Monad.IO.Class
import Control.Monad.Trans.Class
import Prelude hiding (fail)
data Cut m k
= Cutfail
| forall a . Call (m a) (a -> k)
deriving instance Functor (Cut m)
instance HFunctor Cut where
hmap _ Cutfail = Cutfail
hmap f (Call m k) = Call (f m) k
{-# INLINE hmap #-}
instance Effect Cut where
handle _ _ Cutfail = Cutfail
handle state handler (Call m k) = Call (handler (m <$ state)) (handler . fmap k)
{-# INLINE handle #-}
cutfail :: (Carrier sig m, Member Cut sig) => m a
cutfail = send Cutfail
{-# INLINE cutfail #-}
call :: (Carrier sig m, Member Cut sig) => m a -> m a
call m = send (Call m pure)
{-# INLINE call #-}
cut :: (Alternative m, Carrier sig m, Member Cut sig) => m ()
cut = pure () <|> cutfail
{-# INLINE cut #-}
runCut :: Alternative m => CutC m a -> m a
runCut m = runCutC m ((<|>) . pure) empty empty
runCutAll :: (Alternative f, Applicative m) => CutC m a -> m (f a)
runCutAll (CutC m) = m (fmap . (<|>) . pure) (pure empty) (pure empty)
newtype CutC m a = CutC
{
runCutC :: forall b . (a -> m b -> m b) -> m b -> m b -> m b
}
deriving (Functor)
instance Applicative (CutC m) where
pure a = CutC (\ cons nil _ -> cons a nil)
{-# INLINE pure #-}
CutC f <*> CutC a = CutC $ \ cons nil fail ->
f (\ f' fs -> a (cons . f') fs fail) nil fail
{-# INLINE (<*>) #-}
instance Alternative (CutC m) where
empty = CutC (\ _ nil _ -> nil)
{-# INLINE empty #-}
CutC l <|> CutC r = CutC (\ cons nil fail -> l cons (r cons nil fail) fail)
{-# INLINE (<|>) #-}
instance Monad (CutC m) where
CutC a >>= f = CutC $ \ cons nil fail ->
a (\ a' as -> runCutC (f a') cons as fail) nil fail
{-# INLINE (>>=) #-}
instance MonadFail m => MonadFail (CutC m) where
fail s = CutC (\ _ _ _ -> fail s)
{-# INLINE fail #-}
instance MonadIO m => MonadIO (CutC m) where
liftIO io = CutC (\ cons nil _ -> liftIO io >>= flip cons nil)
{-# INLINE liftIO #-}
instance MonadPlus (CutC m)
instance MonadTrans CutC where
lift m = CutC (\ cons nil _ -> m >>= flip cons nil)
{-# INLINE lift #-}
instance (Carrier sig m, Effect sig) => Carrier (Cut :+: NonDet :+: sig) (CutC m) where
eff (L Cutfail) = CutC $ \ _ _ fail -> fail
eff (L (Call m k)) = CutC $ \ cons nil fail -> runCutC m (\ a as -> runCutC (k a) cons as fail) nil nil
eff (R (L Empty)) = empty
eff (R (L (Choose k))) = k True <|> k False
eff (R (R other)) = CutC $ \ cons nil _ -> eff (handle [()] (fmap concat . traverse runCutAll) other) >>= foldr cons nil
{-# INLINE eff #-}