{-# LANGUAGE DefaultSignatures #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
module Control.Method
(
Method (..),
TupleLike (..),
decorate,
decorate_,
decorateBefore_,
invoke,
liftJoin,
)
where
import Control.Exception (SomeException)
import Control.Method.Internal
( Nil (Nil),
TupleLike (AsTuple, fromTuple, toTuple),
type (:*) ((:*)),
)
import Control.Monad.Trans.Accum (AccumT)
import Control.Monad.Trans.Cont (ContT)
import Control.Monad.Trans.Except (ExceptT)
import Control.Monad.Trans.Maybe (MaybeT)
import qualified Control.Monad.Trans.RWS.CPS as CPS
import qualified Control.Monad.Trans.RWS.Lazy as Lazy
import qualified Control.Monad.Trans.RWS.Strict as Strict
import Control.Monad.Trans.Reader (ReaderT)
import Control.Monad.Trans.Select (SelectT)
import qualified Control.Monad.Trans.State.Lazy as Lazy
import qualified Control.Monad.Trans.State.Strict as Strict
import qualified Control.Monad.Trans.Writer.CPS as CPS
import qualified Control.Monad.Trans.Writer.Lazy as Lazy
import qualified Control.Monad.Trans.Writer.Strict as Strict
import Data.Functor.Identity (Identity)
import Data.Kind (Type)
import RIO (MonadReader, MonadUnliftIO, RIO, ST, SimpleGetter, throwIO, tryAny, view)
class Monad (Base method) => Method method where
type Base method :: Type -> Type
type Args method :: Type
type Args method = Nil
type Ret method :: Type
uncurryMethod :: method -> Args method -> Base method (Ret method)
{-# INLINE uncurryMethod #-}
default uncurryMethod ::
(method ~ Base method a, Args method ~ Nil, Ret method ~ a) =>
method ->
Args method ->
Base method (Ret method)
uncurryMethod method
method Args method
Nil = method
Base method (Ret method)
method
curryMethod :: (Args method -> Base method (Ret method)) -> method
{-# INLINE curryMethod #-}
default curryMethod ::
(method ~ Base method a, Args method ~ Nil, Ret method ~ a) =>
(Args method -> Base method (Ret method)) ->
method
curryMethod Args method -> Base method (Ret method)
method' = Args method -> Base method (Ret method)
method' Nil
Args method
Nil
{-# INLINE liftJoin #-}
liftJoin :: Method method => Base method method -> method
liftJoin :: Base method method -> method
liftJoin Base method method
mMethod = (Args method -> Base method (Ret method)) -> method
forall method.
Method method =>
(Args method -> Base method (Ret method)) -> method
curryMethod ((Args method -> Base method (Ret method)) -> method)
-> (Args method -> Base method (Ret method)) -> method
forall a b. (a -> b) -> a -> b
$ \Args method
args -> do
method
method <- Base method method
mMethod
method -> Args method -> Base method (Ret method)
forall method.
Method method =>
method -> Args method -> Base method (Ret method)
uncurryMethod method
method Args method
args
instance Method (IO a) where
type Base (IO a) = IO
type Ret (IO a) = a
instance Method (RIO env a) where
type Base (RIO env a) = RIO env
type Ret (RIO env a) = a
instance Method (Identity a) where
type Base (Identity a) = Identity
type Ret (Identity a) = a
instance Method (Maybe a) where
type Base (Maybe a) = Maybe
type Ret (Maybe a) = a
instance Method [a] where
type Base [a] = []
type Ret [a] = a
instance Method (Either e a) where
type Base (Either e a) = Either e
type Ret (Either e a) = a
instance Method (ST s a) where
type Base (ST s a) = ST s
type Ret (ST s a) = a
instance (Monoid w, Monad m) => Method (AccumT w m a) where
type Base (AccumT w m a) = AccumT w m
type Ret (AccumT w m a) = a
instance (Monad m) => Method (ContT r m a) where
type Base (ContT r m a) = ContT r m
type Ret (ContT r m a) = a
instance (Monad m) => Method (ExceptT e m a) where
type Base (ExceptT e m a) = ExceptT e m
type Ret (ExceptT e m a) = a
instance (Monad m) => Method (MaybeT m a) where
type Base (MaybeT m a) = MaybeT m
type Ret (MaybeT m a) = a
instance (Monad m) => Method (CPS.RWST r w s m a) where
type Base (CPS.RWST r w s m a) = CPS.RWST r w s m
type Ret (CPS.RWST r w s m a) = a
instance (Monad m, Monoid w) => Method (Lazy.RWST r w s m a) where
type Base (Lazy.RWST r w s m a) = Lazy.RWST r w s m
type Ret (Lazy.RWST r w s m a) = a
instance (Monad m, Monoid w) => Method (Strict.RWST r w s m a) where
type Base (Strict.RWST r w s m a) = Strict.RWST r w s m
type Ret (Strict.RWST r w s m a) = a
instance Monad m => Method (ReaderT r m a) where
type Base (ReaderT r m a) = ReaderT r m
type Ret (ReaderT r m a) = a
instance Monad m => Method (SelectT r m a) where
type Base (SelectT r m a) = SelectT r m
type Ret (SelectT r m a) = a
instance Monad m => Method (Lazy.StateT s m a) where
type Base (Lazy.StateT s m a) = Lazy.StateT s m
type Ret (Lazy.StateT s m a) = a
instance Monad m => Method (Strict.StateT s m a) where
type Base (Strict.StateT s m a) = Strict.StateT s m
type Ret (Strict.StateT s m a) = a
instance (Monad m) => Method (CPS.WriterT w m a) where
type Base (CPS.WriterT w m a) = CPS.WriterT w m
type Ret (CPS.WriterT w m a) = a
instance (Monad m, Monoid w) => Method (Lazy.WriterT w m a) where
type Base (Lazy.WriterT w m a) = Lazy.WriterT w m
type Ret (Lazy.WriterT w m a) = a
instance (Monad m, Monoid w) => Method (Strict.WriterT w m a) where
type Base (Strict.WriterT w m a) = Strict.WriterT w m
type Ret (Strict.WriterT w m a) = a
instance Method b => Method (a -> b) where
type Base (a -> b) = Base b
type Args (a -> b) = a :* Args b
type Ret (a -> b) = Ret b
{-# INLINE uncurryMethod #-}
uncurryMethod :: (a -> b) -> Args (a -> b) -> Base (a -> b) (Ret (a -> b))
uncurryMethod a -> b
method (a :* args) = b -> Args b -> Base b (Ret b)
forall method.
Method method =>
method -> Args method -> Base method (Ret method)
uncurryMethod (a -> b
method a
a) Args b
args
{-# INLINE curryMethod #-}
curryMethod :: (Args (a -> b) -> Base (a -> b) (Ret (a -> b))) -> a -> b
curryMethod Args (a -> b) -> Base (a -> b) (Ret (a -> b))
method' a
a = (Args b -> Base b (Ret b)) -> b
forall method.
Method method =>
(Args method -> Base method (Ret method)) -> method
curryMethod (\Args b
args -> Args (a -> b) -> Base (a -> b) (Ret (a -> b))
method' (a
a a -> Args b -> a :* Args b
forall a b. a -> b -> a :* b
:* Args b
args))
{-# INLINE decorate #-}
decorate ::
(Method method, MonadUnliftIO (Base method)) =>
(Args method -> Base method a) ->
(a -> Either SomeException (Ret method) -> Base method ()) ->
(a -> method) ->
method
decorate :: (Args method -> Base method a)
-> (a -> Either SomeException (Ret method) -> Base method ())
-> (a -> method)
-> method
decorate Args method -> Base method a
before a -> Either SomeException (Ret method) -> Base method ()
after a -> method
method = (Args method -> Base method (Ret method)) -> method
forall method.
Method method =>
(Args method -> Base method (Ret method)) -> method
curryMethod ((Args method -> Base method (Ret method)) -> method)
-> (Args method -> Base method (Ret method)) -> method
forall a b. (a -> b) -> a -> b
$ \Args method
args -> do
a
a <- Args method -> Base method a
before Args method
args
Either SomeException (Ret method)
res <- Base method (Ret method)
-> Base method (Either SomeException (Ret method))
forall (m :: * -> *) a.
MonadUnliftIO m =>
m a -> m (Either SomeException a)
tryAny (method -> Args method -> Base method (Ret method)
forall method.
Method method =>
method -> Args method -> Base method (Ret method)
uncurryMethod (a -> method
method a
a) Args method
args)
case Either SomeException (Ret method)
res of
Left SomeException
err -> a -> Either SomeException (Ret method) -> Base method ()
after a
a Either SomeException (Ret method)
res Base method ()
-> Base method (Ret method) -> Base method (Ret method)
forall (m :: * -> *) a b. Monad m => m a -> m b -> m b
>> SomeException -> Base method (Ret method)
forall (m :: * -> *) e a. (MonadIO m, Exception e) => e -> m a
throwIO SomeException
err
Right Ret method
v -> a -> Either SomeException (Ret method) -> Base method ()
after a
a Either SomeException (Ret method)
res Base method ()
-> Base method (Ret method) -> Base method (Ret method)
forall (m :: * -> *) a b. Monad m => m a -> m b -> m b
>> Ret method -> Base method (Ret method)
forall (f :: * -> *) a. Applicative f => a -> f a
pure Ret method
v
{-# INLINE decorate_ #-}
decorate_ ::
(Method method, MonadUnliftIO (Base method)) =>
(Args method -> Base method ()) ->
(Either SomeException (Ret method) -> Base method ()) ->
method ->
method
decorate_ :: (Args method -> Base method ())
-> (Either SomeException (Ret method) -> Base method ())
-> method
-> method
decorate_ Args method -> Base method ()
before Either SomeException (Ret method) -> Base method ()
after method
method = (Args method -> Base method (Ret method)) -> method
forall method.
Method method =>
(Args method -> Base method (Ret method)) -> method
curryMethod ((Args method -> Base method (Ret method)) -> method)
-> (Args method -> Base method (Ret method)) -> method
forall a b. (a -> b) -> a -> b
$ \Args method
args -> do
Args method -> Base method ()
before Args method
args
Either SomeException (Ret method)
res <- Base method (Ret method)
-> Base method (Either SomeException (Ret method))
forall (m :: * -> *) a.
MonadUnliftIO m =>
m a -> m (Either SomeException a)
tryAny (method -> Args method -> Base method (Ret method)
forall method.
Method method =>
method -> Args method -> Base method (Ret method)
uncurryMethod method
method Args method
args)
case Either SomeException (Ret method)
res of
Left SomeException
err -> Either SomeException (Ret method) -> Base method ()
after Either SomeException (Ret method)
res Base method ()
-> Base method (Ret method) -> Base method (Ret method)
forall (m :: * -> *) a b. Monad m => m a -> m b -> m b
>> SomeException -> Base method (Ret method)
forall (m :: * -> *) e a. (MonadIO m, Exception e) => e -> m a
throwIO SomeException
err
Right Ret method
v -> Either SomeException (Ret method) -> Base method ()
after Either SomeException (Ret method)
res Base method ()
-> Base method (Ret method) -> Base method (Ret method)
forall (m :: * -> *) a b. Monad m => m a -> m b -> m b
>> Ret method -> Base method (Ret method)
forall (f :: * -> *) a. Applicative f => a -> f a
pure Ret method
v
{-# INLINE decorateBefore_ #-}
decorateBefore_ ::
(Method method) =>
(Args method -> Base method ()) ->
method ->
method
decorateBefore_ :: (Args method -> Base method ()) -> method -> method
decorateBefore_ Args method -> Base method ()
before method
method = (Args method -> Base method (Ret method)) -> method
forall method.
Method method =>
(Args method -> Base method (Ret method)) -> method
curryMethod ((Args method -> Base method (Ret method)) -> method)
-> (Args method -> Base method (Ret method)) -> method
forall a b. (a -> b) -> a -> b
$ \Args method
args -> do
Args method -> Base method ()
before Args method
args
method -> Args method -> Base method (Ret method)
forall method.
Method method =>
method -> Args method -> Base method (Ret method)
uncurryMethod method
method Args method
args
{-# INLINE invoke #-}
invoke :: (MonadReader env (Base method), Method method) => SimpleGetter env method -> method
invoke :: SimpleGetter env method -> method
invoke SimpleGetter env method
getter = Base method method -> method
forall method. Method method => Base method method -> method
liftJoin (Getting method env method -> Base method method
forall s (m :: * -> *) a. MonadReader s m => Getting a s a -> m a
view Getting method env method
SimpleGetter env method
getter)