author | bovi |
Sat, 14 Jan 2012 05:03:21 +0100 | |
changeset 6560 | ca07e6be08d0 |
parent 6552 | 91adc9ee7b8c |
child 6618 | 2d3232069c4b |
permissions | -rw-r--r-- |
6273 | 1 |
module Pas2C where |
2 |
||
3 |
import Text.PrettyPrint.HughesPJ |
|
4 |
import Data.Maybe |
|
6277 | 5 |
import Data.Char |
6511 | 6 |
import Text.Parsec.Prim hiding (State) |
6417
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
7 |
import Control.Monad.State |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
8 |
import System.IO |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
9 |
import System.Directory |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
10 |
import Control.Monad.IO.Class |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
11 |
import PascalPreprocessor |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
12 |
import Control.Exception |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
13 |
import System.IO.Error |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
14 |
import qualified Data.Map as Map |
6512 | 15 |
import Data.List (find) |
6273 | 16 |
|
6467 | 17 |
import PascalParser |
18 |
import PascalUnitSyntaxTree |
|
6273 | 19 |
|
6516 | 20 |
data RenderState = RenderState |
21 |
{ |
|
22 |
currentScope :: [(String, String)], |
|
23 |
namespaces :: Map.Map String [(String, String)] |
|
24 |
} |
|
6512 | 25 |
|
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
26 |
pas2C :: String -> IO () |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
27 |
pas2C fn = do |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
28 |
setCurrentDirectory "../hedgewars/" |
6455 | 29 |
s <- flip execStateT initState $ f fn |
6514 | 30 |
renderCFiles s |
6417
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
31 |
where |
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
32 |
printLn = liftIO . hPutStrLn stderr |
6455 | 33 |
print = liftIO . hPutStr stderr |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
34 |
initState = Map.empty |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
35 |
f :: String -> StateT (Map.Map String PascalUnit) IO () |
6417
eae5900fd8a4
Improve parser a bit, preparation to parsing whole program at once and compiling it into single C file
unc0rr
parents:
6399
diff
changeset
|
36 |
f fileName = do |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
37 |
processed <- gets $ Map.member fileName |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
38 |
unless processed $ do |
6455 | 39 |
print ("Preprocessing '" ++ fileName ++ ".pas'... ") |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
40 |
fc' <- liftIO |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
41 |
$ tryJust (guard . isDoesNotExistError) |
6455 | 42 |
$ preprocess (fileName ++ ".pas") |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
43 |
case fc' of |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6450
diff
changeset
|
44 |
(Left a) -> do |
6512 | 45 |
modify (Map.insert fileName (System [])) |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6450
diff
changeset
|
46 |
printLn "doesn't exist" |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
47 |
(Right fc) -> do |
6455 | 48 |
print "ok, parsing... " |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
49 |
let ptree = parse pascalUnit fileName fc |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
50 |
case ptree of |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
51 |
(Left a) -> do |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
52 |
liftIO $ writeFile "preprocess.out" fc |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
53 |
printLn $ show a ++ "\nsee preprocess.out for preprocessed source" |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
54 |
fail "stop" |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
55 |
(Right a) -> do |
6455 | 56 |
printLn "ok" |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
57 |
modify (Map.insert fileName a) |
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
58 |
mapM_ f (usesFiles a) |
6455 | 59 |
|
6514 | 60 |
|
61 |
renderCFiles :: Map.Map String PascalUnit -> IO () |
|
62 |
renderCFiles units = do |
|
63 |
let u = Map.toList units |
|
6516 | 64 |
let ns = Map.map toNamespace units |
65 |
mapM_ (toCFiles ns) u |
|
66 |
where |
|
6517 | 67 |
toNamespace :: PascalUnit -> [(String, String)] |
68 |
toNamespace = concatMap tv2id . extractTVs |
|
69 |
||
70 |
extractTVs (System tv) = tv |
|
71 |
extractTVs (Program {}) = [] |
|
72 |
extractTVs (Unit _ (Interface _ (TypesAndVars tv)) _ _ _) = tv |
|
73 |
||
74 |
tv2id :: TypeVarDeclaration -> [(String, String)] |
|
6520 | 75 |
tv2id (TypeDeclaration i (Sequence ids)) = map (\(Identifier i _) -> fi i) $ i : ids |
6517 | 76 |
tv2id (TypeDeclaration (Identifier i _) _) = [(map toLower i, i)] |
6520 | 77 |
tv2id (VarDeclaration _ (ids, _) _) = map (\(Identifier i _) -> fi i) ids |
78 |
tv2id (FunctionDeclaration (Identifier i _) _ _ _) = [fi i] |
|
79 |
tv2id (OperatorDeclaration i _ _ _ _) = [fi i] |
|
80 |
fi i = (map toLower i, i) |
|
6516 | 81 |
|
82 |
||
83 |
toCFiles :: Map.Map String [(String, String)] -> (String, PascalUnit) -> IO () |
|
84 |
toCFiles _ (_, System _) = return () |
|
85 |
toCFiles ns p@(fn, pu) = do |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
86 |
hPutStrLn stderr $ "Rendering '" ++ fn ++ "'..." |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
87 |
toCFiles' p |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
88 |
where |
6516 | 89 |
toCFiles' (fn, p@(Program {})) = writeFile (fn ++ ".c") $ (render2C (RenderState [] ns) . pascal2C) p |
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
90 |
toCFiles' (fn, (Unit _ interface implementation _ _)) = do |
6516 | 91 |
let (a, s) = runState (interface2C interface) (RenderState [] ns) |
92 |
writeFile (fn ++ ".h") $ "#pragma once\n" ++ (render a) |
|
93 |
writeFile (fn ++ ".c") $ (render2C s . implementation2C) implementation |
|
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
94 |
|
6516 | 95 |
render2C :: RenderState -> State RenderState Doc -> String |
96 |
render2C a = render . flip evalState a |
|
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
97 |
|
6467 | 98 |
usesFiles :: PascalUnit -> [String] |
6512 | 99 |
usesFiles (Program _ (Implementation uses _) _) = "pas2cSystem" : uses2List uses |
100 |
usesFiles (Unit _ (Interface uses1 _) (Implementation uses2 _) _ _) = "pas2cSystem" : uses2List uses1 ++ uses2List uses2 |
|
101 |
usesFiles (System {}) = [] |
|
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
102 |
|
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
103 |
|
6512 | 104 |
pascal2C :: PascalUnit -> State RenderState Doc |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
105 |
pascal2C (Unit _ interface implementation init fin) = |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
106 |
liftM2 ($+$) (interface2C interface) (implementation2C implementation) |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
107 |
|
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
108 |
pascal2C (Program _ implementation mainFunction) = do |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
109 |
impl <- implementation2C implementation |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
110 |
main <- tvar2C True |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
111 |
(FunctionDeclaration (Identifier "main" BTInt) (SimpleType $ Identifier "int" BTInt) [] (Just (TypesAndVars [], mainFunction))) |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
112 |
return $ impl $+$ main |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
113 |
|
6467 | 114 |
|
115 |
||
6512 | 116 |
interface2C :: Interface -> State RenderState Doc |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
117 |
interface2C (Interface uses tvars) = liftM2 ($+$) (uses2C uses) (typesAndVars2C True tvars) |
6273 | 118 |
|
6512 | 119 |
implementation2C :: Implementation -> State RenderState Doc |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
120 |
implementation2C (Implementation uses tvars) = liftM2 ($+$) (uses2C uses) (typesAndVars2C True tvars) |
6273 | 121 |
|
122 |
||
6512 | 123 |
typesAndVars2C :: Bool -> TypesAndVars -> State RenderState Doc |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
124 |
typesAndVars2C b (TypesAndVars ts) = liftM vcat $ mapM (tvar2C b) ts |
6273 | 125 |
|
6512 | 126 |
uses2C :: Uses -> State RenderState Doc |
6516 | 127 |
uses2C uses@(Uses unitIds) = do |
128 |
mapM_ injectNamespace (Identifier "pas2cSystem" undefined : unitIds) |
|
6552 | 129 |
mapM_ (id2C True) unitIds |
6516 | 130 |
return $ vcat . map (\i -> text $ "#include \"" ++ i ++ ".h\"") $ uses2List uses |
131 |
where |
|
6517 | 132 |
injectNamespace (Identifier i _) = do |
6516 | 133 |
getNS <- gets (flip Map.lookup . namespaces) |
134 |
let f = flip (foldl (\a b -> b:a)) (fromMaybe [] (getNS i)) |
|
135 |
modify (\s -> s{currentScope = f $ currentScope s}) |
|
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
136 |
|
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
137 |
uses2List :: Uses -> [String] |
6489 | 138 |
uses2List (Uses ids) = map (\(Identifier i _) -> i) ids |
6273 | 139 |
|
6509 | 140 |
|
6512 | 141 |
id2C :: Bool -> Identifier -> State RenderState Doc |
142 |
id2C True (Identifier i _) = do |
|
6516 | 143 |
modify (\s -> s{currentScope = (map toLower i, i) : currentScope s}) |
6512 | 144 |
return $ text i |
145 |
id2C False (Identifier i _) = do |
|
146 |
let i' = map toLower i |
|
6516 | 147 |
v <- gets $ find (\(a, _) -> a == i') . currentScope |
148 |
--ns <- gets currentScope |
|
6512 | 149 |
if isNothing v then |
6516 | 150 |
error $ "Not defined: '" ++ i' ++ "'"-- ++ show ns |
6512 | 151 |
else |
152 |
return . text . snd . fromJust $ v |
|
153 |
||
154 |
||
155 |
tvar2C :: Bool -> TypeVarDeclaration -> State RenderState Doc |
|
6509 | 156 |
tvar2C _ (FunctionDeclaration name returnType params Nothing) = do |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
157 |
t <- type2C returnType |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
158 |
p <- liftM hcat $ mapM (tvar2C False) params |
6509 | 159 |
n <- id2C True name |
160 |
return $ t <+> n <> parens p <> text ";" |
|
6517 | 161 |
|
6509 | 162 |
tvar2C True (FunctionDeclaration name returnType params (Just (tvars, phrase))) = do |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
163 |
t <- type2C returnType |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
164 |
p <- liftM hcat $ mapM (tvar2C False) params |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
165 |
ph <- liftM2 ($+$) (typesAndVars2C False tvars) (phrase2C' phrase) |
6509 | 166 |
n <- id2C True name |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
167 |
return $ |
6509 | 168 |
t <+> n <> parens p |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
169 |
$+$ |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
170 |
text "{" |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
171 |
$+$ |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
172 |
nest 4 ph |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
173 |
$+$ |
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
174 |
text "}" |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
175 |
where |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
176 |
phrase2C' (Phrases p) = liftM vcat $ mapM phrase2C p |
6425
1ef4192aa80d
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas
unc0rr
parents:
6417
diff
changeset
|
177 |
phrase2C' p = phrase2C p |
6517 | 178 |
|
6489 | 179 |
tvar2C False (FunctionDeclaration (Identifier name _) _ _ _) = error $ "nested functions not allowed: " ++ name |
6516 | 180 |
tvar2C _ (TypeDeclaration i' t) = do |
6499
33180b479efa
Start converting into monadic code using Reader monad (will be used to store information about namespace)
unc0rr
parents:
6489
diff
changeset
|
181 |
tp <- type2C t |
6516 | 182 |
i <- id2C True i' |
183 |
return $ text "type" <+> i <+> tp <> text ";" |
|
6517 | 184 |
|
6509 | 185 |
tvar2C _ (VarDeclaration isConst (ids, t) mInitExpr) = do |
186 |
t' <- type2C t |
|
187 |
i <- mapM (id2C True) ids |
|
188 |
ie <- initExpr mInitExpr |
|
189 |
return $ if isConst then text "const" else empty |
|
190 |
<+> t' |
|
191 |
<+> (hsep . punctuate (char ',') $ i) |
|
192 |
<+> ie |
|
193 |
<> text ";" |
|
6355 | 194 |
where |
6509 | 195 |
initExpr Nothing = return $ empty |
196 |
initExpr (Just e) = liftM (text "=" <+>) (initExpr2C e) |
|
6517 | 197 |
|
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6467
diff
changeset
|
198 |
tvar2C f (OperatorDeclaration op _ ret params body) = |
6489 | 199 |
tvar2C f (FunctionDeclaration (Identifier ("<op " ++ op ++ ">") Unknown) ret params body) |
6355 | 200 |
|
6517 | 201 |
|
6512 | 202 |
initExpr2C :: InitExpression -> State RenderState Doc |
6509 | 203 |
initExpr2C (InitBinOp op expr1 expr2) = do |
204 |
e1 <- initExpr2C expr1 |
|
205 |
e2 <- initExpr2C expr2 |
|
206 |
o <- op2C op |
|
207 |
return $ parens $ e1 <+> o <+> e2 |
|
208 |
initExpr2C (InitNumber s) = return $ text s |
|
209 |
initExpr2C (InitFloat s) = return $ text s |
|
210 |
initExpr2C (InitHexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
|
211 |
initExpr2C (InitString s) = return $ doubleQuotes $ text s |
|
212 |
initExpr2C (InitReference i) = id2C False i |
|
213 |
initExpr2C _ = return $ text "<<expression>>" |
|
6391 | 214 |
|
215 |
||
6512 | 216 |
type2C :: TypeDecl -> State RenderState Doc |
6509 | 217 |
type2C UnknownType = return $ text "void" |
218 |
type2C (String l) = return $ text $ "string" ++ show l |
|
6514 | 219 |
type2C (SimpleType i) = id2C False i |
6520 | 220 |
type2C (PointerTo (SimpleType i)) = liftM (<> text "*") $ id2C True i |
6509 | 221 |
type2C (PointerTo t) = liftM (<> text "*") $ type2C t |
222 |
type2C (RecordType tvs union) = do |
|
223 |
t <- mapM (tvar2C False) tvs |
|
224 |
return $ text "{" $+$ (nest 4 . vcat $ t) $+$ text "}" |
|
225 |
type2C (RangeType r) = return $ text "<<range type>>" |
|
6520 | 226 |
type2C (Sequence ids) = do |
227 |
mapM_ (id2C True) ids |
|
228 |
return $ text "<<sequence type>>" |
|
6509 | 229 |
type2C (ArrayDecl r t) = return $ text "<<array type>>" |
230 |
type2C (Set t) = return $ text "<<set>>" |
|
231 |
type2C (FunctionType returnType params) = return $ text "<<function>>" |
|
6273 | 232 |
|
6512 | 233 |
phrase2C :: Phrase -> State RenderState Doc |
6509 | 234 |
phrase2C (Phrases p) = do |
235 |
ps <- mapM phrase2C p |
|
236 |
return $ text "{" $+$ (nest 4 . vcat $ ps) $+$ text "}" |
|
237 |
phrase2C (ProcCall f@(FunCall {}) []) = liftM (<> semi) $ ref2C f |
|
238 |
phrase2C (ProcCall ref params) = do |
|
239 |
r <- ref2C ref |
|
240 |
ps <- mapM expr2C params |
|
241 |
return $ r <> parens (hsep . punctuate (char ',') $ ps) <> semi |
|
242 |
phrase2C (IfThenElse (expr) phrase1 mphrase2) = do |
|
243 |
e <- expr2C expr |
|
244 |
p1 <- (phrase2C . wrapPhrase) phrase1 |
|
245 |
el <- elsePart |
|
246 |
return $ |
|
247 |
text "if" <> parens e $+$ p1 $+$ el |
|
6273 | 248 |
where |
6509 | 249 |
elsePart | isNothing mphrase2 = return $ empty |
250 |
| otherwise = liftM (text "else" $$) $ (phrase2C . wrapPhrase) (fromJust mphrase2) |
|
251 |
phrase2C (Assignment ref expr) = do |
|
252 |
r <- ref2C ref |
|
253 |
e <- expr2C expr |
|
254 |
return $ |
|
255 |
r <> text " = " <> e <> semi |
|
256 |
phrase2C (WhileCycle expr phrase) = do |
|
257 |
e <- expr2C expr |
|
258 |
p <- phrase2C $ wrapPhrase phrase |
|
259 |
return $ text "while" <> parens e $$ p |
|
260 |
phrase2C (SwitchCase expr cases mphrase) = do |
|
261 |
e <- expr2C expr |
|
262 |
cs <- mapM case2C cases |
|
263 |
return $ |
|
264 |
text "switch" <> parens e <> text "of" $+$ (nest 4 . vcat) cs |
|
6273 | 265 |
where |
6512 | 266 |
case2C :: ([InitExpression], Phrase) -> State RenderState Doc |
6509 | 267 |
case2C (e, p) = do |
268 |
ie <- mapM initExpr2C e |
|
269 |
ph <- phrase2C p |
|
270 |
return $ |
|
271 |
text "case" <+> parens (hsep . punctuate (char ',') $ ie) <> char ':' <> nest 4 (ph $+$ text "break;") |
|
272 |
phrase2C (WithBlock ref p) = do |
|
273 |
r <- ref2C ref |
|
274 |
ph <- phrase2C $ wrapPhrase p |
|
275 |
return $ text "namespace" <> parens r $$ ph |
|
276 |
phrase2C (ForCycle i' e1' e2' p) = do |
|
277 |
i <- id2C False i' |
|
278 |
e1 <- expr2C e1' |
|
279 |
e2 <- expr2C e2' |
|
280 |
ph <- phrase2C (wrapPhrase p) |
|
281 |
return $ |
|
282 |
text "for" <> (parens . hsep . punctuate (char ';') $ [i <+> text "=" <+> e1, i <+> text "<=" <+> e2, text "++" <> i]) |
|
283 |
$$ |
|
284 |
ph |
|
285 |
phrase2C (RepeatCycle e' p') = do |
|
286 |
e <- expr2C e' |
|
287 |
p <- phrase2C (Phrases p') |
|
288 |
return $ text "do" <+> p <+> text "while" <> parens (text "!" <> parens e) |
|
289 |
phrase2C NOP = return $ text ";" |
|
6355 | 290 |
|
6273 | 291 |
|
6307 | 292 |
wrapPhrase p@(Phrases _) = p |
293 |
wrapPhrase p = Phrases [p] |
|
6273 | 294 |
|
6355 | 295 |
|
6512 | 296 |
expr2C :: Expression -> State RenderState Doc |
6509 | 297 |
expr2C (Expression s) = return $ text s |
298 |
expr2C (BinOp op expr1 expr2) = do |
|
299 |
e1 <- expr2C expr1 |
|
300 |
e2 <- expr2C expr2 |
|
301 |
o <- op2C op |
|
302 |
return $ parens $ e1 <+> o <+> e2 |
|
303 |
expr2C (NumberLiteral s) = return $ text s |
|
304 |
expr2C (FloatLiteral s) = return $ text s |
|
305 |
expr2C (HexNumber s) = return $ text "0x" <> (text . map toLower $ s) |
|
306 |
expr2C (StringLiteral s) = return $ doubleQuotes $ text s |
|
6277 | 307 |
expr2C (Reference ref) = ref2C ref |
6509 | 308 |
expr2C (PrefixOp op expr) = liftM2 (<+>) (op2C op) (expr2C expr) |
309 |
expr2C Null = return $ text "NULL" |
|
310 |
expr2C (BuiltInFunCall params ref) = do |
|
311 |
r <- ref2C ref |
|
312 |
ps <- mapM expr2C params |
|
313 |
return $ |
|
314 |
r <> parens (hsep . punctuate (char ',') $ ps) |
|
315 |
expr2C _ = return $ text "<<expression>>" |
|
6273 | 316 |
|
6307 | 317 |
|
6512 | 318 |
ref2C :: Reference -> State RenderState Doc |
6509 | 319 |
ref2C (ArrayElement exprs ref) = do |
320 |
r <- ref2C ref |
|
321 |
es <- mapM expr2C exprs |
|
322 |
return $ r <> (brackets . hcat) (punctuate comma es) |
|
323 |
ref2C (SimpleReference name) = id2C False name |
|
324 |
ref2C (RecordField (Dereference ref1) ref2) = do |
|
325 |
r1 <- ref2C ref1 |
|
326 |
r2 <- ref2C ref2 |
|
327 |
return $ |
|
328 |
r1 <> text "->" <> r2 |
|
329 |
ref2C (RecordField ref1 ref2) = do |
|
330 |
r1 <- ref2C ref1 |
|
331 |
r2 <- ref2C ref2 |
|
332 |
return $ |
|
333 |
r1 <> text "." <> r2 |
|
334 |
ref2C (Dereference ref) = liftM ((parens $ text "*") <>) $ ref2C ref |
|
335 |
ref2C (FunCall params ref) = do |
|
336 |
r <- ref2C ref |
|
337 |
ps <- mapM expr2C params |
|
338 |
return $ |
|
339 |
r <> parens (hsep . punctuate (char ',') $ ps) |
|
340 |
ref2C (Address ref) = do |
|
341 |
r <- ref2C ref |
|
342 |
return $ text "&" <> parens r |
|
343 |
ref2C (TypeCast t' expr) = do |
|
344 |
t <- id2C False t' |
|
345 |
e <- expr2C expr |
|
346 |
return $ parens t <> e |
|
6467 | 347 |
ref2C (RefExpression expr) = expr2C expr |
6355 | 348 |
|
6509 | 349 |
|
6512 | 350 |
op2C :: String -> State RenderState Doc |
6509 | 351 |
op2C "or" = return $ text "|" |
352 |
op2C "and" = return $ text "&" |
|
353 |
op2C "not" = return $ text "!" |
|
354 |
op2C "xor" = return $ text "^" |
|
355 |
op2C "div" = return $ text "/" |
|
356 |
op2C "mod" = return $ text "%" |
|
357 |
op2C "shl" = return $ text "<<" |
|
358 |
op2C "shr" = return $ text ">>" |
|
359 |
op2C "<>" = return $ text "!=" |
|
360 |
op2C "=" = return $ text "==" |
|
361 |
op2C a = return $ text a |
|
6273 | 362 |
|
363 |
maybeVoid "" = "void" |
|
364 |
maybeVoid a = a |