effectful-core-2.4.0.0: src/Effectful/Labeled/Error.hs
{-# LANGUAGE AllowAmbiguousTypes #-}
-- | Convenience functions for the 'Labeled' 'Error' effect.
--
-- @since 2.4.0.0
module Effectful.Labeled.Error
( -- * Effect
Error(..)
-- ** Handlers
, runError
, runErrorWith
, runErrorNoCallStack
, runErrorNoCallStackWith
-- ** Operations
, throwErrorWith
, throwError
, throwError_
, catchError
, handleError
, tryError
-- * Re-exports
, E.HasCallStack
, E.CallStack
, E.getCallStack
, E.prettyCallStack
) where
import GHC.Stack (withFrozenCallStack)
import Effectful
import Effectful.Dispatch.Dynamic
import Effectful.Labeled
import Effectful.Error.Dynamic (Error(..))
import Effectful.Error.Dynamic qualified as E
-- | Handle errors of type @e@ (via "Effectful.Error.Static").
runError
:: forall label e es a
. HasCallStack
=> Eff (Labeled label (Error e) : es) a
-> Eff es (Either (E.CallStack, e) a)
runError = runLabeled @label E.runError
-- | Handle errors of type @e@ (via "Effectful.Error.Static") with a specific
-- error handler.
runErrorWith
:: forall label e es a
. HasCallStack
=> (E.CallStack -> e -> Eff es a)
-- ^ The error handler.
-> Eff (Labeled label (Error e) : es) a
-> Eff es a
runErrorWith = runLabeled @label . E.runErrorWith
-- | Handle errors of type @e@ (via "Effectful.Error.Static"). In case of an
-- error discard the 'E.CallStack'.
runErrorNoCallStack
:: forall label e es a
. HasCallStack
=> Eff (Labeled label (Error e) : es) a
-> Eff es (Either e a)
runErrorNoCallStack = runLabeled @label E.runErrorNoCallStack
-- | Handle errors of type @e@ (via "Effectful.Error.Static") with a specific
-- error handler. In case of an error discard the 'CallStack'.
runErrorNoCallStackWith
:: forall label e es a
. HasCallStack
=> (e -> Eff es a)
-- ^ The error handler.
-> Eff (Labeled label (Error e) : es) a
-> Eff es a
runErrorNoCallStackWith = runLabeled @label . E.runErrorNoCallStackWith
-- | Throw an error of type @e@ and specify a display function in case a
-- third-party code catches the internal exception and 'show's it.
throwErrorWith
:: forall label e es a
. (HasCallStack, Labeled label (Error e) :> es)
=> (e -> String)
-- ^ The display function.
-> e
-- ^ The error.
-> Eff es a
throwErrorWith display =
withFrozenCallStack send . Labeled @label . ThrowErrorWith display
-- | Throw an error of type @e@ with 'show' as a display function.
throwError
:: forall label e es a
. (HasCallStack, Labeled label (Error e) :> es, Show e)
=> e
-- ^ The error.
-> Eff es a
throwError = withFrozenCallStack (throwErrorWith @label) show
-- | Throw an error of type @e@ with no display function.
throwError_
:: forall label e es a
. (HasCallStack, Labeled label (Error e) :> es)
=> e
-- ^ The error.
-> Eff es a
throwError_ = withFrozenCallStack (throwErrorWith @label) (const "<opaque>")
-- | Handle an error of type @e@.
catchError
:: forall label e es a
. (HasCallStack, Labeled label (Error e) :> es)
=> Eff es a
-- ^ The inner computation.
-> (E.CallStack -> e -> Eff es a)
-- ^ A handler for errors in the inner computation.
-> Eff es a
catchError m = send . Labeled @label . CatchError m
-- | The same as @'flip' 'catchError'@, which is useful in situations where the
-- code for the handler is shorter.
handleError
:: forall label e es a
. (HasCallStack, Labeled label (Error e) :> es)
=> (E.CallStack -> e -> Eff es a)
-- ^ A handler for errors in the inner computation.
-> Eff es a
-- ^ The inner computation.
-> Eff es a
handleError = flip (catchError @label)
-- | Similar to 'catchError', but returns an 'Either' result which is a 'Right'
-- if no error was thrown and a 'Left' otherwise.
tryError
:: forall label e es a
. (HasCallStack, Labeled label (Error e) :> es)
=> Eff es a
-- ^ The inner computation.
-> Eff es (Either (E.CallStack, e) a)
tryError m = catchError @label (Right <$> m) (\es e -> pure $ Left (es, e))