forked from exercism/java-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHammingWalker.java
More file actions
232 lines (186 loc) · 8.6 KB
/
Copy pathHammingWalker.java
File metadata and controls
232 lines (186 loc) · 8.6 KB
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
package analyzer.exercises.hamming;
import com.github.javaparser.Range;
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
import com.github.javaparser.ast.body.ConstructorDeclaration;
import com.github.javaparser.ast.body.MethodDeclaration;
import com.github.javaparser.ast.expr.CharLiteralExpr;
import com.github.javaparser.ast.expr.LambdaExpr;
import com.github.javaparser.ast.expr.MethodCallExpr;
import com.github.javaparser.ast.expr.MethodReferenceExpr;
import com.github.javaparser.ast.nodeTypes.NodeWithRange;
import com.github.javaparser.ast.stmt.*;
import java.util.*;
import java.util.function.Consumer;
import java.util.stream.Collectors;
import java.util.stream.Stream;
class HammingWalker implements Consumer<ClassOrInterfaceDeclaration> {
private ClassOrInterfaceDeclaration hammingClass;
private final Set<ConstructorDeclaration> constructors = new HashSet<>();
private ConstructorDeclaration constructor;
private final Map<String, List<MethodDeclaration>> methods = new HashMap<>();
private final Set<String> methodsCalledByConstructor = new HashSet<>();
private boolean constructorMayCalculateDistanceDirectly;
private final Set<String> methodsCalledByGetHammingDistance = new HashSet<>();
private boolean getHammingDistanceMayCalculateDistanceDirectly;
@Override
public void accept(ClassOrInterfaceDeclaration node) {
if (node.getNameAsString().equals("Hamming")) {
hammingClass = node;
walkHammingClass();
}
}
private void walkHammingClass() {
methods.putAll(getMethodsByName());
constructors.addAll(hammingClass.getConstructors());
findConstructor().ifPresent(this::walkConstructor);
findGetHammingDistanceMethod().ifPresent(this::walkGetHammingDistanceMethod);
}
private Map<String, List<MethodDeclaration>> getMethodsByName() {
return hammingClass.findAll(MethodDeclaration.class)
.stream()
.collect(Collectors.groupingBy(MethodDeclaration::getNameAsString));
}
private Optional<ConstructorDeclaration> findConstructor() {
return hammingClass.getConstructorByParameterTypes(String.class, String.class);
}
private void walkConstructor(ConstructorDeclaration foundConstructor) {
constructor = foundConstructor;
constructor.getBody().getStatements().forEach(this::walkConstructorStatement);
}
private void walkConstructorStatement(Statement statement) {
if (statementMayCalculateHammingDistance(statement)) {
constructorMayCalculateDistanceDirectly = true;
}
getMethodCallNames(statement)
.forEach(methodName ->
recursivelyAddMethodsCalled(methodName, methodsCalledByConstructor));
}
private boolean isMethodCall(Statement statement) {
return !statement.findAll(MethodCallExpr.class).isEmpty();
}
private Stream<String> getMethodCallNames(Statement statement) {
Stream<String> methodCalled = statement.findAll(MethodCallExpr.class).stream()
.map(MethodCallExpr::getNameAsString);
Stream<String> methodRefs = statement.findAll(MethodReferenceExpr.class).stream()
.map(MethodReferenceExpr::getIdentifier);
return Stream.concat(methodCalled, methodRefs).distinct();
}
private Optional<MethodDeclaration> findGetHammingDistanceMethod() {
return methods.get("getHammingDistance").stream()
// we only care about the one with no parameters
.filter(method -> method.getParameters().isEmpty())
.findFirst();
}
private void walkGetHammingDistanceMethod(MethodDeclaration getHammingDistanceMethod) {
getHammingDistanceMethod.getBody().ifPresent(this::walkGetHammingDistanceMethod);
}
private void walkGetHammingDistanceMethod(BlockStmt body) {
body.getStatements().forEach(this::walkGetHammingDistanceStatement);
}
private void walkGetHammingDistanceStatement(Statement statement) {
if (statementMayCalculateHammingDistance(statement)) {
getHammingDistanceMayCalculateDistanceDirectly = true;
}
getMethodCallNames(statement)
.forEach(methodName ->
recursivelyAddMethodsCalled(methodName, methodsCalledByGetHammingDistance));
}
private void recursivelyAddMethodsCalled(
String methodName,
Set<String> methodsCalled) {
if (methodsCalled.contains(methodName)) {
return;
}
methodsCalled.add(methodName);
getMethodsCalledBy(methodName)
.distinct()
.forEach(calledMethod ->
recursivelyAddMethodsCalled(calledMethod, methodsCalled));
}
private Stream<String> getMethodsCalledBy(String methodName) {
return methods.getOrDefault(methodName, List.of()).stream()
.flatMap(this::getMethodsCalledBy);
}
private Stream<String> getMethodsCalledBy(MethodDeclaration method) {
return method.getBody()
.map(this::getMethodsCalledBy)
.orElse(Stream.of());
}
private Stream<String> getMethodsCalledBy(BlockStmt body) {
return body.getStatements().stream()
.filter(this::isMethodCall)
.flatMap(this::getMethodCallNames);
}
public boolean constructorHasMethodCalls() {
return !methodsCalledByConstructor.isEmpty();
}
public boolean constructorMayCalculateDistance() {
return constructorMayCalculateDistanceDirectly
|| constructorCallsMethodThatMayCalculateDistance();
}
private boolean constructorCallsMethodThatMayCalculateDistance() {
return methodsCalledByConstructor.stream()
.anyMatch(this::methodMayCalculateHammingDistance);
}
public boolean getHammingDistanceMethodMayCalculateDistance() {
return getHammingDistanceMayCalculateDistanceDirectly
|| getHammingDistanceCallsMethodThatMayCalculateDistance();
}
private boolean getHammingDistanceCallsMethodThatMayCalculateDistance() {
return methodsCalledByGetHammingDistance.stream()
.anyMatch(this::methodMayCalculateHammingDistance);
}
private boolean methodMayCalculateHammingDistance(String methodName) {
return methods.getOrDefault(methodName, List.of()).stream()
.anyMatch(this::methodMayCalculateHammingDistance);
}
private boolean methodMayCalculateHammingDistance(MethodDeclaration method) {
return method.getBody()
.map(this::methodBodyMayCalculateHammingDistance)
.orElse(false);
}
private boolean methodBodyMayCalculateHammingDistance(BlockStmt body) {
return body.getStatements().stream()
.anyMatch(this::statementMayCalculateHammingDistance);
}
private boolean statementMayCalculateHammingDistance(Statement statement) {
return hasLoopStatement(statement) || hasLambdaExpression(statement);
}
private boolean hasLoopStatement(Statement statement) {
return !statement.findAll(ForStmt.class).isEmpty()
|| !statement.findAll(ForEachStmt.class).isEmpty()
|| !statement.findAll(WhileStmt.class).isEmpty();
}
private boolean hasLambdaExpression(Statement statement) {
return !statement.findAll(LambdaExpr.class).isEmpty();
}
public Set<String> getLongConstructors() {
return constructors.stream()
.filter(this::isLongNode)
.map(ConstructorDeclaration::getNameAsString)
.collect(Collectors.toUnmodifiableSet());
}
public Set<String> getLongMethods() {
return methods.values().stream()
.flatMap(Collection::stream)
.filter(this::isLongNode)
.map(MethodDeclaration::getNameAsString)
.collect(Collectors.toUnmodifiableSet());
}
private boolean isLongNode(NodeWithRange<?> node) {
return node.getRange().map(Range::getLineCount).orElse(0) > 20;
}
public boolean usesCharacterLiterals() {
return !hammingClass.findAll(CharLiteralExpr.class).isEmpty();
}
public boolean usesStringCharAtOrCodePointAt() {
return usesMethod("charAt") || usesMethod("codePointAt");
}
public boolean shouldUseStreamFilterAndCount() {
return usesMethod("reduce");
}
private boolean usesMethod(String methodName) {
return methodsCalledByConstructor.contains(methodName)
|| methodsCalledByGetHammingDistance.contains(methodName);
}
}