8d5ef770e79ad854df304f4362a550829c62bd16
[ghc-base.git] / Data / IORef.hs
1 -----------------------------------------------------------------------------
2 -- 
3 -- Module      :  Data.IORef
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/core/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  experimental
9 -- Portability :  portable
10 --
11 -- $Id: IORef.hs,v 1.4 2002/01/02 14:40:09 simonmar Exp $
12 --
13 -- Mutable references in the IO monad.
14 --
15 -----------------------------------------------------------------------------
16
17 module Data.IORef
18         ( IORef               -- abstract, instance of: Eq, Typeable
19         , newIORef            -- :: a -> IO (IORef a)
20         , readIORef           -- :: IORef a -> IO a
21         , writeIORef          -- :: IORef a -> a -> IO ()
22         , modifyIORef         -- :: IORef a -> (a -> a) -> IO ()
23
24 #if !defined(__PARALLEL_HASKELL__) && defined(__GLASGOW_HASKELL__)
25         , mkWeakIORef           -- :: IORef a -> IO () -> IO (Weak (IORef a))
26 #endif
27         ) where
28
29 import Prelude
30
31 #ifdef __GLASGOW_HASKELL__
32 import GHC.Base         ( mkWeak# )
33 import GHC.STRef
34 import GHC.IOBase
35 #if !defined(__PARALLEL_HASKELL__)
36 import GHC.Weak
37 #endif
38 #endif /* __GLASGOW_HASKELL__ */
39
40 import Data.Dynamic
41
42 #if defined(__GLASGOW_HASKELL__) && !defined(__PARALLEL_HASKELL__)
43 mkWeakIORef :: IORef a -> IO () -> IO (Weak (IORef a))
44 mkWeakIORef r@(IORef (STRef r#)) f = IO $ \s ->
45   case mkWeak# r# r f s of (# s1, w #) -> (# s1, Weak w #)
46 #endif
47
48 #if defined __HUGS__
49 data IORef a        -- mutable variables containing values of type a
50
51 primitive newIORef   "newRef" :: a -> IO (IORef a)
52 primitive readIORef  "getRef" :: IORef a -> IO a
53 primitive writeIORef "setRef" :: IORef a -> a -> IO ()
54 primitive eqIORef    "eqRef"  :: IORef a -> IORef a -> Bool
55
56 instance Eq (IORef a) where
57     (==) = eqIORef
58 #endif /* __HUGS__ */
59
60 modifyIORef :: IORef a -> (a -> a) -> IO ()
61 modifyIORef ref f = writeIORef ref . f =<< readIORef ref
62
63 #include "Dynamic.h"
64 INSTANCE_TYPEABLE1(IORef,ioRefTc,"IORef")