author | koda |
Fri, 26 Oct 2012 14:19:57 +0100 | |
branch | 0.9.17 |
changeset 6410 | fd08e4052360 |
parent 6391 | bd5851ab3157 |
child 6399 | a904c735979c |
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 |
6391 | 18 |
pascal2C (Unit unitName interface implementation init fin) = |
19 |
interface2C interface |
|
20 |
$+$ |
|
21 |
implementation2C implementation |
|
6273 | 22 |
|
6391 | 23 |
interface2C :: Interface -> Doc |
24 |
interface2C (Interface uses tvars) = typesAndVars2C tvars |
|
6273 | 25 |
|
26 |
implementation2C :: Implementation -> Doc |
|
27 |
implementation2C (Implementation uses tvars) = typesAndVars2C tvars |
|
28 |
||
29 |
||
30 |
typesAndVars2C :: TypesAndVars -> Doc |
|
31 |
typesAndVars2C (TypesAndVars ts) = vcat $ map tvar2C ts |
|
32 |
||
33 |
||
34 |
tvar2C :: TypeVarDeclaration -> Doc |
|
6307 | 35 |
tvar2C (FunctionDeclaration (Identifier name) returnType Nothing) = |
36 |
type2C returnType <+> text (name ++ "();") |
|
37 |
tvar2C (FunctionDeclaration (Identifier name) returnType (Just phrase)) = |
|
38 |
type2C returnType <+> text (name ++ "()") |
|
6273 | 39 |
$$ |
40 |
phrase2C phrase |
|
6355 | 41 |
tvar2C (TypeDeclaration (Identifier i) t) = text "type" <+> text i <+> type2C t <> text ";" |
42 |
tvar2C (VarDeclaration isConst (ids, t) mInitExpr) = |
|
43 |
if isConst then text "const" else empty |
|
44 |
<+> |
|
45 |
type2C t |
|
46 |
<+> |
|
47 |
(hsep . punctuate (char ',') . map (\(Identifier i) -> text i) $ ids) |
|
48 |
<+> |
|
49 |
initExpr mInitExpr |
|
50 |
<> |
|
51 |
text ";" |
|
52 |
where |
|
53 |
initExpr Nothing = empty |
|
54 |
initExpr (Just e) = text "=" <+> initExpr2C e |
|
55 |
||
6391 | 56 |
initExpr2C :: InitExpression -> Doc |
57 |
initExpr2C (InitBinOp op expr1 expr2) = parens $ (initExpr2C expr1) <+> op2C op <+> (initExpr2C expr2) |
|
58 |
initExpr2C (InitNumber s) = text s |
|
59 |
initExpr2C (InitFloat s) = text s |
|
60 |
initExpr2C (InitHexNumber s) = text "0x" <> (text . map toLower $ s) |
|
61 |
initExpr2C (InitString s) = doubleQuotes $ text s |
|
62 |
initExpr2C (InitReference (Identifier i)) = text i |
|
63 |
||
64 |
||
6355 | 65 |
initExpr2C _ = text "<<expression>>" |
6273 | 66 |
|
6307 | 67 |
type2C :: TypeDecl -> Doc |
68 |
type2C UnknownType = text "void" |
|
6355 | 69 |
type2C String = text "string" |
70 |
type2C (SimpleType (Identifier i)) = text i |
|
71 |
type2C (PointerTo t) = type2C t <> text "*" |
|
72 |
type2C (RecordType tvs) = text "{" $+$ (nest 4 . vcat . map tvar2C $ tvs) $+$ text "}" |
|
73 |
type2C (RangeType r) = text "<<range type>>" |
|
74 |
type2C (Sequence ids) = text "<<sequence type>>" |
|
75 |
type2C (ArrayDecl r t) = text "<<array type>>" |
|
76 |
||
6273 | 77 |
|
78 |
phrase2C :: Phrase -> Doc |
|
6307 | 79 |
phrase2C (Phrases p) = text "{" $+$ (nest 4 . vcat . map phrase2C $ p) $+$ text "}" |
6273 | 80 |
phrase2C (ProcCall (Identifier name) params) = text name <> parens (hsep . punctuate (char ',') . map expr2C $ params) <> semi |
6307 | 81 |
phrase2C (IfThenElse (expr) phrase1 mphrase2) = text "if" <> parens (expr2C expr) $+$ (phrase2C . wrapPhrase) phrase1 $+$ elsePart |
6273 | 82 |
where |
83 |
elsePart | isNothing mphrase2 = empty |
|
6307 | 84 |
| otherwise = text "else" $$ (phrase2C . wrapPhrase) (fromJust mphrase2) |
6277 | 85 |
phrase2C (Assignment ref expr) = ref2C ref <> text " = " <> expr2C expr <> semi |
6307 | 86 |
phrase2C (WhileCycle expr phrase) = text "while" <> parens (expr2C expr) $$ (phrase2C $ wrapPhrase phrase) |
87 |
phrase2C (SwitchCase expr cases mphrase) = text "switch" <> parens (expr2C expr) <> text "of" $+$ (nest 4 . vcat . map case2C) cases |
|
6273 | 88 |
where |
89 |
case2C :: (Expression, Phrase) -> Doc |
|
6307 | 90 |
case2C (e, p) = text "case" <+> parens (expr2C e) <> char ':' <> nest 4 (phrase2C p $+$ text "break;") |
6355 | 91 |
phrase2C (WithBlock ref p) = text "namespace" <> parens (ref2C ref) $$ (phrase2C $ wrapPhrase p) |
92 |
phrase2C (ForCycle (Identifier i) e1 e2 p) = |
|
93 |
text "for" <> (parens . hsep . punctuate (char ';') $ [text i <+> text "=" <+> expr2C e1, text i <+> text "<=" <+> expr2C e2, text "++" <> text i]) |
|
94 |
$$ |
|
95 |
phrase2C (wrapPhrase p) |
|
96 |
phrase2C (RepeatCycle e p) = text "do" <+> phrase2C (Phrases p) <+> text "while" <> parens (text "!" <> parens (expr2C e)) |
|
97 |
||
6273 | 98 |
|
6307 | 99 |
wrapPhrase p@(Phrases _) = p |
100 |
wrapPhrase p = Phrases [p] |
|
6273 | 101 |
|
6355 | 102 |
|
6273 | 103 |
expr2C :: Expression -> Doc |
104 |
expr2C (Expression s) = text s |
|
6307 | 105 |
expr2C (BinOp op expr1 expr2) = parens $ (expr2C expr1) <+> op2C op <+> (expr2C expr2) |
6277 | 106 |
expr2C (NumberLiteral s) = text s |
107 |
expr2C (HexNumber s) = text "0x" <> (text . map toLower $ s) |
|
108 |
expr2C (StringLiteral s) = doubleQuotes $ text s |
|
109 |
expr2C (Reference ref) = ref2C ref |
|
6307 | 110 |
expr2C (PrefixOp op expr) = op2C op <+> expr2C expr |
111 |
{- |
|
6277 | 112 |
| PostfixOp String Expression |
113 |
| CharCode String |
|
6273 | 114 |
-} |
115 |
expr2C _ = empty |
|
116 |
||
6307 | 117 |
|
118 |
ref2C :: Reference -> Doc |
|
6317
83b93a2d2741
Improve parsing of complex references like "a^[b[c], d]"
unc0rr
parents:
6307
diff
changeset
|
119 |
ref2C (ArrayElement exprs ref) = ref2C ref <> (brackets . hcat) (punctuate comma $ map expr2C exprs) |
6307 | 120 |
ref2C (SimpleReference (Identifier name)) = text name |
121 |
ref2C (RecordField (Dereference ref1) ref2) = ref2C ref1 <> text "->" <> ref2C ref2 |
|
122 |
ref2C (RecordField ref1 ref2) = ref2C ref1 <> text "." <> ref2C ref2 |
|
123 |
ref2C (Dereference ref) = parens $ text "*" <> ref2C ref |
|
6317
83b93a2d2741
Improve parsing of complex references like "a^[b[c], d]"
unc0rr
parents:
6307
diff
changeset
|
124 |
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
|
125 |
ref2C (Address ref) = text "&" <> ref2C ref |
6307 | 126 |
|
6355 | 127 |
|
6275 | 128 |
op2C "or" = text "|" |
129 |
op2C "and" = text "&" |
|
6307 | 130 |
op2C "not" = text "!" |
131 |
op2C "xor" = text "^" |
|
6275 | 132 |
op2C "div" = text "/" |
133 |
op2C "mod" = text "%" |
|
6307 | 134 |
op2C "shl" = text "<<" |
135 |
op2C "shr" = text ">>" |
|
6275 | 136 |
op2C "<>" = text "!=" |
6277 | 137 |
op2C "=" = text "==" |
6275 | 138 |
op2C a = text a |
6273 | 139 |
|
140 |
maybeVoid "" = "void" |
|
141 |
maybeVoid a = a |