使用Eclipse AST将元素添加到特定位置的AST中

时间:2012-01-30 06:02:49

标签: java eclipse abstract-syntax-tree

更新2:再次感谢@ deepak-azad,我设法解决了我的问题:这是主要代码的链接:https://gist.github.com/1714641

更新:感谢@ deepak-azad,我补充了代码,但仍无效。

我试图使用EclipseJDT在Java中检测源文件。我的主要目标是放一些声明“x();”在每个变量声明下面。

例如: 由此:

int a = 10;

到此:

int a = 10;
method();

我能够创建ast并创建一个类来扩展visit方法以获取代码中的所有变量声明:

import java.util.ArrayList;
import java.util.List;

import org.eclipse.jdt.core.dom.ASTVisitor;
import org.eclipse.jdt.core.dom.VariableDeclarationStatement;

public class VDS extends ASTVisitor {
List<VariableDeclarationStatement> vds = new ArrayList<VariableDeclarationStatement>();

    @Override
    public boolean visit(VariableDeclarationStatement node) {
        vds.add(node);
        return super.visit(node);
    }   

    public List<VariableDeclarationStatement> getVDS() {
        return vds;
    }
}

我测试了它并且它可以很好地捕获每个变量,但不能插入新节点,使用类似这样的东西:

VDS vds = new VDS();
unit2.accept(vds); // unit2 is the compilation unit
System.out.println("Variables :" + vds.getVDS().size());

for(VariableDeclarationStatement vds_p : vds.getVDS()){
    System.out.println(vds_p.toString()) 

    List<Statement> a = ((Block) vds_.getParent()).statements();
     a.add(e);//e is the artificial statement 

        ListRewrite lrw = astRewrite.getListRewrite(vds_p.getParent().BLock.STATEMENTS_PROPERTY);
lrw.insertAfter(e,vds_p,null);

    }

实际写下的代码是(这部分工作我使用任意注释进行测试)

IDocument document2;
ITextFileBufferManager bufferManager = FileBuffers.getTextFileBufferManager(); // get the buffer manager
IPath path = unit2.getJavaElement().getPath(); // unit: instance of CompilationUnit
try {
    bufferManager.connect(path, null); 
    ITextFileBuffer textFileBuffer = bufferManager.getTextFileBuffer(path);
    // retrieve the buffer
    document2 = textFileBuffer.getDocument(); 
    textFileBuffer.commit(null /* ProgressMonitor */, false /* Overwrite */); 

} finally{ bufferManager.disconnect(path, null);}
TextEdit edits = unit2.rewrite(document2, null);
edits.apply(document2);
write2File(document2);  

我对层次结构如何工作有点困惑,我基于每个变量语句属于一个块,每个块属于一个方法,但仍然不知道如何处理ListRewrite元素。

我一直在读eclipse中的ast,但所有问题都与代码的创建有关,但与编辑过程无关

当我执行此操作时,我得到一个非法的参数异常:

java.lang.IllegalArgumentException
    at org.eclipse.jdt.core.dom.ASTNode.checkNewChild(ASTNode.java:1905)
    at org.eclipse.jdt.core.dom.ASTNode$NodeList.add(ASTNode.java:1269)
    at java.util.AbstractList.add(AbstractList.java:91)
    at plugin.astsimple.handlers.SampleHandler.execute(SampleHandler.java:109)
    at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293)
    at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
        ...

我的代码的第109行是将e添加到

的代码
a.add(e);

谢谢!

2 个答案:

答案 0 :(得分:1)

每个'Block'都包含一个'list'语句,因此你需要使用“org.eclipse.jdt.core.dom.rewrite.ListRewrite.insertAfter(ASTNode,ASTNode,TextEditGroup)”。您可以在org.eclipse.jdt.ui插件中查找此方法的用法示例。

答案 1 :(得分:0)

为了更好地理解层次结构在AST中的工作方式,您应该使用AST视图插件 - http://www.eclipse.org/jdt/ui/astview/index.php