-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPythonPlugin.java
More file actions
304 lines (255 loc) · 10 KB
/
PythonPlugin.java
File metadata and controls
304 lines (255 loc) · 10 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
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
package refdiff.parsers.python;
import java.io.*;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.*;
import java.util.stream.Collectors;
import refdiff.core.cst.*;
import refdiff.core.io.FilePathFilter;
import refdiff.core.io.SourceFile;
import refdiff.core.io.SourceFileSet;
import refdiff.parsers.LanguagePlugin;
import com.fasterxml.jackson.databind.ObjectMapper;
public class PythonPlugin implements LanguagePlugin, Closeable {
private File tempDir = null;
private String parserPath;
public PythonPlugin() throws Exception {
this.parserPath = this.getParserPath();
}
public PythonPlugin(File tempDir) {
this.tempDir = tempDir;
this.parserPath = this.getParserPath();
}
public String getParserPath() {
String parser = System.getenv("REFDIFF_PYTHON_PARSER");
if (parser != null && !parser.isEmpty()) {
return parser;
}
return PythonPlugin.class.getClassLoader().getResource("parser.py").getPath();
}
public Node[] execParser(String rootFolder, String path) throws IOException {
ProcessBuilder builder = new ProcessBuilder(parserPath, "--file", Paths.get(rootFolder, path).toString());
Map<String, String> env = builder.environment();
env.put("PYTHONPATH", PythonPlugin.class.getClassLoader().getResource("dependencies").getPath());
Process proc = builder.start();
Node[] nodes = new Node[0];
try {
ObjectMapper mapper = new ObjectMapper();
nodes = mapper.readValue(proc.getInputStream(), Node[].class);
} catch (Exception e) {
String errors = new BufferedReader(new InputStreamReader(proc.getErrorStream()))
.lines().collect(Collectors.joining("\n"));
if (errors.length() > 0) {
throw new RuntimeException(errors);
}
e.printStackTrace();
}
return nodes;
}
private void updateChildrenNodes(CstRoot root, Map<String, CstNode> nodeByAddress, Map<String, CstNode> fallbackByAddress,
Map<String, HashSet<String>> childrenByAddress) {
for (Map.Entry<String, HashSet<String>> parent : childrenByAddress.entrySet()) {
if (!nodeByAddress.containsKey(parent.getKey()) ) {
// check nodes in fallbacks and add to root
CstNode fallbackNode = fallbackByAddress.get(parent.getKey());
if (fallbackNode == null) {
continue;
}
nodeByAddress.put(parent.getKey(), fallbackNode);
root.addNode(fallbackNode);
}
CstNode parentNode = nodeByAddress.get(parent.getKey());
for (String childAddress: parent.getValue()) {
if (!nodeByAddress.containsKey(childAddress)) {
throw new RuntimeException("node not found: " + childAddress);
}
parentNode.addNode(nodeByAddress.get(childAddress));
}
}
}
private void updateFunctionCalls(CstRoot root, Map<String, CstNode> nodeByAddress, Map<String, CstNode> fallbackByAddress,
Map<String, HashSet<String>> functionCalls) {
for (Map.Entry<String, HashSet<String>> node : functionCalls.entrySet()) {
if (!nodeByAddress.containsKey(node.getKey())) {
throw new RuntimeException("node not found: " + node.getKey());
}
CstNode caller = nodeByAddress.get(node.getKey());
for (String functionCall: node.getValue()) {
if (!nodeByAddress.containsKey(functionCall)) {
CstNode fallbackNode = fallbackByAddress.get(functionCall);
if (fallbackNode == null) {
continue;
}
nodeByAddress.put(functionCall, fallbackNode);
root.addNode(fallbackNode);
}
root.getRelationships().add(new CstNodeRelationship(CstNodeRelationshipType.USE, caller.getId(),
nodeByAddress.get(functionCall).getId()));
}
}
}
private TokenizedSource tokenizeSourceFile(Node node, SourceFileSet sources, SourceFile sourceFile) throws IOException {
ArrayList<TokenPosition> tokens = node.getTokenPositions(sources.readContent(sourceFile));
return new TokenizedSource(sourceFile.getPath(), tokens);
}
private boolean isValidPythonFile(String path) {
return path.endsWith(".py");
}
@Override
public CstRoot parse(SourceFileSet sources) throws Exception {
Optional<Path> optBasePath = sources.getBasePath();
Map<String, CstNode> nodeByAddress = new HashMap<>();
Map<String, CstNode> fallbackByAddress = new HashMap<>();
Map<String, HashSet<String>> childrenByAddress = new HashMap<>();
Map<String, HashSet<String>> functionCalls = new HashMap<>();
List<SourceFile> additionalFiles = new ArrayList<>();
List<SourceFile> sourceFiles = new ArrayList<>();
for (SourceFile sourceFile : sources.getSourceFiles()) {
if (!isValidPythonFile(sourceFile.getPath())) {
continue;
}
sourceFiles.add(sourceFile);
File parent = new File(sourceFile.getPath()).getParentFile();
String sourceFolder = "";
if (parent != null) {
sourceFolder = parent.getPath();
System.out.println(sourceFolder);
for (SourceFile file : sources.getFilesFromPath(Paths.get(sourceFolder))) {
if (!isValidPythonFile(file.getPath())) {
continue;
}
additionalFiles.add(file);
}
}
}
sources.getSourceFiles().addAll(additionalFiles);
if (!optBasePath.isPresent()) {
if (this.tempDir == null) {
throw new RuntimeException("The GoParser requires a SourceFileSet that is materialized on the file system. " +
"Either pass a tempDir to GoParser's contructor or call SourceFileSet::materializeAt before calling this method.");
} else {
sources.materializeAtBase(tempDir.toPath());
optBasePath = sources.getBasePath();
}
}
File rootFolder = optBasePath.get().toFile();
try {
CstRoot root = new CstRoot();
Map<String, Boolean> fileProcessed = new HashMap<>();
int nodeCounter = 1;
for (SourceFile sourceFile : sourceFiles) {
String temp = Paths.get(rootFolder.toString(),sourceFile.getPath()).toString();
String temp1 = temp.substring(temp.indexOf("/")+1);
String[] arrOfStr = temp1.split("-");
temp1 = arrOfStr[0]+"/";
fileProcessed.put(sourceFile.getPath(), true);
Node[] astNodes = this.execParser(rootFolder.toString(), sourceFile.getPath());
for (Node node : astNodes) {
node.setId(nodeCounter++);
if (node.getType().equals(NodeType.FILE)) {
node.setNamespace(temp1);
root.addTokenizedFile(tokenizeSourceFile(node, sources, sourceFile));
}
CstNode cstNode = toCSTNode(node, sourceFile.getPath());
// save parent information
nodeByAddress.put(node.getAddress(), cstNode);
if (node.getParent() != null) {
node.setNamespace(null);
// initialize if key not present
childrenByAddress = AddtoArraylist(childrenByAddress, temp1, node);
}
// save call graph information
if (node.getType().equals(NodeType.FUNCTION) && node.getFunctionCalls() != null) {
// initialize if key not present
for (String functionname : node.getFunctionCalls()) {
if (!functionCalls.containsKey(functionname)) {
functionCalls.put(functionname, new HashSet<>());
}
functionCalls.get(functionname).add(node.getAddress());
}
}
if(node.getType().equals(NodeType.FILE)) {
root.addNode(cstNode);
}
}
}
for (SourceFile sourceFile: additionalFiles) {
if (fileProcessed.getOrDefault(sourceFile.getPath(), false)) { // avoid duplicate parser
continue;
}
fileProcessed.put(sourceFile.getPath(), true);
Node[] astNodes = this.execParser(rootFolder.toString(), sourceFile.getPath());
for (Node node : astNodes) {
node.setId(nodeCounter++);
if (node.getType().equals(NodeType.FILE)) {
root.addTokenizedFile(tokenizeSourceFile(node, sources, sourceFile));
}
CstNode cstNode = toCSTNode(node, sourceFile.getPath());
fallbackByAddress.put(node.getAddress(), cstNode);
}
}
updateChildrenNodes(root, nodeByAddress, fallbackByAddress, childrenByAddress);
updateFunctionCalls(root, nodeByAddress, fallbackByAddress, functionCalls);
return root;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
private Map<String, HashSet<String>> AddtoArraylist(Map<String, HashSet<String>> arraylist, String temp1, Node node){
if(!node.getParent().contains(".py")){
temp1 = "";
}
if (!arraylist.containsKey(temp1+node.getParent())) {
if(node.getParent().contains(".py"))
arraylist.put(temp1+node.getParent(), new HashSet<>());
else if(!node.getParent().contains(".py"))
arraylist.put(node.getParent(), new HashSet<>());
}
if(node.getParent().contains(".py"))
arraylist.get(temp1+node.getParent()).add(node.getAddress());
else
arraylist.get(node.getParent()).add(node.getAddress());
return arraylist;
}
private CstNode toCSTNode(Node node, String filePath) {
CstNode cstNode = new CstNode(node.getId());
cstNode.setType(node.getType());
cstNode.setSimpleName(node.getName());
if(node.getType().equals("File"))
cstNode.setNamespace(node.getNamespace());
else
cstNode.setNamespace(null);
cstNode.setLocation(new Location(filePath, node.getStart(), node.getEnd(), node.getLine(), node.getBodyBegin(), node.getBodyEnd()));
if (node.getType().equals(NodeType.CLASS)) {
cstNode.getStereotypes().add(Stereotype.TYPE_MEMBER);
}
if (node.hasBody()) {
cstNode.getStereotypes().add(Stereotype.HAS_BODY);
} else if(node.getType().equals(NodeType.FUNCTION) || node.getType().equals(NodeType.CLASS)) {
cstNode.getStereotypes().add(Stereotype.ABSTRACT);
}
if (node.getParametersNames() != null && !node.getParametersNames().isEmpty()) {
List<Parameter> parameters = new ArrayList<>();
for (String name : node.getParametersNames()) {
parameters.add(new Parameter(name));
}
cstNode.setParameters(parameters);
}
if (node.getType().equals(NodeType.FUNCTION)) {
String localName = String.format("%s(%s)", node.getName(), String.join(",", node.getParametersNames()));
if (node.getReceiver() != null && !node.getReceiver().isEmpty()) {
localName = String.format("%s.%s", node.getReceiver(), localName);
}
cstNode.setLocalName(localName);
} else {
cstNode.setLocalName(node.getName());
}
return cstNode;
}
@Override
public FilePathFilter getAllowedFilesFilter() {
return new FilePathFilter(Arrays.asList(".py"));
}
@Override
public void close() {}
}