tmf: Add missing @since annotation
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / histogram / HistogramCurrentTimeControl.java
CommitLineData
c392540b 1/*******************************************************************************
e0752744 2 * Copyright (c) 2011, 2012 Ericsson
6256d8ad 3 *
c392540b
FC
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
6256d8ad 8 *
c392540b
FC
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
e0752744 11 * Francois Chouinard - Moved from LTTng to TMF
f8177ba2 12 * Francois Chouinard - Simplified constructor, handle interval format change
c392540b
FC
13 *******************************************************************************/
14
e0752744 15package org.eclipse.linuxtools.tmf.ui.views.histogram;
c392540b 16
f8177ba2
FC
17import java.text.ParseException;
18
19import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
e0fce55b 20import org.eclipse.linuxtools.tmf.core.event.TmfTimeRange;
f8177ba2
FC
21import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
22import org.eclipse.linuxtools.tmf.core.event.TmfTimestampFormat;
f8177ba2
FC
23import org.eclipse.linuxtools.tmf.core.signal.TmfSignalHandler;
24import org.eclipse.linuxtools.tmf.core.signal.TmfSignalManager;
25import org.eclipse.linuxtools.tmf.core.signal.TmfTimestampFormatUpdateSignal;
faa38350
PT
26import org.eclipse.linuxtools.tmf.core.signal.TmfTraceUpdatedSignal;
27import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
c392540b
FC
28import org.eclipse.swt.widgets.Composite;
29
30/**
c392540b 31 * This control provides a group containing a text control.
6256d8ad 32 *
f8177ba2 33 * @version 1.1
b544077e 34 * @author Francois Chouinard
c392540b
FC
35 */
36public class HistogramCurrentTimeControl extends HistogramTextControl {
37
f8177ba2
FC
38 // ------------------------------------------------------------------------
39 // Attributes
40 // ------------------------------------------------------------------------
41
faa38350 42 private long fTraceStartTime;
f8177ba2 43
c392540b
FC
44 // ------------------------------------------------------------------------
45 // Construction
46 // ------------------------------------------------------------------------
47
b544077e 48 /**
f8177ba2 49 * Standard constructor
6256d8ad 50 *
b544077e
BH
51 * @param parentView A parent histogram view
52 * @param parent A parent composite to draw in
f8177ba2
FC
53 * @param groupLabel A group value
54 * @param value A value
55 * @since 2.0
b544077e 56 */
f8177ba2
FC
57 public HistogramCurrentTimeControl(HistogramView parentView, Composite parent,
58 String groupLabel, long value)
59 {
60 super(parentView, parent, groupLabel, value);
61 TmfSignalManager.register(this);
c392540b
FC
62 }
63
f8177ba2
FC
64 /* (non-Javadoc)
65 * @see org.eclipse.linuxtools.tmf.ui.views.histogram.HistogramTextControl#dispose()
b544077e 66 */
f8177ba2
FC
67 @Override
68 public void dispose() {
69 TmfSignalManager.deregister(this);
c392540b
FC
70 }
71
72 // ------------------------------------------------------------------------
73 // Operations
74 // ------------------------------------------------------------------------
75
76 @Override
77 protected void updateValue() {
f8177ba2
FC
78 String string = fTextValue.getText();
79 long value = 0;
80 try {
faa38350 81 value = TmfTimestampFormat.getDefaulTimeFormat().parseValue(string, fTraceStartTime);
f8177ba2
FC
82 } catch (ParseException e) {
83 }
c392540b 84 if (getValue() != value) {
e0fce55b 85 // Make sure that the new time is within range
faa38350
PT
86 ITmfTrace trace = fParentView.getTrace();
87 if (trace != null) {
88 TmfTimeRange range = trace.getTimeRange();
dcb3cda5
BH
89 long startTime = range.getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
90 long endTime = range.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
e0fce55b
FC
91 if (value < startTime) {
92 value = startTime;
93 } else if (value > endTime) {
94 value = endTime;
95 }
96 }
97
98 // Set and propagate
c392540b
FC
99 setValue(value);
100 fParentView.updateCurrentEventTime(value);
101 }
102 }
103
f8177ba2
FC
104 @Override
105 public void setValue(long time) {
106 super.setValue(time, new TmfTimestamp(time, ITmfTimestamp.NANOSECOND_SCALE).toString());
107 }
108
109 // ------------------------------------------------------------------------
110 // Signal Handlers
111 // ------------------------------------------------------------------------
112
113 /**
114 * Update the initial time value
115 *
116 * @param signal the time range signal
117 * @since 2.0
118 */
119 @TmfSignalHandler
faa38350
PT
120 public void traceUpdated(final TmfTraceUpdatedSignal signal) {
121 fTraceStartTime = signal.getTrace().getTimeRange().getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
f8177ba2
FC
122 }
123
124 // ------------------------------------------------------------------------
125 // Signal Handlers
126 // ------------------------------------------------------------------------
127
128 /**
129 * Format the timestamp and update the display. Compute the new text size,
130 * adjust the text and group widgets and then refresh the view layout.
131 *
132 * @param signal the incoming signal
133 * @since 2.0
134 */
135 @TmfSignalHandler
136 public void timestampFormatUpdated(TmfTimestampFormatUpdateSignal signal) {
137 setValue(getValue());
138 }
139
c392540b 140}
This page took 0.04219 seconds and 5 git commands to generate.