author | koda |
Tue, 15 Nov 2011 02:02:08 +0100 | |
changeset 6382 | 0e76c5cd4250 |
parent 6355 | 734fed7aefd3 |
child 6391 | bd5851ab3157 |
permissions | -rw-r--r-- |
6273 | 1 |
module Pas2C where |
2 |
||
3 |
import PascalParser |
|
4 |
import Text.PrettyPrint.HughesPJ |
|
5 |
import Data.Maybe |
|
6277 | 6 |
import Data.Char |
6355 | 7 |
import Text.Parsec.String |
6273 | 8 |
|
9 |
||
6355 | 10 |
pas2C :: String -> IO String |
11 |
pas2C fileName = do |
|
12 |
ptree <- parseFromFile pascalUnit fileName |
|
13 |
case ptree of |
|
14 |
(Left a) -> return (show a) |
|
15 |
(Right a) -> (return . render . pascal2C) a |
|
16 |
||
6273 | 17 |
pascal2C :: PascalUnit -> Doc |
18 |
pascal2C (Unit unitName interface implementation init fin) = implementation2C implementation |
|
19 |
||
20 |
||
21 |
implementation2C :: Implementation -> Doc |
|
22 |
implementation2C (Implementation uses tvars) = typesAndVars2C tvars |
|
23 |
||
24 |
||
25 |
typesAndVars2C :: TypesAndVars -> Doc |
|
26 |
typesAndVars2C (TypesAndVars ts) = vcat $ map tvar2C ts |
|
27 |
||
28 |
||
29 |
tvar2C :: TypeVarDeclaration -> Doc |
|
6307 | 30 |
tvar2C (FunctionDeclaration (Identifier name) returnType Nothing) = |
31 |
type2C returnType <+> text (name ++ "();") |
|
32 |
tvar2C (FunctionDeclaration (Identifier name) returnType (Just phrase)) = |
|
33 |
type2C returnType <+> text (name ++ "()") |
|
6273 | 34 |
$$ |
35 |
phrase2C phrase |
|
6355 | 36 |
tvar2C (TypeDeclaration (Identifier i) t) = text "type" <+> text i <+> type2C t <> text ";" |
37 |
tvar2C (VarDeclaration isConst (ids, t) mInitExpr) = |
|
38 |
if isConst then text "const" else empty |
|
39 |
<+> |
|
40 |
type2C t |
|
41 |
<+> |
|
42 |
(hsep . punctuate (char ',') . map (\(Identifier i) -> text i) $ ids) |
|
43 |
<+> |
|
44 |
initExpr mInitExpr |
|
45 |
<> |
|
46 |
text ";" |
|
47 |
where |
|
48 |
initExpr Nothing = empty |
|
49 |
initExpr (Just e) = text "=" <+> initExpr2C e |
|
50 |
||
51 |
initExpr2C :: InitExpression -> Doc |
|
52 |
initExpr2C _ = text "<<expression>>" |
|
6273 | 53 |
|
6307 | 54 |
type2C :: TypeDecl -> Doc |
55 |
type2C UnknownType = text "void" |
|
6355 | 56 |
type2C String = text "string" |
57 |
type2C (SimpleType (Identifier i)) = text i |
|
58 |
type2C (PointerTo t) = type2C t <> text "*" |
|
59 |
type2C (RecordType tvs) = text "{" $+$ (nest 4 . vcat . map tvar2C $ tvs) $+$ text "}" |
|
60 |
type2C (RangeType r) = text "<<range type>>" |
|
61 |
type2C (Sequence ids) = text "<<sequence type>>" |
|
62 |
type2C (ArrayDecl r t) = text "<<array type>>" |
|
63 |
||
6273 | 64 |
|
65 |
phrase2C :: Phrase -> Doc |
|
6307 | 66 |
phrase2C (Phrases p) = text "{" $+$ (nest 4 . vcat . map phrase2C $ p) $+$ text "}" |
6273 | 67 |
phrase2C (ProcCall (Identifier name) params) = text name <> parens (hsep . punctuate (char ',') . map expr2C $ params) <> semi |
6307 | 68 |
phrase2C (IfThenElse (expr) phrase1 mphrase2) = text "if" <> parens (expr2C expr) $+$ (phrase2C . wrapPhrase) phrase1 $+$ elsePart |
6273 | 69 |
where |
70 |
elsePart | isNothing mphrase2 = empty |
|
6307 | 71 |
| otherwise = text "else" $$ (phrase2C . wrapPhrase) (fromJust mphrase2) |
6277 | 72 |
phrase2C (Assignment ref expr) = ref2C ref <> text " = " <> expr2C expr <> semi |
6307 | 73 |
phrase2C (WhileCycle expr phrase) = text "while" <> parens (expr2C expr) $$ (phrase2C $ wrapPhrase phrase) |
74 |
phrase2C (SwitchCase expr cases mphrase) = text "switch" <> parens (expr2C expr) <> text "of" $+$ (nest 4 . vcat . map case2C) cases |
|
6273 | 75 |
where |
76 |
case2C :: (Expression, Phrase) -> Doc |
|
6307 | 77 |
case2C (e, p) = text "case" <+> parens (expr2C e) <> char ':' <> nest 4 (phrase2C p $+$ text "break;") |
6355 | 78 |
phrase2C (WithBlock ref p) = text "namespace" <> parens (ref2C ref) $$ (phrase2C $ wrapPhrase p) |
79 |
phrase2C (ForCycle (Identifier i) e1 e2 p) = |
|
80 |
text "for" <> (parens . hsep . punctuate (char ';') $ [text i <+> text "=" <+> expr2C e1, text i <+> text "<=" <+> expr2C e2, text "++" <> text i]) |
|
81 |
$$ |
|
82 |
phrase2C (wrapPhrase p) |
|
83 |
phrase2C (RepeatCycle e p) = text "do" <+> phrase2C (Phrases p) <+> text "while" <> parens (text "!" <> parens (expr2C e)) |
|
84 |
||
6273 | 85 |
|
6307 | 86 |
wrapPhrase p@(Phrases _) = p |
87 |
wrapPhrase p = Phrases [p] |
|
6273 | 88 |
|
6355 | 89 |
|
6273 | 90 |
expr2C :: Expression -> Doc |
91 |
expr2C (Expression s) = text s |
|
6307 | 92 |
expr2C (BinOp op expr1 expr2) = parens $ (expr2C expr1) <+> op2C op <+> (expr2C expr2) |
6277 | 93 |
expr2C (NumberLiteral s) = text s |
94 |
expr2C (HexNumber s) = text "0x" <> (text . map toLower $ s) |
|
95 |
expr2C (StringLiteral s) = doubleQuotes $ text s |
|
96 |
expr2C (Reference ref) = ref2C ref |
|
6307 | 97 |
expr2C (PrefixOp op expr) = op2C op <+> expr2C expr |
98 |
{- |
|
6277 | 99 |
| PostfixOp String Expression |
100 |
| CharCode String |
|
6273 | 101 |
-} |
102 |
expr2C _ = empty |
|
103 |
||
6307 | 104 |
|
105 |
ref2C :: Reference -> Doc |
|
6317
83b93a2d2741
Improve parsing of complex references like "a^[b[c], d]"
unc0rr
parents:
6307
diff
changeset
|
106 |
ref2C (ArrayElement exprs ref) = ref2C ref <> (brackets . hcat) (punctuate comma $ map expr2C exprs) |
6307 | 107 |
ref2C (SimpleReference (Identifier name)) = text name |
108 |
ref2C (RecordField (Dereference ref1) ref2) = ref2C ref1 <> text "->" <> ref2C ref2 |
|
109 |
ref2C (RecordField ref1 ref2) = ref2C ref1 <> text "." <> ref2C ref2 |
|
110 |
ref2C (Dereference ref) = parens $ text "*" <> ref2C ref |
|
6317
83b93a2d2741
Improve parsing of complex references like "a^[b[c], d]"
unc0rr
parents:
6307
diff
changeset
|
111 |
ref2C (FunCall params ref) = ref2C ref <> parens (hsep . punctuate (char ',') . map expr2C $ params) |
83b93a2d2741
Improve parsing of complex references like "a^[b[c], d]"
unc0rr
parents:
6307
diff
changeset
|
112 |
ref2C (Address ref) = text "&" <> ref2C ref |
6307 | 113 |
|
6355 | 114 |
|
6275 | 115 |
op2C "or" = text "|" |
116 |
op2C "and" = text "&" |
|
6307 | 117 |
op2C "not" = text "!" |
118 |
op2C "xor" = text "^" |
|
6275 | 119 |
op2C "div" = text "/" |
120 |
op2C "mod" = text "%" |
|
6307 | 121 |
op2C "shl" = text "<<" |
122 |
op2C "shr" = text ">>" |
|
6275 | 123 |
op2C "<>" = text "!=" |
6277 | 124 |
op2C "=" = text "==" |
6275 | 125 |
op2C a = text a |
6273 | 126 |
|
127 |
maybeVoid "" = "void" |
|
128 |
maybeVoid a = a |