1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
-- | This module exports miscellaneous error-handling functions.
module Control.Error.Util (
-- * Conversion
-- $conversion
hush,
hushT,
note,
noteT,
hoistMaybe,
(??),
(!?),
failWith,
failWithM,
-- * Bool
bool,
-- * Maybe
(?:),
-- * MaybeT
maybeT,
just,
nothing,
isJustT,
isNothingT,
-- * Either
isLeft,
isRight,
fmapR,
AllE(..),
AnyE(..),
-- * EitherT
isLeftT,
isRightT,
fmapRT,
-- * Error Reporting
err,
errLn,
-- * Exceptions
tryIO,
syncIO
) where
import Control.Applicative (Applicative, pure, (<$>))
import qualified Control.Exception as Ex
import Control.Monad (liftM)
import Control.Monad.IO.Class (MonadIO(liftIO))
import Control.Monad.Trans.Either (EitherT(EitherT), runEitherT, eitherT)
import Control.Monad.Trans.Maybe (MaybeT(MaybeT), runMaybeT)
import Data.Dynamic (Dynamic)
import Data.Monoid (Monoid(mempty, mappend))
import Data.Maybe (fromMaybe)
import System.Exit (ExitCode)
import System.IO (hPutStr, hPutStrLn, stderr)
{- $conversion
Use these functions to convert between 'Maybe', 'Either', 'MaybeT', and
'EitherT'.
Note that 'hoistEither' and 'eitherT' are provided by the @either@ package.
-}
-- | Suppress the 'Left' value of an 'Either'
hush :: Either a b -> Maybe b
hush = either (const Nothing) Just
-- | Suppress the 'Left' value of an 'EitherT'
hushT :: (Monad m) => EitherT a m b -> MaybeT m b
hushT = MaybeT . liftM hush . runEitherT
-- | Tag the 'Nothing' value of a 'Maybe'
note :: a -> Maybe b -> Either a b
note a = maybe (Left a) Right
-- | Tag the 'Nothing' value of a 'MaybeT'
noteT :: (Monad m) => a -> MaybeT m b -> EitherT a m b
noteT a = EitherT . liftM (note a) . runMaybeT
-- | Lift a 'Maybe' to the 'MaybeT' monad
hoistMaybe :: (Monad m) => Maybe b -> MaybeT m b
hoistMaybe = MaybeT . return
-- | Convert a 'Maybe' value into the 'EitherT' monad
(??) :: Applicative m => Maybe a -> e -> EitherT e m a
(??) a e = EitherT (pure $ note e a)
-- | Convert an applicative 'Maybe' value into the 'EitherT' monad
(!?) :: Applicative m => m (Maybe a) -> e -> EitherT e m a
(!?) a e = EitherT (note e <$> a)
-- | An infix form of 'fromMaybe' with arguments flipped.
(?:) :: Maybe a -> a -> a
maybeA ?: b = fromMaybe b maybeA
{-# INLINABLE (?:) #-}
{-| Convert a 'Maybe' value into the 'EitherT' monad
Named version of ('??') with arguments flipped
-}
failWith :: Applicative m => e -> Maybe a -> EitherT e m a
failWith e a = a ?? e
{- | Convert an applicative 'Maybe' value into the 'EitherT' monad
Named version of ('!?') with arguments flipped
-}
failWithM :: Applicative m => e -> m (Maybe a) -> EitherT e m a
failWithM e a = a !? e
{- | Case analysis for the 'Bool' type.
> bool a b c == if c then b else a
-}
bool :: a -> a -> Bool -> a
bool a b = \c -> if c then b else a
{-# INLINABLE bool #-}
{-| Case analysis for 'MaybeT'
Use the first argument if the 'MaybeT' computation fails, otherwise apply
the function to the successful result.
-}
maybeT :: Monad m => m b -> (a -> m b) -> MaybeT m a -> m b
maybeT mb kb (MaybeT ma) = ma >>= maybe mb kb
-- | Analogous to 'Just' and equivalent to 'return'
just :: (Monad m) => a -> MaybeT m a
just a = MaybeT (return (Just a))
-- | Analogous to 'Nothing' and equivalent to 'mzero'
nothing :: (Monad m) => MaybeT m a
nothing = MaybeT (return Nothing)
-- | Analogous to 'Data.Maybe.isJust', but for 'MaybeT'
isJustT :: (Monad m) => MaybeT m a -> m Bool
isJustT = maybeT (return False) (\_ -> return True)
{-# INLINABLE isJustT #-}
-- | Analogous to 'Data.Maybe.isNothing', but for 'MaybeT'
isNothingT :: (Monad m) => MaybeT m a -> m Bool
isNothingT = maybeT (return True) (\_ -> return False)
{-# INLINABLE isNothingT #-}
-- | Returns whether argument is a 'Left'
isLeft :: Either a b -> Bool
isLeft = either (const True) (const False)
-- | Returns whether argument is a 'Right'
isRight :: Either a b -> Bool
isRight = either (const False) (const True)
{- | 'fmap' specialized to 'Either', given a name symmetric to
'Data.EitherR.fmapL'
-}
fmapR :: (a -> b) -> Either l a -> Either l b
fmapR = fmap
{-| Run multiple 'Either' computations and succeed if all of them succeed
'mappend's all successes or failures
-}
newtype AllE e r = AllE { runAllE :: Either e r }
instance (Monoid e, Monoid r) => Monoid (AllE e r) where
mempty = AllE (Right mempty)
mappend (AllE (Right x)) (AllE (Right y)) = AllE (Right (mappend x y))
mappend (AllE (Right _)) (AllE (Left y)) = AllE (Left y)
mappend (AllE (Left x)) (AllE (Right _)) = AllE (Left x)
mappend (AllE (Left x)) (AllE (Left y)) = AllE (Left (mappend x y))
{-| Run multiple 'Either' computations and succeed if any of them succeed
'mappend's all successes or failures
-}
newtype AnyE e r = AnyE { runAnyE :: Either e r }
instance (Monoid e, Monoid r) => Monoid (AnyE e r) where
mempty = AnyE (Right mempty)
mappend (AnyE (Right x)) (AnyE (Right y)) = AnyE (Right (mappend x y))
mappend (AnyE (Right x)) (AnyE (Left _)) = AnyE (Right x)
mappend (AnyE (Left _)) (AnyE (Right y)) = AnyE (Right y)
mappend (AnyE (Left x)) (AnyE (Left y)) = AnyE (Left (mappend x y))
-- | Analogous to 'isLeft', but for 'EitherT'
isLeftT :: (Monad m) => EitherT a m b -> m Bool
isLeftT = eitherT (\_ -> return True) (\_ -> return False)
{-# INLINABLE isLeftT #-}
-- | Analogous to 'isRight', but for 'EitherT'
isRightT :: (Monad m) => EitherT a m b -> m Bool
isRightT = eitherT (\_ -> return False) (\_ -> return True)
{-# INLINABLE isRightT #-}
{- | 'fmap' specialized to 'EitherT', given a name symmetric to
'Data.EitherR.fmapLT'
-}
fmapRT :: (Monad m) => (a -> b) -> EitherT l m a -> EitherT l m b
fmapRT = liftM
-- | Write a string to standard error
err :: String -> IO ()
err = hPutStr stderr
-- | Write a string with a newline to standard error
errLn :: String -> IO ()
errLn = hPutStrLn stderr
-- | Catch 'Ex.IOException's and convert them to the 'EitherT' monad
tryIO :: (MonadIO m) => IO a -> EitherT Ex.IOException m a
tryIO = EitherT . liftIO . Ex.try
{-| Catch all exceptions, except for asynchronous exceptions found in @base@
and convert them to the 'EitherT' monad
-}
syncIO :: MonadIO m => IO a -> EitherT Ex.SomeException m a
syncIO a = EitherT . liftIO $ Ex.catches (Right <$> a)
[ Ex.Handler $ \e -> Ex.throw (e :: Ex.ArithException)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.ArrayException)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.AssertionFailed)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.AsyncException)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.BlockedIndefinitelyOnMVar)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.BlockedIndefinitelyOnSTM)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.Deadlock)
, Ex.Handler $ \e -> Ex.throw (e :: Dynamic)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.ErrorCall)
, Ex.Handler $ \e -> Ex.throw (e :: ExitCode)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.NestedAtomically)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.NoMethodError)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.NonTermination)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.PatternMatchFail)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.RecConError)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.RecSelError)
, Ex.Handler $ \e -> Ex.throw (e :: Ex.RecUpdError)
, Ex.Handler $ return . Left
]
|