3d971f1e72068a1f629df0829b415b715b702e22
[ghc-base.git] / Foreign / C / TypesISO.hs
1 {-# OPTIONS -fno-implicit-prelude #-}
2 -----------------------------------------------------------------------------
3 -- 
4 -- Module      :  Foreign.C.TypesISO
5 -- Copyright   :  (c) The FFI task force 2001
6 -- License     :  BSD-style (see the file libraries/core/LICENSE)
7 -- 
8 -- Maintainer  :  ffi@haskell.org
9 -- Stability   :  experimental
10 -- Portability :  non-portable
11 --
12 -- $Id: TypesISO.hs,v 1.1 2001/06/28 14:15:03 simonmar Exp $
13 --
14 -- A mapping of C types defined by the ISO C standard to corresponding Haskell
15 -- types. Like CTypes, this is a cool hack...
16 --
17 -----------------------------------------------------------------------------
18
19 module Foreign.C.TypesISO
20         ( -- Integral types, instances of: Eq, Ord, Num, Read, Show, Enum,
21           -- Typeable, Storable, Bounded, Real, Integral, Bits
22           CPtrdiff(..), CSize(..), CWchar(..), CSigAtomic(..)
23
24           -- Numeric types, instances of: Eq, Ord, Num, Read, Show, Enum,
25           -- Typeable, Storable
26         , CClock(..),   CTime(..),
27
28         , CFile,        CFpos,     CJmpBuf
29         ) where
30
31 import Data.Bits        ( Bits(..) )
32 import Data.Int
33 import Data.Word
34 import Data.Dynamic
35
36 #ifdef __GLASGOW_HASKELL__
37 import GHC.Base
38 import GHC.Enum
39 import GHC.Real
40 import GHC.Show
41 import GHC.Read
42 import GHC.Num
43 #endif
44
45 #include "CTypes.h"
46
47 INTEGRAL_TYPE(CPtrdiff,tyConCPtrdiff,"CPtrdiff",HTYPE_PTRDIFF_T)
48 INTEGRAL_TYPE(CSize,tyConCSize,"CSize",HTYPE_SIZE_T)
49 INTEGRAL_TYPE(CWchar,tyConCWchar,"CWchar",HTYPE_WCHAR_T)
50 INTEGRAL_TYPE(CSigAtomic,tyConCSigAtomic,"CSigAtomic",HTYPE_SIG_ATOMIC_T)
51
52 {-# RULES
53 "fromIntegral/a->CPtrdiff"   fromIntegral = \x -> CPtrdiff   (fromIntegral x)
54 "fromIntegral/a->CSize"      fromIntegral = \x -> CSize      (fromIntegral x)
55 "fromIntegral/a->CWchar"     fromIntegral = \x -> CWchar     (fromIntegral x)
56 "fromIntegral/a->CSigAtomic" fromIntegral = \x -> CSigAtomic (fromIntegral x)
57
58 "fromIntegral/CPtrdiff->a"   fromIntegral = \(CPtrdiff   x) -> fromIntegral x
59 "fromIntegral/CSize->a"      fromIntegral = \(CSize      x) -> fromIntegral x
60 "fromIntegral/CWchar->a"     fromIntegral = \(CWchar     x) -> fromIntegral x
61 "fromIntegral/CSigAtomic->a" fromIntegral = \(CSigAtomic x) -> fromIntegral x
62  #-}
63
64 INTEGRAL_TYPE(CClock,tyConCClock,"CClock",HTYPE_CLOCK_T)
65 INTEGRAL_TYPE(CTime,tyConCTime,"CTime",HTYPE_TIME_T)
66
67 -- TODO: Instances. But which...?  :-}
68
69 data CFile = CFile
70
71 data CFpos = CFpos
72
73 data CJmpBuf = CJmpBuf
74
75 -- C99 types which are still missing include:
76 -- intptr_t, uintptr_t, intmax_t, uintmax_t, wint_t, wctrans_t, wctype_t
77
78 #include "Dynamic.h"
79 INSTANCE_TYPEABLE0(CPtrdiff,cPtrdiffTc,"CPtrdiff")
80 INSTANCE_TYPEABLE0(CSize,cSizeTc,"CSize")
81 INSTANCE_TYPEABLE0(CWchar,cWcharTc,"CWchar")
82 INSTANCE_TYPEABLE0(CSigAtomic,cSigAtomicTc,"CSigAtomic")
83 INSTANCE_TYPEABLE0(CClock,cClockTc,"CClock")
84 INSTANCE_TYPEABLE0(CTime,cTimeTc,"CTime")