0

我正在使用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);
4

1 回答 1

0

我也在寻找功能,我发现以下代码可能满足您的要求。

    import spoon.support.compiler.VirtualFile;
    ...
    public static CtClass<?> parseClass(String code) {
       Launcher launcher = new Launcher();
       launcher.addInputResource(new VirtualFile(code));
       launcher.getEnvironment().setNoClasspath(true);
       launcher.getEnvironment().setAutoImports(true);
    ...

来源是https://github.com/INRIA/spoon/blob/spoon-core-8.2.0/src/main/java/spoon/Launcher.java#L856

或者,可以使用 API,例如createCodeSnippetStatement

Factory factory = new Launcher().createFactory();
CtStatement tmpStmt = factory.Code().createCodeSnippetStatement(code);

选择 API 的方式取决于代码片段的类型(例如,表达式或语句)。

于 2020-09-07T07:45:36.667 回答