java - 向 RCP 中的作业添加进度条

标签 java eclipse-plugin eclipse-rcp rcp jobs

我在 RCp 应用程序中有一项耗时的工作,其中我读取一个大数据库并将其保存在文件中。我在单独的线程中运行此作业,以便我的应用程序的 UI 不会被阻止,但我不知道如何向此任务添加进度条

我的代码:

public class MirrorFeatureModel extends Job {

protected class MutexRule implements ISchedulingRule {
    public boolean isConflicting(ISchedulingRule rule) {
         return rule == this;
      }
    public boolean contains(ISchedulingRule rule) {
         return rule == this;
      }
}

private String source;
private String template;
private String target;

public MirrorFeatureModel(String name) {
    super(name);
}

public MirrorFeatureModel(String source, String template, String target){
    super("Mirroring SWA Model");
    this.source = source;
    this.template = template;
    this.target = target;
}

public void run() {
    this.schedule();
}


@Override
protected IStatus run(IProgressMonitor monitor)  {

    ILog logView = Activator.getDefault().getLog();
    String connectionString = this.source;
    String emptyEAP = this.template;
    String target = this.target;

    try{

        monitor.beginTask("Copying swa model to local", 1);
        new Mirror(connectionString, emptyEAP,target).run();
        monitor.worked(1);

    }catch(final Exception e) {

        logView.log(new Status(Status.ERROR, null , "Failed to create local SAM instance", e));         


        Display.getDefault().asyncExec(new Runnable() {

            @Override
            public void run() {
                MessageDialog.openError(PlatformUI.getWorkbench().getDisplay().getActiveShell(), "Failed to create local SAM instance", e.getMessage());
            }

        });
        return Status.CANCEL_STATUS;
    }       

    return Status.OK_STATUS;
  }


}

Mirror.run()方法

 public void run(IProgressMonitor monitor) {

    try{

        if (monitor != null)
            monitor.subTask("Creating directory for eap file");

        File tempTarget=File.createTempFile("eap-mirror", "eap");           
        if (monitor != null)
            monitor.worked(1);  

        try {

            if (monitor != null)
                monitor.subTask("Establising connection");

            this.source=DriverManager.getConnection(com.intel.imc.swa.easql.EaDbStringParser.eaDbStringToJdbc(sourceString));
            this.source.setReadOnly(true);

            if(monitor != null) 
                monitor.worked(1);

            FileUtils.copyFile(new File(templateFileString), tempTarget);

            if (monitor != null)
                monitor.subTask("Opening database"); 

            this.target=Database.open(tempTarget,false,false);

            if(monitor != null)     
                monitor.worked(1);

            if (monitor != null)
                monitor.subTask("Mirroring tables"); 

            Collection<String> tables=selectTables(source);
            long time=System.currentTimeMillis();
            for (String tableName : tables) {
                long tTime=System.currentTimeMillis();
                Table table=target.getTable(tableName);
                System.out.print("Mirroring table "+tableName+"...");
                table.setOverrideAutonumber(true);
                copyTable(table, source, target);
                    System.out.println(" took "+(System.currentTimeMillis()-tTime));
            }

            System.out.println("Done. Overall time: "+(System.currentTimeMillis()-time));
            if(monitor != null)     
                monitor.worked(1); 

        } catch (SQLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
    }
}

如何在此类中添加进度条来显示这项工作的进度

谢谢

最佳答案

通常作业会在进度 View 和主窗口底部的状态行中显示进度指示器。

如果您在 schedule() 之前调用 setUser(true),那么当作业运行超过几秒时,作业将显示一个弹出进度对话框。

要显示作业进度,您必须在 beginTask 调用中指定工作总量

monitor.beginTask("...", total work);

然后每次完成部分工作时都必须调用 monitor.worked(xxx)

关于java - 向 RCP 中的作业添加进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29897022/

相关文章:

java - 选择编辑部分时,GEF : Is EditPart. PerformRequest(Request) 未调用?

java - 使用 SWT 重命名 TreeViewer 节点

java - 未根据 Eclipse RCP 启动时的首选项设置代理

java - NullPointerException - 位置 - getLatitude() 方法

Java - 使用多种方法时的性能考虑

java - 构建 apk 时出错 'libraries must use the exact same version specification'

java - JFace TableViewer 与 TreeViewer - 性能

java - SentimentCoreAnnotations.AnnotatedTree 无法解析为类型

eclipse - Eclipse 插件更新错误日志在哪里?

java - Eclipse RCP : move createPartControl into background