{-# LANGUAGE CPP #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE Safe #-}
{-# LANGUAGE ViewPatterns #-}
#if __GLASGOW_HASKELL__ > 802
{-# LANGUAGE DerivingStrategies #-}
#endif
module Relude.Exception
(
Exception (..)
, SomeException (..)
, Bug (..)
, bug
, pattern Exc
) where
import Control.Exception (Exception (..), SomeException (..))
import Data.List ((++))
import GHC.Show (Show)
import GHC.Stack (CallStack, HasCallStack, callStack, prettyCallStack)
import Relude.Function ((.))
import Relude.Monad (Maybe (..))
import qualified Control.Exception as E (displayException, throw, toException)
data Bug = Bug SomeException CallStack
#if __GLASGOW_HASKELL__ > 802
deriving stock (Int -> Bug -> ShowS
[Bug] -> ShowS
Bug -> String
(Int -> Bug -> ShowS)
-> (Bug -> String) -> ([Bug] -> ShowS) -> Show Bug
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Bug] -> ShowS
$cshowList :: [Bug] -> ShowS
show :: Bug -> String
$cshow :: Bug -> String
showsPrec :: Int -> Bug -> ShowS
$cshowsPrec :: Int -> Bug -> ShowS
Show)
#else
deriving (Show)
#endif
instance Exception Bug where
displayException :: Bug -> String
displayException (Bug SomeException
e CallStack
cStack) =
SomeException -> String
forall e. Exception e => e -> String
E.displayException SomeException
e String -> ShowS
forall a. [a] -> [a] -> [a]
++ String
"\n"
String -> ShowS
forall a. [a] -> [a] -> [a]
++ CallStack -> String
prettyCallStack CallStack
cStack
impureThrow :: Exception e => e -> a
impureThrow :: e -> a
impureThrow = SomeException -> a
forall a e. Exception e => e -> a
E.throw (SomeException -> a) -> (e -> SomeException) -> e -> a
forall b c a. (b -> c) -> (a -> b) -> a -> c
. e -> SomeException
forall e. Exception e => e -> SomeException
E.toException
bug :: (HasCallStack, Exception e) => e -> a
bug :: e -> a
bug e
e = Bug -> a
forall e a. Exception e => e -> a
impureThrow (SomeException -> CallStack -> Bug
Bug (e -> SomeException
forall e. Exception e => e -> SomeException
E.toException e
e) CallStack
HasCallStack => CallStack
callStack)
pattern Exc :: Exception e => e -> SomeException
pattern $bExc :: e -> SomeException
$mExc :: forall r e.
Exception e =>
SomeException -> (e -> r) -> (Void# -> r) -> r
Exc e <- (fromException -> Just e)
where
Exc e
e = e -> SomeException
forall e. Exception e => e -> SomeException
toException e
e