-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClassDefVisitor.java
288 lines (235 loc) · 8.23 KB
/
ClassDefVisitor.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import syntaxtree.*;
import visitor.GJDepthFirst;
class Argument {
public String argumentName;
public String argumentType;
Argument(String argumentName, String argumentType) {
this.argumentName = argumentName;
this.argumentType = argumentType;
}
static List<String> typeList(List<Argument> argList) {
List<String> tl = new ArrayList<String>();
for (Argument arg : argList) {
tl.add(arg.argumentType);
}
return tl;
}
}
class ClassDefVisitor extends GJDepthFirst<String, String> {
Map<String, Map<String, List<Argument>>> classToMethods;
Map<String, Map<String, String>> scopeToVars;
Map<String, String> inheritanceChain;
private List<Argument> argList;
ClassDefVisitor(Map<String, Map<String, List<Argument>>> classToMethods,
Map<String, Map<String, String>> scopeToVars,
Map<String, String> inheritanceChain ) throws Exception
{
super();
this.classToMethods = classToMethods;
this.scopeToVars = scopeToVars;
this.inheritanceChain = inheritanceChain;
this.argList = new ArrayList<Argument>();
}
// Utility functions
private List<Argument> findMethodData(String methodName, String startScope) {
if(startScope == null)
return null;
Map<String, List<Argument>> methods = classToMethods.get(startScope);
List<Argument> args = methods.get(methodName);
if( args == null )
{
String parentClass = inheritanceChain.get(startScope);
return findMethodData(methodName, parentClass);
}
return args;
}
// Visit functions
/**
* f0 -> MainClass()
* f1 -> ( TypeDeclaration() )*
* f2 -> <EOF>
*/
@Override
public String visit(Goal n, String argu) throws Exception {
n.f0.accept(this, argu);
if( n.f1.present() )
n.f1.accept(this, argu);
return null;
}
/**
* f0 -> "class"
* f1 -> Identifier()
* f2 -> "{"
* f3 -> "public"
* f4 -> "static"
* f5 -> "void"
* f6 -> "main"
* f7 -> "("
* f8 -> "String"
* f9 -> "["
* f10 -> "]"
* f11 -> Identifier()
* f12 -> ")"
* f13 -> "{"
* f14 -> ( VarDeclaration() )*
* f15 -> ( Statement() )*
* f16 -> "}"
* f17 -> "}"
*/
@Override
public String visit(MainClass n, String argu) throws Exception {
String className = n.f1.accept(this, argu);
if (scopeToVars.containsKey(className)) // Check if class has already been defined.
throw new Exception("Redefinition Error: Class " + className + " already exists.");
classToMethods.put(className, new HashMap<String, List<Argument>>());
scopeToVars.put(className, new HashMap<String, String>());
classToMethods.put(className + ".main", new HashMap<String, List<Argument>>());
scopeToVars.put(className + ".main", new HashMap<String, String>());
inheritanceChain.put(className + ".main", className);
return null;
}
/**
* f0 -> "class"
* f1 -> Identifier()
* f2 -> "{"
* f3 -> ( VarDeclaration() )*
* f4 -> ( MethodDeclaration() )*
* f5 -> "}"
*/
@Override
public String visit(ClassDeclaration n, String argu) throws Exception {
String className = n.f1.accept(this, argu);
if (scopeToVars.containsKey(className))
throw new Exception("Redefinition Error: Class " + className + " already exists.");
classToMethods.put(className, new HashMap<String, List<Argument>>());
scopeToVars.put(className, new HashMap<String, String>());
if( n.f4.present() )
n.f4.accept(this, className);
return null;
}
/**
* f0 -> "class"
* f1 -> Identifier()
* f2 -> "extends"
* f3 -> Identifier()
* f4 -> "{"
* f5 -> ( VarDeclaration() )*
* f6 -> ( MethodDeclaration() )*
* f7 -> "}"
*/
@Override
public String visit(ClassExtendsDeclaration n, String argu) throws Exception {
String className = n.f1.accept(this, argu);
if (scopeToVars.containsKey(className))
throw new Exception("Redefinition Error: Class " + className + " already exists.");
classToMethods.put(className, new HashMap<String, List<Argument>>());
scopeToVars.put(className, new HashMap<String, String>());
String parentClass = n.f3.accept(this, argu);
if( !classToMethods.containsKey(parentClass) )
throw new Exception("Inheritance Error: Class " + parentClass + " must be defined before class " + className + ".");
inheritanceChain.put(className, parentClass);
if( n.f6.present() )
n.f6.accept(this, className);
return null;
}
/**
* f0 -> "public"
* f1 -> Type()
* f2 -> Identifier()
* f3 -> "("
* f4 -> ( FormalParameterList() )?
* f5 -> ")"
* f6 -> "{"
* f7 -> ( VarDeclaration() )*
* f8 -> ( Statement() )*
* f9 -> "return"
* f10 -> Expression()
* f11 -> ";"
* f12 -> "}"
*/
@Override
public String visit(MethodDeclaration n, String argu) throws Exception {
String methodType = n.f1.accept(this, argu);
String methodName = n.f2.accept(this, argu);
Map<String, List<Argument> > classMethods = classToMethods.get(argu);
if( classMethods.containsKey(methodName) )
throw new Exception("Redefinition Error: Method " + argu + "." + methodName + " already defined.");
List<Argument> methodData = findMethodData(methodName, argu);
Map<String, String> argumentsToTypes = new HashMap<String,String>();
if( n.f4.present() )
{
n.f4.accept(this, argu);
List<String> typeList = Argument.typeList(argList);
if(methodData == null)
{
methodData = new ArrayList<Argument>(argList);
methodData.add(0, new Argument("", methodType));
classMethods.put(methodName, methodData);
}
else if(methodType != methodData.get(0).argumentType || !Argument.typeList(methodData.subList(1, methodData.size())).equals(typeList))
throw new Exception("Overload Error: Cannot overload function " + argu + "." + methodName + "");
for (Argument arg : argList)
argumentsToTypes.put(arg.argumentName, arg.argumentType);
argList.clear();
}
else
{
if(methodData == null)
{
methodData = new ArrayList<Argument>();
methodData.add(0, new Argument("", methodType));
classMethods.put(methodName, methodData);
}
else if(methodType != methodData.get(0).argumentType )
throw new Exception("Overload Error: Cannot overload function " + argu + "." + methodName);
}
String currScope = argu + "." + methodName;
scopeToVars.put(currScope, argumentsToTypes);
inheritanceChain.put(currScope, argu);
classMethods.put(methodName, methodData);
return null;
}
/**
* f0 -> Type()
* f1 -> Identifier()
*/
@Override
public String visit(FormalParameter n, String argu) throws Exception {
argList.add(new Argument(n.f1.accept(this, argu), n.f0.accept(this, argu)));
return null;
}
/**
* f0 -> <IDENTIFIER>
*/
@Override
public String visit(Identifier n, String argu) throws Exception {
return n.f0.toString();
}
/**
* f0 -> "int"
* f1 -> "["
* f2 -> "]"
*/
@Override
public String visit(ArrayType n, String argu) throws Exception {
return "array";
}
/**
* f0 -> "boolean"
*/
@Override
public String visit(BooleanType n, String argu) throws Exception {
return "boolean";
}
/**
* f0 -> "int"
*/
@Override
public String visit(IntegerType n, String argu) throws Exception {
return "int";
}
}