use of org.eclipse.tracecompass.tmf.core.exceptions.TmfTraceException in project tracecompass by tracecompass.
the class XYChartViewTest method before.
/**
* Before the test is run, make the view see the items.
*
* Reset the perspective and close all the views.
*
* @throws TmfTraceException
* could not load a trace
*/
@Before
public void before() throws TmfTraceException {
fBot = new SWTWorkbenchBot();
fBot.closeAllEditors();
for (SWTBotView viewBot : fBot.views()) {
viewBot.close();
}
fTrace = new TmfTraceStub() {
@Override
@NonNull
public String getName() {
return "Stub";
}
@Override
public TmfContext seekEvent(ITmfLocation location) {
return new TmfContext();
}
};
fTrace.setStartTime(TmfTimestamp.fromNanos(0));
fTrace.setEndTime(TmfTimestamp.fromNanos(180));
TmfTraceStub trace = fTrace;
trace.initialize(null, "", ITmfEvent.class);
assertNotNull(trace);
// Register trace to trace manager
UIThreadRunnable.syncExec(() -> TmfSignalManager.dispatchSignal(new TmfTraceOpenedSignal(this, trace, null)));
// Open view
SWTBotUtils.openView(XYChartViewStub.ID);
fViewBot = fBot.viewById(XYChartViewStub.ID);
fViewBot.show();
TmfChartView viewPart = (TmfChartView) fViewBot.getViewReference().getView(true);
fXyViewer = viewPart.getChartViewer();
// Wait till SWT chart is constructed
fViewBot.bot().waitUntil(new DefaultCondition() {
@Override
public boolean test() throws Exception {
return fXyViewer.getSwtChart() != null;
}
@Override
public String getFailureMessage() {
return "SWT Chart is null";
}
});
// Wait for trace to be loaded
resetTimeRange();
}
use of org.eclipse.tracecompass.tmf.core.exceptions.TmfTraceException in project tracecompass by tracecompass.
the class SynchronizeTracesHandler method execute.
// ------------------------------------------------------------------------
// Execution
// ------------------------------------------------------------------------
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
// Check if we are closing down
IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
if (window == null) {
return null;
}
// Get the selection
ISelection selection = HandlerUtil.getCurrentSelectionChecked(event);
// Make sure selection contains only traces
fSelection = null;
final ArrayList<TmfTraceElement> tl = new ArrayList<>();
final ArrayList<TmfExperimentElement> uiexperiment = new ArrayList<>();
if (selection instanceof TreeSelection) {
fSelection = (TreeSelection) selection;
Iterator<Object> iterator = fSelection.iterator();
while (iterator.hasNext()) {
Object element = iterator.next();
if (element instanceof TmfExperimentElement) {
TmfExperimentElement exp = (TmfExperimentElement) element;
uiexperiment.add(exp);
for (TmfTraceElement trace : exp.getTraces()) {
tl.add(trace);
}
}
}
}
if ((uiexperiment.size() != 1) || (tl.size() < 2)) {
TraceUtils.displayErrorMsg(Messages.SynchronizeTracesHandler_Title, Messages.SynchronizeTracesHandler_WrongTraceNumber);
return null;
}
fExperiment = uiexperiment.get(0);
fRootNode = null;
fRootNodeId = null;
// Fire the Select Root Node Wizard
IWorkbenchWindow workbenchWindow = HandlerUtil.getActiveWorkbenchWindowChecked(event);
Shell shell = workbenchWindow.getShell();
SelectRootNodeWizard wizard = new SelectRootNodeWizard(fExperiment);
WizardDialog dialog = new WizardDialog(shell, wizard);
int returnValue = dialog.open();
if (returnValue == Window.CANCEL) {
return null;
}
fRootNode = wizard.getRootNode();
Thread thread = new Thread() {
@Override
public void run() {
final ITmfTrace[] traces = new ITmfTrace[tl.size()];
final TmfExperimentElement exp = uiexperiment.get(0);
for (int i = 0; i < tl.size(); i++) {
TmfTraceElement traceElement = tl.get(i).getElementUnderTraceFolder();
ITmfTrace trace = traceElement.instantiateTrace();
ITmfEvent traceEvent = traceElement.instantiateEvent();
if (trace == null) {
TraceUtils.displayErrorMsg(Messages.SynchronizeTracesHandler_Title, Messages.SynchronizeTracesHandler_WrongType + traceElement.getName());
for (int j = 0; j < i; j++) {
traces[j].dispose();
}
return;
}
try {
trace.initTrace(traceElement.getResource(), traceElement.getResource().getLocation().toOSString(), traceEvent.getClass());
TmfTraceManager.refreshSupplementaryFiles(trace);
} catch (TmfTraceException e) {
TraceUtils.displayErrorMsg(Messages.SynchronizeTracesHandler_Title, Messages.SynchronizeTracesHandler_InitError + CR + CR + e);
trace.dispose();
for (int j = 0; j < i; j++) {
traces[j].dispose();
}
return;
}
if (traceElement.getElementPath().equals(fRootNode.getElementPath())) {
fRootNodeId = trace.getHostId();
}
traces[i] = trace;
}
/*
* FIXME Unlike traces, there is no instanceExperiment, so we
* call this function here alone. Maybe it would be better to do
* this on experiment's element constructor?
*/
exp.refreshSupplementaryFolder();
final TmfExperiment experiment = new TmfExperiment(ITmfEvent.class, exp.getName(), traces, TmfExperiment.DEFAULT_INDEX_PAGE_SIZE, exp.getResource());
final SynchronizationAlgorithm syncAlgo = experiment.synchronizeTraces(true);
syncAlgo.setRootNode(fRootNodeId);
TmfTraceManager.refreshSupplementaryFiles(experiment);
Display.getDefault().asyncExec(() -> {
List<TmfTraceElement> tracesToAdd = new ArrayList<>();
List<TmfTraceElement> tracesToRemove = new ArrayList<>();
/*
* For each trace in the experiment, if there is a
* transform equation, copy the original trace, so that
* a new state system will be generated with sync time.
*/
for (TmfTraceElement traceel : tl) {
/* Find the original trace */
TmfTraceElement origtrace = traceel.getElementUnderTraceFolder();
/*
* Find the trace corresponding to this element in
* the experiment
*/
ITmfTrace expTrace = null;
for (ITmfTrace t : experiment.getTraces()) {
if (t.getResource().equals(origtrace.getResource())) {
expTrace = t;
break;
}
}
if ((expTrace != null) && syncAlgo.isTraceSynced(expTrace.getHostId())) {
/*
* Make sure a trace with the new name does not
* exist
*/
StringBuilder newname = new StringBuilder(traceel.getName());
IContainer parentFolder = origtrace.getResource().getParent();
boolean traceexists;
do {
traceexists = false;
newname.append('_');
if (parentFolder.findMember(newname.toString()) != null) {
traceexists = true;
}
} while (traceexists);
/* Copy the original trace */
TmfTraceElement newtrace = origtrace.copy(newname.toString());
if (newtrace == null) {
TraceUtils.displayErrorMsg(Messages.SynchronizeTracesHandler_Title, Messages.SynchronizeTracesHandler_Error + CR + CR + String.format(Messages.SynchronizeTracesHandler_CopyProblem, origtrace.getName()));
continue;
}
/*
* Instantiate the new trace and set its sync
* formula
*/
ITmfTrace trace1 = newtrace.instantiateTrace();
ITmfEvent traceEvent = newtrace.instantiateEvent();
try {
trace1.initTrace(newtrace.getResource(), newtrace.getResource().getLocation().toOSString(), traceEvent.getClass());
} catch (TmfTraceException e1) {
Activator.getDefault().logError(String.format(Messages.SynchronizeTracesHandler_ErrorSynchingForTrace, exp.getName(), traceel.getName()), e1);
TraceUtils.displayErrorMsg(Messages.SynchronizeTracesHandler_Title, Messages.SynchronizeTracesHandler_Error + CR + CR + e1.getMessage());
}
trace1.setTimestampTransform(syncAlgo.getTimestampTransform(expTrace));
TmfTraceManager.refreshSupplementaryFiles(trace1);
trace1.dispose();
tracesToAdd.add(newtrace);
tracesToRemove.add(traceel);
}
}
experiment.dispose();
// Move synchronization file temporarily so that
// it doesn't get deleted by the experiment change
IFolder tmpFolder = exp.getTraceSupplementaryFolder(exp.getName() + '.' + experiment.getSynchronizationFolder(false));
IResource syncFile = null;
for (IResource resource : exp.getSupplementaryResources()) {
if (resource.getName().equals(experiment.getSynchronizationFolder(false))) {
try {
resource.move(tmpFolder.getFullPath(), false, null);
syncFile = resource;
break;
} catch (CoreException e2) {
Activator.getDefault().logError(String.format(Messages.SynchronizeTracesHandler_ErrorSynchingExperiment, exp.getName()), e2);
}
}
}
for (TmfTraceElement trace2 : tracesToRemove) {
try {
exp.removeTrace(trace2);
} catch (CoreException e3) {
Activator.getDefault().logError(String.format(Messages.SynchronizeTracesHandler_ErrorSynchingForTrace, exp.getName(), trace2.getName()), e3);
TraceUtils.displayErrorMsg(Messages.SynchronizeTracesHandler_Title, Messages.SynchronizeTracesHandler_Error + CR + CR + e3.getMessage());
}
}
for (TmfTraceElement trace3 : tracesToAdd) {
exp.addTrace(trace3);
}
// Move synchronization file back
if (tmpFolder.exists() && syncFile != null) {
try {
tmpFolder.move(syncFile.getFullPath(), false, null);
} catch (CoreException e4) {
Activator.getDefault().logError(String.format(Messages.SynchronizeTracesHandler_ErrorSynchingExperiment, exp.getName()), e4);
}
}
});
}
};
thread.start();
return null;
}
use of org.eclipse.tracecompass.tmf.core.exceptions.TmfTraceException in project tracecompass by tracecompass.
the class BtfTrace method initTrace.
@Override
public void initTrace(IResource resource, String path, Class<? extends ITmfEvent> type) throws TmfTraceException {
super.initTrace(resource, path, type);
fFile = new File(path);
try {
// $NON-NLS-1$
fFileInput = new RandomAccessFile(fFile, "r");
parseHeader(fFileInput);
} catch (IOException e) {
throw new TmfTraceException(e.getMessage(), e);
}
}
use of org.eclipse.tracecompass.tmf.core.exceptions.TmfTraceException in project tracecompass by tracecompass.
the class PcapTrace method initTrace.
@Override
@NonNullByDefault({ DefaultLocation.TYPE_ARGUMENT })
public synchronized void initTrace(@Nullable IResource resource, @Nullable String path, @Nullable Class<? extends ITmfEvent> type) throws TmfTraceException {
super.initTrace(resource, path, type);
if (path == null) {
// $NON-NLS-1$
throw new TmfTraceException("No path has been specified.");
}
Path filePath = checkNotNull(Paths.get(path));
try {
fPcapFile = PcapHelper.getPcapFile(filePath);
} catch (IOException | BadPcapFileException e) {
throw new TmfTraceException(e.getMessage(), e);
}
}
use of org.eclipse.tracecompass.tmf.core.exceptions.TmfTraceException in project tracecompass by tracecompass.
the class Uml2SDTestFacility method setupTrace.
private TmfTraceStub setupTrace(final ITmfEventParser parser) {
try {
// Create test trace object
final URL location = FileLocator.find(FrameworkUtil.getBundle(this.getClass()), new Path("tracesets/sdEvents"), null);
final File test = new File(FileLocator.toFileURL(location).toURI());
return new TmfTraceStub(test.getPath(), 500, true, parser);
} catch (final TmfTraceException e) {
e.printStackTrace();
throw new RuntimeException(e);
} catch (final URISyntaxException e) {
e.printStackTrace();
throw new RuntimeException(e);
} catch (final IOException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
Aggregations