module Data.Array.Accelerate.Internal.Check
(
Checks(..), doChecks,
error, check, assert, checkIndex, checkLength, checkSlice
) where
import Prelude hiding( error )
import qualified Prelude as P
data Checks = Bounds | Unsafe | Internal deriving( Eq )
doBoundsChecks :: Bool
#ifdef ACCELERATE_BOUNDS_CHECKS
doBoundsChecks = True
#else
doBoundsChecks = False
#endif
doUnsafeChecks :: Bool
#ifdef ACCELERATE_UNSAFE_CHECKS
doUnsafeChecks = True
#else
doUnsafeChecks = False
#endif
doInternalChecks :: Bool
#ifdef ACCELERATE_INTERNAL_CHECKS
doInternalChecks = True
#else
doInternalChecks = False
#endif
doChecks :: Checks -> Bool
doChecks Bounds = doBoundsChecks
doChecks Unsafe = doUnsafeChecks
doChecks Internal = doInternalChecks
error :: String -> Int -> Checks -> String -> String -> a
error file line kind loc msg
= P.error . unlines $
(if kind == Internal
then (["*** Internal error in package accelerate ***"
,"*** Please submit a bug report at http://trac.haskell.org/accelerate"]++)
else id)
[ file ++ ":" ++ show line ++ " (" ++ loc ++ "): " ++ msg ]
check :: String -> Int -> Checks -> String -> String -> Bool -> a -> a
check file line kind loc msg cond x
| not (doChecks kind) || cond = x
| otherwise = error file line kind loc msg
assert_msg :: String
assert_msg = "assertion failure"
assert :: String -> Int -> Checks -> String -> Bool -> a -> a
assert file line kind loc = check file line kind loc assert_msg
checkIndex_msg :: Int -> Int -> String
checkIndex_msg i n = "index out of bounds " ++ show (i,n)
checkIndex :: String -> Int -> Checks -> String -> Int -> Int -> a -> a
checkIndex file line kind loc i n x
= check file line kind loc (checkIndex_msg i n) (i >= 0 && i<n) x
checkLength_msg :: Int -> String
checkLength_msg n = "negative length " ++ show n
checkLength :: String -> Int -> Checks -> String -> Int -> a -> a
checkLength file line kind loc n x
= check file line kind loc (checkLength_msg n) (n >= 0) x
checkSlice_msg :: Int -> Int -> Int -> String
checkSlice_msg i m n = "invalid slice " ++ show (i,m,n)
checkSlice :: String -> Int -> Checks -> String -> Int -> Int -> Int -> a -> a
checkSlice file line kind loc i m n x
= check file line kind loc (checkSlice_msg i m n)
(i >= 0 && m >= 0 && i+m <= n) x