Reorganisation of the source tree
[ghc-hetmet.git] / compiler / utils / Encoding.hs
1 -- -----------------------------------------------------------------------------
2 --
3 -- (c) The University of Glasgow, 1997-2006
4 --
5 -- Character encodings 
6 --
7 -- -----------------------------------------------------------------------------
8
9 module Encoding ( 
10         -- * UTF-8
11         utf8DecodeChar#,
12         utf8PrevChar,
13         utf8CharStart,
14         utf8DecodeChar,
15         utf8DecodeString,
16         utf8EncodeChar,
17         utf8EncodeString,
18         utf8EncodedLength,
19         countUTF8Chars,
20
21         -- * Z-encoding
22         zEncodeString,
23         zDecodeString
24   ) where
25
26 #define COMPILING_FAST_STRING
27 #include "HsVersions.h"
28 import Foreign
29 import Data.Char        ( ord, chr, isDigit, digitToInt, isHexDigit )
30 import Numeric          ( showHex )
31
32 import Data.Bits
33 import GHC.Ptr          ( Ptr(..) )
34 import GHC.Base
35
36 -- -----------------------------------------------------------------------------
37 -- UTF-8
38
39 -- We can't write the decoder as efficiently as we'd like without
40 -- resorting to unboxed extensions, unfortunately.  I tried to write
41 -- an IO version of this function, but GHC can't eliminate boxed
42 -- results from an IO-returning function.
43 --
44 -- We assume we can ignore overflow when parsing a multibyte character here.
45 -- To make this safe, we add extra sentinel bytes to unparsed UTF-8 sequences
46 -- before decoding them (see StringBuffer.hs).
47
48 {-# INLINE utf8DecodeChar# #-}
49 utf8DecodeChar# :: Addr# -> (# Char#, Addr# #)
50 utf8DecodeChar# a# =
51   let ch0 = word2Int# (indexWord8OffAddr# a# 0#) in
52   case () of 
53     _ | ch0 <=# 0x7F# -> (# chr# ch0, a# `plusAddr#` 1# #)
54
55       | ch0 >=# 0xC0# && ch0 <=# 0xDF# ->
56         let ch1 = word2Int# (indexWord8OffAddr# a# 1#) in
57         if ch1 <# 0x80# || ch1 >=# 0xC0# then fail 1# else
58         (# chr# (((ch0 -# 0xC0#) `uncheckedIShiftL#` 6#) +#
59                   (ch1 -# 0x80#)),
60            a# `plusAddr#` 2# #)
61
62       | ch0 >=# 0xE0# && ch0 <=# 0xEF# ->
63         let ch1 = word2Int# (indexWord8OffAddr# a# 1#) in
64         if ch1 <# 0x80# || ch1 >=# 0xC0# then fail 1# else
65         let ch2 = word2Int# (indexWord8OffAddr# a# 2#) in
66         if ch2 <# 0x80# || ch2 >=# 0xC0# then fail 2# else
67         (# chr# (((ch0 -# 0xE0#) `uncheckedIShiftL#` 12#) +#
68                  ((ch1 -# 0x80#) `uncheckedIShiftL#` 6#)  +#
69                   (ch2 -# 0x80#)),
70            a# `plusAddr#` 3# #)
71
72      | ch0 >=# 0xF0# && ch0 <=# 0xF8# ->
73         let ch1 = word2Int# (indexWord8OffAddr# a# 1#) in
74         if ch1 <# 0x80# || ch1 >=# 0xC0# then fail 1# else
75         let ch2 = word2Int# (indexWord8OffAddr# a# 2#) in
76         if ch2 <# 0x80# || ch2 >=# 0xC0# then fail 2# else
77         let ch3 = word2Int# (indexWord8OffAddr# a# 3#) in
78         if ch3 <# 0x80# || ch3 >=# 0xC0# then fail 3# else
79         (# chr# (((ch0 -# 0xF0#) `uncheckedIShiftL#` 18#) +#
80                  ((ch1 -# 0x80#) `uncheckedIShiftL#` 12#) +#
81                  ((ch2 -# 0x80#) `uncheckedIShiftL#` 6#)  +#
82                   (ch3 -# 0x80#)),
83            a# `plusAddr#` 4# #)
84
85       | otherwise -> fail 1#
86   where
87         -- all invalid sequences end up here:
88         fail n = (# '\0'#, a# `plusAddr#` n #)
89         -- '\xFFFD' would be the usual replacement character, but
90         -- that's a valid symbol in Haskell, so will result in a
91         -- confusing parse error later on.  Instead we use '\0' which
92         -- will signal a lexer error immediately.
93
94 utf8DecodeChar :: Ptr Word8 -> (Char, Ptr Word8)
95 utf8DecodeChar (Ptr a#) = 
96   case utf8DecodeChar# a# of (# c#, b# #) -> ( C# c#, Ptr b# )
97
98 -- UTF-8 is cleverly designed so that we can always figure out where
99 -- the start of the current character is, given any position in a
100 -- stream.  This function finds the start of the previous character,
101 -- assuming there *is* a previous character.
102 utf8PrevChar :: Ptr Word8 -> IO (Ptr Word8)
103 utf8PrevChar p = utf8CharStart (p `plusPtr` (-1))
104
105 utf8CharStart :: Ptr Word8 -> IO (Ptr Word8)
106 utf8CharStart p = go p
107  where go p = do w <- peek p
108                  if w >= 0x80 && w < 0xC0
109                         then go (p `plusPtr` (-1))
110                         else return p
111
112 utf8DecodeString :: Ptr Word8 -> Int -> IO [Char]
113 STRICT2(utf8DecodeString)
114 utf8DecodeString (Ptr a#) (I# len#)
115   = unpack a#
116   where
117     end# = addr2Int# (a# `plusAddr#` len#)
118
119     unpack p#
120         | addr2Int# p# >=# end# = return []
121         | otherwise  =
122         case utf8DecodeChar# p# of
123            (# c#, q# #) -> do
124                 chs <- unpack q#
125                 return (C# c# : chs)
126
127 countUTF8Chars :: Ptr Word8 -> Int -> IO Int
128 countUTF8Chars ptr bytes = go ptr 0
129   where
130         end = ptr `plusPtr` bytes
131
132         STRICT2(go)
133         go ptr n 
134            | ptr >= end = return n
135            | otherwise  = do
136                 case utf8DecodeChar# (unPtr ptr) of
137                   (# c, a #) -> go (Ptr a) (n+1)
138
139 unPtr (Ptr a) = a
140
141 utf8EncodeChar c ptr =
142   let x = ord c in
143   case () of
144     _ | x > 0 && x <= 0x007f -> do
145           poke ptr (fromIntegral x)
146           return (ptr `plusPtr` 1)
147         -- NB. '\0' is encoded as '\xC0\x80', not '\0'.  This is so that we
148         -- can have 0-terminated UTF-8 strings (see GHC.Base.unpackCStringUtf8).
149       | x <= 0x07ff -> do
150           poke ptr (fromIntegral (0xC0 .|. ((x `shiftR` 6) .&. 0x1F)))
151           pokeElemOff ptr 1 (fromIntegral (0x80 .|. (x .&. 0x3F)))
152           return (ptr `plusPtr` 2)
153       | x <= 0xffff -> do
154           poke ptr (fromIntegral (0xE0 .|. (x `shiftR` 12) .&. 0x0F))
155           pokeElemOff ptr 1 (fromIntegral (0x80 .|. (x `shiftR` 6) .&. 0x3F))
156           pokeElemOff ptr 2 (fromIntegral (0x80 .|. (x .&. 0x3F)))
157           return (ptr `plusPtr` 3)
158       | otherwise -> do
159           poke ptr (fromIntegral (0xF0 .|. (x `shiftR` 18)))
160           pokeElemOff ptr 1 (fromIntegral (0x80 .|. ((x `shiftR` 12) .&. 0x3F)))
161           pokeElemOff ptr 2 (fromIntegral (0x80 .|. ((x `shiftR` 6) .&. 0x3F)))
162           pokeElemOff ptr 3 (fromIntegral (0x80 .|. (x .&. 0x3F)))
163           return (ptr `plusPtr` 4)
164
165 utf8EncodeString :: Ptr Word8 -> String -> IO ()
166 utf8EncodeString ptr str = go ptr str
167   where STRICT2(go)
168         go ptr [] = return ()
169         go ptr (c:cs) = do
170           ptr' <- utf8EncodeChar c ptr
171           go ptr' cs
172
173 utf8EncodedLength :: String -> Int
174 utf8EncodedLength str = go 0 str
175   where STRICT2(go)
176         go n [] = n
177         go n (c:cs)
178           | ord c > 0 && ord c <= 0x007f = go (n+1) cs
179           | ord c <= 0x07ff = go (n+2) cs
180           | ord c <= 0xffff = go (n+3) cs       
181           | otherwise       = go (n+4) cs       
182
183 -- -----------------------------------------------------------------------------
184 -- The Z-encoding
185
186 {-
187 This is the main name-encoding and decoding function.  It encodes any
188 string into a string that is acceptable as a C name.  This is done
189 right before we emit a symbol name into the compiled C or asm code.
190 Z-encoding of strings is cached in the FastString interface, so we
191 never encode the same string more than once.
192
193 The basic encoding scheme is this.  
194
195 * Tuples (,,,) are coded as Z3T
196
197 * Alphabetic characters (upper and lower) and digits
198         all translate to themselves; 
199         except 'Z', which translates to 'ZZ'
200         and    'z', which translates to 'zz'
201   We need both so that we can preserve the variable/tycon distinction
202
203 * Most other printable characters translate to 'zx' or 'Zx' for some
204         alphabetic character x
205
206 * The others translate as 'znnnU' where 'nnn' is the decimal number
207         of the character
208
209         Before          After
210         --------------------------
211         Trak            Trak
212         foo_wib         foozuwib
213         >               zg
214         >1              zg1
215         foo#            foozh
216         foo##           foozhzh
217         foo##1          foozhzh1
218         fooZ            fooZZ   
219         :+              ZCzp
220         ()              Z0T     0-tuple
221         (,,,,)          Z5T     5-tuple  
222         (# #)           Z1H     unboxed 1-tuple (note the space)
223         (#,,,,#)        Z5H     unboxed 5-tuple
224                 (NB: There is no Z1T nor Z0H.)
225 -}
226
227 type UserString = String        -- As the user typed it
228 type EncodedString = String     -- Encoded form
229
230
231 zEncodeString :: UserString -> EncodedString
232 zEncodeString cs = case maybe_tuple cs of
233                 Just n  -> n            -- Tuples go to Z2T etc
234                 Nothing -> go cs
235           where
236                 go []     = []
237                 go (c:cs) = encode_ch c ++ go cs
238
239 unencodedChar :: Char -> Bool   -- True for chars that don't need encoding
240 unencodedChar 'Z' = False
241 unencodedChar 'z' = False
242 unencodedChar c   =  c >= 'a' && c <= 'z'
243                   || c >= 'A' && c <= 'Z'
244                   || c >= '0' && c <= '9'
245
246 encode_ch :: Char -> EncodedString
247 encode_ch c | unencodedChar c = [c]     -- Common case first
248
249 -- Constructors
250 encode_ch '('  = "ZL"   -- Needed for things like (,), and (->)
251 encode_ch ')'  = "ZR"   -- For symmetry with (
252 encode_ch '['  = "ZM"
253 encode_ch ']'  = "ZN"
254 encode_ch ':'  = "ZC"
255 encode_ch 'Z'  = "ZZ"
256
257 -- Variables
258 encode_ch 'z'  = "zz"
259 encode_ch '&'  = "za"
260 encode_ch '|'  = "zb"
261 encode_ch '^'  = "zc"
262 encode_ch '$'  = "zd"
263 encode_ch '='  = "ze"
264 encode_ch '>'  = "zg"
265 encode_ch '#'  = "zh"
266 encode_ch '.'  = "zi"
267 encode_ch '<'  = "zl"
268 encode_ch '-'  = "zm"
269 encode_ch '!'  = "zn"
270 encode_ch '+'  = "zp"
271 encode_ch '\'' = "zq"
272 encode_ch '\\' = "zr"
273 encode_ch '/'  = "zs"
274 encode_ch '*'  = "zt"
275 encode_ch '_'  = "zu"
276 encode_ch '%'  = "zv"
277 encode_ch c    = 'z' : if isDigit (head hex_str) then hex_str
278                                                  else '0':hex_str
279   where hex_str = showHex (ord c) "U"
280   -- ToDo: we could improve the encoding here in various ways.
281   -- eg. strings of unicode characters come out as 'z1234Uz5678U', we
282   -- could remove the 'U' in the middle (the 'z' works as a separator).
283
284 zDecodeString :: EncodedString -> UserString
285 zDecodeString [] = []
286 zDecodeString ('Z' : d : rest) 
287   | isDigit d = decode_tuple   d rest
288   | otherwise = decode_upper   d : zDecodeString rest
289 zDecodeString ('z' : d : rest)
290   | isDigit d = decode_num_esc d rest
291   | otherwise = decode_lower   d : zDecodeString rest
292 zDecodeString (c   : rest) = c : zDecodeString rest
293
294 decode_upper, decode_lower :: Char -> Char
295
296 decode_upper 'L' = '('
297 decode_upper 'R' = ')'
298 decode_upper 'M' = '['
299 decode_upper 'N' = ']'
300 decode_upper 'C' = ':'
301 decode_upper 'Z' = 'Z'
302 decode_upper ch  = {-pprTrace "decode_upper" (char ch)-} ch
303                 
304 decode_lower 'z' = 'z'
305 decode_lower 'a' = '&'
306 decode_lower 'b' = '|'
307 decode_lower 'c' = '^'
308 decode_lower 'd' = '$'
309 decode_lower 'e' = '='
310 decode_lower 'g' = '>'
311 decode_lower 'h' = '#'
312 decode_lower 'i' = '.'
313 decode_lower 'l' = '<'
314 decode_lower 'm' = '-'
315 decode_lower 'n' = '!'
316 decode_lower 'p' = '+'
317 decode_lower 'q' = '\''
318 decode_lower 'r' = '\\'
319 decode_lower 's' = '/'
320 decode_lower 't' = '*'
321 decode_lower 'u' = '_'
322 decode_lower 'v' = '%'
323 decode_lower ch  = {-pprTrace "decode_lower" (char ch)-} ch
324
325 -- Characters not having a specific code are coded as z224U (in hex)
326 decode_num_esc d rest
327   = go (digitToInt d) rest
328   where
329     go n (c : rest) | isHexDigit c = go (16*n + digitToInt c) rest
330     go n ('U' : rest)           = chr n : zDecodeString rest
331     go n other = error ("decode_num_esc: " ++ show n ++  ' ':other)
332
333 decode_tuple :: Char -> EncodedString -> UserString
334 decode_tuple d rest
335   = go (digitToInt d) rest
336   where
337         -- NB. recurse back to zDecodeString after decoding the tuple, because
338         -- the tuple might be embedded in a longer name.
339     go n (c : rest) | isDigit c = go (10*n + digitToInt c) rest
340     go 0 ('T':rest)     = "()" ++ zDecodeString rest
341     go n ('T':rest)     = '(' : replicate (n-1) ',' ++ ")" ++ zDecodeString rest
342     go 1 ('H':rest)     = "(# #)" ++ zDecodeString rest
343     go n ('H':rest)     = '(' : '#' : replicate (n-1) ',' ++ "#)" ++ zDecodeString rest
344     go n other = error ("decode_tuple: " ++ show n ++ ' ':other)
345
346 {-
347 Tuples are encoded as
348         Z3T or Z3H
349 for 3-tuples or unboxed 3-tuples respectively.  No other encoding starts 
350         Z<digit>
351
352 * "(# #)" is the tycon for an unboxed 1-tuple (not 0-tuple)
353   There are no unboxed 0-tuples.  
354
355 * "()" is the tycon for a boxed 0-tuple.
356   There are no boxed 1-tuples.
357 -}
358
359 maybe_tuple :: UserString -> Maybe EncodedString
360
361 maybe_tuple "(# #)" = Just("Z1H")
362 maybe_tuple ('(' : '#' : cs) = case count_commas (0::Int) cs of
363                                  (n, '#' : ')' : cs) -> Just ('Z' : shows (n+1) "H")
364                                  other               -> Nothing
365 maybe_tuple "()" = Just("Z0T")
366 maybe_tuple ('(' : cs)       = case count_commas (0::Int) cs of
367                                  (n, ')' : cs) -> Just ('Z' : shows (n+1) "T")
368                                  other         -> Nothing
369 maybe_tuple other            = Nothing
370
371 count_commas :: Int -> String -> (Int, String)
372 count_commas n (',' : cs) = count_commas (n+1) cs
373 count_commas n cs         = (n,cs)