2015-06-09 49 views
1

我正在準備一個eclipse插件,用於檢查測試套件中的代碼質量(編譯器錯誤/警告/語法檢查由默認編譯器完成)。我們想告訴測試套件的開發者,如果測試代碼中有什麼錯誤,就像GOTO跳過標籤一樣,它可能會導致無限循環(測試套件非常陳舊,它們不是java或任何普通語言) 。如何在Eclipse編輯器中將活動文件的IFile處理程序獲得

我們想報告IMarker在特定的行和特定的消息警告(我已經在一些ArrayList中有兩條線&消息,現在我只需要把它們放在打開的文件上)。但我無法獲得打開文件的IFile處理程序(不在任何項目中,只是編輯器窗格中的活動選項卡)。

如何在Eclipse的編輯器窗格中獲取活動文件的IFile處理程序?

下面的代碼會導致異常:

IWorkbench wb = PlatformUI.getWorkbench(); 
IWorkbenchWindow win = wb.getActiveWorkbenchWindow(); 
IWorkbenchPage page = win.getActivePage(); 
IEditorPart editor = page.getActiveEditor(); 
IFileEditorInput iFileInput = (IFileEditorInput) editor.getEditorInput(); //exception is here 

控制檯輸出(例外):

java.lang.ClassCastException: org.eclipse.ui.ide.FileStoreEditorInput cannot be cast to org.eclipse.ui.IFileEditorInput 
at se.ericsson.ttcnplugin.handlers.AltHandler.execute(AltHandler.java:45) 
at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293) 
at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476) 
at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508) 
at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169) 
at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241) 
at org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(CommandContributionItem.java:820) 
at org.eclipse.ui.menus.CommandContributionItem.access$19(CommandContributionItem.java:806) 
at org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(CommandContributionItem.java:796) 
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) 
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258) 
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3540) 
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3161) 
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2640) 
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2604) 
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438) 
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671) 
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) 
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664) 
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) 
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) 
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) 
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) 
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) 
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) 
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 
at java.lang.reflect.Method.invoke(Method.java:597) 
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:620) 
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:575) 
at org.eclipse.equinox.launcher.Main.run(Main.java:1408) 
at org.eclipse.equinox.launcher.Main.main(Main.java:1384) 

回答

0

並非所有的編輯器實際上是在編輯IFile對象,有的可以編輯這不是在文件工作區。這些編輯器使用不基於IFileEditorEditor的編輯器輸入。

如果你的輸入是FileStoreEditorInput,它實現了IURIEditorInput,它只是給你正在編輯的文件的URI。

可以使用代碼類似下面,試圖從編輯器輸入得到的IFile:

public static IFile getFileFromEditorInput(IEditorInput input) 
{ 
    if (input == null) 
    return null; 

    if (input instanceof IFileEditorInput) 
    return ((IFileEditorInput)input).getFile(); 

    IPath path = getPathFromEditorInput(input); 
    if (path == null) 
    return null; 

    return ResourcesPlugin.getWorkspace().getRoot().getFile(path); 
} 


public static IPath getPathFromEditorInput(IEditorInput input) 
{ 
    if (input instanceof ILocationProvider) 
    return ((ILocationProvider)input).getPath(input); 

    if (input instanceof IURIEditorInput) 
    { 
    URI uri = ((IURIEditorInput)input).getURI(); 
    if (uri != null) 
     { 
     IPath path = URIUtil.toPath(uri); 
     if (path != null) 
      return path; 
     } 
    } 

    return null; 
} 

返回如果未將編輯器編輯工作區文件IFile可以爲空。

+0

編輯器編輯不從工作區文件,而是通過文件打開「文件 - >打開文件」 –

+1

如果不是在工作區中沒有'IFile',你不能使用標記或類似的東西。 –

+0

的,這是我我以前不知道我一直在尋找:) 創建具有IMarker及的IFile,許多THX格雷格項目幫助的答案! –

相關問題