{-# LANGUAGE FlexibleInstances #-}{-# LANGUAGE FunctionalDependencies #-}{-# LANGUAGE MultiParamTypeClasses #-}{-# LANGUAGE UndecidableInstances #-}{-# LANGUAGE Safe #-}-- Needed because the CPSed versions of Writer and State are secretly State-- wrappers, which don't force such constraints, even though they should legally-- be there.{-# OPTIONS_GHC -Wno-redundant-constraints #-}{- | Module : Control.Monad.Error.Class Copyright : (c) Michael Weber <michael.weber@post.rwth-aachen.de> 2001, (c) Jeff Newbern 2003-2006, (c) Andriy Palamarchuk 2006 (c) Edward Kmett 2012 License : BSD-style (see the file LICENSE) Maintainer : libraries@haskell.org Stability : experimental Portability : non-portable (multi-parameter type classes) [Computation type:] Computations which may fail or throw exceptions. [Binding strategy:] Failure records information about the cause\/location of the failure. Failure values bypass the bound function, other values are used as inputs to the bound function. [Useful for:] Building computations from sequences of functions that may fail or using exception handling to structure error handling. [Zero and plus:] Zero is represented by an empty error and the plus operation executes its second argument if the first fails. [Example type:] @'Either' 'String' a@ The Error monad (also called the Exception monad). -}{- Rendered by Michael Weber <mailto:michael.weber@post.rwth-aachen.de>, inspired by the Haskell Monad Template Library from Andy Gill (<http://web.cecs.pdx.edu/~andy/>) -}moduleControl.Monad.Error.Class(MonadError (..),liftEither ,tryError ,withError ,handleError ,mapError ,modifyError ,)whereimportControl.Monad.Trans.Except(ExceptT)importqualifiedControl.Monad.Trans.ExceptasExceptT(catchE,runExceptT,throwE)importControl.Monad.Trans.Identity(IdentityT)importqualifiedControl.Monad.Trans.IdentityasIdentityimportControl.Monad.Trans.Maybe(MaybeT)importqualifiedControl.Monad.Trans.MaybeasMaybeimportControl.Monad.Trans.Reader(ReaderT)importqualifiedControl.Monad.Trans.ReaderasReaderimportqualifiedControl.Monad.Trans.RWS.LazyasLazyRWSimportqualifiedControl.Monad.Trans.RWS.StrictasStrictRWSimportqualifiedControl.Monad.Trans.State.LazyasLazyStateimportqualifiedControl.Monad.Trans.State.StrictasStrictStateimportqualifiedControl.Monad.Trans.Writer.LazyasLazyWriterimportqualifiedControl.Monad.Trans.Writer.StrictasStrictWriterimportControl.Monad.Trans.Accum(AccumT)importqualifiedControl.Monad.Trans.AccumasAccumimportqualifiedControl.Monad.Trans.RWS.CPSasCPSRWSimportqualifiedControl.Monad.Trans.Writer.CPSasCPSWriterimportControl.Monad.Trans.Class(lift)importControl.Exception(IOException,catch,ioError)importControl.Monad(Monad)importData.Monoid(Monoid)importPrelude(Either(Left,Right),Maybe(Nothing),either,flip,(.),IO,pure,(<$>),(>>=)){- | The strategy of combining computations that can throw exceptions by bypassing bound functions from the point an exception is thrown to the point that it is handled. Is parameterized over the type of error information and the monad type constructor. It is common to use @'Either' String@ as the monad type constructor for an error monad in which error descriptions take the form of strings. In that case and many other common cases the resulting monad is already defined as an instance of the 'MonadError' class. You can also define your own error type and\/or use a monad type constructor other than @'Either' 'String'@ or @'Either' 'IOError'@. In these cases you will have to explicitly define instances of the 'MonadError' class. (If you are using the deprecated "Control.Monad.Error" or "Control.Monad.Trans.Error", you may also have to define an 'Error' instance.) -}class(Monadm )=>MonadError e m |m ->e where-- | Is used within a monadic computation to begin exception processing.throwError ::e ->m a {- | A handler function to handle previous errors and return to normal execution. A common idiom is: > do { action1; action2; action3 } `catchError` handler where the @action@ functions can call 'throwError'. Note that @handler@ and the do-block must have the same return type. -}catchError ::m a ->(e ->m a )->m a {-# MINIMALthrowError ,catchError #-}{- | Lifts an @'Either' e@ into any @'MonadError' e@. > do { val <- liftEither =<< action1; action2 } where @action1@ returns an 'Either' to represent errors. @since 2.2.2 -}liftEither ::MonadError e m =>Eithere a ->m a liftEither :: forall e (m :: * -> *) a. MonadError e m => Either e a -> m a liftEither =forall a c b. (a -> c) -> (b -> c) -> Either a b -> c eitherforall e (m :: * -> *) a. MonadError e m => e -> m a throwError forall (f :: * -> *) a. Applicative f => a -> f a pureinstanceMonadError IOExceptionIOwherethrowError :: forall a. IOException -> IO a throwError =forall a. IOException -> IO a ioErrorcatchError :: forall a. IO a -> (IOException -> IO a) -> IO a catchError =forall e a. Exception e => IO a -> (e -> IO a) -> IO a catch{- | @since 2.2.2 -}instanceMonadError ()MaybewherethrowError :: forall a. () -> Maybe a throwError ()=forall a. Maybe a NothingcatchError :: forall a. Maybe a -> (() -> Maybe a) -> Maybe a catchError Maybe a Nothing() -> Maybe a f =() -> Maybe a f ()catchError Maybe a x () -> Maybe a _=Maybe a x -- ----------------------------------------------------------------------------- Our parameterizable error monadinstanceMonadError e (Eithere )wherethrowError :: forall a. e -> Either e a throwError =forall e a. e -> Either e a LeftLefte l catchError :: forall a. Either e a -> (e -> Either e a) -> Either e a `catchError` e -> Either e a h =e -> Either e a h e l Righta r `catchError` e -> Either e a _=forall a b. b -> Either a b Righta r {- | @since 2.2 -}instanceMonadm =>MonadError e (ExceptTe m )wherethrowError :: forall a. e -> ExceptT e m a throwError =forall (m :: * -> *) e a. Monad m => e -> ExceptT e m a ExceptT.throwEcatchError :: forall a. ExceptT e m a -> (e -> ExceptT e m a) -> ExceptT e m a catchError =forall (m :: * -> *) e a e'. Monad m => ExceptT e m a -> (e -> ExceptT e' m a) -> ExceptT e' m a ExceptT.catchE-- ----------------------------------------------------------------------------- Instances for other mtl transformers---- All of these instances need UndecidableInstances,-- because they do not satisfy the coverage condition.instanceMonadError e m =>MonadError e (IdentityTm )wherethrowError :: forall a. e -> IdentityT m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. IdentityT m a -> (e -> IdentityT m a) -> IdentityT m a catchError =forall {k} e (m :: k -> *) (a :: k). Catch e m a -> Catch e (IdentityT m) a Identity.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError instanceMonadError e m =>MonadError e (MaybeTm )wherethrowError :: forall a. e -> MaybeT m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. MaybeT m a -> (e -> MaybeT m a) -> MaybeT m a catchError =forall e (m :: * -> *) a. Catch e m (Maybe a) -> Catch e (MaybeT m) a Maybe.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError instanceMonadError e m =>MonadError e (ReaderTr m )wherethrowError :: forall a. e -> ReaderT r m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. ReaderT r m a -> (e -> ReaderT r m a) -> ReaderT r m a catchError =forall e (m :: * -> *) a r. Catch e m a -> Catch e (ReaderT r m) a Reader.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError instance(Monoidw ,MonadError e m )=>MonadError e (LazyRWS.RWSTr w s m )wherethrowError :: forall a. e -> RWST r w s m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. RWST r w s m a -> (e -> RWST r w s m a) -> RWST r w s m a catchError =forall e (m :: * -> *) a s w r. Catch e m (a, s, w) -> Catch e (RWST r w s m) a LazyRWS.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError instance(Monoidw ,MonadError e m )=>MonadError e (StrictRWS.RWSTr w s m )wherethrowError :: forall a. e -> RWST r w s m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. RWST r w s m a -> (e -> RWST r w s m a) -> RWST r w s m a catchError =forall e (m :: * -> *) a s w r. Catch e m (a, s, w) -> Catch e (RWST r w s m) a StrictRWS.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError instanceMonadError e m =>MonadError e (LazyState.StateTs m )wherethrowError :: forall a. e -> StateT s m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. StateT s m a -> (e -> StateT s m a) -> StateT s m a catchError =forall e (m :: * -> *) a s. Catch e m (a, s) -> Catch e (StateT s m) a LazyState.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError instanceMonadError e m =>MonadError e (StrictState.StateTs m )wherethrowError :: forall a. e -> StateT s m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. StateT s m a -> (e -> StateT s m a) -> StateT s m a catchError =forall e (m :: * -> *) a s. Catch e m (a, s) -> Catch e (StateT s m) a StrictState.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError instance(Monoidw ,MonadError e m )=>MonadError e (LazyWriter.WriterTw m )wherethrowError :: forall a. e -> WriterT w m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. WriterT w m a -> (e -> WriterT w m a) -> WriterT w m a catchError =forall e (m :: * -> *) a w. Catch e m (a, w) -> Catch e (WriterT w m) a LazyWriter.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError instance(Monoidw ,MonadError e m )=>MonadError e (StrictWriter.WriterTw m )wherethrowError :: forall a. e -> WriterT w m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. WriterT w m a -> (e -> WriterT w m a) -> WriterT w m a catchError =forall e (m :: * -> *) a w. Catch e m (a, w) -> Catch e (WriterT w m) a StrictWriter.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError -- | @since 2.3instance(Monoidw ,MonadError e m )=>MonadError e (CPSRWS.RWSTr w s m )wherethrowError :: forall a. e -> RWST r w s m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. RWST r w s m a -> (e -> RWST r w s m a) -> RWST r w s m a catchError =forall e (m :: * -> *) a s w r. Catch e m (a, s, w) -> Catch e (RWST r w s m) a CPSRWS.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError -- | @since 2.3instance(Monoidw ,MonadError e m )=>MonadError e (CPSWriter.WriterTw m )wherethrowError :: forall a. e -> WriterT w m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. WriterT w m a -> (e -> WriterT w m a) -> WriterT w m a catchError =forall e (m :: * -> *) a w. Catch e m (a, w) -> Catch e (WriterT w m) a CPSWriter.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError -- | @since 2.3instance(Monoidw ,MonadError e m )=>MonadError e (AccumTw m )wherethrowError :: forall a. e -> AccumT w m a throwError =forall (t :: (* -> *) -> * -> *) (m :: * -> *) a. (MonadTrans t, Monad m) => m a -> t m a liftforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e (m :: * -> *) a. MonadError e m => e -> m a throwError catchError :: forall a. AccumT w m a -> (e -> AccumT w m a) -> AccumT w m a catchError =forall e (m :: * -> *) a w. Catch e m (a, w) -> Catch e (AccumT w m) a Accum.liftCatchforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError -- | 'MonadError' analogue to the 'Control.Exception.try' function.tryError ::MonadError e m =>m a ->m (Eithere a )tryError :: forall e (m :: * -> *) a. MonadError e m => m a -> m (Either e a) tryError m a action =(forall a b. b -> Either a b Rightforall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b <$>m a action )forall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a `catchError` (forall (f :: * -> *) a. Applicative f => a -> f a pureforall b c a. (b -> c) -> (a -> b) -> a -> c .forall e a. e -> Either e a Left)-- | 'MonadError' analogue to the 'withExceptT' function.-- Modify the value (but not the type) of an error. The type is-- fixed because of the functional dependency @m -> e@. If you need-- to change the type of @e@ use 'mapError' or 'modifyError'.withError ::MonadError e m =>(e ->e )->m a ->m a withError :: forall e (m :: * -> *) a. MonadError e m => (e -> e) -> m a -> m a withError e -> e f m a action =forall e (m :: * -> *) a. MonadError e m => m a -> m (Either e a) tryError m a action forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b >>=forall a c b. (a -> c) -> (b -> c) -> Either a b -> c either(forall e (m :: * -> *) a. MonadError e m => e -> m a throwError forall b c a. (b -> c) -> (a -> b) -> a -> c .e -> e f )forall (f :: * -> *) a. Applicative f => a -> f a pure-- | As 'handle' is flipped 'Control.Exception.catch', 'handleError'-- is flipped 'catchError'.handleError ::MonadError e m =>(e ->m a )->m a ->m a handleError :: forall e (m :: * -> *) a. MonadError e m => (e -> m a) -> m a -> m a handleError =forall a b c. (a -> b -> c) -> b -> a -> c flipforall e (m :: * -> *) a. MonadError e m => m a -> (e -> m a) -> m a catchError -- | 'MonadError' analogue of the 'mapExceptT' function. The-- computation is unwrapped, a function is applied to the @Either@, and-- the result is lifted into the second 'MonadError' instance.mapError ::(MonadError e m ,MonadError e' n )=>(m (Eithere a )->n (Eithere' b ))->m a ->n b mapError :: forall e (m :: * -> *) e' (n :: * -> *) a b. (MonadError e m, MonadError e' n) => (m (Either e a) -> n (Either e' b)) -> m a -> n b mapError m (Either e a) -> n (Either e' b) f m a action =m (Either e a) -> n (Either e' b) f (forall e (m :: * -> *) a. MonadError e m => m a -> m (Either e a) tryError m a action )forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b >>=forall e (m :: * -> *) a. MonadError e m => Either e a -> m a liftEither {- | A different 'MonadError' analogue to the 'withExceptT' function. Modify the value (and possibly the type) of an error in an @ExceptT@-transformed monad, while stripping the @ExceptT@ layer. This is useful for adapting the 'MonadError' constraint of a computation. For example: > data DatabaseError = ... > > performDatabaseQuery :: (MonadError DatabaseError m, ...) => m PersistedValue > > data AppError > = MkDatabaseError DatabaseError > | ... > > app :: (MonadError AppError m, ...) => m () Given these types, @performDatabaseQuery@ cannot be used directly inside @app@, because the error types don't match. Using 'modifyError', an equivalent function with a different error type can be constructed: > performDatabaseQuery' :: (MonadError AppError m, ...) => m PersistedValue > performDatabaseQuery' = modifyError MkDatabaseError performDatabaseQuery Since the error types do match, @performDatabaseQuery'@ _can_ be used in @app@, assuming all other constraints carry over. This works by instantiating the @m@ in the type of @performDatabaseQuery@ to @ExceptT DatabaseError m'@, which satisfies the @MonadError DatabaseError@ constraint. Immediately, the @ExceptT DatabaseError@ layer is unwrapped, producing 'Either' a @DatabaseError@ or a @PersistedValue@. If it's the former, the error is wrapped in @MkDatabaseError@ and re-thrown in the inner monad, otherwise the result value is returned. @since 2.3.1 -}modifyError ::MonadError e' m =>(e ->e' )->ExceptTe m a ->m a modifyError :: forall e' (m :: * -> *) e a. MonadError e' m => (e -> e') -> ExceptT e m a -> m a modifyError e -> e' f ExceptT e m a m =forall e (m :: * -> *) a. ExceptT e m a -> m (Either e a) ExceptT.runExceptTExceptT e m a m forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b >>=forall a c b. (a -> c) -> (b -> c) -> Either a b -> c either(forall e (m :: * -> *) a. MonadError e m => e -> m a throwError forall b c a. (b -> c) -> (a -> b) -> a -> c .e -> e' f )forall (f :: * -> *) a. Applicative f => a -> f a pure