{-# LANGUAGE Arrows #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE TypeFamilies #-}
module FRP.Rhine.ClSF.Except
( module FRP.Rhine.ClSF.Except
, module X
, safe, safely, exceptS, runMSFExcept, currentInput
)
where
import qualified Control.Category as Category
import Control.Monad.Trans.Class (lift)
import Control.Monad.Trans.Except as X
import Control.Monad.Trans.Reader
import Data.MonadicStreamFunction
import Control.Monad.Trans.MSF.Except hiding (try, once, once_, throwOn, throwOn', throwS)
import qualified Control.Monad.Trans.MSF.Except as MSFE
import FRP.Rhine.ClSF.Core
import FRP.Rhine.ClSF.Except.Util
throwS :: Monad m => ClSF (ExceptT e m) cl e a
throwS :: ClSF (ExceptT e m) cl e a
throwS = (e -> ExceptT e m a) -> ClSF (ExceptT e m) cl e a
forall (m :: Type -> Type) a b cl.
Monad m =>
(a -> m b) -> ClSF m cl a b
arrMCl e -> ExceptT e m a
forall (m :: Type -> Type) e a. Monad m => e -> ExceptT e m a
throwE
throw :: Monad m => e -> MSF (ExceptT e m) a b
throw :: e -> MSF (ExceptT e m) a b
throw = ExceptT e m b -> MSF (ExceptT e m) a b
forall (m :: Type -> Type) b a. Monad m => m b -> MSF m a b
constM (ExceptT e m b -> MSF (ExceptT e m) a b)
-> (e -> ExceptT e m b) -> e -> MSF (ExceptT e m) a b
forall b c a. (b -> c) -> (a -> b) -> a -> c
. e -> ExceptT e m b
forall (m :: Type -> Type) e a. Monad m => e -> ExceptT e m a
throwE
pass :: Monad m => MSF (ExceptT e m) a a
pass :: MSF (ExceptT e m) a a
pass = MSF (ExceptT e m) a a
forall k (cat :: k -> k -> Type) (a :: k). Category cat => cat a a
Category.id
throwOn :: Monad m => e -> ClSF (ExceptT e m) cl Bool ()
throwOn :: e -> ClSF (ExceptT e m) cl Bool ()
throwOn e
e = proc Bool
b -> ClSF (ExceptT e m) cl (Bool, e) ()
forall (m :: Type -> Type) e cl.
Monad m =>
ClSF (ExceptT e m) cl (Bool, e) ()
throwOn' -< (Bool
b, e
e)
throwOn' :: Monad m => ClSF (ExceptT e m) cl (Bool, e) ()
throwOn' :: ClSF (ExceptT e m) cl (Bool, e) ()
throwOn' = proc (Bool
b, e
e) -> if Bool
b
then ClSF (ExceptT e m) cl e ()
forall (m :: Type -> Type) e cl a.
Monad m =>
ClSF (ExceptT e m) cl e a
throwS -< e
e
else MSF (ReaderT (TimeInfo cl) (ExceptT e m)) () ()
forall (a :: Type -> Type -> Type) b. Arrow a => a b b
returnA -< ()
throwOnCond :: Monad m => (a -> Bool) -> e -> ClSF (ExceptT e m) cl a a
throwOnCond :: (a -> Bool) -> e -> ClSF (ExceptT e m) cl a a
throwOnCond a -> Bool
cond e
e = proc a
a -> if a -> Bool
cond a
a
then ClSF (ExceptT e m) cl e a
forall (m :: Type -> Type) e cl a.
Monad m =>
ClSF (ExceptT e m) cl e a
throwS -< e
e
else ClSF (ExceptT e m) cl a a
forall (a :: Type -> Type -> Type) b. Arrow a => a b b
returnA -< a
a
throwOnCondM :: Monad m => (a -> m Bool) -> e -> ClSF (ExceptT e m) cl a a
throwOnCondM :: (a -> m Bool) -> e -> ClSF (ExceptT e m) cl a a
throwOnCondM a -> m Bool
cond e
e = proc a
a -> do
Bool
b <- (a -> ExceptT e m Bool) -> ClSF (ExceptT e m) cl a Bool
forall (m :: Type -> Type) a b cl.
Monad m =>
(a -> m b) -> ClSF m cl a b
arrMCl (m Bool -> ExceptT e m Bool
forall (t :: (Type -> Type) -> Type -> Type) (m :: Type -> Type) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (m Bool -> ExceptT e m Bool)
-> (a -> m Bool) -> a -> ExceptT e m Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. a -> m Bool
cond) -< a
a
if Bool
b
then ClSF (ExceptT e m) cl e a
forall (m :: Type -> Type) e cl a.
Monad m =>
ClSF (ExceptT e m) cl e a
throwS -< e
e
else ClSF (ExceptT e m) cl a a
forall (a :: Type -> Type -> Type) b. Arrow a => a b b
returnA -< a
a
throwMaybe :: Monad m => ClSF (ExceptT e m) cl (Maybe e) (Maybe a)
throwMaybe :: ClSF (ExceptT e m) cl (Maybe e) (Maybe a)
throwMaybe = proc Maybe e
me -> case Maybe e
me of
Maybe e
Nothing -> MSF (ReaderT (TimeInfo cl) (ExceptT e m)) (Maybe a) (Maybe a)
forall (a :: Type -> Type -> Type) b. Arrow a => a b b
returnA -< Maybe a
forall a. Maybe a
Nothing
Just e
e -> ClSF (ExceptT e m) cl e (Maybe a)
forall (m :: Type -> Type) e cl a.
Monad m =>
ClSF (ExceptT e m) cl e a
throwS -< e
e
type ClSFExcept m cl a b e = MSFExcept (ReaderT (TimeInfo cl) m) a b e
type BehaviourFExcept m time a b e
= forall cl. time ~ Time cl => ClSFExcept m cl a b e
type BehaviorFExcept m time a b e = BehaviourFExcept m time a b e
runClSFExcept :: Monad m => ClSFExcept m cl a b e -> ClSF (ExceptT e m) cl a b
runClSFExcept :: ClSFExcept m cl a b e -> ClSF (ExceptT e m) cl a b
runClSFExcept = (forall c.
ExceptT e (ReaderT (TimeInfo cl) m) c
-> ReaderT (TimeInfo cl) (ExceptT e m) c)
-> MSF (ExceptT e (ReaderT (TimeInfo cl) m)) a b
-> ClSF (ExceptT e m) cl a b
forall (m2 :: Type -> Type) (m1 :: Type -> Type) a b.
(Monad m2, Monad m1) =>
(forall c. m1 c -> m2 c) -> MSF m1 a b -> MSF m2 a b
morphS forall c.
ExceptT e (ReaderT (TimeInfo cl) m) c
-> ReaderT (TimeInfo cl) (ExceptT e m) c
forall e r (m :: Type -> Type) a.
ExceptT e (ReaderT r m) a -> ReaderT r (ExceptT e m) a
commuteExceptReader (MSF (ExceptT e (ReaderT (TimeInfo cl) m)) a b
-> ClSF (ExceptT e m) cl a b)
-> (ClSFExcept m cl a b e
-> MSF (ExceptT e (ReaderT (TimeInfo cl) m)) a b)
-> ClSFExcept m cl a b e
-> ClSF (ExceptT e m) cl a b
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ClSFExcept m cl a b e
-> MSF (ExceptT e (ReaderT (TimeInfo cl) m)) a b
forall (m :: Type -> Type) a b e.
MSFExcept m a b e -> MSF (ExceptT e m) a b
runMSFExcept
try :: Monad m => ClSF (ExceptT e m) cl a b -> ClSFExcept m cl a b e
try :: ClSF (ExceptT e m) cl a b -> ClSFExcept m cl a b e
try = MSF (ExceptT e (ReaderT (TimeInfo cl) m)) a b
-> ClSFExcept m cl a b e
forall e (m :: Type -> Type) a b.
MSF (ExceptT e m) a b -> MSFExcept m a b e
MSFE.try (MSF (ExceptT e (ReaderT (TimeInfo cl) m)) a b
-> ClSFExcept m cl a b e)
-> (ClSF (ExceptT e m) cl a b
-> MSF (ExceptT e (ReaderT (TimeInfo cl) m)) a b)
-> ClSF (ExceptT e m) cl a b
-> ClSFExcept m cl a b e
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (forall c.
ReaderT (TimeInfo cl) (ExceptT e m) c
-> ExceptT e (ReaderT (TimeInfo cl) m) c)
-> ClSF (ExceptT e m) cl a b
-> MSF (ExceptT e (ReaderT (TimeInfo cl) m)) a b
forall (m2 :: Type -> Type) (m1 :: Type -> Type) a b.
(Monad m2, Monad m1) =>
(forall c. m1 c -> m2 c) -> MSF m1 a b -> MSF m2 a b
morphS forall c.
ReaderT (TimeInfo cl) (ExceptT e m) c
-> ExceptT e (ReaderT (TimeInfo cl) m) c
forall r e (m :: Type -> Type) a.
ReaderT r (ExceptT e m) a -> ExceptT e (ReaderT r m) a
commuteReaderExcept
once :: Monad m => (a -> m e) -> ClSFExcept m cl a b e
once :: (a -> m e) -> ClSFExcept m cl a b e
once a -> m e
f = (a -> ReaderT (TimeInfo cl) m e) -> ClSFExcept m cl a b e
forall (m :: Type -> Type) a e b.
Monad m =>
(a -> m e) -> MSFExcept m a b e
MSFE.once ((a -> ReaderT (TimeInfo cl) m e) -> ClSFExcept m cl a b e)
-> (a -> ReaderT (TimeInfo cl) m e) -> ClSFExcept m cl a b e
forall a b. (a -> b) -> a -> b
$ m e -> ReaderT (TimeInfo cl) m e
forall (t :: (Type -> Type) -> Type -> Type) (m :: Type -> Type) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (m e -> ReaderT (TimeInfo cl) m e)
-> (a -> m e) -> a -> ReaderT (TimeInfo cl) m e
forall b c a. (b -> c) -> (a -> b) -> a -> c
. a -> m e
f
once_ :: Monad m => m e -> ClSFExcept m cl a b e
once_ :: m e -> ClSFExcept m cl a b e
once_ = (a -> m e) -> ClSFExcept m cl a b e
forall (m :: Type -> Type) a e cl b.
Monad m =>
(a -> m e) -> ClSFExcept m cl a b e
once ((a -> m e) -> ClSFExcept m cl a b e)
-> (m e -> a -> m e) -> m e -> ClSFExcept m cl a b e
forall b c a. (b -> c) -> (a -> b) -> a -> c
. m e -> a -> m e
forall a b. a -> b -> a
const
step :: Monad m => (a -> m (b, e)) -> ClSFExcept m cl a b e
step :: (a -> m (b, e)) -> ClSFExcept m cl a b e
step a -> m (b, e)
f = (a -> ReaderT (TimeInfo cl) m (b, e)) -> ClSFExcept m cl a b e
forall (m :: Type -> Type) a b e.
Monad m =>
(a -> m (b, e)) -> MSFExcept m a b e
MSFE.step ((a -> ReaderT (TimeInfo cl) m (b, e)) -> ClSFExcept m cl a b e)
-> (a -> ReaderT (TimeInfo cl) m (b, e)) -> ClSFExcept m cl a b e
forall a b. (a -> b) -> a -> b
$ m (b, e) -> ReaderT (TimeInfo cl) m (b, e)
forall (t :: (Type -> Type) -> Type -> Type) (m :: Type -> Type) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (m (b, e) -> ReaderT (TimeInfo cl) m (b, e))
-> (a -> m (b, e)) -> a -> ReaderT (TimeInfo cl) m (b, e)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. a -> m (b, e)
f