tmf: Fix thread id of Call Stack view thread entries
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / callstack / CallStackView.java
CommitLineData
e8251298 1/*******************************************************************************
d2fb9e0f 2 * Copyright (c) 2013, 2016 Ericsson and others.
e8251298
PT
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Patrick Tasse - Initial API and implementation
fec1ac0b 11 * Bernd Hufmann - Updated signal handling
41d9ce5b 12 * Marc-Andre Laperle - Map from binary file
e8251298
PT
13 *******************************************************************************/
14
2bdf0193 15package org.eclipse.tracecompass.tmf.ui.views.callstack;
e8251298
PT
16
17import java.util.ArrayList;
26c33ee2 18import java.util.Collections;
46cc1ade 19import java.util.Comparator;
e8251298
PT
20import java.util.HashMap;
21import java.util.Iterator;
22import java.util.List;
52974e38 23import java.util.Map;
e8251298
PT
24
25import org.eclipse.core.runtime.IProgressMonitor;
1d83ed07 26import org.eclipse.jdt.annotation.NonNull;
50659279 27import org.eclipse.jdt.annotation.Nullable;
e8251298 28import org.eclipse.jface.action.Action;
d2fb9e0f 29import org.eclipse.jface.action.GroupMarker;
e8251298 30import org.eclipse.jface.action.IAction;
90bb3a0c 31import org.eclipse.jface.action.IMenuManager;
e8251298
PT
32import org.eclipse.jface.action.IToolBarManager;
33import org.eclipse.jface.action.Separator;
d90ae2a5 34import org.eclipse.jface.dialogs.IDialogConstants;
46cc1ade
PT
35import org.eclipse.jface.dialogs.IDialogSettings;
36import org.eclipse.jface.resource.ImageDescriptor;
e8251298
PT
37import org.eclipse.jface.util.IPropertyChangeListener;
38import org.eclipse.jface.util.PropertyChangeEvent;
39import org.eclipse.jface.viewers.DoubleClickEvent;
40import org.eclipse.jface.viewers.IDoubleClickListener;
e8251298
PT
41import org.eclipse.jface.viewers.ISelection;
42import org.eclipse.jface.viewers.IStructuredSelection;
e8251298 43import org.eclipse.swt.SWT;
e8251298
PT
44import org.eclipse.swt.events.MouseAdapter;
45import org.eclipse.swt.events.MouseEvent;
46import org.eclipse.swt.graphics.Image;
47import org.eclipse.swt.widgets.Composite;
48import org.eclipse.swt.widgets.Display;
2bdf0193
AM
49import org.eclipse.tracecompass.internal.tmf.ui.Activator;
50import org.eclipse.tracecompass.internal.tmf.ui.ITmfImageConstants;
51import org.eclipse.tracecompass.internal.tmf.ui.Messages;
e894a508 52import org.eclipse.tracecompass.statesystem.core.ITmfStateSystem;
1dd75589 53import org.eclipse.tracecompass.statesystem.core.StateSystemUtils;
e894a508
AM
54import org.eclipse.tracecompass.statesystem.core.exceptions.AttributeNotFoundException;
55import org.eclipse.tracecompass.statesystem.core.exceptions.StateSystemDisposedException;
56import org.eclipse.tracecompass.statesystem.core.exceptions.StateValueTypeException;
57import org.eclipse.tracecompass.statesystem.core.exceptions.TimeRangeException;
58import org.eclipse.tracecompass.statesystem.core.interval.ITmfStateInterval;
59import org.eclipse.tracecompass.statesystem.core.statevalue.ITmfStateValue;
60import org.eclipse.tracecompass.statesystem.core.statevalue.ITmfStateValue.Type;
97c71024 61import org.eclipse.tracecompass.tmf.core.signal.TmfSelectionRangeUpdatedSignal;
17a54620 62import org.eclipse.tracecompass.tmf.core.signal.TmfSignalHandler;
d90ae2a5 63import org.eclipse.tracecompass.tmf.core.signal.TmfTraceClosedSignal;
2bdf0193 64import org.eclipse.tracecompass.tmf.core.signal.TmfTraceSelectedSignal;
17a54620 65import org.eclipse.tracecompass.tmf.core.signal.TmfWindowRangeUpdatedSignal;
2bdf0193 66import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
2bdf0193 67import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimeRange;
b2c971ec 68import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestamp;
e4bbed4b 69import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestampDelta;
2bdf0193 70import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
b8585c7c 71import org.eclipse.tracecompass.tmf.core.trace.TmfTraceUtils;
2bdf0193 72import org.eclipse.tracecompass.tmf.ui.editors.ITmfTraceEditor;
d90ae2a5
RK
73import org.eclipse.tracecompass.tmf.ui.symbols.ISymbolProvider;
74import org.eclipse.tracecompass.tmf.ui.symbols.ISymbolProviderPreferencePage;
75import org.eclipse.tracecompass.tmf.ui.symbols.SymbolProviderConfigDialog;
76import org.eclipse.tracecompass.tmf.ui.symbols.SymbolProviderManager;
ade0a3c5 77import org.eclipse.tracecompass.tmf.ui.views.timegraph.AbstractTimeGraphView;
2bdf0193 78import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.ITimeGraphTimeListener;
d8a230f8 79import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.TimeGraphContentProvider;
2bdf0193
AM
80import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.TimeGraphTimeEvent;
81import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.TimeGraphViewer;
82import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.ITimeEvent;
83import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.ITimeGraphEntry;
84import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.NullTimeEvent;
85import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.TimeEvent;
86import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.TimeGraphEntry;
87import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.widgets.TimeGraphControl;
88import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.widgets.TimeGraphSelection;
e8251298 89import org.eclipse.ui.IEditorPart;
d2fb9e0f 90import org.eclipse.ui.IWorkbenchActionConstants;
e8251298
PT
91
92/**
93 * Main implementation for the Call Stack view
94 *
95 * @author Patrick Tasse
e8251298 96 */
ade0a3c5 97public class CallStackView extends AbstractTimeGraphView {
e8251298
PT
98
99 // ------------------------------------------------------------------------
100 // Constants
101 // ------------------------------------------------------------------------
102
103 /** View ID. */
104 public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.callstack"; //$NON-NLS-1$
105
ade0a3c5 106 private static final String[] COLUMN_NAMES = new String[] {
e8251298
PT
107 Messages.CallStackView_FunctionColumn,
108 Messages.CallStackView_DepthColumn,
109 Messages.CallStackView_EntryTimeColumn,
110 Messages.CallStackView_ExitTimeColumn,
111 Messages.CallStackView_DurationColumn
112 };
113
ade0a3c5
PT
114 private static final String[] FILTER_COLUMN_NAMES = new String[] {
115 Messages.CallStackView_ThreadColumn
52974e38
PT
116 };
117
26c33ee2
PT
118 /** Timeout between updates in the build thread in ms */
119 private static final long BUILD_UPDATE_TIMEOUT = 500;
120
52974e38
PT
121 // Fraction of a function duration to be added as spacing
122 private static final double SPACING_RATIO = 0.01;
123
e8251298
PT
124 private static final Image THREAD_IMAGE = Activator.getDefault().getImageFromPath("icons/obj16/thread_obj.gif"); //$NON-NLS-1$
125 private static final Image STACKFRAME_IMAGE = Activator.getDefault().getImageFromPath("icons/obj16/stckframe_obj.gif"); //$NON-NLS-1$
126
41d9ce5b 127 private static final String IMPORT_BINARY_ICON_PATH = "icons/obj16/binaries_obj.gif"; //$NON-NLS-1$
5da83da5 128
46cc1ade
PT
129 private static final ImageDescriptor SORT_BY_NAME_ICON = Activator.getDefault().getImageDescripterFromPath("icons/etool16/sort_alpha.gif"); //$NON-NLS-1$
130 private static final ImageDescriptor SORT_BY_NAME_REV_ICON = Activator.getDefault().getImageDescripterFromPath("icons/etool16/sort_alpha_rev.gif"); //$NON-NLS-1$
131 private static final ImageDescriptor SORT_BY_ID_ICON = Activator.getDefault().getImageDescripterFromPath("icons/etool16/sort_num.gif"); //$NON-NLS-1$
132 private static final ImageDescriptor SORT_BY_ID_REV_ICON = Activator.getDefault().getImageDescripterFromPath("icons/etool16/sort_num_rev.gif"); //$NON-NLS-1$
133 private static final ImageDescriptor SORT_BY_TIME_ICON = Activator.getDefault().getImageDescripterFromPath("icons/etool16/sort_time.gif"); //$NON-NLS-1$
134 private static final ImageDescriptor SORT_BY_TIME_REV_ICON = Activator.getDefault().getImageDescripterFromPath("icons/etool16/sort_time_rev.gif"); //$NON-NLS-1$
135 private static final String SORT_OPTION_KEY = "sort.option"; //$NON-NLS-1$
bac9c0df
MK
136
137 private enum SortOption {
138 BY_NAME, BY_NAME_REV, BY_ID, BY_ID_REV, BY_TIME, BY_TIME_REV
139 }
140
ade0a3c5
PT
141 private @NonNull SortOption fSortOption = SortOption.BY_NAME;
142 private @NonNull Comparator<ITimeGraphEntry> fThreadComparator = new ThreadNameComparator(false);
46cc1ade
PT
143 private Action fSortByNameAction;
144 private Action fSortByIdAction;
145 private Action fSortByTimeAction;
146
e8251298
PT
147 // ------------------------------------------------------------------------
148 // Fields
149 // ------------------------------------------------------------------------
150
d90ae2a5 151 private final Map<ITmfTrace, ISymbolProvider> fSymbolProviders = new HashMap<>();
5da83da5 152
e8251298
PT
153 // The next event action
154 private Action fNextEventAction;
155
156 // The previous event action
157 private Action fPrevEventAction;
158
159 // The next item action
160 private Action fNextItemAction;
161
162 // The previous item action
163 private Action fPreviousItemAction;
164
41d9ce5b 165 // The action to import a binary file mapping */
d90ae2a5 166 private Action fConfigureSymbolsAction;
41d9ce5b 167
e8251298 168 // The saved time sync. signal used when switching off the pinning of a view
97c71024 169 private TmfSelectionRangeUpdatedSignal fSavedTimeSyncSignal;
e8251298 170
97c71024 171 // The saved window range signal used when switching off the pinning of
bac9c0df 172 // a view
97c71024 173 private TmfWindowRangeUpdatedSignal fSavedRangeSyncSignal;
e8251298
PT
174
175 // ------------------------------------------------------------------------
176 // Classes
177 // ------------------------------------------------------------------------
178
658e0268 179 private static class TraceEntry extends TimeGraphEntry {
60b4d44c
PT
180 public TraceEntry(String name, long startTime, long endTime) {
181 super(name, startTime, endTime);
182 }
183
184 @Override
185 public boolean hasTimeEvents() {
186 return false;
187 }
188 }
189
7f86b721
AM
190 private static class ProcessEntry extends TimeGraphEntry {
191
4ce4d8af
AM
192 private final int fProcessId;
193
194 public ProcessEntry(String name, int processId, long startTime, long endTime) {
7f86b721 195 super(name, startTime, endTime);
4ce4d8af
AM
196 fProcessId = processId;
197 }
198
199 public int getProcessId() {
200 return fProcessId;
7f86b721
AM
201 }
202
203 @Override
204 public boolean hasTimeEvents() {
205 return false;
206 }
207 }
208
658e0268 209 private static class ThreadEntry extends TimeGraphEntry {
da27e43a
PT
210 // The call stack quark
211 private final int fCallStackQuark;
50659279
AM
212 // The state system from which this entry comes
213 private final ITmfStateSystem fSS;
46cc1ade
PT
214 // The thread id
215 private final long fThreadId;
e8251298 216
46cc1ade 217 public ThreadEntry(ITmfStateSystem ss, String name, long threadId, int callStackQuark, long startTime, long endTime) {
60b4d44c 218 super(name, startTime, endTime);
da27e43a 219 fCallStackQuark = callStackQuark;
46cc1ade 220 fThreadId = threadId;
da27e43a 221 fSS = ss;
e8251298
PT
222 }
223
e8251298
PT
224 @Override
225 public boolean hasTimeEvents() {
226 return false;
227 }
228
da27e43a
PT
229 public int getCallStackQuark() {
230 return fCallStackQuark;
e8251298
PT
231 }
232
46cc1ade
PT
233 public long getThreadId() {
234 return fThreadId;
235 }
236
50659279
AM
237 @Nullable
238 public ITmfStateSystem getStateSystem() {
239 return fSS;
e8251298 240 }
e8251298
PT
241 }
242
ade0a3c5
PT
243 private class CallStackComparator implements Comparator<ITimeGraphEntry> {
244 @Override
245 public int compare(ITimeGraphEntry o1, ITimeGraphEntry o2) {
246 if (o1 instanceof ThreadEntry && o2 instanceof ThreadEntry) {
247 return fThreadComparator.compare(o1, o2);
4ce4d8af
AM
248 } else if (o1 instanceof ProcessEntry && o2 instanceof ProcessEntry) {
249 return Integer.compare(((ProcessEntry) o1).fProcessId, ((ProcessEntry) o2).fProcessId);
ade0a3c5
PT
250 }
251 return 0;
252 }
253 }
254
658e0268 255 private static class ThreadNameComparator implements Comparator<ITimeGraphEntry> {
46cc1ade 256 private boolean reverse;
bac9c0df 257
46cc1ade
PT
258 public ThreadNameComparator(boolean reverse) {
259 this.reverse = reverse;
260 }
bac9c0df 261
46cc1ade
PT
262 @Override
263 public int compare(ITimeGraphEntry o1, ITimeGraphEntry o2) {
264 return reverse ? o2.getName().compareTo(o1.getName()) :
bac9c0df 265 o1.getName().compareTo(o2.getName());
46cc1ade
PT
266 }
267 }
268
658e0268 269 private static class ThreadIdComparator implements Comparator<ITimeGraphEntry> {
46cc1ade 270 private boolean reverse;
bac9c0df 271
46cc1ade
PT
272 public ThreadIdComparator(boolean reverse) {
273 this.reverse = reverse;
274 }
bac9c0df 275
46cc1ade
PT
276 @Override
277 public int compare(ITimeGraphEntry o1, ITimeGraphEntry o2) {
278 ThreadEntry t1 = (ThreadEntry) o1;
279 ThreadEntry t2 = (ThreadEntry) o2;
280 return reverse ? Long.compare(t2.getThreadId(), t1.getThreadId()) :
bac9c0df 281 Long.compare(t1.getThreadId(), t2.getThreadId());
46cc1ade
PT
282 }
283 }
284
658e0268 285 private static class ThreadTimeComparator implements Comparator<ITimeGraphEntry> {
46cc1ade 286 private boolean reverse;
bac9c0df 287
46cc1ade
PT
288 public ThreadTimeComparator(boolean reverse) {
289 this.reverse = reverse;
290 }
bac9c0df 291
46cc1ade
PT
292 @Override
293 public int compare(ITimeGraphEntry o1, ITimeGraphEntry o2) {
294 return reverse ? Long.compare(o2.getStartTime(), o1.getStartTime()) :
bac9c0df 295 Long.compare(o1.getStartTime(), o2.getStartTime());
46cc1ade
PT
296 }
297 }
298
658e0268 299 private static class CallStackTreeLabelProvider extends TreeLabelProvider {
e8251298
PT
300
301 @Override
302 public Image getColumnImage(Object element, int columnIndex) {
303 if (columnIndex == 0) {
304 if (element instanceof ThreadEntry) {
305 return THREAD_IMAGE;
306 } else if (element instanceof CallStackEntry) {
307 CallStackEntry entry = (CallStackEntry) element;
308 if (entry.getFunctionName().length() > 0) {
309 return STACKFRAME_IMAGE;
310 }
311 }
312 }
313 return null;
314 }
315
316 @Override
317 public String getColumnText(Object element, int columnIndex) {
60b4d44c 318 if (element instanceof CallStackEntry) {
e8251298
PT
319 CallStackEntry entry = (CallStackEntry) element;
320 if (columnIndex == 0) {
321 return entry.getFunctionName();
52974e38
PT
322 } else if (columnIndex == 1 && entry.getFunctionName().length() > 0) {
323 int depth = entry.getStackLevel();
324 return Integer.toString(depth);
325 } else if (columnIndex == 2 && entry.getFunctionName().length() > 0) {
b2c971ec 326 ITmfTimestamp ts = TmfTimestamp.fromNanos(entry.getFunctionEntryTime());
52974e38
PT
327 return ts.toString();
328 } else if (columnIndex == 3 && entry.getFunctionName().length() > 0) {
b2c971ec 329 ITmfTimestamp ts = TmfTimestamp.fromNanos(entry.getFunctionExitTime());
52974e38
PT
330 return ts.toString();
331 } else if (columnIndex == 4 && entry.getFunctionName().length() > 0) {
60b4d44c 332 ITmfTimestamp ts = new TmfTimestampDelta(entry.getFunctionExitTime() - entry.getFunctionEntryTime(), ITmfTimestamp.NANOSECOND_SCALE);
52974e38 333 return ts.toString();
e8251298 334 }
60b4d44c
PT
335 } else if (element instanceof ITimeGraphEntry) {
336 if (columnIndex == 0) {
337 return ((ITimeGraphEntry) element).getName();
338 }
e8251298
PT
339 }
340 return ""; //$NON-NLS-1$
341 }
342
343 }
344
ade0a3c5 345 private class CallStackFilterContentProvider extends TimeGraphContentProvider {
e8251298 346 @Override
ade0a3c5
PT
347 public boolean hasChildren(Object element) {
348 if (element instanceof TraceEntry) {
349 return super.hasChildren(element);
e8251298 350 }
ade0a3c5 351 return false;
e8251298
PT
352 }
353
354 @Override
ade0a3c5
PT
355 public ITimeGraphEntry[] getChildren(Object parentElement) {
356 if (parentElement instanceof TraceEntry) {
357 return super.getChildren(parentElement);
e8251298 358 }
ade0a3c5 359 return new ITimeGraphEntry[0];
e8251298
PT
360 }
361 }
362
363 // ------------------------------------------------------------------------
364 // Constructors
365 // ------------------------------------------------------------------------
366
367 /**
368 * Default constructor
369 */
370 public CallStackView() {
ade0a3c5
PT
371 super(ID, new CallStackPresentationProvider());
372 ((CallStackPresentationProvider) getPresentationProvider()).setCallStackView(this);
373 setTreeColumns(COLUMN_NAMES);
374 setTreeLabelProvider(new CallStackTreeLabelProvider());
375 setEntryComparator(new CallStackComparator());
376 setFilterColumns(FILTER_COLUMN_NAMES);
377 setFilterContentProvider(new CallStackFilterContentProvider());
378 setFilterLabelProvider(new CallStackTreeLabelProvider());
e8251298
PT
379 }
380
381 // ------------------------------------------------------------------------
382 // ViewPart
383 // ------------------------------------------------------------------------
384
385 @Override
386 public void createPartControl(Composite parent) {
d2e4afa7 387 super.createPartControl(parent);
e8251298 388
ade0a3c5 389 getTimeGraphViewer().addTimeListener(new ITimeGraphTimeListener() {
e8251298
PT
390 @Override
391 public void timeSelected(TimeGraphTimeEvent event) {
ade0a3c5 392 synchingToTime(event.getBeginTime());
e8251298
PT
393 }
394 });
395
ade0a3c5 396 getTimeGraphCombo().getTreeViewer().addDoubleClickListener(new IDoubleClickListener() {
e8251298
PT
397 @Override
398 public void doubleClick(DoubleClickEvent event) {
399 Object selection = ((IStructuredSelection) event.getSelection()).getFirstElement();
400 if (selection instanceof CallStackEntry) {
401 CallStackEntry entry = (CallStackEntry) selection;
402 if (entry.getFunctionName().length() > 0) {
60b4d44c
PT
403 long entryTime = entry.getFunctionEntryTime();
404 long exitTime = entry.getFunctionExitTime();
405 long spacingTime = (long) ((exitTime - entryTime) * SPACING_RATIO);
406 entryTime -= spacingTime;
407 exitTime += spacingTime;
b2c971ec 408 TmfTimeRange range = new TmfTimeRange(TmfTimestamp.fromNanos(entryTime), TmfTimestamp.fromNanos(exitTime));
97c71024 409 broadcast(new TmfWindowRangeUpdatedSignal(CallStackView.this, range));
ade0a3c5 410 getTimeGraphViewer().setStartFinishTime(entryTime, exitTime);
60b4d44c 411 startZoomThread(entryTime, exitTime);
e8251298
PT
412 }
413 }
414 }
415 });
416
ade0a3c5 417 getTimeGraphViewer().getTimeGraphControl().addMouseListener(new MouseAdapter() {
e8251298
PT
418 @Override
419 public void mouseDoubleClick(MouseEvent e) {
ade0a3c5 420 TimeGraphControl timeGraphControl = getTimeGraphViewer().getTimeGraphControl();
e8251298
PT
421 ISelection selection = timeGraphControl.getSelection();
422 if (selection instanceof TimeGraphSelection) {
423 Object o = ((TimeGraphSelection) selection).getFirstElement();
424 if (o instanceof CallStackEvent) {
425 CallStackEvent event = (CallStackEvent) o;
426 long startTime = event.getTime();
427 long endTime = startTime + event.getDuration();
52974e38 428 long spacingTime = (long) ((endTime - startTime) * SPACING_RATIO);
e8251298
PT
429 startTime -= spacingTime;
430 endTime += spacingTime;
b2c971ec 431 TmfTimeRange range = new TmfTimeRange(TmfTimestamp.fromNanos(startTime), TmfTimestamp.fromNanos(endTime));
97c71024 432 broadcast(new TmfWindowRangeUpdatedSignal(CallStackView.this, range));
ade0a3c5 433 getTimeGraphViewer().setStartFinishTime(startTime, endTime);
e8251298
PT
434 startZoomThread(startTime, endTime);
435 }
436 }
437 }
438 });
439
e8251298 440 contributeToActionBars();
46cc1ade 441 loadSortOption();
e8251298
PT
442
443 IEditorPart editor = getSite().getPage().getActiveEditor();
444 if (editor instanceof ITmfTraceEditor) {
445 ITmfTrace trace = ((ITmfTraceEditor) editor).getTrace();
446 if (trace != null) {
447 traceSelected(new TmfTraceSelectedSignal(this, trace));
448 }
449 }
450 }
451
e8251298 452 /**
97c71024 453 * Handler for the selection range signal.
e8251298
PT
454 *
455 * @param signal
456 * The incoming signal
97c71024 457 * @since 1.0
e8251298 458 */
ade0a3c5 459 @Override
e8251298 460 @TmfSignalHandler
97c71024 461 public void selectionRangeUpdated(final TmfSelectionRangeUpdatedSignal signal) {
e8251298 462
97c71024 463 fSavedTimeSyncSignal = isPinned() ? new TmfSelectionRangeUpdatedSignal(signal.getSource(), signal.getBeginTime(), signal.getEndTime()) : null;
e8251298 464
ade0a3c5 465 if (signal.getSource() == this || getTrace() == null || isPinned()) {
e8251298
PT
466 return;
467 }
16801c72
MK
468 final long beginTime = signal.getBeginTime().toNanos();
469 final long endTime = signal.getEndTime().toNanos();
e8251298
PT
470 Display.getDefault().asyncExec(new Runnable() {
471 @Override
472 public void run() {
ade0a3c5 473 if (getTimeGraphCombo().isDisposed()) {
e8251298
PT
474 return;
475 }
0fcf3b09 476 if (beginTime == endTime) {
ade0a3c5 477 getTimeGraphViewer().setSelectedTime(beginTime, true);
0fcf3b09 478 } else {
ade0a3c5 479 getTimeGraphViewer().setSelectionRange(beginTime, endTime, true);
0fcf3b09 480 }
26c33ee2 481 synchingToTime(beginTime);
ade0a3c5 482 startZoomThread(getTimeGraphViewer().getTime0(), getTimeGraphViewer().getTime1());
7f86b721
AM
483 List<TimeGraphEntry> traceEntries = getEntryList(getTrace());
484 if (traceEntries == null) {
e8251298
PT
485 return;
486 }
ade0a3c5 487 TimeGraphViewer viewer = getTimeGraphViewer();
7f86b721
AM
488 for (TimeGraphEntry traceEntry : traceEntries) {
489 for (ITimeGraphEntry processEntry : traceEntry.getChildren()) {
490 for (ITimeGraphEntry aThreadEntry : processEntry.getChildren()) {
491 ThreadEntry threadEntry = (ThreadEntry) aThreadEntry;
492 ITmfStateSystem ss = threadEntry.getStateSystem();
493 if (ss == null || beginTime < ss.getStartTime() || beginTime > ss.getCurrentEndTime()) {
494 continue;
495 }
496 try {
497 int quark = threadEntry.getCallStackQuark();
498 ITmfStateInterval stackInterval = ss.querySingleState(beginTime, quark);
499 if (beginTime == stackInterval.getStartTime()) {
500 int stackLevel = stackInterval.getStateValue().unboxInt();
501 ITimeGraphEntry selectedEntry = threadEntry.getChildren().get(Math.max(0, stackLevel - 1));
502 getTimeGraphCombo().setSelection(selectedEntry);
503 viewer.getTimeGraphControl().fireSelectionChanged();
504 break;
505 }
506 } catch (AttributeNotFoundException | TimeRangeException | StateSystemDisposedException | StateValueTypeException e) {
507 Activator.getDefault().logError("Error querying state system", e); //$NON-NLS-1$
60b4d44c 508 }
e8251298 509 }
e8251298
PT
510 }
511 }
512 }
513 });
7f86b721 514
e8251298
PT
515 }
516
37838e00
BH
517 /**
518 * @since 2.0
519 */
520 @Override
521 @TmfSignalHandler
522 public void windowRangeUpdated(final TmfWindowRangeUpdatedSignal signal) {
523
524 if (isPinned()) {
525 fSavedRangeSyncSignal = new TmfWindowRangeUpdatedSignal(signal.getSource(), signal.getCurrentRange());
526 fSavedTimeSyncSignal = null;
527 }
528
529 if ((signal.getSource() == this) || isPinned()) {
530 return;
531 }
532 super.windowRangeUpdated(signal);
533 }
534
e8251298
PT
535 // ------------------------------------------------------------------------
536 // Internal
537 // ------------------------------------------------------------------------
5da83da5 538
d90ae2a5
RK
539 @Override
540 @TmfSignalHandler
541 public void traceClosed(TmfTraceClosedSignal signal) {
542 super.traceClosed(signal);
543 synchronized(fSymbolProviders){
544 for(ITmfTrace trace : getTracesToBuild(signal.getTrace())){
545 fSymbolProviders.remove(trace);
546 }
547 }
548 }
549
550 /**
551 * @since 2.0
552 */
553 @Override
554 protected void refresh() {
555 super.refresh();
556 updateConfigureSymbolsAction();
557 }
558
ade0a3c5 559 @Override
f8f46a52 560 protected void buildEntryList(final ITmfTrace trace, final ITmfTrace parentTrace, final IProgressMonitor monitor) {
26c33ee2
PT
561 if (monitor.isCanceled()) {
562 return;
563 }
564 AbstractCallStackAnalysis module = getCallStackModule(trace);
565 if (module == null) {
566 addUnavailableEntry(trace, parentTrace);
567 return;
568 }
569 ITmfStateSystem ss = module.getStateSystem();
570 if (ss == null) {
571 addUnavailableEntry(trace, parentTrace);
572 return;
573 }
574
575 Map<ITmfTrace, TraceEntry> traceEntryMap = new HashMap<>();
7f86b721 576 Map<Integer, ProcessEntry> processEntryMap = new HashMap<>();
26c33ee2 577 Map<Integer, ThreadEntry> threadEntryMap = new HashMap<>();
26c33ee2
PT
578
579 long start = ss.getStartTime();
580
581 boolean complete = false;
582 while (!complete) {
e8251298
PT
583 if (monitor.isCanceled()) {
584 return;
585 }
26c33ee2
PT
586 complete = ss.waitUntilBuilt(BUILD_UPDATE_TIMEOUT);
587 if (ss.isCancelled()) {
da27e43a
PT
588 return;
589 }
26c33ee2
PT
590 long end = ss.getCurrentEndTime();
591 if (start == end && !complete) { // when complete execute one last time regardless of end time
e8251298
PT
592 continue;
593 }
d90ae2a5
RK
594
595 ISymbolProvider provider = fSymbolProviders.get(trace);
596 if (provider == null) {
597 provider = SymbolProviderManager.getInstance().getSymbolProvider(trace);
598 provider.loadConfiguration(monitor);
599 fSymbolProviders.put(trace, provider);
600 }
601
602 getConfigureSymbolsAction().setEnabled(true);
603
7f86b721 604
26c33ee2
PT
605 TraceEntry traceEntry = traceEntryMap.get(trace);
606 if (traceEntry == null) {
607 traceEntry = new TraceEntry(trace.getName(), start, end + 1);
608 traceEntryMap.put(trace, traceEntry);
609 traceEntry.sortChildren(fThreadComparator);
610 addToEntryList(parentTrace, Collections.singletonList(traceEntry));
611 } else {
612 traceEntry.updateEndTime(end);
613 }
1a0ff02c 614
7f86b721
AM
615 List<Integer> processQuarks = ss.getQuarks(module.getProcessesPattern());
616 for (Integer processQuark : processQuarks) {
617
618 /* Create the entry for the process */
619 ProcessEntry processEntry = processEntryMap.get(processQuark);
620 if (processEntry == null) {
621 String name = ss.getAttributeName(processQuark.intValue());
4ce4d8af
AM
622 /* The attribute name should already be parseable to integer */
623 int processId = Integer.parseInt(name);
624 processEntry = new ProcessEntry(name, processId, start, end);
7f86b721
AM
625 processEntryMap.put(processQuark, processEntry);
626 traceEntry.addChild(processEntry);
627 } else {
628 processEntry.updateEndTime(end);
629 }
630
631 /* Create the threads under the process */
632 try {
633 List<Integer> threadQuarks = ss.getSubAttributes(processQuark, false, module.getThreadsForProcessPattern());
634
635 /*
636 * Only query startStates if necessary (threadEntry == null)
637 */
638 List<ITmfStateInterval> startStates = null;
639 List<ITmfStateInterval> endStates = ss.queryFullState(ss.getCurrentEndTime());
640 for (int i = 0; i < threadQuarks.size(); i++) {
641 if (monitor.isCanceled()) {
642 return;
1a0ff02c 643 }
7f86b721
AM
644 int threadQuark = threadQuarks.get(i);
645
646 String[] callStackPath = module.getCallStackPathForThread();
647 int callStackQuark = ss.getQuarkRelative(threadQuark, callStackPath);
648 String threadName = ss.getAttributeName(threadQuark);
649 long threadEnd = end + 1;
650 ITmfStateInterval endInterval = endStates.get(callStackQuark);
651 if (endInterval.getStateValue().isNull() && endInterval.getStartTime() != ss.getStartTime()) {
652 threadEnd = endInterval.getStartTime();
26c33ee2 653 }
7f86b721
AM
654 ThreadEntry threadEntry = threadEntryMap.get(threadQuark);
655 if (threadEntry == null) {
656 if (startStates == null) {
657 startStates = ss.queryFullState(ss.getStartTime());
658 }
e4bbed4b 659 long threadId = endStates.get(threadQuark).getStateValue().unboxLong();
7f86b721
AM
660 long threadStart = start;
661 ITmfStateInterval startInterval = startStates.get(callStackQuark);
662 if (startInterval.getStateValue().isNull()) {
663 threadStart = Math.min(startInterval.getEndTime() + 1, end + 1);
664 }
665 threadEntry = new ThreadEntry(ss, threadName, threadId, callStackQuark, threadStart, threadEnd);
666 threadEntryMap.put(threadQuark, threadEntry);
667 processEntry.addChild(threadEntry);
668 } else {
669 threadEntry.updateEndTime(threadEnd);
670 }
671 int level = 1;
672 for (int stackLevelQuark : ss.getSubAttributes(callStackQuark, false)) {
673 if (level > threadEntry.getChildren().size()) {
4ce4d8af
AM
674 int processId = processEntry.getProcessId();
675 CallStackEntry callStackEntry = new CallStackEntry(threadName, stackLevelQuark, level, processId, trace, ss);
7f86b721
AM
676 threadEntry.addChild(callStackEntry);
677 }
678 level++;
26c33ee2 679 }
e8251298 680 }
7f86b721
AM
681 } catch (AttributeNotFoundException e) {
682 Activator.getDefault().logError("Error querying state system", e); //$NON-NLS-1$
683 } catch (StateSystemDisposedException e) {
684 /* Ignored */
e8251298
PT
685 }
686 }
7f86b721 687
ade0a3c5
PT
688 if (parentTrace == getTrace()) {
689 synchronized (this) {
690 setStartTime(getStartTime() == SWT.DEFAULT ? start : Math.min(getStartTime(), start));
691 setEndTime(getEndTime() == SWT.DEFAULT ? end + 1 : Math.max(getEndTime(), end + 1));
26c33ee2 692 }
ade0a3c5 693 synchingToTime(getTimeGraphViewer().getSelectionBegin());
26c33ee2
PT
694 refresh();
695 }
7f86b721
AM
696
697 for (ITimeGraphEntry processEntry : traceEntry.getChildren()) {
698 for (ITimeGraphEntry threadEntry : processEntry.getChildren()) {
699 for (ITimeGraphEntry callStackEntry : threadEntry.getChildren()) {
700 if (monitor.isCanceled()) {
701 return;
702 }
703 buildStatusEvents(parentTrace, (CallStackEntry) callStackEntry, monitor, ss.getStartTime(), end);
60b4d44c 704 }
e8251298 705 }
e8251298 706 }
26c33ee2 707 start = end;
e8251298
PT
708 }
709 }
710
26c33ee2 711 private void addUnavailableEntry(ITmfTrace trace, ITmfTrace parentTrace) {
60b4d44c
PT
712 String name = Messages.CallStackView_StackInfoNotAvailable + ' ' + '(' + trace.getName() + ')';
713 TraceEntry unavailableEntry = new TraceEntry(name, 0, 0);
26c33ee2 714 addToEntryList(parentTrace, Collections.singletonList(unavailableEntry));
ade0a3c5 715 if (parentTrace == getTrace()) {
26c33ee2
PT
716 refresh();
717 }
2002c638
AM
718 }
719
ade0a3c5 720 private void buildStatusEvents(ITmfTrace trace, CallStackEntry entry, @NonNull IProgressMonitor monitor, long start, long end) {
da27e43a 721 ITmfStateSystem ss = entry.getStateSystem();
ade0a3c5 722 long resolution = Math.max(1, (end - ss.getStartTime()) / getDisplayWidth());
26c33ee2
PT
723 List<ITimeEvent> eventList = getEventList(entry, start, end + 1, resolution, monitor);
724 if (eventList != null) {
8d5d4aa4 725 entry.setEventList(eventList);
e8251298 726 }
ade0a3c5 727 if (trace == getTrace()) {
e8251298
PT
728 redraw();
729 }
730 }
731
ade0a3c5
PT
732 /**
733 * @since 2.0
734 */
735 @Override
736 protected final List<ITimeEvent> getEventList(TimeGraphEntry tgentry, long startTime, long endTime, long resolution, IProgressMonitor monitor) {
737 if (!(tgentry instanceof CallStackEntry)) {
738 return null;
739 }
740 CallStackEntry entry = (CallStackEntry) tgentry;
da27e43a 741 ITmfStateSystem ss = entry.getStateSystem();
e8251298
PT
742 long start = Math.max(startTime, ss.getStartTime());
743 long end = Math.min(endTime, ss.getCurrentEndTime() + 1);
744 if (end <= start) {
745 return null;
746 }
8d5d4aa4 747 boolean isZoomThread = Thread.currentThread() instanceof ZoomThread;
e8251298
PT
748 List<ITimeEvent> eventList = null;
749 try {
1dd75589 750 List<ITmfStateInterval> stackIntervals = StateSystemUtils.queryHistoryRange(ss, entry.getQuark(), start, end - 1, resolution, monitor);
507b1336 751 eventList = new ArrayList<>(stackIntervals.size());
e8251298
PT
752 long lastEndTime = -1;
753 boolean lastIsNull = true;
754 for (ITmfStateInterval statusInterval : stackIntervals) {
755 if (monitor.isCanceled()) {
756 return null;
757 }
758 long time = statusInterval.getStartTime();
759 long duration = statusInterval.getEndTime() - time + 1;
760 if (!statusInterval.getStateValue().isNull()) {
52974e38
PT
761 final int modulo = CallStackPresentationProvider.NUM_COLORS / 2;
762 int value = statusInterval.getStateValue().toString().hashCode() % modulo + modulo;
e8251298
PT
763 eventList.add(new CallStackEvent(entry, time, duration, value));
764 lastIsNull = false;
765 } else {
8d5d4aa4 766 if (lastEndTime == -1 && isZoomThread) {
beb1b921
PT
767 // add null event if it intersects the start time
768 eventList.add(new NullTimeEvent(entry, time, duration));
769 } else {
770 if (lastEndTime != time && lastIsNull) {
771 // add unknown event if between two null states
772 eventList.add(new TimeEvent(entry, lastEndTime, time - lastEndTime));
773 }
8d5d4aa4 774 if (time + duration >= endTime && isZoomThread) {
beb1b921
PT
775 // add null event if it intersects the end time
776 eventList.add(new NullTimeEvent(entry, time, duration));
777 }
e8251298 778 }
e8251298
PT
779 lastIsNull = true;
780 }
781 lastEndTime = time + duration;
782 }
783 } catch (AttributeNotFoundException e) {
52974e38 784 Activator.getDefault().logError("Error querying state system", e); //$NON-NLS-1$
e8251298 785 } catch (TimeRangeException e) {
52974e38 786 Activator.getDefault().logError("Error querying state system", e); //$NON-NLS-1$
e8251298
PT
787 } catch (StateSystemDisposedException e) {
788 /* Ignored */
789 }
790 return eventList;
791 }
792
ade0a3c5
PT
793 /**
794 * @since 2.0
795 */
796 @Override
797 protected void synchingToTime(long time) {
798 List<TimeGraphEntry> entryList = getEntryList(getTrace());
799 if (entryList == null) {
e8251298
PT
800 return;
801 }
ade0a3c5 802 for (TimeGraphEntry traceEntry : entryList) {
7f86b721 803 for (ITimeGraphEntry processEntry : traceEntry.getChildren()) {
4ce4d8af
AM
804 /* The entries should all be parseable to an integer. */
805 int pid = Integer.parseInt(processEntry.getName());
806
7f86b721
AM
807 for (ITimeGraphEntry threadEntry : processEntry.getChildren()) {
808 ITmfStateSystem ss = ((ThreadEntry) threadEntry).getStateSystem();
809 if (ss == null) {
810 continue;
811 }
812 if (ss.isCancelled()) {
813 continue;
814 }
815 if (time < ss.getStartTime() || time > ss.getCurrentEndTime()) {
816 continue;
817 }
818 for (ITimeGraphEntry child : threadEntry.getChildren()) {
819 CallStackEntry callStackEntry = (CallStackEntry) child;
820 ITmfTrace trace = callStackEntry.getTrace();
821 try {
822 ITmfStateInterval stackLevelInterval = ss.querySingleState(time, callStackEntry.getQuark());
823 ITmfStateValue nameValue = stackLevelInterval.getStateValue();
4ce4d8af
AM
824
825 String name = getFunctionName(trace, pid, time, nameValue);
7f86b721
AM
826 callStackEntry.setFunctionName(name);
827 if (name.length() > 0) {
828 callStackEntry.setFunctionEntryTime(stackLevelInterval.getStartTime());
829 callStackEntry.setFunctionExitTime(stackLevelInterval.getEndTime() + 1);
830 }
831 } catch (AttributeNotFoundException e) {
832 Activator.getDefault().logError("Error querying state system", e); //$NON-NLS-1$
833 } catch (StateSystemDisposedException e) {
834 /* Ignored */
60b4d44c 835 }
e8251298 836 }
e8251298
PT
837 }
838 }
839 }
ade0a3c5
PT
840 if (Display.getCurrent() != null) {
841 getTimeGraphCombo().refresh();
e8251298 842 }
e8251298
PT
843 }
844
4ce4d8af 845 String getFunctionName(ITmfTrace trace, int processId, long timestamp, ITmfStateValue nameValue) {
d90ae2a5
RK
846 long address = Long.MAX_VALUE;
847 String name = ""; //$NON-NLS-1$
848 try {
849 if (nameValue.getType() == Type.STRING) {
850 name = nameValue.unboxStr();
851 try {
852 address = Long.parseLong(name, 16);
853 } catch (NumberFormatException e) {
854 // ignore
855 }
856 } else if (nameValue.getType() == Type.INTEGER) {
857 name = "0x" + Integer.toHexString(nameValue.unboxInt()); //$NON-NLS-1$
858 address = nameValue.unboxInt();
859 } else if (nameValue.getType() == Type.LONG) {
860 name = "0x" + Long.toHexString(nameValue.unboxLong()); //$NON-NLS-1$
861 address = nameValue.unboxLong();
862 }
863 } catch (StateValueTypeException e) {
864 }
865 if (address != Long.MAX_VALUE) {
866 ISymbolProvider provider = fSymbolProviders.get(trace);
867 if (provider != null) {
4ce4d8af 868 String symbol = provider.getSymbolText(processId, timestamp, address);
d90ae2a5
RK
869 if (symbol != null) {
870 name = symbol;
871 }
872 }
873 }
874 return name;
875 }
876
e8251298 877 private void makeActions() {
ade0a3c5 878 fPreviousItemAction = getTimeGraphViewer().getPreviousItemAction();
e8251298
PT
879 fPreviousItemAction.setText(Messages.TmfTimeGraphViewer_PreviousItemActionNameText);
880 fPreviousItemAction.setToolTipText(Messages.TmfTimeGraphViewer_PreviousItemActionToolTipText);
ade0a3c5 881 fNextItemAction = getTimeGraphViewer().getNextItemAction();
e8251298
PT
882 fNextItemAction.setText(Messages.TmfTimeGraphViewer_NextItemActionNameText);
883 fNextItemAction.setToolTipText(Messages.TmfTimeGraphViewer_NextItemActionToolTipText);
884 }
885
886 private void contributeToActionBars() {
e8251298
PT
887 // Create pin action
888 contributePinActionToToolBar();
bac9c0df 889 fPinAction.addPropertyChangeListener(new IPropertyChangeListener() {
e8251298
PT
890 @Override
891 public void propertyChange(PropertyChangeEvent event) {
52974e38
PT
892 if (IAction.CHECKED.equals(event.getProperty()) && !isPinned()) {
893 if (fSavedRangeSyncSignal != null) {
97c71024 894 windowRangeUpdated(fSavedRangeSyncSignal);
52974e38
PT
895 fSavedRangeSyncSignal = null;
896 }
e8251298 897
52974e38 898 if (fSavedTimeSyncSignal != null) {
97c71024 899 selectionRangeUpdated(fSavedTimeSyncSignal);
52974e38 900 fSavedTimeSyncSignal = null;
e8251298
PT
901 }
902 }
903 }
904 });
905 }
906
ade0a3c5
PT
907 /**
908 * @since 2.0
909 */
910 @Override
911 protected void fillLocalToolBar(IToolBarManager manager) {
912 makeActions();
d90ae2a5 913 manager.add(getConfigureSymbolsAction());
46cc1ade
PT
914 manager.add(new Separator());
915 manager.add(getSortByNameAction());
916 manager.add(getSortByIdAction());
917 manager.add(getSortByTimeAction());
918 manager.add(new Separator());
ade0a3c5
PT
919 manager.add(getTimeGraphCombo().getShowFilterDialogAction());
920 manager.add(new Separator());
921 manager.add(getTimeGraphViewer().getResetScaleAction());
e8251298
PT
922 manager.add(getPreviousEventAction());
923 manager.add(getNextEventAction());
ade0a3c5
PT
924 manager.add(new Separator());
925 manager.add(getTimeGraphViewer().getToggleBookmarkAction());
926 manager.add(getTimeGraphViewer().getPreviousMarkerAction());
927 manager.add(getTimeGraphViewer().getNextMarkerAction());
928 manager.add(new Separator());
e8251298
PT
929 manager.add(fPreviousItemAction);
930 manager.add(fNextItemAction);
ade0a3c5
PT
931 manager.add(getTimeGraphViewer().getZoomInAction());
932 manager.add(getTimeGraphViewer().getZoomOutAction());
e8251298
PT
933 }
934
90bb3a0c
BH
935 /**
936 * @since 2.0
937 */
938 @Override
939 protected void fillTimeGraphEntryContextMenu(IMenuManager contextMenu) {
d2fb9e0f 940 contextMenu.add(new GroupMarker(IWorkbenchActionConstants.GROUP_REORGANIZE));
46cc1ade
PT
941 contextMenu.add(getSortByNameAction());
942 contextMenu.add(getSortByIdAction());
943 contextMenu.add(getSortByTimeAction());
46cc1ade
PT
944 }
945
e8251298
PT
946 /**
947 * Get the the next event action.
948 *
949 * @return The action object
950 */
951 private Action getNextEventAction() {
952 if (fNextEventAction == null) {
953 fNextEventAction = new Action() {
954 @Override
955 public void run() {
ade0a3c5 956 TimeGraphViewer viewer = getTimeGraphViewer();
e8251298
PT
957 ITimeGraphEntry entry = viewer.getSelection();
958 if (entry instanceof CallStackEntry) {
959 try {
960 CallStackEntry callStackEntry = (CallStackEntry) entry;
da27e43a 961 ITmfStateSystem ss = callStackEntry.getStateSystem();
0fcf3b09 962 long time = Math.max(ss.getStartTime(), Math.min(ss.getCurrentEndTime(), viewer.getSelectionBegin()));
e8251298 963 ThreadEntry threadEntry = (ThreadEntry) callStackEntry.getParent();
da27e43a 964 int quark = ss.getParentAttributeQuark(callStackEntry.getQuark());
e8251298
PT
965 ITmfStateInterval stackInterval = ss.querySingleState(time, quark);
966 long newTime = stackInterval.getEndTime() + 1;
967 viewer.setSelectedTimeNotify(newTime, true);
968 stackInterval = ss.querySingleState(Math.min(ss.getCurrentEndTime(), newTime), quark);
969 int stackLevel = stackInterval.getStateValue().unboxInt();
a3188982 970 ITimeGraphEntry selectedEntry = threadEntry.getChildren().get(Math.max(0, stackLevel - 1));
ade0a3c5 971 getTimeGraphCombo().setSelection(selectedEntry);
e8251298
PT
972 viewer.getTimeGraphControl().fireSelectionChanged();
973 startZoomThread(viewer.getTime0(), viewer.getTime1());
50659279 974
bac9c0df 975 } catch (AttributeNotFoundException | TimeRangeException | StateSystemDisposedException | StateValueTypeException e) {
52974e38 976 Activator.getDefault().logError("Error querying state system", e); //$NON-NLS-1$
e8251298
PT
977 }
978 }
979 }
980 };
981
982 fNextEventAction.setText(Messages.TmfTimeGraphViewer_NextEventActionNameText);
983 fNextEventAction.setToolTipText(Messages.TmfTimeGraphViewer_NextEventActionToolTipText);
984 fNextEventAction.setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_NEXT_EVENT));
985 }
986
987 return fNextEventAction;
988 }
989
990 /**
991 * Get the previous event action.
992 *
993 * @return The Action object
994 */
995 private Action getPreviousEventAction() {
996 if (fPrevEventAction == null) {
997 fPrevEventAction = new Action() {
998 @Override
999 public void run() {
ade0a3c5 1000 TimeGraphViewer viewer = getTimeGraphCombo().getTimeGraphViewer();
e8251298
PT
1001 ITimeGraphEntry entry = viewer.getSelection();
1002 if (entry instanceof CallStackEntry) {
1003 try {
1004 CallStackEntry callStackEntry = (CallStackEntry) entry;
da27e43a 1005 ITmfStateSystem ss = callStackEntry.getStateSystem();
0fcf3b09 1006 long time = Math.max(ss.getStartTime(), Math.min(ss.getCurrentEndTime(), viewer.getSelectionBegin()));
e8251298 1007 ThreadEntry threadEntry = (ThreadEntry) callStackEntry.getParent();
da27e43a 1008 int quark = ss.getParentAttributeQuark(callStackEntry.getQuark());
e8251298
PT
1009 ITmfStateInterval stackInterval = ss.querySingleState(time, quark);
1010 if (stackInterval.getStartTime() == time && time > ss.getStartTime()) {
1011 stackInterval = ss.querySingleState(time - 1, quark);
1012 }
1013 viewer.setSelectedTimeNotify(stackInterval.getStartTime(), true);
1014 int stackLevel = stackInterval.getStateValue().unboxInt();
a3188982 1015 ITimeGraphEntry selectedEntry = threadEntry.getChildren().get(Math.max(0, stackLevel - 1));
ade0a3c5 1016 getTimeGraphCombo().setSelection(selectedEntry);
e8251298
PT
1017 viewer.getTimeGraphControl().fireSelectionChanged();
1018 startZoomThread(viewer.getTime0(), viewer.getTime1());
50659279 1019
bac9c0df 1020 } catch (AttributeNotFoundException | TimeRangeException | StateSystemDisposedException | StateValueTypeException e) {
52974e38 1021 Activator.getDefault().logError("Error querying state system", e); //$NON-NLS-1$
e8251298
PT
1022 }
1023 }
1024 }
1025 };
1026
1027 fPrevEventAction.setText(Messages.TmfTimeGraphViewer_PreviousEventActionNameText);
1028 fPrevEventAction.setToolTipText(Messages.TmfTimeGraphViewer_PreviousEventActionToolTipText);
1029 fPrevEventAction.setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_PREV_EVENT));
1030 }
1031
1032 return fPrevEventAction;
1033 }
1034
1d83ed07 1035 private static @Nullable AbstractCallStackAnalysis getCallStackModule(@NonNull ITmfTrace trace) {
50659279
AM
1036 /*
1037 * Since we cannot know the exact analysis ID (in separate plugins), we
1038 * will search using the analysis type.
1039 */
1040 Iterable<AbstractCallStackAnalysis> modules =
b8585c7c 1041 TmfTraceUtils.getAnalysisModulesOfClass(trace, AbstractCallStackAnalysis.class);
50659279
AM
1042 Iterator<AbstractCallStackAnalysis> it = modules.iterator();
1043 if (!it.hasNext()) {
1044 /* This trace does not provide a call-stack analysis */
1045 return null;
1046 }
1047
1048 /*
1049 * We only look at the first module we find.
1050 *
1051 * TODO Handle the advanced case where one trace provides more than one
1052 * call-stack analysis.
1053 */
1054 AbstractCallStackAnalysis module = it.next();
1055 /* This analysis is not automatic, we need to schedule it on-demand */
1056 module.schedule();
c81ffdf2
JCK
1057 if (!module.waitForInitialization()) {
1058 /* The initialization did not succeed */
1059 return null;
1060 }
da27e43a 1061 return module;
50659279
AM
1062 }
1063
5da83da5
AM
1064 // ------------------------------------------------------------------------
1065 // Methods related to function name mapping
1066 // ------------------------------------------------------------------------
1067
46cc1ade
PT
1068 private Action getSortByNameAction() {
1069 if (fSortByNameAction == null) {
1070 fSortByNameAction = new Action(Messages.CallStackView_SortByThreadName, IAction.AS_CHECK_BOX) {
1071 @Override
1072 public void run() {
1073 if (fSortOption == SortOption.BY_NAME) {
1074 saveSortOption(SortOption.BY_NAME_REV);
1075 } else {
1076 saveSortOption(SortOption.BY_NAME);
1077 }
1078 }
1079 };
1080 fSortByNameAction.setToolTipText(Messages.CallStackView_SortByThreadName);
6aea3caa 1081 fSortByNameAction.setImageDescriptor(SORT_BY_NAME_ICON);
46cc1ade
PT
1082 }
1083 return fSortByNameAction;
1084 }
1085
1086 private Action getSortByIdAction() {
1087 if (fSortByIdAction == null) {
1088 fSortByIdAction = new Action(Messages.CallStackView_SortByThreadId, IAction.AS_CHECK_BOX) {
1089 @Override
1090 public void run() {
1091 if (fSortOption == SortOption.BY_ID) {
1092 saveSortOption(SortOption.BY_ID_REV);
1093 } else {
1094 saveSortOption(SortOption.BY_ID);
1095 }
1096 }
1097 };
1098 fSortByIdAction.setToolTipText(Messages.CallStackView_SortByThreadId);
6aea3caa 1099 fSortByIdAction.setImageDescriptor(SORT_BY_ID_ICON);
46cc1ade
PT
1100 }
1101 return fSortByIdAction;
1102 }
1103
1104 private Action getSortByTimeAction() {
1105 if (fSortByTimeAction == null) {
1106 fSortByTimeAction = new Action(Messages.CallStackView_SortByThreadTime, IAction.AS_CHECK_BOX) {
1107 @Override
1108 public void run() {
1109 if (fSortOption == SortOption.BY_TIME) {
1110 saveSortOption(SortOption.BY_TIME_REV);
1111 } else {
1112 saveSortOption(SortOption.BY_TIME);
1113 }
1114 }
1115 };
1116 fSortByTimeAction.setToolTipText(Messages.CallStackView_SortByThreadTime);
6aea3caa 1117 fSortByTimeAction.setImageDescriptor(SORT_BY_TIME_ICON);
46cc1ade
PT
1118 }
1119 return fSortByTimeAction;
1120 }
1121
1122 private void loadSortOption() {
1123 IDialogSettings settings = Activator.getDefault().getDialogSettings();
1124 IDialogSettings section = settings.getSection(getClass().getName());
1125 if (section == null) {
1126 return;
1127 }
1128 String sortOption = section.get(SORT_OPTION_KEY);
6aea3caa
PT
1129 if (sortOption == null) {
1130 return;
1131 }
46cc1ade
PT
1132
1133 // reset defaults
1134 getSortByNameAction().setChecked(false);
1135 getSortByNameAction().setImageDescriptor(SORT_BY_NAME_ICON);
1136 getSortByIdAction().setChecked(false);
1137 getSortByIdAction().setImageDescriptor(SORT_BY_ID_ICON);
1138 getSortByTimeAction().setChecked(false);
1139 getSortByTimeAction().setImageDescriptor(SORT_BY_TIME_ICON);
1140
1141 if (sortOption.equals(SortOption.BY_NAME.name())) {
1142 fSortOption = SortOption.BY_NAME;
1143 fThreadComparator = new ThreadNameComparator(false);
1144 getSortByNameAction().setChecked(true);
1145 } else if (sortOption.equals(SortOption.BY_NAME_REV.name())) {
1146 fSortOption = SortOption.BY_NAME_REV;
1147 fThreadComparator = new ThreadNameComparator(true);
1148 getSortByNameAction().setChecked(true);
1149 getSortByNameAction().setImageDescriptor(SORT_BY_NAME_REV_ICON);
1150 } else if (sortOption.equals(SortOption.BY_ID.name())) {
1151 fSortOption = SortOption.BY_ID;
1152 fThreadComparator = new ThreadIdComparator(false);
1153 getSortByIdAction().setChecked(true);
1154 } else if (sortOption.equals(SortOption.BY_ID_REV.name())) {
1155 fSortOption = SortOption.BY_ID_REV;
1156 fThreadComparator = new ThreadIdComparator(true);
1157 getSortByIdAction().setChecked(true);
1158 getSortByIdAction().setImageDescriptor(SORT_BY_ID_REV_ICON);
1159 } else if (sortOption.equals(SortOption.BY_TIME.name())) {
1160 fSortOption = SortOption.BY_TIME;
1161 fThreadComparator = new ThreadTimeComparator(false);
1162 getSortByTimeAction().setChecked(true);
1163 } else if (sortOption.equals(SortOption.BY_TIME_REV.name())) {
1164 fSortOption = SortOption.BY_TIME_REV;
1165 fThreadComparator = new ThreadTimeComparator(true);
1166 getSortByTimeAction().setChecked(true);
1167 getSortByTimeAction().setImageDescriptor(SORT_BY_TIME_REV_ICON);
1168 }
1169 }
1170
1171 private void saveSortOption(SortOption sortOption) {
1172 IDialogSettings settings = Activator.getDefault().getDialogSettings();
1173 IDialogSettings section = settings.getSection(getClass().getName());
1174 if (section == null) {
1175 section = settings.addNewSection(getClass().getName());
1176 }
1177 section.put(SORT_OPTION_KEY, sortOption.name());
1178 loadSortOption();
ade0a3c5
PT
1179 List<TimeGraphEntry> entryList = getEntryList(getTrace());
1180 if (entryList == null) {
46cc1ade
PT
1181 return;
1182 }
ade0a3c5 1183 for (TimeGraphEntry traceEntry : entryList) {
46cc1ade
PT
1184 traceEntry.sortChildren(fThreadComparator);
1185 }
1186 refresh();
1187 }
1188
d90ae2a5
RK
1189 private Action getConfigureSymbolsAction() {
1190 if (fConfigureSymbolsAction != null) {
1191 return fConfigureSymbolsAction;
5da83da5
AM
1192 }
1193
d90ae2a5 1194 fConfigureSymbolsAction = new Action(Messages.CallStackView_ConfigureSymbolProvidersText) {
41d9ce5b 1195 @Override
d90ae2a5
RK
1196 public void run() {
1197 SymbolProviderConfigDialog dialog = new SymbolProviderConfigDialog(getSite().getShell(), getProviderPages());
1198 if (dialog.open() == IDialogConstants.OK_ID) {
1199 refresh();
1200 }
41d9ce5b
MAL
1201 }
1202 };
5da83da5 1203
d90ae2a5
RK
1204 fConfigureSymbolsAction.setToolTipText(Messages.CallStackView_ConfigureSymbolProvidersTooltip);
1205 fConfigureSymbolsAction.setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(IMPORT_BINARY_ICON_PATH));
1206 fConfigureSymbolsAction.setEnabled(false);
5da83da5 1207
d90ae2a5 1208 return fConfigureSymbolsAction;
5da83da5
AM
1209 }
1210
d90ae2a5
RK
1211 /**
1212 * @return an array of {@link ISymbolProviderPreferencePage} that will
1213 * configure the current traces
1214 */
1215 private ISymbolProviderPreferencePage[] getProviderPages() {
1216 List<ISymbolProviderPreferencePage> pages = new ArrayList<>();
1217 ITmfTrace trace = getTrace();
1218 if (trace != null) {
1219 for (ITmfTrace subTrace : getTracesToBuild(trace)) {
1220 ISymbolProvider provider = fSymbolProviders.get(subTrace);
1221 if (provider != null) {
1222 ISymbolProviderPreferencePage page = provider.createPreferencePage();
1223 if (page != null) {
1224 pages.add(page);
1225 }
1226 }
1227 }
5da83da5 1228 }
d90ae2a5
RK
1229 return pages.toArray(new ISymbolProviderPreferencePage[pages.size()]);
1230 }
1231
1232 /**
1233 * Update the enable status of the configure symbols action
1234 */
1235 private void updateConfigureSymbolsAction() {
1236 ISymbolProviderPreferencePage[] providerPages = getProviderPages();
1237 getConfigureSymbolsAction().setEnabled(providerPages.length > 0);
5da83da5
AM
1238 }
1239
e8251298 1240}
This page took 0.174651 seconds and 5 git commands to generate.