我需要使用getAST()方法从源文件中获取AST。我创建了一个.cproject,因为我认为它是丢失的那个,但它仍然犯了同样的错误。在这部分代码中:
ITranslationUnit tu = (ITranslationUnit) CoreModel.getDefault (). Create (iFile);
返回Null,我相信错误是因为这个,但我不明白为什么如果我使用.cproject测试CDT项目它返回Null。我也不理解IFile,因为它返回了一条我不知道的路径,如下所示:" L / Users / raiza arteman / runtime-EclipseApplication / testeAST / src / code.c"。以下是课程:
public void analyzeFilesInSrc() throws Exception{
ICProject project = CoreModel.getDefault().getCModel().getCProject(SampleHandler.PROJECT);//project to analyse
IIndex index = CCorePlugin.getIndexManager().getIndex(project);
System.out.println("iindex "+index);
// It gets all C files from the SRC path to analyze.
this.filesInSrc = new ArrayList<String>();
this.setSrcFiles(SampleHandler.RUNTIME_WORKSPACE_PATH + SampleHandler.PROJECT + File.separator + "src");
// For each C file in the SRC folder..
for (String file : this.filesInSrc){
String completeFilePath = file.replace(SampleHandler.RUNTIME_WORKSPACE_PATH, "");
System.out.println(completeFilePath.replace(PROJECT + File.separator + "src" + File.separator, ""));
this.editDirectives(file);
IPath iFilePath = new Path(completeFilePath);
IFile iFile = ResourcesPlugin.getWorkspace().getRoot().getFile(iFilePath);
System.out.println("ifile "+iFile);
System.out.println("Itranslatiotounit "+(ITranslationUnit) CoreModel.getDefault().create(iFile));
ITranslationUnit tu = (ITranslationUnit) CoreModel.getDefault().create(iFile);
System.out.println("tu "+tu);
try {
// We need a read-lock on the index.
index.acquireReadLock();
IASTTranslationUnit ast= tu.getAST(index, ITranslationUnit.AST_PARSE_INACTIVE_CODE);
this.setTypes(ast);
this.setMacros(ast);
}
正在发生这种情况:
java.lang.NullPointerException
at analysis.handlers.SampleHandler.analyzeFilesInSrc(SampleHandler.java:249)
at analysis.handlers.SampleHandler.execute(SampleHandler.java:103)
at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:295)
at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:90)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
我可以在CDT项目中使用它之后,我将需要解析任何c代码,即使它不是来自CDT,为此我在堆栈中看到了一个建议,即将.cproject文件放入在项目中的根。
答案 0 :(得分:0)
手动创建.cproject
文件不是可行的方法 - 其格式未记录,并被视为实现细节。作为创建实际项目的一部分,您应该让Eclipse创建该文件和任何其他项目元数据文件。
真实项目的创建可以在Eclipse UI(File | New | C++ Project
)中手动完成,也可以使用IWorkspaceRoot.getProject()
,IProject.create()
和CoreModel.create(IProject)
等API自动完成