{-# LANGUAGE MagicHash #-}
{-# LANGUAGE UnboxedTuples #-}
module Debug.Trace.Binary
(
traceBinaryEvent
, traceBinaryEventIO
) where
import Control.Monad (when)
import GHC.Exts (Ptr(..), Int(..), traceBinaryEvent#)
import GHC.IO (IO(..))
import qualified System.IO.Unsafe as Unsafe
import qualified Data.ByteString as B
import qualified Data.ByteString.Unsafe as BU
import Debug.Trace.Flags (userTracingEnabled)
traceBinaryEvent :: B.ByteString -> a -> a
traceBinaryEvent :: forall a. ByteString -> a -> a
traceBinaryEvent ByteString
bytes a
a
| Bool
userTracingEnabled = ByteString -> a -> a
forall a. ByteString -> a -> a
traceBinaryEvent' ByteString
bytes a
a
| Bool
otherwise = a
a
traceBinaryEvent' :: B.ByteString -> a -> a
traceBinaryEvent' :: forall a. ByteString -> a -> a
traceBinaryEvent' ByteString
bytes a
a = IO a -> a
forall a. IO a -> a
Unsafe.unsafeDupablePerformIO (IO a -> a) -> IO a -> a
forall a b. (a -> b) -> a -> b
$ do
ByteString -> IO ()
traceBinaryEventIO' ByteString
bytes
a -> IO a
forall a. a -> IO a
forall (m :: * -> *) a. Monad m => a -> m a
return a
a
{-# NOINLINE traceBinaryEvent' #-}
traceBinaryEventIO :: B.ByteString -> IO ()
traceBinaryEventIO :: ByteString -> IO ()
traceBinaryEventIO ByteString
bytes = Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when Bool
userTracingEnabled (IO () -> IO ()) -> IO () -> IO ()
forall a b. (a -> b) -> a -> b
$ ByteString -> IO ()
traceBinaryEventIO' ByteString
bytes
traceBinaryEventIO' :: B.ByteString -> IO ()
traceBinaryEventIO' :: ByteString -> IO ()
traceBinaryEventIO' ByteString
bytes =
ByteString -> (CStringLen -> IO ()) -> IO ()
forall a. ByteString -> (CStringLen -> IO a) -> IO a
BU.unsafeUseAsCStringLen ByteString
bytes ((CStringLen -> IO ()) -> IO ()) -> (CStringLen -> IO ()) -> IO ()
forall a b. (a -> b) -> a -> b
$ \(Ptr Addr#
p, I# Int#
n) -> (State# RealWorld -> (# State# RealWorld, () #)) -> IO ()
forall a. (State# RealWorld -> (# State# RealWorld, a #)) -> IO a
IO ((State# RealWorld -> (# State# RealWorld, () #)) -> IO ())
-> (State# RealWorld -> (# State# RealWorld, () #)) -> IO ()
forall a b. (a -> b) -> a -> b
$ \State# RealWorld
s ->
case Addr# -> Int# -> State# RealWorld -> State# RealWorld
forall d. Addr# -> Int# -> State# d -> State# d
traceBinaryEvent# Addr#
p Int#
n State# RealWorld
s of
State# RealWorld
s' -> (# State# RealWorld
s', () #)