我正在和spoon inria一起解析和分析java应用程序。目前,我正在使用下面的代码创建输入项目模型。当项目文件保存在磁盘中时,此代码起作用。
Launcher spoonAPI = new Launcher();
spoonAPI.addInputResource(projectDirectory); //The path to the project root directory
spoonAPI.buildModel();
CtModel ctModel = spoonAPI.getModel();
但是,目前我在内存中有java文件(类)的内容,我不想将它们写入磁盘,因为这需要很长时间。我想知道是否有一种方法可以使用spoon将文件内容传递给解析器。例如,下面的代码。
//Key is name of class and value is its content
Map<String, String> JavafileContents= new HashMap<String, String>();
for (String filePath : JavafileContents.keySet()) {
spoonAPI.parse(JavafileContents.get(filePath ));
}
CtModel ctModel = spoonAPI.getModel(); //The extracted model should contains all parsed files.
类似于jdt中提供的类似解决方案。
ASTParser parser = ASTParser.newParser(AST.JLS14);
parser.setSource(javaFileContents.get(filePath).toCharArray());
CompilationUnit compilationUnit = (CompilationUnit)parser.createAST(null);
1条答案
按热度按时间erhoui1w1#
我也在寻找的功能,我发现下面的代码可能满足您的要求。
来源是https://github.com/inria/spoon/blob/spoon-core-8.2.0/src/main/java/spoon/launcher.java#l856.
或者,可以使用类似
createCodeSnippetStatement
```Factory factory = new Launcher().createFactory();
CtStatement tmpStmt = factory.Code().createCodeSnippetStatement(code);