7c9295f0ee848e9ce1cf38db9292d473c470da2e
[ghc-base.git] / Debug / Trace.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  Debug.Trace
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/base/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  provisional
9 -- Portability :  portable
10 --
11 -- The 'trace' function.
12 --
13 -----------------------------------------------------------------------------
14
15 module Debug.Trace (
16         -- * Tracing
17         putTraceMsg,      -- :: String -> IO ()
18         trace             -- :: String -> a -> a
19   ) where
20
21 import Prelude
22 import System.IO.Unsafe
23
24 #ifdef __GLASGOW_HASKELL__
25 #ifdef mingw32_HOST_OS
26 import Foreign.C.String
27 #endif
28 #endif
29
30 -- | 'putTraceMsg' function outputs the trace message from IO monad.
31 -- Usually the output stream is 'stderr' but if the function is called
32 -- from Windows GUI application then the output will be directed to the Windows
33 -- debug console.
34 putTraceMsg :: String -> IO ()
35 putTraceMsg msg = do
36 #ifndef __GLASGOW_HASKELL__
37     hPutStr handle msg
38     hPutChar handle '\n'
39 #else
40     withCString "%s\n" $ \cfmt ->
41      withCString msg  $ \cmsg ->
42       debugBelch cfmt cmsg
43
44 foreign import ccall unsafe debugBelch :: CString -> CString -> IO ()
45 #endif
46
47 {-# NOINLINE trace #-}
48 {-|
49 When called, 'trace' outputs the string in its first argument, before 
50 returning the second argument as its result. The 'trace' function is not 
51 referentially transparent, and should only be used for debugging, or for 
52 monitoring execution. Some implementations of 'trace' may decorate the string 
53 that\'s output to indicate that you\'re tracing. The function is implemented on
54 top of 'putTraceMsg'.
55 -}
56 trace :: String -> a -> a
57 trace string expr = unsafePerformIO $ do
58     putTraceMsg string
59     return expr