xml: bug 493954: Allow string states to be displayed in time graph views
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.ui / src / org / eclipse / tracecompass / internal / tmf / analysis / xml / ui / views / timegraph / XmlTimeGraphView.java
CommitLineData
1a23419e 1/*******************************************************************************
f8f46a52 2 * Copyright (c) 2014, 2016 École Polytechnique de Montréal
1a23419e
FW
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 * Florian Wininger - Initial API and implementation
11 * Geneviève Bastien - Review of the initial implementation
12 *******************************************************************************/
13
6eca054d 14package org.eclipse.tracecompass.internal.tmf.analysis.xml.ui.views.timegraph;
1a23419e 15
1d83ed07
AM
16import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
17
1a23419e
FW
18import java.util.ArrayList;
19import java.util.Collections;
20import java.util.Comparator;
21import java.util.HashMap;
836d7c77 22import java.util.HashSet;
1a23419e
FW
23import java.util.LinkedList;
24import java.util.List;
25import java.util.Map;
26import java.util.Set;
27import java.util.TreeSet;
28
29import org.eclipse.core.runtime.IProgressMonitor;
e1c415b3 30import org.eclipse.core.runtime.IStatus;
1a23419e 31import org.eclipse.jdt.annotation.NonNull;
1a23419e
FW
32import org.eclipse.jface.util.IPropertyChangeListener;
33import org.eclipse.jface.util.PropertyChangeEvent;
1a23419e 34import org.eclipse.swt.widgets.Display;
6eca054d
GB
35import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.ITmfXmlModelFactory;
36import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.ITmfXmlStateAttribute;
37import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model.readonly.TmfXmlReadOnlyModelFactory;
38import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.module.IXmlStateSystemContainer;
39import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.module.XmlUtils;
40import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.stateprovider.TmfXmlStrings;
2bdf0193
AM
41import org.eclipse.tracecompass.internal.tmf.analysis.xml.ui.Activator;
42import org.eclipse.tracecompass.internal.tmf.analysis.xml.ui.TmfXmlUiStrings;
43import org.eclipse.tracecompass.internal.tmf.analysis.xml.ui.views.XmlViewInfo;
6eca054d 44import org.eclipse.tracecompass.internal.tmf.analysis.xml.ui.views.timegraph.XmlEntry.EntryDisplayType;
e894a508 45import org.eclipse.tracecompass.statesystem.core.ITmfStateSystem;
1dd75589 46import org.eclipse.tracecompass.statesystem.core.StateSystemUtils;
e894a508
AM
47import org.eclipse.tracecompass.statesystem.core.exceptions.AttributeNotFoundException;
48import org.eclipse.tracecompass.statesystem.core.exceptions.StateSystemDisposedException;
49import org.eclipse.tracecompass.statesystem.core.exceptions.StateValueTypeException;
50import org.eclipse.tracecompass.statesystem.core.exceptions.TimeRangeException;
51import org.eclipse.tracecompass.statesystem.core.interval.ITmfStateInterval;
6d8889e1 52import org.eclipse.tracecompass.statesystem.core.statevalue.ITmfStateValue;
2bdf0193 53import org.eclipse.tracecompass.tmf.core.statesystem.ITmfAnalysisModuleWithStateSystems;
2bdf0193 54import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
b8585c7c 55import org.eclipse.tracecompass.tmf.core.trace.TmfTraceUtils;
2bdf0193
AM
56import org.eclipse.tracecompass.tmf.ui.views.timegraph.AbstractTimeGraphView;
57import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.ITimeGraphPresentationProvider2;
58import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.ILinkEvent;
59import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.ITimeEvent;
60import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.ITimeGraphEntry;
61import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.NullTimeEvent;
62import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.TimeEvent;
63import org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.TimeGraphEntry;
1a23419e
FW
64import org.w3c.dom.Element;
65
836d7c77
MK
66import com.google.common.collect.Iterables;
67
1a23419e
FW
68/**
69 * This view displays state system data in a time graph view. It uses an XML
70 * {@link TmfXmlUiStrings#TIME_GRAPH_VIEW} element from an XML file. This
71 * element defines which entries from the state system will be shown and also
72 * gives additional information on the presentation of the view (states, colors,
73 * etc)
74 *
75 * @author Florian Wininger
76 */
77public class XmlTimeGraphView extends AbstractTimeGraphView {
78
79 /** View ID. */
35423ee0 80 public static final @NonNull String ID = "org.eclipse.linuxtools.tmf.analysis.xml.ui.views.timegraph"; //$NON-NLS-1$
1a23419e
FW
81
82 private static final String[] DEFAULT_COLUMN_NAMES = new String[] {
83 Messages.XmlTimeGraphView_ColumnName,
84 Messages.XmlTimeGraphView_ColumnId,
85 Messages.XmlTimeGraphView_ColumnParentId,
86 };
87
88 private static final String[] DEFAULT_FILTER_COLUMN_NAMES = new String[] {
89 Messages.XmlTimeGraphView_ColumnName,
90 Messages.XmlTimeGraphView_ColumnId
91 };
92
93 /** The relative weight of the sash */
94 private static final int[] fWeight = { 1, 2 };
95
96 private static final String EMPTY_STRING = ""; //$NON-NLS-1$
8ecd89fa 97 private static final @NonNull String SPLIT_STRING = "/"; //$NON-NLS-1$
1a23419e 98
35423ee0 99 private final @NonNull XmlViewInfo fViewInfo = new XmlViewInfo(ID);
1a23419e 100 private final ITmfXmlModelFactory fFactory;
6d8889e1 101 private final Map<String, Integer> fStringValueMap = new HashMap<>();
1a23419e
FW
102
103 // ------------------------------------------------------------------------
104 // Constructors
105 // ------------------------------------------------------------------------
106
107 /**
108 * Default constructor
109 */
110 public XmlTimeGraphView() {
111 super(ID, new XmlPresentationProvider());
112 setWeight(fWeight);
113 setTreeColumns(DEFAULT_COLUMN_NAMES);
114 setTreeLabelProvider(new XmlTreeLabelProvider());
115 setFilterColumns(DEFAULT_FILTER_COLUMN_NAMES);
116 setFilterLabelProvider(new XmlTreeLabelProvider());
117 setEntryComparator(new XmlEntryComparator());
118 this.addPartPropertyListener(new IPropertyChangeListener() {
119 @Override
120 public void propertyChange(PropertyChangeEvent event) {
121 if (event.getProperty().equals(TmfXmlUiStrings.XML_OUTPUT_DATA)) {
35423ee0
GB
122 Object newValue = event.getNewValue();
123 if (newValue instanceof String) {
124 String data = (String) newValue;
125 fViewInfo.setViewData(data);
126 loadNewXmlView();
127 }
1a23419e
FW
128 }
129 }
130 });
1a23419e 131
1a23419e
FW
132 fFactory = TmfXmlReadOnlyModelFactory.getInstance();
133 }
134
1a23419e
FW
135 private void loadNewXmlView() {
136 rebuild();
137 }
138
139 private void setViewTitle(final String title) {
140 Display.getDefault().asyncExec(new Runnable() {
141 @Override
142 public void run() {
143 setPartName(title);
144 }
145 });
146
147 }
148
149 @Override
150 protected String getNextText() {
151 return Messages.XmlTimeGraphView_NextText;
152 }
153
154 @Override
155 protected String getNextTooltip() {
156 return Messages.XmlTimeGraphView_NextTooltip;
157 }
158
159 @Override
160 protected String getPrevText() {
161 return Messages.XmlTimeGraphView_PreviousText;
162 }
163
164 @Override
165 protected String getPrevTooltip() {
166 return Messages.XmlTimeGraphView_PreviousInterval;
167 }
168
169 /**
170 * Default label provider, it shows name, id and parent columns
171 *
172 * TODO: There should be a way to define columns in the XML
836d7c77 173 */
1a23419e
FW
174 private static class XmlTreeLabelProvider extends TreeLabelProvider {
175
176 @Override
177 public String getColumnText(Object element, int columnIndex) {
178 XmlEntry entry = (XmlEntry) element;
179
180 if (DEFAULT_COLUMN_NAMES[columnIndex].equals(Messages.XmlTimeGraphView_ColumnName)) {
181 return entry.getName();
182 } else if (DEFAULT_COLUMN_NAMES[columnIndex].equals(Messages.XmlTimeGraphView_ColumnId)) {
183 return entry.getId();
184 } else if (DEFAULT_COLUMN_NAMES[columnIndex].equals(Messages.XmlTimeGraphView_ColumnParentId)) {
185 return entry.getParentId();
186 }
187 return EMPTY_STRING;
188 }
189
190 }
191
192 private static class XmlEntryComparator implements Comparator<ITimeGraphEntry> {
193
194 @Override
195 public int compare(ITimeGraphEntry o1, ITimeGraphEntry o2) {
196
197 int result = 0;
198
199 if ((o1 instanceof XmlEntry) && (o2 instanceof XmlEntry)) {
200 XmlEntry entry1 = (XmlEntry) o1;
201 XmlEntry entry2 = (XmlEntry) o2;
202 result = entry1.getTrace().getStartTime().compareTo(entry2.getTrace().getStartTime());
203 if (result == 0) {
204 result = entry1.getTrace().getName().compareTo(entry2.getTrace().getName());
205 }
206 if (result == 0) {
207 result = entry1.getName().compareTo(entry2.getName());
208 }
209 }
210
211 if (result == 0) {
212 result = o1.getStartTime() < o2.getStartTime() ? -1 : o1.getStartTime() > o2.getStartTime() ? 1 : 0;
213 }
214
215 return result;
216 }
217 }
218
219 // ------------------------------------------------------------------------
220 // Internal
221 // ------------------------------------------------------------------------
222
223 @Override
f8f46a52 224 protected void buildEntryList(ITmfTrace trace, ITmfTrace parentTrace, IProgressMonitor monitor) {
1a23419e
FW
225
226 /*
227 * Get the view element from the XML file. If the element can't be
228 * found, return.
229 */
35423ee0 230 Element viewElement = fViewInfo.getViewElement(TmfXmlUiStrings.TIME_GRAPH_VIEW);
1a23419e
FW
231 if (viewElement == null) {
232 return;
233 }
234 ITimeGraphPresentationProvider2 pres = this.getPresentationProvider();
235 if (pres instanceof XmlPresentationProvider) {
236 /*
237 * TODO: Each entry of a line could have their own states/color.
238 * That will require an update to the presentation provider
239 */
240 ((XmlPresentationProvider) pres).loadNewStates(viewElement);
241 }
242
35423ee0
GB
243 String title = fViewInfo.getViewTitle(viewElement);
244 if (title == null) {
245 title = Messages.XmlTimeGraphView_DefaultTitle;
1a23419e 246 }
35423ee0 247 setViewTitle(title);
6d8889e1
GB
248
249 // Empty the additional state values
250 fStringValueMap.clear();
251
35423ee0
GB
252 Set<String> analysisIds = fViewInfo.getViewAnalysisIds(viewElement);
253
1a23419e
FW
254 List<Element> entries = XmlUtils.getChildElements(viewElement, TmfXmlUiStrings.ENTRY_ELEMENT);
255 Set<XmlEntry> entryList = new TreeSet<>(getEntryComparator());
836d7c77
MK
256 if (monitor.isCanceled()) {
257 return;
258 }
1a23419e 259
aa353506 260 Set<@NonNull ITmfAnalysisModuleWithStateSystems> stateSystemModules = new HashSet<>();
836d7c77
MK
261 if (analysisIds.isEmpty()) {
262 /*
263 * No analysis specified, take all state system analysis modules
264 */
265 Iterables.addAll(stateSystemModules, TmfTraceUtils.getAnalysisModulesOfClass(trace, ITmfAnalysisModuleWithStateSystems.class));
266 } else {
267 for (String moduleId : analysisIds) {
268 moduleId = checkNotNull(moduleId);
269 ITmfAnalysisModuleWithStateSystems module = TmfTraceUtils.getAnalysisModuleOfClass(trace, ITmfAnalysisModuleWithStateSystems.class, moduleId);
270 if (module != null) {
1a23419e
FW
271 stateSystemModules.add(module);
272 }
1a23419e 273 }
836d7c77 274 }
1a23419e 275
836d7c77
MK
276 for (ITmfAnalysisModuleWithStateSystems module : stateSystemModules) {
277 IStatus status = module.schedule();
278 if (!status.isOK()) {
279 return;
280 }
c81ffdf2
JCK
281 if (!module.waitForInitialization()) {
282 return;
836d7c77
MK
283 }
284 for (ITmfStateSystem ssq : module.getStateSystems()) {
285 ssq.waitUntilBuilt();
286
287 long startTime = ssq.getStartTime();
288 long endTime = ssq.getCurrentEndTime();
289 XmlEntry groupEntry = new XmlEntry(-1, trace, trace.getName(), ssq);
290 entryList.add(groupEntry);
291 setStartTime(Math.min(getStartTime(), startTime));
292 setEndTime(Math.max(getEndTime(), endTime));
293
294 /* Add children entry of this entry for each line */
295 for (Element entry : entries) {
296 buildEntry(entry, groupEntry, -1);
1a23419e
FW
297 }
298 }
299 }
836d7c77 300
dbae6118 301 addToEntryList(parentTrace, new ArrayList<TimeGraphEntry>(entryList));
1a23419e 302
836d7c77 303 if (parentTrace.equals(getTrace())) {
1a23419e
FW
304 refresh();
305 }
306 for (XmlEntry traceEntry : entryList) {
307 if (monitor.isCanceled()) {
308 return;
309 }
310 long startTime = traceEntry.getStateSystem().getStartTime();
311 long endTime = traceEntry.getStateSystem().getCurrentEndTime() + 1;
312 buildStatusEvent(traceEntry, monitor, startTime, endTime);
313 }
314 }
315
316 private void buildEntry(Element entryElement, XmlEntry parentEntry, int baseQuark) {
317 /* Get the attribute string to display */
318 String path = entryElement.getAttribute(TmfXmlUiStrings.PATH);
319 if (path.isEmpty()) {
320 path = TmfXmlStrings.WILDCARD;
321 }
322
323 /*
324 * Make sure the XML element has either a display attribute or entries,
325 * otherwise issue a warning
326 */
327
328 List<Element> displayElements = XmlUtils.getChildElements(entryElement, TmfXmlUiStrings.DISPLAY_ELEMENT);
329 List<Element> entryElements = XmlUtils.getChildElements(entryElement, TmfXmlUiStrings.ENTRY_ELEMENT);
330
331 if (displayElements.isEmpty() && entryElements.isEmpty()) {
332 Activator.logWarning(String.format("XML view: entry for %s should have either a display element or entry elements", path)); //$NON-NLS-1$
333 return;
334 }
335
336 ITmfStateSystem ss = parentEntry.getStateSystem();
337
338 /* Get the list of quarks to process with this path */
339 String[] paths = path.split(SPLIT_STRING);
340 int i = 0;
341 List<Integer> quarks = Collections.singletonList(baseQuark);
342
ed48dc75
PT
343 while (i < paths.length) {
344 List<Integer> subQuarks = new LinkedList<>();
345 /* Replace * by .* to have a regex string */
346 String name = paths[i].replaceAll("\\*", ".*"); //$NON-NLS-1$ //$NON-NLS-2$
347 for (int relativeQuark : quarks) {
348 for (int quark : ss.getSubAttributes(relativeQuark, false, name)) {
349 subQuarks.add(quark);
1a23419e 350 }
1a23419e 351 }
ed48dc75
PT
352 quarks = subQuarks;
353 i++;
354 }
1a23419e 355
ed48dc75
PT
356 /* Process each quark */
357 XmlEntry currentEntry = parentEntry;
358 Element displayElement = null;
359 Map<String, XmlEntry> entryMap = new HashMap<>();
360 if (!displayElements.isEmpty()) {
361 displayElement = displayElements.get(0);
362 }
363 for (int quark : quarks) {
364 currentEntry = parentEntry;
365 /* Process the current entry, if specified */
366 if (displayElement != null) {
367 currentEntry = processEntry(entryElement, displayElement, parentEntry, quark, ss);
368 entryMap.put(currentEntry.getId(), currentEntry);
1a23419e 369 }
ed48dc75
PT
370 /* Process the children entry of this entry */
371 for (Element subEntryEl : entryElements) {
372 buildEntry(subEntryEl, currentEntry, quark);
1a23419e 373 }
ed48dc75
PT
374 }
375 if (!entryMap.isEmpty()) {
376 buildTree(entryMap, parentEntry);
1a23419e
FW
377 }
378 }
379
380 private XmlEntry processEntry(@NonNull Element entryElement, @NonNull Element displayEl,
12685851 381 @NonNull XmlEntry parentEntry, int quark, ITmfStateSystem ss) {
1a23419e
FW
382 /*
383 * Get the start time and end time of this entry from the display
384 * attribute
385 */
386 ITmfXmlStateAttribute display = fFactory.createStateAttribute(displayEl, parentEntry);
0b563c20 387 int displayQuark = display.getAttributeQuark(quark, null);
1a23419e
FW
388 if (displayQuark == IXmlStateSystemContainer.ERROR_QUARK) {
389 return new XmlEntry(quark, parentEntry.getTrace(),
390 String.format("Unknown display quark for %s", ss.getAttributeName(quark)), ss); //$NON-NLS-1$
391 }
392
393 long entryStart = ss.getStartTime();
394 long entryEnd = ss.getCurrentEndTime();
fadf52eb 395
1a23419e 396 try {
1a23419e 397
fadf52eb 398 ITmfStateInterval oneInterval = ss.querySingleState(entryStart, displayQuark);
1a23419e 399
fadf52eb
FR
400 /* The entry start is the first non-null interval */
401 while (oneInterval.getStateValue().isNull()) {
402 long ts = oneInterval.getEndTime() + 1;
403 if (ts > ss.getCurrentEndTime()) {
404 break;
1a23419e 405 }
fadf52eb 406 oneInterval = ss.querySingleState(ts, displayQuark);
1a23419e 407 }
fadf52eb
FR
408 entryStart = oneInterval.getStartTime();
409
410 /* The entry end is the last non-null interval */
411 oneInterval = ss.querySingleState(entryEnd, displayQuark);
412 while (oneInterval.getStateValue().isNull()) {
413 long ts = oneInterval.getStartTime() - 1;
414 if (ts < ss.getStartTime()) {
415 break;
416 }
417 oneInterval = ss.querySingleState(ts, displayQuark);
418 }
419 entryEnd = oneInterval.getEndTime();
420
ed48dc75 421 } catch (StateSystemDisposedException e) {
1a23419e
FW
422 }
423
424 return new XmlEntry(quark, displayQuark, parentEntry.getTrace(), ss.getAttributeName(quark),
425 entryStart, entryEnd, EntryDisplayType.DISPLAY, ss, entryElement);
426 }
427
dfa0ef96 428 private void buildStatusEvent(XmlEntry traceEntry, @NonNull IProgressMonitor monitor, long start, long end) {
1a23419e
FW
429 long resolution = (end - start) / getDisplayWidth();
430 long startTime = Math.max(start, traceEntry.getStartTime());
431 long endTime = Math.min(end + 1, traceEntry.getEndTime());
432 List<ITimeEvent> eventList = getEventList(traceEntry, startTime, endTime, resolution, monitor);
433 if (monitor.isCanceled()) {
434 return;
435 }
436 traceEntry.setEventList(eventList);
437 redraw();
438
a3188982 439 for (ITimeGraphEntry entry : traceEntry.getChildren()) {
1a23419e
FW
440 if (monitor.isCanceled()) {
441 return;
442 }
443 XmlEntry xmlEntry = (XmlEntry) entry;
444 buildStatusEvent(xmlEntry, monitor, start, end);
445 }
446 }
447
448 /** Build a tree using getParentId() and getId() */
449 private static void buildTree(Map<String, XmlEntry> entryMap, XmlEntry rootEntry) {
450 for (XmlEntry entry : entryMap.values()) {
451 boolean root = true;
452 if (!entry.getParentId().isEmpty()) {
453 XmlEntry parent = entryMap.get(entry.getParentId());
0a35a36f
GB
454 /*
455 * Associate the parent entry only if their time overlap. A
456 * child entry may start before its parent, for example at the
457 * beginning of the trace if a parent has not yet appeared in
458 * the state system. We just want to make sure that the entry
459 * didn't start after the parent ended or ended before the
460 * parent started.
461 */
1a23419e 462 if (parent != null &&
0a35a36f 463 !(entry.getStartTime() > parent.getEndTime() ||
836d7c77 464 entry.getEndTime() < parent.getStartTime())) {
1a23419e
FW
465 parent.addChild(entry);
466 root = false;
467 }
468 }
469 if (root) {
470 rootEntry.addChild(entry);
471 }
472 }
473 }
474
475 @Override
476 protected List<ITimeEvent> getEventList(TimeGraphEntry entry, long startTime, long endTime, long resolution, IProgressMonitor monitor) {
477 if (!(entry instanceof XmlEntry)) {
478 return Collections.EMPTY_LIST;
479 }
480 XmlEntry xmlEntry = (XmlEntry) entry;
481 ITmfStateSystem ssq = xmlEntry.getStateSystem();
482 final long realStart = Math.max(startTime, entry.getStartTime());
483 final long realEnd = Math.min(endTime, entry.getEndTime());
484 if (realEnd <= realStart) {
485 return null;
486 }
487 List<ITimeEvent> eventList = null;
488 int quark = xmlEntry.getDisplayQuark();
489
490 try {
491 if (xmlEntry.getType() == EntryDisplayType.DISPLAY) {
492
1dd75589 493 List<ITmfStateInterval> statusIntervals = StateSystemUtils.queryHistoryRange(ssq, quark, realStart, realEnd - 1, resolution, monitor);
1a23419e
FW
494 eventList = new ArrayList<>(statusIntervals.size());
495 long lastEndTime = -1;
496 for (ITmfStateInterval statusInterval : statusIntervals) {
497 if (monitor.isCanceled()) {
498 return null;
499 }
6d8889e1 500 int status = getStatusFromInterval(statusInterval);
1a23419e
FW
501 long time = statusInterval.getStartTime();
502 long duration = statusInterval.getEndTime() - time + 1;
503 if (!statusInterval.getStateValue().isNull()) {
504 if (lastEndTime != time && lastEndTime != -1) {
505 eventList.add(new TimeEvent(entry, lastEndTime, time - lastEndTime));
506 }
507 eventList.add(new TimeEvent(entry, time, duration, status));
508 } else if (lastEndTime == -1 || time + duration >= endTime) {
509 // add null event if it intersects the start or end time
510 eventList.add(new NullTimeEvent(entry, time, duration));
511 }
512 lastEndTime = time + duration;
513 }
514 }
515 } catch (AttributeNotFoundException | TimeRangeException | StateValueTypeException | StateSystemDisposedException e) {
516 /* Ignored */
517 }
518 return eventList;
519 }
520
6d8889e1
GB
521 private int getStatusFromInterval(ITmfStateInterval statusInterval) {
522 ITmfStateValue stateValue = statusInterval.getStateValue();
523 int status = -1;
524 switch (stateValue.getType()) {
525 case INTEGER:
526 case NULL:
527 status = stateValue.unboxInt();
528 break;
529 case LONG:
530 status = (int) stateValue.unboxLong();
531 break;
532 case STRING:
533 String statusStr = stateValue.unboxStr();
534 Integer statusInt = fStringValueMap.get(statusStr);
535 if (statusInt != null) {
536 status = statusInt;
537 break;
538 }
539 ITimeGraphPresentationProvider2 pres = this.getPresentationProvider();
540 if (pres instanceof XmlPresentationProvider) {
541 // Add this new state to the presentation provider
542 status = ((XmlPresentationProvider) pres).addState(statusStr);
543 fStringValueMap.put(statusStr, status);
544 }
545 break;
546 case DOUBLE:
547 status = (int) stateValue.unboxDouble();
548 break;
549 case CUSTOM:
550 default:
551 break;
552 }
553
554 return status;
555 }
556
1a23419e
FW
557 @Override
558 protected List<ILinkEvent> getLinkList(long startTime, long endTime, long resolution, IProgressMonitor monitor) {
559 /* TODO: not implemented yet, need XML to go along */
560 return Collections.EMPTY_LIST;
561 }
562
563}
This page took 0.110155 seconds and 5 git commands to generate.