编译器'项目,我必须在Java文件中找到一个模式。例如,如果我输入" @x = 3"该程序必须返回每个场合,其中3归因于某些东西。
为此,我使用JDT的ASTParser。我解析文件并获取CompilationUnit对象,如下所示:
private static CompilationUnit getAST(char[] unit){
ASTParser parser = ASTParser.newParser(AST.JLS8);
parser.setKind(ASTParser.K_COMPILATION_UNIT);
parser.setSource(unit); // set source
parser.setResolveBindings(true); // we need bindings later on
parser.setBindingsRecovery(true);
Map options = JavaCore.getOptions();
parser.setCompilerOptions(options);
CompilationUnit cu = (CompilationUnit) parser.createAST(null);
return cu;
}
现在,我正在做的是根据我给出的模式构建另一个AST。上面的例子结果如下:
AssignementExpression
LHS
Pattern("@x")
RHS
Literal("3")
然后我用这个AST来搜索CompilationUnit。问题是搜索节点的ASTParser API class需要知道我访问的节点的类。
我需要创建一个新的访问者对象,并在访问函数中定义我想要做的事情:
ASTVisitor visitor = (new ASTVisitor() {
public boolean visit(VariableDeclarationFragment node) {
// what I want to do
return true; // do not continue
}
}
所以我想要做的是,在运行时,将AssignementExpression与VariableDeclarationFragment相关联,并使用VariableDeclarationFragment调用visit函数。类似的东西:
Class nodeType = getTypeFromGrammar("AssignementExpression");
ASTVisitor visitor = (new ASTVisitor() {
public boolean visit(nodeType node) { // use the class that was returned above
// what I want to do
return true; // do not continue
}
}
答案 0 :(得分:1)
一种方法是使用反射。
您将要使用ASTVisitor的命名子类而不是匿名类。我们说它叫做MyAstVisitor。它可以覆盖多个ASTVisitor.visit(T)
方法。
您可以使用Class.getMethod()获取适当的方法。例如:
Method visitMethod = MyASTVistor.class.getMethod( "visit", nodeType );
然后您可以使用Method.invoke():
调用该方法visitMethod.invoke( myAstVisitorInstance, myNode );