6f41e48977e015f01c77c216d9ab10b91315d922
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.lami.core / src / org / eclipse / tracecompass / internal / provisional / analysis / lami / core / aspect / LamiTimestampAspect.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.LamiInteger;
19 import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestampFormat;
20
21 /**
22 * Aspect for timestamps
23 *
24 * @author Alexandre Montplaisir
25 */
26 public class LamiTimestampAspect extends LamiTableEntryAspect {
27
28 private final int fColIndex;
29
30 /**
31 * Constructor
32 *
33 * @param timestampName
34 * Name of the timestamp
35 * @param colIndex
36 * Column index
37 */
38 public LamiTimestampAspect(String timestampName, int colIndex) {
39 super(timestampName, null);
40 fColIndex = colIndex;
41 }
42
43 @Override
44 public boolean isContinuous() {
45 return true;
46 }
47
48 @Override
49 public boolean isTimeStamp() {
50 return true;
51 }
52
53 @Override
54 public @Nullable String resolveString(LamiTableEntry entry) {
55 LamiData data = entry.getValue(fColIndex);
56 if (data instanceof LamiInteger) {
57 LamiInteger range = (LamiInteger) data;
58 return TmfTimestampFormat.getDefaulTimeFormat().format(range.getValue());
59 }
60 return data.toString();
61 }
62
63 @Override
64 public @Nullable Double resolveDouble(@NonNull LamiTableEntry entry) {
65 LamiData data = entry.getValue(fColIndex);
66 if (data instanceof LamiInteger) {
67 LamiInteger range = (LamiInteger) data;
68 return Double.valueOf(range.getValue());
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.032634 seconds and 4 git commands to generate.