[project @ 2002-05-29 13:27:04 by simonmar]
[ghc-base.git] / Text / Regex / Posix.hsc
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  Text.Regex.Posix
4 -- Copyright   :  (c) The University of Glasgow 2002
5 -- License     :  BSD-style (see the file libraries/base/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  experimental
9 -- Portability :  non-portable (needs POSIX regexps)
10 --
11 -- Interface to the POSIX regular expression library.
12 --
13 -----------------------------------------------------------------------------
14
15 -- ToDo: should have an interface using PackedStrings.
16
17 module Text.Regex.Posix (
18         -- * The @Regex@ type
19         Regex,          -- abstract
20
21         -- * Compiling a regular expression
22         regcomp,        -- :: String -> Int -> IO Regex
23
24         -- ** Flags for regcomp
25         regExtended,    -- (flag to regcomp) use extended regex syntax
26         regIgnoreCase,  -- (flag to regcomp) ignore case when matching
27         regNewline,     -- (flag to regcomp) '.' doesn't match newline
28
29         -- * Matching a regular expression
30         regexec,        -- :: Regex                  -- pattern
31                         -- -> String                 -- string to match
32                         -- -> IO (Maybe (String,     -- everything before match
33                         --               String,     -- matched portion
34                         --               String,     -- everything after match
35                         --               [String]))  -- subexpression matches
36
37   ) where
38
39 #include <sys/types.h>
40 #include "regex.h"
41
42 import Prelude
43
44 import Foreign
45 import Foreign.C
46
47 -- | A compiled regular expression
48 newtype Regex = Regex (ForeignPtr CRegex)
49
50 -- -----------------------------------------------------------------------------
51 -- regcomp
52
53 -- | Compiles a regular expression
54 regcomp
55   :: String     -- ^ The regular expression to compile
56   -> Int        -- ^ Flags (summed together)
57   -> IO Regex   -- ^ Returns: the compiled regular expression
58 regcomp pattern flags = do
59   regex_ptr <- mallocBytes (#const sizeof(regex_t))
60   regex_fptr <- newForeignPtr regex_ptr (regfree regex_ptr)
61   r <- withCString pattern $ \cstr ->
62          withForeignPtr regex_fptr $ \p ->
63            c_regcomp p cstr (fromIntegral flags)
64   if (r == 0)
65      then return (Regex regex_fptr)
66      else error "Text.Regex.Posix.regcomp: error in pattern" -- ToDo
67
68 regfree :: Ptr CRegex -> IO ()
69 regfree p_regex = do
70   c_regfree p_regex
71   free p_regex
72
73 -- -----------------------------------------------------------------------------
74 -- regexec
75
76 -- | Matches a regular expression against a string
77 regexec :: Regex                        -- ^ Compiled regular expression
78         -> String                       -- ^ String to match against
79         -> IO (Maybe (String, String, String, [String]))
80                 -- ^ Returns: 'Nothing' if the regex did not match the
81                 -- string, or:
82                 --
83                 -- @
84                 --   'Just' (everything before match,
85                 --         matched portion,
86                 --         everything after match,
87                 --         subexpression matches)
88                 -- @
89
90 regexec (Regex regex_fptr) str = do
91   withCString str $ \cstr -> do
92     withForeignPtr regex_fptr $ \regex_ptr -> do
93       nsub <- (#peek regex_t, re_nsub) regex_ptr
94       let nsub_int = fromIntegral (nsub :: CSize)
95       allocaBytes ((1 + nsub_int) * (#const sizeof(regmatch_t))) $ \p_match -> do
96                 -- add one because index zero covers the whole match
97         r <- c_regexec regex_ptr cstr (1 + nsub) p_match 0{-no flags for now-}
98
99         if (r /= 0) then return Nothing else do 
100
101         (before,match,after) <- matched_parts str p_match
102
103         sub_strs <- 
104           mapM (unpack str) $ take nsub_int $ tail $
105              iterate (`plusPtr` (#const sizeof(regmatch_t))) p_match
106
107         return (Just (before, match, after, sub_strs))
108
109 matched_parts :: String -> Ptr CRegMatch -> IO (String, String, String)
110 matched_parts string p_match = do
111   start <- (#peek regmatch_t, rm_so) p_match :: IO CInt
112   end   <- (#peek regmatch_t, rm_eo) p_match :: IO CInt
113   let s = fromIntegral start; e = fromIntegral end
114   return ( take (s-1) string, 
115            take (e-s) (drop s string),
116            drop e string )  
117
118 unpack :: String -> Ptr CRegMatch -> IO (String)
119 unpack string p_match = do
120   start <- (#peek regmatch_t, rm_so) p_match :: IO CInt
121   end   <- (#peek regmatch_t, rm_eo) p_match :: IO CInt
122   -- the subexpression may not have matched at all, perhaps because it
123   -- was optional.  In this case, the offsets are set to -1.
124   if (start == -1) then return "" else do
125   return (take (fromIntegral (end-start)) (drop (fromIntegral start) string))
126
127 -- -----------------------------------------------------------------------------
128 -- The POSIX regex C interface
129
130 -- Flags for regexec
131 #enum Int,, \
132         REG_NOTBOL, \
133         REG_NOTEOL \
134
135 -- Return values from regexec
136 #enum Int,, \
137         REG_NOMATCH
138 --      REG_ESPACE
139
140 -- Flags for regcomp
141 #enum Int,, \
142         REG_EXTENDED, \
143         regIgnoreCase = REG_ICASE, \
144         REG_NOSUB, \
145         REG_NEWLINE
146
147 -- Error codes from regcomp
148 #enum Int,, \
149         REG_BADBR, \
150         REG_BADPAT, \
151         REG_BADRPT, \
152         REG_ECOLLATE, \
153         REG_ECTYPE, \
154         REG_EESCAPE, \
155         REG_ESUBREG, \
156         REG_EBRACK, \
157         REG_EPAREN, \
158         REG_EBRACE, \
159         REG_ERANGE, \
160         REG_ESPACE
161
162 type CRegex    = ()
163 type CRegMatch = ()
164
165 foreign import ccall unsafe "regcomp"
166   c_regcomp :: Ptr CRegex -> CString -> CInt -> IO CInt
167
168 foreign import ccall  unsafe "regfree"
169   c_regfree :: Ptr CRegex -> IO ()
170
171 foreign import ccall unsafe "regexec"
172   c_regexec :: Ptr CRegex -> CString -> CSize
173             -> Ptr CRegMatch -> CInt -> IO CInt