运行 以编程方式调用 eclipse 快速修复时出现时间错误
Run time error in when calling eclipse quick fix programmatically
我实现了一个 java 插件,能够使用 Eclipse 快速修复修复计算机错误。要访问最新版本的输入程序,首先刷新在eclipse中打开的项目,然后调用eclipse quick fix来修复现有的编译器错误。 (输入程序重新更改,我需要先刷新项目,然后提取最新版本。)下面的代码(作为一种方法提供)被实现来完成所描述的工作。
//Get workspace
IWorkspace workspace = ResourcesPlugin.getWorkspace();
IWorkspaceRoot root = workspace.getRoot();
//Get project
IProject project = root.getProject(projectName);
//Referesh the project
project.refreshLocal(IResource.DEPTH_INFINITE, null);
IJobManager jobManager = Job.getJobManager();
jobManager.wakeUp(ResourcesPlugin.FAMILY_AUTO_BUILD);
jobManager.join(ResourcesPlugin.FAMILY_AUTO_BUILD, null);
IJavaProject javaProject = JavaCore.create(project);
//Get ICompilationUnit (classFullName is the full name of class that we need to find its compiler error)
IType iType = javaProject.findType(classFullName);
ICompilationUnit iUnit = iType.getCompilationUnit();
/** Create working copy. It is safer to work with a copy.*/
WorkingCopyOwner owner = iUnit.getOwner();
iUnit = (owner == null ? iUnit.getWorkingCopy(null) : iUnit.getWorkingCopy(owner, null));
//Get compilation Unit
ASTParser parser = ASTParser.newParser(AST.JLS8);
parser.setKind(ASTParser.K_COMPILATION_UNIT);
parser.setSource(iCompilationUnit);
parser.setResolveBindings(true);
CompilationUnit cu = (CompilationUnit) parser.createAST(null);
//Get compiler error using eclipse quick fix
for (IProblem iProblem : cu.getProblems()) {
//If it is an error
if (iProblem.isError()) {
int offset = iProblem.getSourceStart();
int length = iProblem.getSourceEnd() + 1 - offset;
IInvocationContext context = new AssistContext(iUnit , offset, length);
ProblemLocation problem = new ProblemLocation(iProblem);
//Extract Eclipse quick fix proposal.
ArrayList<IJavaCompletionProposal> proposals = new ArrayList<IJavaCompletionProposal>();
JavaCorrectionProcessor.collectCorrections(context, new IProblemLocation[] { problem }, proposals);
}}
最后我们在 proposals 变量中有 eclipse 提案列表。该程序运行良好,直到今天我遇到了一个新的编译器错误。如果我有以下示例作为输入程序:
class Test {
public void foo(){
Scanner in = new Scanner(System.in);
}
}
当它想要考虑第 Scanner in = new Scanner(System.in);
行的提案时,我得到以下 运行 时间错误
!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jdt.ui".
!STACK 1
Java Model Exception: Java Model Status [[Working copy] Test.java [in src [in SortExample]]] does not exist] at org.eclipse.jdt.internal.core.JavaElement.newJavaModelException(JavaElement.java:544)
我调试程序,发现问题发生在 collectCorrections 方法中 class JavaCorrectionProcessor.
public static IStatus collectCorrections(IInvocationContext context, IProblemLocation[] locations, Collection<IJavaCompletionProposal> proposals) {
ContributedProcessorDescriptor[] processors= getCorrectionProcessors();
SafeCorrectionCollector collector= new SafeCorrectionCollector(context, proposals);
for (int i= 0; i < processors.length; i++) {
ContributedProcessorDescriptor curr= processors[i];
IProblemLocation[] handled= getHandledProblems(locations, curr);
if (handled != null) {
collector.setProblemLocations(handled);
collector.process(curr);
}
}
return collector.getStatus();
}
重要提示: 我只针对特定类型的编译器错误收到此错误。例如,如果此行 i = 0 发生编译器错误,而 i 未定义,那么我会得到 unresolve 变量,并且程序会建议一个没有任何问题的解决方案。因此,我认为刷新部分应该可以正常工作,否则我应该得到程序中所有类型的编译器错误的错误。
我发现了问题。它的发生是因为 运行 时间错误 Java Model Status [[Working copy] Test.java [in src [in SortExample]]] does not exist]
中所示的工作副本。在我评论以下几行之后,一切正常。
WorkingCopyOwner owner = iUnit.getOwner();
iUnit = (owner == null ? iUnit.getWorkingCopy(null) : iUnit.getWorkingCopy(owner, null));
正如我所说,问题是由于某些特定错误而发生的。例如,当我使用整数变量 (i = 0) 而不定义它时,它不会发生,但是当 class 的实体在第二个 class 中使用时,它会发生,但它的导入语句是没有添加到第二个 class。
发生这种情况是因为使用过的 class 没有添加到工作副本中,当 Eclipse 想要找到使用过的 class 时,因为它不在工作副本中,它会抛出异常。但是,对于第一个错误 (i = 0) 没有任何反应,因为所有信息都可以从工作副本中获取。
我实现了一个 java 插件,能够使用 Eclipse 快速修复修复计算机错误。要访问最新版本的输入程序,首先刷新在eclipse中打开的项目,然后调用eclipse quick fix来修复现有的编译器错误。 (输入程序重新更改,我需要先刷新项目,然后提取最新版本。)下面的代码(作为一种方法提供)被实现来完成所描述的工作。
//Get workspace
IWorkspace workspace = ResourcesPlugin.getWorkspace();
IWorkspaceRoot root = workspace.getRoot();
//Get project
IProject project = root.getProject(projectName);
//Referesh the project
project.refreshLocal(IResource.DEPTH_INFINITE, null);
IJobManager jobManager = Job.getJobManager();
jobManager.wakeUp(ResourcesPlugin.FAMILY_AUTO_BUILD);
jobManager.join(ResourcesPlugin.FAMILY_AUTO_BUILD, null);
IJavaProject javaProject = JavaCore.create(project);
//Get ICompilationUnit (classFullName is the full name of class that we need to find its compiler error)
IType iType = javaProject.findType(classFullName);
ICompilationUnit iUnit = iType.getCompilationUnit();
/** Create working copy. It is safer to work with a copy.*/
WorkingCopyOwner owner = iUnit.getOwner();
iUnit = (owner == null ? iUnit.getWorkingCopy(null) : iUnit.getWorkingCopy(owner, null));
//Get compilation Unit
ASTParser parser = ASTParser.newParser(AST.JLS8);
parser.setKind(ASTParser.K_COMPILATION_UNIT);
parser.setSource(iCompilationUnit);
parser.setResolveBindings(true);
CompilationUnit cu = (CompilationUnit) parser.createAST(null);
//Get compiler error using eclipse quick fix
for (IProblem iProblem : cu.getProblems()) {
//If it is an error
if (iProblem.isError()) {
int offset = iProblem.getSourceStart();
int length = iProblem.getSourceEnd() + 1 - offset;
IInvocationContext context = new AssistContext(iUnit , offset, length);
ProblemLocation problem = new ProblemLocation(iProblem);
//Extract Eclipse quick fix proposal.
ArrayList<IJavaCompletionProposal> proposals = new ArrayList<IJavaCompletionProposal>();
JavaCorrectionProcessor.collectCorrections(context, new IProblemLocation[] { problem }, proposals);
}}
最后我们在 proposals 变量中有 eclipse 提案列表。该程序运行良好,直到今天我遇到了一个新的编译器错误。如果我有以下示例作为输入程序:
class Test {
public void foo(){
Scanner in = new Scanner(System.in);
}
}
当它想要考虑第 Scanner in = new Scanner(System.in);
!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jdt.ui".
!STACK 1
Java Model Exception: Java Model Status [[Working copy] Test.java [in src [in SortExample]]] does not exist] at org.eclipse.jdt.internal.core.JavaElement.newJavaModelException(JavaElement.java:544)
我调试程序,发现问题发生在 collectCorrections 方法中 class JavaCorrectionProcessor.
public static IStatus collectCorrections(IInvocationContext context, IProblemLocation[] locations, Collection<IJavaCompletionProposal> proposals) {
ContributedProcessorDescriptor[] processors= getCorrectionProcessors();
SafeCorrectionCollector collector= new SafeCorrectionCollector(context, proposals);
for (int i= 0; i < processors.length; i++) {
ContributedProcessorDescriptor curr= processors[i];
IProblemLocation[] handled= getHandledProblems(locations, curr);
if (handled != null) {
collector.setProblemLocations(handled);
collector.process(curr);
}
}
return collector.getStatus();
}
重要提示: 我只针对特定类型的编译器错误收到此错误。例如,如果此行 i = 0 发生编译器错误,而 i 未定义,那么我会得到 unresolve 变量,并且程序会建议一个没有任何问题的解决方案。因此,我认为刷新部分应该可以正常工作,否则我应该得到程序中所有类型的编译器错误的错误。
我发现了问题。它的发生是因为 运行 时间错误 Java Model Status [[Working copy] Test.java [in src [in SortExample]]] does not exist]
中所示的工作副本。在我评论以下几行之后,一切正常。
WorkingCopyOwner owner = iUnit.getOwner();
iUnit = (owner == null ? iUnit.getWorkingCopy(null) : iUnit.getWorkingCopy(owner, null));
正如我所说,问题是由于某些特定错误而发生的。例如,当我使用整数变量 (i = 0) 而不定义它时,它不会发生,但是当 class 的实体在第二个 class 中使用时,它会发生,但它的导入语句是没有添加到第二个 class。
发生这种情况是因为使用过的 class 没有添加到工作副本中,当 Eclipse 想要找到使用过的 class 时,因为它不在工作副本中,它会抛出异常。但是,对于第一个错误 (i = 0) 没有任何反应,因为所有信息都可以从工作副本中获取。