data-effects-0.3.0.0: src/Data/Effect/Except.hs
{-# LANGUAGE AllowAmbiguousTypes #-}
-- This Source Code Form is subject to the terms of the Mozilla Public
-- License, v. 2.0. If a copy of the MPL was not distributed with this
-- file, You can obtain one at https://mozilla.org/MPL/2.0/.
{- |
Copyright : (c) 2023 Sayo Koyoneda
License : MPL-2.0 (see the file LICENSE)
Maintainer : ymdfield@outlook.jp
An effect to escape from the normal control structure with an exception value in the middle of a context.
-}
module Data.Effect.Except where
-- | An effect to escape from the normal control structure with an exception value of type @e@ in the middle of a context.
data Throw e (a :: Type) where
-- | Throws an exception; that is, escapes from the normal control structure with an exception value in the middle of a context.
Throw :: e -> Throw e a
-- | An effect to catch exceptions.
data Catch e f (a :: Type) where
-- | Catches exceptions within a scope and processes them according to the given exception handler.
Catch
:: f a
-- ^ The scope in which to catch exceptions.
-> (e -> f a)
-- ^ Exception handler. Defines the processing to perform when an exception is thrown within the scope.
-> Catch e f a
makeEffect [''Throw] [''Catch]
-- | Throws the given `Either` value as an exception if it is `Left`.
liftEither :: (Throw e <: f, Applicative f) => Either e a -> f a
liftEither = either throw pure
{-# INLINE liftEither #-}
-- | Throws the result of the given action as an exception if it is `Left`.
joinEither :: (Throw e <: m, Monad m) => m (Either e a) -> m a
joinEither = (>>= either throw pure)
{-# INLINE joinEither #-}
-- | If the given `Either` value is `Left`, execute it as an action.
joinExcept :: (Monad m) => Either (m a) a -> m a
joinExcept = either id pure
{-# INLINE joinExcept #-}
-- | If the result of the given action is `Left`, execute it as an action.
exc :: (Monad m) => m (Either (m a) a) -> m a
exc = (>>= either id pure)
{-# INLINE exc #-}
-- | If an exception occurs, executes the given exception handler, but the exception is not stopped there and is rethrown.
withExcept
:: (Catch e <<: f, Throw e <: f, Applicative f)
=> f a
-- ^ Scope to which the exception handler applies
-> (e -> f ())
-- ^ Exception handler
-> f a
withExcept thing after = thing `catch` \e -> after e *> throw e
{-# INLINE withExcept #-}
-- | If an exception occurs, executes the specified action, but the exception is not stopped there and is rethrown.
onExcept
:: forall e f a
. (Catch e <<: f, Throw e <: f, Applicative f)
=> f a
-- ^ Scope in which to detect exceptions
-> f ()
-- ^ Action to execute in case of an exception
-> f a
onExcept thing after = thing `withExcept` \(_ :: e) -> after
{-# INLINE onExcept #-}