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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
|
package lombok.eclipse;
import static lombok.Lombok.sneakyThrow;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
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;
import org.eclipse.jdt.core.compiler.CategorizedProblem;
import org.eclipse.jdt.internal.compiler.CompilationResult;
import org.eclipse.jdt.internal.compiler.apt.dispatch.AptProblem;
import org.eclipse.jdt.internal.compiler.ast.ASTNode;
import org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration;
import org.eclipse.jdt.internal.compiler.ast.Annotation;
import org.eclipse.jdt.internal.compiler.ast.Argument;
import org.eclipse.jdt.internal.compiler.ast.Clinit;
import org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration;
import org.eclipse.jdt.internal.compiler.ast.FieldDeclaration;
import org.eclipse.jdt.internal.compiler.ast.Initializer;
import org.eclipse.jdt.internal.compiler.ast.LocalDeclaration;
import org.eclipse.jdt.internal.compiler.ast.Statement;
import org.eclipse.jdt.internal.compiler.ast.TypeDeclaration;
import org.eclipse.jdt.internal.compiler.problem.ProblemSeverities;
import org.eclipse.jdt.internal.compiler.util.Util;
public class EclipseAST {
public void traverse(EclipseASTVisitor visitor) {
Node current = top();
visitor.visitCompilationUnit(current, (CompilationUnitDeclaration)current.node);
traverseChildren(visitor, current);
visitor.endVisitCompilationUnit(current, (CompilationUnitDeclaration)current.node);
}
private void traverseChildren(EclipseASTVisitor visitor, Node node) {
for ( Node child : node.children ) {
ASTNode n = child.node;
if ( n instanceof TypeDeclaration ) {
visitor.visitType(child, (TypeDeclaration)n);
traverseChildren(visitor, child);
visitor.endVisitType(child, (TypeDeclaration)n);
} else if ( n instanceof Initializer ) {
visitor.visitInitializer(child, (Initializer)n);
traverseChildren(visitor, child);
visitor.endVisitInitializer(child, (Initializer)n);
} else if ( n instanceof FieldDeclaration ) {
visitor.visitField(child, (FieldDeclaration)n);
traverseChildren(visitor, child);
visitor.endVisitField(child, (FieldDeclaration)n);
} else if ( n instanceof AbstractMethodDeclaration ) {
if ( n instanceof Clinit ) continue;
visitor.visitMethod(child, (AbstractMethodDeclaration)n);
traverseChildren(visitor, child);
visitor.endVisitMethod(child, (AbstractMethodDeclaration)n);
} else if ( n instanceof LocalDeclaration ) {
visitor.visitLocal(child, (LocalDeclaration)n);
traverseChildren(visitor, child);
visitor.endVisitLocal(child, (LocalDeclaration)n);
} else if ( n instanceof Annotation ) {
Node parent = child.up();
if ( parent.node instanceof TypeDeclaration )
visitor.visitAnnotationOnType((TypeDeclaration)parent.node, child, (Annotation)n);
else if ( parent.node instanceof AbstractMethodDeclaration )
visitor.visitAnnotationOnMethod((AbstractMethodDeclaration)parent.node, child, (Annotation)n);
else if ( parent.node instanceof FieldDeclaration )
visitor.visitAnnotationOnField((FieldDeclaration)parent.node, child, (Annotation)n);
else if ( parent.node instanceof LocalDeclaration )
visitor.visitAnnotationOnLocal((LocalDeclaration)parent.node, child, (Annotation)n);
} else if ( n instanceof Statement ) {
visitor.visitStatement(child, (Statement)n);
traverseChildren(visitor, child);
visitor.endVisitStatement(node, (Statement)n);
} else throw new AssertionError("Can't be reached");
}
}
public boolean isCompleteParse() {
return completeParse;
}
public String getFileName() {
return fileName;
}
public Node top() {
return top;
}
public Node get(ASTNode node) {
return nodeMap.get(node);
}
private class ParseProblem {
final boolean isWarning;
final String message;
final Node node;
final int sourceStart;
final int sourceEnd;
public ParseProblem(boolean isWarning, String message, Node node, int sourceStart, int sourceEnd) {
this.isWarning = isWarning;
this.message = message;
this.node = node;
this.sourceStart = sourceStart;
this.sourceEnd = sourceEnd;
}
void addToCompilationResult() {
addProblemToCompilationResult(getFileName(), (CompilationUnitDeclaration) top().getEclipseNode(),
isWarning, message, node.getEclipseNode(), sourceStart, sourceEnd);
}
}
public void propagateProblems() {
if ( queuedProblems.isEmpty() ) return;
CompilationUnitDeclaration cud = (CompilationUnitDeclaration) top().getEclipseNode();
if ( cud.compilationResult == null ) return;
for ( ParseProblem problem : queuedProblems ) problem.addToCompilationResult();
queuedProblems.clear();
}
private final List<ParseProblem> queuedProblems = new ArrayList<ParseProblem>();
private void addProblem(ParseProblem problem) {
queuedProblems.add(problem);
propagateProblems();
}
static void addProblemToCompilationResult(String fileName, CompilationUnitDeclaration ast,
boolean isWarning, String message, ASTNode node, int sourceStart, int sourceEnd) {
char[] fileNameArray = fileName.toCharArray();
int lineNumber = 0;
int columnNumber = 1;
CompilationResult result = ast.compilationResult;
int[] lineEnds = null;
lineNumber = sourceStart >= 0
? Util.getLineNumber(sourceStart, lineEnds = result.getLineSeparatorPositions(), 0, lineEnds.length-1)
: 0;
columnNumber = sourceStart >= 0
? Util.searchColumnNumber(result.getLineSeparatorPositions(), lineNumber,sourceStart)
: 0;
CategorizedProblem ecProblem = new AptProblem(null,
fileNameArray, message, 0, new String[0],
isWarning ? ProblemSeverities.Warning : ProblemSeverities.Error,
sourceStart, sourceEnd, lineNumber, columnNumber);
ast.compilationResult.record(ecProblem, null);
}
public final class Node {
final ASTNode node;
Node parent;
final Collection<Node> children;
boolean handled;
private final boolean isStructurallySignificant;
Node(ASTNode node, Collection<Node> children) {
this.node = node;
this.children = children == null ? Collections.<Node>emptyList() : children;
this.isStructurallySignificant = calculateIsStructurallySignificant();
}
public void addError(String message) {
this.addError(message, this.getEclipseNode().sourceStart, this.getEclipseNode().sourceEnd);
}
public void addError(String message, int sourceStart, int sourceEnd) {
addProblem(new ParseProblem(false, message, this, sourceStart, sourceEnd));
}
public void addWarning(String message) {
this.addWarning(message, this.getEclipseNode().sourceStart, this.getEclipseNode().sourceEnd);
}
public void addWarning(String message, int sourceStart, int sourceEnd) {
addProblem(new ParseProblem(true, message, this, sourceStart, sourceEnd));
}
public ASTNode getEclipseNode() {
return node;
}
/** Returns the structurally significant node that encloses this one.
*
* @see #isStructurallySignificant()
*/
public Node up() {
Node result = parent;
while ( result != null && !result.isStructurallySignificant() ) result = result.parent;
return result;
}
/**
* 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;
}
private boolean calculateIsStructurallySignificant() {
if ( node instanceof TypeDeclaration ) return true;
if ( node instanceof AbstractMethodDeclaration ) return true;
if ( node instanceof FieldDeclaration ) return true;
if ( node instanceof LocalDeclaration ) return true;
if ( node instanceof CompilationUnitDeclaration ) return true;
return false;
}
/**
* 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<Node> down() {
return children;
}
public boolean isHandled() {
return handled;
}
public Node setHandled() {
this.handled = true;
return this;
}
public Node top() {
return top;
}
public String getFileName() {
return fileName;
}
public boolean isCompleteParse() {
return completeParse;
}
}
private final Map<ASTNode, Void> identityDetector = new IdentityHashMap<ASTNode, Void>();
private Map<ASTNode, Node> nodeMap = new HashMap<ASTNode, Node>();
private final CompilationUnitDeclaration compilationUnitDeclaration;
private final String fileName;
private Node top;
private boolean completeParse;
public EclipseAST(CompilationUnitDeclaration ast) {
this.compilationUnitDeclaration = ast;
this.fileName = ast.compilationResult.fileName == null ? "(unknown).java" : new String(ast.compilationResult.fileName);
this.top = buildTree(ast);
this.completeParse = isComplete(ast);
}
public void reparse() {
propagateProblems();
if ( completeParse ) return;
boolean newCompleteParse = isComplete(compilationUnitDeclaration);
if ( !newCompleteParse ) return;
Map<ASTNode, Node> oldMap = nodeMap;
nodeMap = new HashMap<ASTNode, Node>();
this.top = buildTree(compilationUnitDeclaration);
//Retain 'handled' flags.
for ( Map.Entry<ASTNode, Node> e : nodeMap.entrySet() ) {
Node oldEntry = oldMap.get(e.getKey());
if ( oldEntry != null && oldEntry.handled ) e.getValue().handled = true;
}
this.completeParse = true;
}
private static boolean isComplete(CompilationUnitDeclaration unit) {
return (unit.bits & ASTNode.HasAllMethodBodies) > 0;
}
private Node putInMap(Node parent) {
for ( Node child : parent.children ) child.parent = parent;
nodeMap.put(parent.node, parent);
identityDetector.put(parent.node, null);
return parent;
}
private Node buildTree(CompilationUnitDeclaration top) {
identityDetector.clear();
Collection<Node> children = buildTree(top.types);
return putInMap(new Node(top, children));
}
private void addIfNotNull(Collection<Node> collection, Node n) {
if ( n != null ) collection.add(n);
}
private Collection<Node> buildTree(TypeDeclaration[] children) {
if ( children == null ) return Collections.emptyList();
List<Node> childNodes = new ArrayList<Node>();
for ( TypeDeclaration type : children ) addIfNotNull(childNodes, buildTree(type));
return childNodes;
}
private Node buildTree(TypeDeclaration type) {
if ( identityDetector.containsKey(type) ) return null;
List<Node> childNodes = new ArrayList<Node>();
childNodes.addAll(buildTree(type.fields));
childNodes.addAll(buildTree(type.memberTypes));
childNodes.addAll(buildTree(type.methods));
childNodes.addAll(buildTree(type.annotations));
return putInMap(new Node(type, childNodes));
}
private Collection<Node> buildTree(FieldDeclaration[] children) {
if ( children == null ) return Collections.emptyList();
List<Node> childNodes = new ArrayList<Node>();
for ( FieldDeclaration child : children ) addIfNotNull(childNodes, buildTree(child));
return childNodes;
}
private static <T> Collection<T> singleton(T item) {
if ( item == null ) return Collections.emptyList();
else return Collections.singleton(item);
}
private Node buildTree(FieldDeclaration field) {
if ( field instanceof Initializer ) return buildTree((Initializer)field);
if ( identityDetector.containsKey(field) ) return null;
List<Node> childNodes = new ArrayList<Node>();
addIfNotNull(childNodes, buildWithStatement(field.initialization));
childNodes.addAll(buildTree(field.annotations));
return putInMap(new Node(field, childNodes));
}
private Node buildTree(Initializer initializer) {
if ( identityDetector.containsKey(initializer) ) return null;
return putInMap(new Node(initializer, singleton(buildWithStatement(initializer.block))));
}
private Collection<Node> buildTree(AbstractMethodDeclaration[] children) {
if ( children == null ) return Collections.emptyList();
List<Node> childNodes = new ArrayList<Node>();
for (AbstractMethodDeclaration method : children ) addIfNotNull(childNodes, buildTree(method));
return childNodes;
}
private Node buildTree(AbstractMethodDeclaration method) {
if ( identityDetector.containsKey(method) ) return null;
List<Node> childNodes = new ArrayList<Node>();
childNodes.addAll(buildTree(method.arguments));
childNodes.addAll(buildTree(method.statements));
childNodes.addAll(buildTree(method.annotations));
return putInMap(new Node(method, childNodes));
}
//Arguments are a kind of LocalDeclaration. They can definitely contain lombok annotations, so we care about them.
private Collection<Node> buildTree(Argument[] children) {
if ( children == null ) return Collections.emptyList();
List<Node> childNodes = new ArrayList<Node>();
for ( LocalDeclaration local : children ) {
addIfNotNull(childNodes, buildTree(local));
}
return childNodes;
}
private Node buildTree(LocalDeclaration local) {
if ( identityDetector.containsKey(local) ) return null;
List<Node> childNodes = new ArrayList<Node>();
addIfNotNull(childNodes, buildWithStatement(local.initialization));
childNodes.addAll(buildTree(local.annotations));
return putInMap(new Node(local, childNodes));
}
private Collection<Node> buildTree(Annotation[] annotations) {
if ( annotations == null ) return Collections.emptyList();
List<Node> elements = new ArrayList<Node>();
for ( Annotation an : annotations ) {
if ( an == null ) continue;
elements.add(putInMap(new Node(an, null)));
}
return elements;
}
private Collection<Node> buildTree(Statement[] children) {
if ( children == null ) return Collections.emptyList();
List<Node> childNodes = new ArrayList<Node>();
for ( Statement child : children ) addIfNotNull(childNodes, buildWithStatement(child));
return childNodes;
}
//Almost anything is a statement, so this method has a different name to avoid overloading confusion
private Node buildWithStatement(Statement child) {
if ( child == null || identityDetector.containsKey(child) ) return null;
if ( child instanceof TypeDeclaration ) return buildTree((TypeDeclaration)child);
if ( child instanceof LocalDeclaration ) return buildTree((LocalDeclaration)child);
//We drill down because LocalDeclarations and TypeDeclarations can occur anywhere, even in, say,
//an if block, or even the expression on an assert statement!
identityDetector.put(child, null);
return drill(child);
}
private Node drill(Statement statement) {
List<Node> childNodes = new ArrayList<Node>();
for ( FieldAccess fa : fieldsOf(statement.getClass()) ) childNodes.addAll(buildWithField(statement, fa));
return putInMap(new Node(statement, childNodes));
}
private static class FieldAccess {
final Field field;
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>>();
private 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 == ASTNode.class || c == null ) return;
for ( Field f : c.getDeclaredFields() ) {
if ( Modifier.isStatic(f.getModifiers()) ) continue;
Class<?> t = f.getType();
int dim = 0;
while ( t.isArray() ) {
dim++;
t = t.getComponentType();
}
if ( Statement.class.isAssignableFrom(t) ) {
f.setAccessible(true);
fields.add(new FieldAccess(f, dim));
}
}
getFields(c.getSuperclass(), fields);
}
private Collection<Node> buildWithField(Statement statement, FieldAccess fa) {
List<Node> list = new ArrayList<Node>();
buildWithField(statement, fa, list);
return list;
}
private void buildWithField(Statement child, FieldAccess fa, Collection<Node> list) {
try {
Object o = fa.field.get(child);
if ( fa.dim == 0 ) addIfNotNull(list, buildWithStatement((Statement)o));
else buildWithArray(o, list, fa.dim);
} catch ( IllegalAccessException e ) {
sneakyThrow(e);
}
}
private void buildWithArray(Object array, Collection<Node> list, int dim) {
if ( array == null ) return;
if ( dim == 1 ) for ( Object v : (Object[])array ) {
addIfNotNull(list, buildWithStatement((Statement)v));
} else for ( Object v : (Object[])array ) {
buildWithArray(v, list, dim-1);
}
}
}
|