Translate.hs revision d979c5692ccc2aba170e11f279a8c82850d6359b
{- |
Module : $Header$
Copyright : (c) University of Cambridge, Cambridge, England
adaption (c) Till Mossakowski, Uni Bremen 2002-2004
Licence : similar to LGPL, see HetCATS/LICENCE.txt or LIZENZ.txt
Maintainer : hets@tzi.de
Stability : provisional
Portability : portable
translate 'Id' to Isabelle strings
-}
module Isabelle.Translate (showIsaT, showIsaIT, transStringT,
transString, isaPrelude) where
import Common.Id
import qualified Common.Lib.Map as Map
import qualified Common.Lib.Set as Set
import Data.Char
import Isabelle.IsaSign
import Isabelle.IsaStrings
------------------- Id translation functions -------------------
isaPrelude :: Map.Map BaseSig (Set.Set String)
isaPrelude = Map.fromList
[(HsHOLCF_thy, Set.insert "fliftbin" holcfS),
(MainHC_thy, foldr Set.insert mainS ["pApp","apt","app","defOp","pair"]),
(Main_thy, mainS), (HOLCF_thy, holcfS),
(HOL_thy, holS), (Pure_thy, pureS)]
showIsaT :: Id -> BaseSig -> String
showIsaT ide thy = let
rdru = reverse . dropWhile (== '_')
tr = transStringT thy
str = show ide
in if isInfix2 ide then "XX" ++ tr (rdru $ rdru str) else tr str
-- otherwise cutting off may lead to a name clash!
showIsaIT :: Id -> Int -> BaseSig -> String
showIsaIT ident i theory = showIsaT ident theory ++ "_" ++ show i
transStringT :: BaseSig -> String -> String
transStringT i s = let t = transString s in
if Set.member t $ maybe (error "Isabelle.Translate.transStringT") id
$ Map.lookup i isaPrelude
then t ++ "X" else t
-- | check for legal alphanumeric isabelle characters
isIsaChar :: Char -> Bool
isIsaChar c = isAlphaNum c && isAscii c || c `elem` "_'"
transString :: String -> String
transString str = let
x = 'X'
replaceChar1 d | d == x = "YX" -- code out existing X!
| isIsaChar d = [d]
| otherwise = replaceChar d ++ [x]
in case str of
"" -> [x]
c : s -> let l = replaceChar1 c in
(if isDigit c || c `elem` "_'" then [x, c]
else l) ++ concatMap replaceChar1 s
-- | injective replacement of special characters
replaceChar :: Char -> String
-- <http://www.htmlhelp.com/reference/charset/>
replaceChar c = if isIsaChar c then [c] else let n = ord c in
if n <= 32 || n >= 127 && n < 160 || n > 255 then "Slash_" ++ show n
else maybe (error "Isabelle.replaceChar") id $ Map.lookup c charMap
-- | a separate Map speeds up lookup
charMap :: Map.Map Char String
charMap = Map.fromList
[('!' , "Exclam"),
('"' , "Quot"),
('#' , "Hash"),
('$' , "Dollar"),
('%' , "Percent"),
('&' , "Amp"),
('(' , "OBr"),
(')' , "CBr"),
('*' , "x"),
('+' , "Plus"),
(',' , "Comma"),
('-' , "Minus"),
('.' , "Period"), -- Dot?
('/' , "Slash"), -- Div?
(':' , "Colon"),
(';' , "Semi"),
('<' , "Lt"),
('=' , "Eq"),
('>' , "Gt"),
('?' , "Quest"),
('@' , "At"),
('[' , "OSqBr"),
('\\' , "Bslash"),
(']' , "CSqBr"),
('^' , "Caret"), -- Hat?
('`' , "Grave"),
('{' , "LBrace"),
('|' , "VBar"),
('}' , "RBrace"),
('~' , "Tilde"),
('\160', "nbsp"),
('�' , "iexcl"),
('�' , "cent"),
('�' , "pound"),
('�' , "curren"),
('�' , "yen"),
('�' , "brvbar"),
('�' , "sect"),
('�' , "uml"),
('�' , "copy"),
('�' , "ordf"),
('�' , "laquo"),
('�' , "not"),
('�' , "shy"),
('�' , "reg"),
('\175', "macr"),
('�' , "deg"),
('�' , "plusmn"),
('�' , "sup2"),
('�' , "sup3"),
('�' , "acute"),
('�' , "micro"),
('�' , "para"),
('�' , "middot"),
('�' , "cedil"),
('�' , "sup1"),
('�' , "ordm"),
('�' , "raquo"),
('�' , "quarter"),
('�' , "half"),
('�' , "frac34"),
('�' , "iquest"),
('�' , "Agrave"),
('�' , "Aacute"),
('�' , "Acirc"),
('�' , "Atilde"),
('�' , "Auml"),
('�' , "Aring"),
('�' , "AElig"),
('�' , "Ccedil"),
('�' , "Egrave"),
('�' , "Eacute"),
('�' , "Ecirc"),
('�' , "Euml"),
('�' , "Igrave"),
('�' , "Iacute"),
('�' , "Icirc"),
('�' , "Iuml"),
('�' , "ETH"),
('�' , "Ntilde"),
('�' , "Ograve"),
('�' , "Oacute"),
('�' , "Ocirc"),
('�' , "Otilde"),
('�' , "Ouml"),
('�' , "Times"),
('�' , "OSlash"),
('�' , "Ugrave"),
('�' , "Uacute"),
('�' , "Ucirc"),
('�' , "Uuml"),
('�' , "Yacute"),
('�' , "THORN"),
('�' , "szlig"),
('�' , "agrave"),
('�' , "aacute"),
('�' , "acirc"),
('�' , "atilde"),
('�' , "auml"),
('�' , "aring"),
('�' , "aelig"),
('�' , "ccedil"),
('�' , "egrave"),
('�' , "eacute"),
('�' , "ecirc"),
('�' , "euml"),
('�' , "igrave"),
('�' , "iacute"),
('�' , "icirc"),
('�' , "iuml"),
('�' , "eth"),
('�' , "ntilde"),
('�' , "ograve"),
('�' , "oacute"),
('�' , "ocirc"),
('�' , "otilde"),
('�' , "ouml"),
('�' , "Divide"),
('�' , "oslash"),
('�' , "ugrave"),
('�' , "uacute"),
('�' , "ucirc"),
('�' , "uuml"),
('�' , "yacute"),
('�' , "thorn"),
('�' , "yuml")]