997989a3db5a3e6fb7e0363133514b366cec25c2
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.lami.core / src / org / eclipse / tracecompass / internal / provisional / analysis / lami / core / aspect / LamiTimeRangeEndAspect.java
1 /*******************************************************************************
2 * Copyright (c) 2015, 2016 EfficiOS Inc., Alexandre Montplaisir
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
10 package org.eclipse.tracecompass.internal.provisional.analysis.lami.core.aspect;
11
12 import java.util.Comparator;
13
14 import org.eclipse.jdt.annotation.NonNull;
15 import org.eclipse.jdt.annotation.Nullable;
16 import org.eclipse.tracecompass.internal.provisional.analysis.lami.core.module.LamiTableEntry;
17 import org.eclipse.tracecompass.internal.provisional.analysis.lami.core.types.LamiData;
18 import org.eclipse.tracecompass.internal.provisional.analysis.lami.core.types.LamiTimeRange;
19 import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestampFormat;
20
21 /**
22 * Aspect for a time range duration
23 *
24 * @author Alexandre Montplaisir
25 */
26 public class LamiTimeRangeEndAspect extends LamiTableEntryAspect {
27
28 private final int fColIndex;
29
30 /**
31 * Constructor
32 *
33 * @param timeRangeName
34 * Name of the time range
35 * @param colIndex
36 * Column index
37 */
38 public LamiTimeRangeEndAspect(String timeRangeName, int colIndex) {
39 super(timeRangeName + " (" + Messages.LamiAspect_TimeRangeEnd + ')', null); //$NON-NLS-1$
40 fColIndex = colIndex;
41 }
42
43 @Override
44 public boolean isContinuous() {
45 return true;
46 }
47
48 @Override
49 public @Nullable String resolveString(LamiTableEntry entry) {
50 LamiData data = entry.getValue(fColIndex);
51 if (data instanceof LamiTimeRange) {
52 LamiTimeRange range = (LamiTimeRange) data;
53 return TmfTimestampFormat.getDefaulTimeFormat().format(range.getEnd());
54 }
55 return data.toString();
56 }
57
58 @Override
59 public boolean isTimeStamp() {
60 return true;
61 }
62
63 @Override
64 public @Nullable Double resolveDouble(@NonNull LamiTableEntry entry) {
65 LamiData data = entry.getValue(fColIndex);
66 if (data instanceof LamiTimeRange) {
67 LamiTimeRange range = (LamiTimeRange) data;
68 return Double.valueOf(range.getEnd());
69 }
70 return null;
71 }
72
73 @Override
74 public Comparator<LamiTableEntry> getComparator() {
75 return (o1, o2) -> {
76 Double dO1 = resolveDouble(o1);
77 Double dO2 = resolveDouble(o2);
78 if (dO1 == null || dO2 == null) {
79 return 0;
80 }
81
82 return dO1.compareTo(dO2);
83 };
84 }
85
86 }
This page took 0.031189 seconds and 4 git commands to generate.