{-# LANGUAGE FlexibleContexts #-}
module Futhark.Error
( CompilerError (..),
ErrorClass (..),
externalError,
externalErrorS,
InternalError (..),
compilerBug,
compilerBugS,
compilerLimitation,
compilerLimitationS,
internalErrorS,
)
where
import Control.Exception
import Control.Monad.Error.Class
import qualified Data.Text as T
import Futhark.Util.Pretty
data ErrorClass
= CompilerBug
| CompilerLimitation
deriving (ErrorClass -> ErrorClass -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ErrorClass -> ErrorClass -> Bool
$c/= :: ErrorClass -> ErrorClass -> Bool
== :: ErrorClass -> ErrorClass -> Bool
$c== :: ErrorClass -> ErrorClass -> Bool
Eq, Eq ErrorClass
ErrorClass -> ErrorClass -> Bool
ErrorClass -> ErrorClass -> Ordering
ErrorClass -> ErrorClass -> ErrorClass
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: ErrorClass -> ErrorClass -> ErrorClass
$cmin :: ErrorClass -> ErrorClass -> ErrorClass
max :: ErrorClass -> ErrorClass -> ErrorClass
$cmax :: ErrorClass -> ErrorClass -> ErrorClass
>= :: ErrorClass -> ErrorClass -> Bool
$c>= :: ErrorClass -> ErrorClass -> Bool
> :: ErrorClass -> ErrorClass -> Bool
$c> :: ErrorClass -> ErrorClass -> Bool
<= :: ErrorClass -> ErrorClass -> Bool
$c<= :: ErrorClass -> ErrorClass -> Bool
< :: ErrorClass -> ErrorClass -> Bool
$c< :: ErrorClass -> ErrorClass -> Bool
compare :: ErrorClass -> ErrorClass -> Ordering
$ccompare :: ErrorClass -> ErrorClass -> Ordering
Ord, Int -> ErrorClass -> ShowS
[ErrorClass] -> ShowS
ErrorClass -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ErrorClass] -> ShowS
$cshowList :: [ErrorClass] -> ShowS
show :: ErrorClass -> String
$cshow :: ErrorClass -> String
showsPrec :: Int -> ErrorClass -> ShowS
$cshowsPrec :: Int -> ErrorClass -> ShowS
Show)
data CompilerError
=
ExternalError Doc
|
InternalError T.Text T.Text ErrorClass
instance Show CompilerError where
show :: CompilerError -> String
show (ExternalError Doc
s) = forall a. Pretty a => a -> String
pretty Doc
s
show (InternalError Text
s Text
_ ErrorClass
_) = Text -> String
T.unpack Text
s
externalError :: MonadError CompilerError m => Doc -> m a
externalError :: forall (m :: * -> *) a. MonadError CompilerError m => Doc -> m a
externalError = forall e (m :: * -> *) a. MonadError e m => e -> m a
throwError forall b c a. (b -> c) -> (a -> b) -> a -> c
. Doc -> CompilerError
ExternalError
externalErrorS :: MonadError CompilerError m => String -> m a
externalErrorS :: forall (m :: * -> *) a. MonadError CompilerError m => String -> m a
externalErrorS = forall (m :: * -> *) a. MonadError CompilerError m => Doc -> m a
externalError forall b c a. (b -> c) -> (a -> b) -> a -> c
. String -> Doc
text
internalErrorS :: MonadError CompilerError m => String -> Doc -> m a
internalErrorS :: forall (m :: * -> *) a.
MonadError CompilerError m =>
String -> Doc -> m a
internalErrorS String
s Doc
d =
forall e (m :: * -> *) a. MonadError e m => e -> m a
throwError forall a b. (a -> b) -> a -> b
$ Text -> Text -> ErrorClass -> CompilerError
InternalError (String -> Text
T.pack String
s) (forall a. Pretty a => a -> Text
prettyText Doc
d) ErrorClass
CompilerBug
data InternalError = Error ErrorClass T.Text
deriving (Int -> InternalError -> ShowS
[InternalError] -> ShowS
InternalError -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [InternalError] -> ShowS
$cshowList :: [InternalError] -> ShowS
show :: InternalError -> String
$cshow :: InternalError -> String
showsPrec :: Int -> InternalError -> ShowS
$cshowsPrec :: Int -> InternalError -> ShowS
Show)
instance Exception InternalError
compilerBug :: T.Text -> a
compilerBug :: forall a. Text -> a
compilerBug = forall a e. Exception e => e -> a
throw forall b c a. (b -> c) -> (a -> b) -> a -> c
. ErrorClass -> Text -> InternalError
Error ErrorClass
CompilerBug
compilerLimitation :: T.Text -> a
compilerLimitation :: forall a. Text -> a
compilerLimitation = forall a e. Exception e => e -> a
throw forall b c a. (b -> c) -> (a -> b) -> a -> c
. ErrorClass -> Text -> InternalError
Error ErrorClass
CompilerLimitation
compilerBugS :: String -> a
compilerBugS :: forall a. String -> a
compilerBugS = forall a. Text -> a
compilerBug forall b c a. (b -> c) -> (a -> b) -> a -> c
. String -> Text
T.pack
compilerLimitationS :: String -> a
compilerLimitationS :: forall a. String -> a
compilerLimitationS = forall a. Text -> a
compilerLimitation forall b c a. (b -> c) -> (a -> b) -> a -> c
. String -> Text
T.pack