Copyright | (c) 2009-2015 Peter Trško |
---|---|
License | BSD3 |
Stability | provisional |
Portability | NoImplicitPrelude, depends on non-portable modules |
Safe Haskell | Safe |
Language | Haskell2010 |
Core functionality.
- throw :: (Exception e, MonadThrow m) => e -> Throws e m a
- catch :: (Exception e, MonadCatch m) => Throws e m a -> (e -> m a) -> m a
- catch' :: (Exception e, MonadCatch m) => m a -> (e -> m a) -> m a
- handle :: (Exception e, MonadCatch m) => (e -> m a) -> Throws e m a -> m a
- handle' :: (Exception e, MonadCatch m) => (e -> m a) -> m a -> m a
- mapException :: (Exception e, Exception e', MonadCatch m) => (e -> e') -> Throws e m a -> Throws e' m a
- try :: (Exception e, MonadCatch m) => Throws e m a -> m (Either e a)
- onException :: (Exception e, MonadCatch m) => Throws e m a -> m b -> Throws e m a
- onException' :: MonadCatch m => m a -> m b -> m a
- data Throws e m a
- liftT :: (Exception e, MonadThrow m) => m a -> Throws e m a
- lift2T :: (Exception e, Exception e', MonadThrow m) => m a -> Throws e' (Throws e m) a
- lift3T :: (Exception e, Exception e', Exception e'', MonadThrow m) => m a -> Throws e'' (Throws e' (Throws e m)) a
- liftT1 :: (Exception e, MonadThrow m) => (m a -> m b) -> Throws e m a -> Throws e m b
- liftT2 :: (Exception e, MonadThrow m) => (m a -> m b -> m c) -> Throws e m a -> Throws e m b -> Throws e m c
- liftT3 :: (Exception e, MonadThrow m) => (m a -> m b -> m c -> m d) -> Throws e m a -> Throws e m b -> Throws e m c -> Throws e m d
- joinT :: (Exception e, MonadThrow m) => Throws e (Throws e m) a -> Throws e m a
- joinT3 :: (Exception e, MonadThrow m) => Throws e (Throws e (Throws e m)) a -> Throws e m a
- flipT :: (Exception e, Exception e', MonadThrow m) => Throws e' (Throws e m) a -> Throws e (Throws e' m) a
- insideT :: (Exception e, MonadThrow m, MonadThrow m') => (m a -> m' b) -> Throws e m a -> Throws e m' b
- insideT2 :: (Exception e, MonadThrow m1, MonadThrow m2, MonadThrow m3) => (m1 a -> m2 b -> m3 c) -> Throws e m1 a -> Throws e m2 b -> Throws e m3 c
- insideT3 :: (Exception e, MonadThrow m1, MonadThrow m2, MonadThrow m3, MonadThrow m4) => (m1 a -> m2 b -> m3 c -> m4 d) -> Throws e m1 a -> Throws e m2 b -> Throws e m3 c -> Throws e m4 d
- insideTf :: (Exception e, Functor f, MonadThrow m, MonadThrow m') => (f (m a) -> m' b) -> f (Throws e m a) -> Throws e m' b
- insideTf2 :: (Exception e, Functor f, Functor f', MonadThrow m, MonadThrow m') => (f (f' (m a)) -> m' b) -> f (f' (Throws e m a)) -> Throws e m' b
- embedT :: (Exception e, MonadThrow m, MonadThrow m') => (m a -> Throws e m' b) -> Throws e m a -> Throws e m' b
Throw, Catch and Map Exceptions
throw :: (Exception e, MonadThrow m) => e -> Throws e m a Source
catch :: (Exception e, MonadCatch m) => Throws e m a -> (e -> m a) -> m a Source
catch' :: (Exception e, MonadCatch m) => m a -> (e -> m a) -> m a Source
Catch any exception.
handle :: (Exception e, MonadCatch m) => (e -> m a) -> Throws e m a -> m a Source
handle' :: (Exception e, MonadCatch m) => (e -> m a) -> m a -> m a Source
Flipped version of catch'
mapException :: (Exception e, Exception e', MonadCatch m) => (e -> e') -> Throws e m a -> Throws e' m a Source
Map one exception to another.
Mapping "inner" exception has generally two forms:
1. Modifying raised exception, but not changing its type:
liftT1
.mapException
:: (Exception
e,Exception
e',MonadCatch
m) => (e -> e) ->Throws
e' (Throws
e m) a ->Throws
e' (Throws
e m) a
2. Modifying raised exception, including its type:
insideT
.mapException
:: (Exception
e,Exception
e1,Exception
e2,MonadCatch
m) => (e1 -> e2) ->Throws
e (Throws
e1 m) a ->Throws
e (Throws
e2 m) a
Unhiding exception by mapping it in to a different type of exception:
\f ->mapException
f .liftT
:: (Exception
e,Exception
e',MonadCatch
m) => (e -> e') -> m a ->Throws
e' m a
Specialized Exception Catching
:: (Exception e, MonadCatch m) | |
=> Throws e m a | Computation that may raise exception |
-> m b | The computation to run if an exception |
-> Throws e m a |
Run computation if exception was raised. Basically:
monException
n =liftT
mcatch
\e ->liftT
n >>throw
e
:: MonadCatch m | |
=> m a | Computation that may raise exception |
-> m b | The computation to run if an exception is raised |
-> m a |
Same as onException
, but uses catch'
and so second computation is
executed if any exception is raised.
Exception tag
Exception tag.
Cobinators
liftT :: (Exception e, MonadThrow m) => m a -> Throws e m a Source
Construct exception tag, with type restrictions.
Reflect raised exception in function's type:
import Control.Monad.TaggedException (Throws
,liftT
) import System.IO (Handle, IOMode) import qualified System.IO as IO (openFile) openFile :: FilePath -> IOMode ->Throws
IOError IO Handle openFile = (liftT
.) . IO.openFile
Lifting m
to
:Throws
e m
import Control.Exception (Exception
) import Control.Monad.TaggedException (Throws
,liftT
,throw
) import Data.Typeable (Typeable
) data EmptyString = EmptyString deriving (Show,Typeable
) instanceException
EmptyString writeIfNotEmpty :: FilePath -> String ->Throws
EmptyString IO () writeIfNotEmpty filename str = do when (null str) $throw
EmptyStringliftT
$ writeFile filename str
We have a some commonly used patterns:
(liftT
.) :: (Exception
e,MonadThrow
m) => (a -> m b) -> a ->Throws
e m b
Above is also usable for lifting throw-like functions:
import Control.Monad.Trans.Class (MonadTrans
(lift
)) ((liftT
.lift
) .) :: (Exception
e ,MonadThrow
m ,MonadThrow
(t m) ,MonadTrans
t) => (a -> m b) -> a ->Throws
e (t m) b
lift3T :: (Exception e, Exception e', Exception e'', MonadThrow m) => m a -> Throws e'' (Throws e' (Throws e m)) a Source
liftT1 :: (Exception e, MonadThrow m) => (m a -> m b) -> Throws e m a -> Throws e m b Source
liftT
for functions with arity one.
liftT2 :: (Exception e, MonadThrow m) => (m a -> m b -> m c) -> Throws e m a -> Throws e m b -> Throws e m c Source
liftT
for functions with arity two.
liftT3 :: (Exception e, MonadThrow m) => (m a -> m b -> m c -> m d) -> Throws e m a -> Throws e m b -> Throws e m c -> Throws e m d Source
liftT
for functions with arity three.
joinT :: (Exception e, MonadThrow m) => Throws e (Throws e m) a -> Throws e m a Source
Join two outermost exception tags.
joinT3 :: (Exception e, MonadThrow m) => Throws e (Throws e (Throws e m)) a -> Throws e m a Source
Join three outermost exception tags.
flipT :: (Exception e, Exception e', MonadThrow m) => Throws e' (Throws e m) a -> Throws e (Throws e' m) a Source
Flip two outermost exception tags.
insideT :: (Exception e, MonadThrow m, MonadThrow m') => (m a -> m' b) -> Throws e m a -> Throws e m' b Source
Generalized liftT
. Usage examples:
insideT
lift :: (MonadThrow
(t m),MonadThrow
m,Exception
e,MonadTrans
t) =>Throws
e m b ->Throws
e (t m) b
This is variation on the first example that explicitly lifts monad:
insideT
WriterT
:: (Exception
e, MonadThrow
m, Monoid
w)
=> Throws
e m (b, w)
-> Throws
e (WriterT
w m) b
Some useful compositions of exception tag combinators:
insideT
flipT
:: (Exception
e0,Exception
e1,Exception
e2,MonadThrow
m) =>Throws
e0 (Throws
e1 (Throws
e2 m)) a ->Throws
e0 (Throws
e2 (Throws
e1 m)) a
flipT
.insideT
flipT
:: (Exception
e0,Exception
e1,Exception
e2,MonadThrow
m) =>Throws
e0 (Throws
e1 (Throws
e2 m)) a ->Throws
e2 (Throws
e0 (Throws
e1 m)) a
insideT2 :: (Exception e, MonadThrow m1, MonadThrow m2, MonadThrow m3) => (m1 a -> m2 b -> m3 c) -> Throws e m1 a -> Throws e m2 b -> Throws e m3 c Source
Generalized liftT2
.
insideT3 :: (Exception e, MonadThrow m1, MonadThrow m2, MonadThrow m3, MonadThrow m4) => (m1 a -> m2 b -> m3 c -> m4 d) -> Throws e m1 a -> Throws e m2 b -> Throws e m3 c -> Throws e m4 d Source
Generalized liftT3
.
insideTf :: (Exception e, Functor f, MonadThrow m, MonadThrow m') => (f (m a) -> m' b) -> f (Throws e m a) -> Throws e m' b Source
insideTf2 :: (Exception e, Functor f, Functor f', MonadThrow m, MonadThrow m') => (f (f' (m a)) -> m' b) -> f (f' (Throws e m a)) -> Throws e m' b Source
embedT :: (Exception e, MonadThrow m, MonadThrow m') => (m a -> Throws e m' b) -> Throws e m a -> Throws e m' b Source
Since 1.2.0.0