Add MonadAff

This commit is contained in:
Jamie Bertram 2022-03-15 10:07:38 -06:00
parent 8068e02e30
commit e0872b4d45

View File

@ -0,0 +1,56 @@
module Effect.Aff.Unlift where
import Prelude
import Control.Monad.Reader (ReaderT(..))
import Effect.Aff (Aff)
import Effect.Aff.Class (class MonadAff)
-- | Monads which allow their actions to be run in `Aff`.
-- |
-- | `MonadUnliftAff` captures the opposite notion of `MonadAff` - while
-- | `MonadAff` allows an `Aff` to be lifted into another monad,
-- | `MonadUnliftAff` allows a monad other than `Aff` to be run in an
-- | `Aff` context.
-- |
-- | Note that the laws given below require that a monad have no "monadic
-- | state", which essentially limits instances to `ReaderT` stacks with a
-- | base of `Aff`.
-- |
-- | Instances should satisfy the following laws, which state that
-- | `unliftAff` is a transformer of monads for any given `u` returned by
-- | `askUnliftAff`:.
-- |
-- | ```purescript
-- | unliftAff u <<< pure = pure
-- | unliftAff u (f =<< m) = unliftAff u <<< f =<< unliftAff u m
-- | ```
class MonadAff m <= MonadUnliftAff m where
-- | Run an `Aff` with access to a runner function that is capable of
-- | running a monadic action `m` in `Aff`.
withRunInAff :: forall b. ((m ~> Aff) -> Aff b) -> m b
instance MonadUnliftAff Aff where
withRunInAff runAction = runAction identity
instance MonadUnliftAff m => MonadUnliftAff (ReaderT r m) where
withRunInAff runAction = ReaderT \context ->
withRunInAff \runMInAff ->
runAction \(ReaderT reader) ->
runMInAff $ reader context
newtype UnliftAff m = UnliftAff (m ~> Aff)
askUnliftAff :: forall m. MonadUnliftAff m => m (UnliftAff m)
askUnliftAff = withRunInAff \run -> pure $ UnliftAff run
askRunInAff :: forall m a. MonadUnliftAff m => m (m a -> Aff a)
askRunInAff = withRunInAff pure
withUnliftAff
:: forall m a. MonadUnliftAff m => (UnliftAff m -> Aff a) -> m a
withUnliftAff runAction =
withRunInAff \run -> runAction $ UnliftAff run
toAff :: forall m a. MonadUnliftAff m => m a -> m (Aff a)
toAff m = withRunInAff \run -> pure $ run m