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
289
290
291
292
293
|
package lombok.core;
import static lombok.Lombok.sneakyThrow;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.IdentityHashMap;
import java.util.List;
import java.util.Map;
public abstract class AST<N> {
public enum Kind {
COMPILATION_UNIT, TYPE, FIELD, INITIALIZER, METHOD, ANNOTATION, ARGUMENT, LOCAL, STATEMENT;
}
private Node top;
private final String fileName;
private Map<N, Void> identityDetector = new IdentityHashMap<N, Void>();
private Map<N, Node> nodeMap = new IdentityHashMap<N, Node>();
protected AST(String fileName) {
this.fileName = fileName == null ? "(unknown).java" : fileName;
}
protected void setTop(Node top) {
this.top = top;
}
public abstract String getPackageDeclaration();
public abstract Collection<String> getImportStatements();
protected <T extends Node> T putInMap(T parent) {
nodeMap.put(parent.get(), parent);
identityDetector.put(parent.get(), null);
return parent;
}
protected Map<N, Node> getNodeMap() {
return nodeMap;
}
protected void clearState() {
identityDetector = new IdentityHashMap<N, Void>();
nodeMap = new IdentityHashMap<N, Node>();
}
protected boolean alreadyHandled(N node) {
return identityDetector.containsKey(node);
}
protected void setAsHandled(N node) {
identityDetector.put(node, null);
}
public String getFileName() {
return fileName;
}
public Node top() {
return top;
}
public Node get(N node) {
return nodeMap.get(node);
}
public abstract class Node {
protected final Kind kind;
protected final N node;
protected final Collection<? extends Node> children;
protected Node parent;
protected boolean handled;
protected boolean isStructurallySignificant;
protected Node(N node, Collection<? extends Node> children, Kind kind) {
this.kind = kind;
this.node = node;
this.children = children == null ? Collections.<Node>emptyList() : children;
for ( Node child : this.children ) child.parent = this;
this.isStructurallySignificant = calculateIsStructurallySignificant();
}
public String getPackageDeclaration() {
return AST.this.getPackageDeclaration();
}
public Collection<String> getImportStatements() {
return AST.this.getImportStatements();
}
protected abstract boolean calculateIsStructurallySignificant();
public Node getNodeFor(N obj) {
return AST.this.get(obj);
}
public N get() {
return node;
}
public Kind getKind() {
return kind;
}
/**
* Return the name of your type (simple name), method, field, or local variable. Return null if this
* node doesn't really have a name, such as initializers, while statements, etc.
*/
public abstract String getName();
/** Returns the structurally significant node that encloses this one.
*
* @see #isStructurallySignificant()
*/
public Node up() {
Node result = (Node)parent;
while ( result != null && !result.isStructurallySignificant ) result = (Node)result.parent;
return result;
}
/**
* Returns the direct parent node in the AST tree of this node. For example, a local variable declaration's
* direct parent can be e.g. an If block, but its up() Node is the Method that contains it.
*/
public Node directUp() {
return parent;
}
public Collection<? extends Node> down() {
return new ArrayList<Node>(children);
}
public boolean isHandled() {
return handled;
}
public Node setHandled() {
this.handled = true;
return this;
}
public Node top() {
return top;
}
public String getFileName() {
return fileName;
}
@SuppressWarnings("unchecked") public Node add(N newChild, Kind kind) {
Node n = buildTree(newChild, kind);
if ( n == null ) return null;
n.parent = this;
((List)children).add(n);
return n;
}
public void removeChild(Node child) {
children.remove(child);
}
public Node recursiveSetHandled() {
this.handled = true;
for ( Node child : children ) child.recursiveSetHandled();
return this;
}
public abstract void addError(String message);
public abstract void addWarning(String message);
/**
* Structurally significant means: LocalDeclaration, TypeDeclaration, MethodDeclaration, ConstructorDeclaration,
* FieldDeclaration, Initializer, and CompilationUnitDeclaration.
* The rest is e.g. if statements, while loops, etc.
*/
public boolean isStructurallySignificant() {
return isStructurallySignificant;
}
}
protected abstract Node buildTree(N item, Kind kind);
protected static class FieldAccess {
public final Field field;
public final int dim;
FieldAccess(Field field, int dim) {
this.field = field;
this.dim = dim;
}
}
private static Map<Class<?>, Collection<FieldAccess>> fieldsOfASTClasses = new HashMap<Class<?>, Collection<FieldAccess>>();
protected Collection<FieldAccess> fieldsOf(Class<?> c) {
Collection<FieldAccess> fields = fieldsOfASTClasses.get(c);
if ( fields != null ) return fields;
fields = new ArrayList<FieldAccess>();
getFields(c, fields);
fieldsOfASTClasses.put(c, fields);
return fields;
}
private void getFields(Class<?> c, Collection<FieldAccess> fields) {
if ( c == Object.class || c == null ) return;
for ( Field f : c.getDeclaredFields() ) {
if ( Modifier.isStatic(f.getModifiers()) ) continue;
Class<?> t = f.getType();
int dim = 0;
if ( t.isArray() ) {
while ( t.isArray() ) {
dim++;
t = t.getComponentType();
}
} else if ( Collection.class.isAssignableFrom(t) ) {
while ( Collection.class.isAssignableFrom(t) ) {
dim++;
t = getComponentType(f.getGenericType());
}
}
for ( Class<?> statementType : getStatementTypes() ) {
if ( statementType.isAssignableFrom(t) ) {
f.setAccessible(true);
fields.add(new FieldAccess(f, dim));
break;
}
}
}
getFields(c.getSuperclass(), fields);
}
private Class<?> getComponentType(Type type) {
if ( type instanceof ParameterizedType ) {
Type component = ((ParameterizedType)type).getActualTypeArguments()[0];
return component instanceof Class<?> ? (Class<?>)component : Object.class;
} else return Object.class;
}
protected abstract Collection<Class<? extends N>> getStatementTypes();
protected <T extends Node> Collection<T> buildWithField(Class<T> nodeType, N statement, FieldAccess fa) {
List<T> list = new ArrayList<T>();
buildWithField0(nodeType, statement, fa, list);
return list;
}
private <T extends Node> void buildWithField0(Class<T> nodeType, N child, FieldAccess fa, Collection<T> list) {
try {
Object o = fa.field.get(child);
if ( o == null ) return;
if ( fa.dim == 0 ) {
Node node = buildStatement(o);
if ( node != null ) list.add(nodeType.cast(node));
} else if ( o.getClass().isArray() ) buildWithArray(nodeType, o, list, fa.dim);
else if ( Collection.class.isInstance(o) ) buildWithCollection(nodeType, o, list, fa.dim);
} catch ( IllegalAccessException e ) {
sneakyThrow(e);
}
}
private <T extends Node> void buildWithArray(Class<T> nodeType, Object array, Collection<T> list, int dim) {
if ( dim == 1 ) for ( Object v : (Object[])array ) {
if ( v == null ) continue;
Node node = buildStatement(v);
if ( node != null ) list.add(nodeType.cast(node));
} else for ( Object v : (Object[])array ) {
if ( v == null ) return;
buildWithArray(nodeType, v, list, dim-1);
}
}
private <T extends Node> void buildWithCollection(Class<T> nodeType, Object collection, Collection<T> list, int dim) {
if ( dim == 1 ) for ( Object v : (Collection<?>)collection ) {
if ( v == null ) continue;
Node node = buildStatement(v);
if ( node != null ) list.add(nodeType.cast(node));
} else for ( Object v : (Collection<?>)collection ) {
buildWithCollection(nodeType, v, list, dim-1);
}
}
protected abstract Node buildStatement(Object statement);
}
|