[project @ 2002-10-18 12:28:38 by ross]
[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/base/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  experimental
9 -- Portability :  portable
10 --
11 -- Mutable references in the IO monad.
12 --
13 -----------------------------------------------------------------------------
14
15 module Data.IORef
16   ( 
17         -- * IORefs
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         atomicModifyIORef,    -- :: IORef a -> (a -> (a,b)) -> IO b
24
25 #if !defined(__PARALLEL_HASKELL__) && defined(__GLASGOW_HASKELL__)
26         mkWeakIORef,          -- :: IORef a -> IO () -> IO (Weak (IORef a))
27 #endif
28         ) where
29
30 import Prelude
31
32 #ifdef __HUGS__
33 import Hugs.IORef
34 #endif
35
36 #ifdef __GLASGOW_HASKELL__
37 import GHC.Base         ( mkWeak#, atomicModifyMutVar# )
38 import GHC.STRef
39 import GHC.IOBase
40 #if !defined(__PARALLEL_HASKELL__)
41 import GHC.Weak
42 #endif
43 #endif /* __GLASGOW_HASKELL__ */
44
45 #ifdef __NHC__
46 import NHC.IOExtras
47     ( IORef
48     , newIORef
49     , readIORef
50     , writeIORef
51     )
52 #endif
53
54 #ifndef __NHC__
55 import Data.Dynamic
56 #endif
57
58 #if defined(__GLASGOW_HASKELL__) && !defined(__PARALLEL_HASKELL__)
59 -- |Make a 'Weak' pointer to an 'IORef'
60 mkWeakIORef :: IORef a -> IO () -> IO (Weak (IORef a))
61 mkWeakIORef r@(IORef (STRef r#)) f = IO $ \s ->
62   case mkWeak# r# r f s of (# s1, w #) -> (# s1, Weak w #)
63 #endif
64
65 -- |Mutate the contents of an 'IORef'
66 modifyIORef :: IORef a -> (a -> a) -> IO ()
67 modifyIORef ref f = writeIORef ref . f =<< readIORef ref
68
69 -- |Atomically modifies the contents of an 'IORef'.
70 --
71 -- This function is useful for using 'IORef' in a safe way in a multithreaded
72 -- program.  If you only have one 'IORef', then using 'atomicModifyIORef' to
73 -- access and modify it will prevent race conditions.
74 --
75 -- Extending the atomicity to multiple 'IORef's is problematic, so it
76 -- is recommended that if you need to do anything more complicated
77 -- then using 'MVar' instead is a good idea.
78 --
79 atomicModifyIORef :: IORef a -> (a -> (a,b)) -> IO b
80 #if defined(__GLASGOW_HASKELL__)
81 atomicModifyIORef (IORef (STRef r#)) f = IO $ \s -> atomicModifyMutVar# r# f s
82 #elif defined(__HUGS__)
83 atomicModifyIORef = plainModifyIORef    -- Hugs has no preemption
84   where plainModifyIORef r f = do
85                 a <- readIORef r
86                 case f a of (a',b) -> writeIORef r a' >> return b
87 #endif
88
89 #ifndef __NHC__
90 #include "Dynamic.h"
91 INSTANCE_TYPEABLE1(IORef,ioRefTc,"IORef")
92 #endif