LocalDBOpener.java
Go to the documentation of this file.00001 package edu.rice.cs.hpc.traceviewer.db.local;
00002
00003 import org.eclipse.jface.action.IStatusLineManager;
00004 import org.eclipse.swt.widgets.Shell;
00005 import org.eclipse.ui.IWorkbenchWindow;
00006
00007 import edu.rice.cs.hpc.data.experiment.InvalExperimentException;
00008 import edu.rice.cs.hpc.traceviewer.db.AbstractDBOpener;
00009 import edu.rice.cs.hpc.traceviewer.spaceTimeData.SpaceTimeDataController;
00010
00011
00012
00013
00014
00015
00016
00017
00018 public class LocalDBOpener extends AbstractDBOpener {
00019
00020 final private String directory;
00021
00022
00023
00024
00025
00026
00027 public LocalDBOpener(String directory)
00028 {
00029 this.directory = directory;
00030 }
00031
00032
00033 @Override
00034
00035
00036
00037
00038
00039 public SpaceTimeDataController openDBAndCreateSTDC(IWorkbenchWindow window,
00040 final IStatusLineManager statusMgr) throws InvalExperimentException, Exception {
00041
00042 final Shell shell = window.getShell();
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055 statusMgr.setMessage("Opening trace data...");
00056 shell.update();
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070 SpaceTimeDataControllerLocal stdc = new SpaceTimeDataControllerLocal(
00071 window, directory);
00072
00073 if (stdc.setupTrace(window, statusMgr)) {
00074 return stdc;
00075 }
00076 return null;
00077 }
00078
00079
00080 @Override
00081 public void end() {
00082
00083
00084 }
00085 }
00086
00087