Merge branch 'lttng-kepler'
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / histogram / HistogramCurrentTimeControl.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2012 Ericsson
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 * Francois Chouinard - Initial API and implementation
11 * Francois Chouinard - Moved from LTTng to TMF
12 * Francois Chouinard - Simplified constructor, handle interval format change
13 *******************************************************************************/
14
15 package org.eclipse.linuxtools.tmf.ui.views.histogram;
16
17 import java.text.ParseException;
18
19 import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
20 import org.eclipse.linuxtools.tmf.core.event.TmfTimeRange;
21 import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
22 import org.eclipse.linuxtools.tmf.core.event.TmfTimestampFormat;
23 import org.eclipse.linuxtools.tmf.core.signal.TmfSignalHandler;
24 import org.eclipse.linuxtools.tmf.core.signal.TmfSignalManager;
25 import org.eclipse.linuxtools.tmf.core.signal.TmfTimestampFormatUpdateSignal;
26 import org.eclipse.linuxtools.tmf.core.signal.TmfTraceUpdatedSignal;
27 import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
28 import org.eclipse.swt.widgets.Composite;
29
30 /**
31 * This control provides a group containing a text control.
32 *
33 * @version 1.1
34 * @author Francois Chouinard
35 */
36 public class HistogramCurrentTimeControl extends HistogramTextControl {
37
38 // ------------------------------------------------------------------------
39 // Attributes
40 // ------------------------------------------------------------------------
41
42 private long fTraceStartTime;
43
44 // ------------------------------------------------------------------------
45 // Construction
46 // ------------------------------------------------------------------------
47
48 /**
49 * Standard constructor
50 *
51 * @param parentView A parent histogram view
52 * @param parent A parent composite to draw in
53 * @param groupLabel A group value
54 * @param value A value
55 * @since 2.0
56 */
57 public HistogramCurrentTimeControl(HistogramView parentView, Composite parent,
58 String groupLabel, long value)
59 {
60 super(parentView, parent, groupLabel, value);
61 TmfSignalManager.register(this);
62 }
63
64 /* (non-Javadoc)
65 * @see org.eclipse.linuxtools.tmf.ui.views.histogram.HistogramTextControl#dispose()
66 */
67 @Override
68 public void dispose() {
69 TmfSignalManager.deregister(this);
70 }
71
72 // ------------------------------------------------------------------------
73 // Operations
74 // ------------------------------------------------------------------------
75
76 @Override
77 protected void updateValue() {
78 String string = fTextValue.getText();
79 long value = 0;
80 try {
81 value = TmfTimestampFormat.getDefaulTimeFormat().parseValue(string, getValue());
82 } catch (ParseException e) {
83 }
84 if (getValue() != value) {
85 // Make sure that the new time is within range
86 ITmfTrace trace = fParentView.getTrace();
87 if (trace != null) {
88 TmfTimeRange range = trace.getTimeRange();
89 long startTime = range.getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
90 long endTime = range.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
91 if (value < startTime) {
92 value = startTime;
93 } else if (value > endTime) {
94 value = endTime;
95 }
96 }
97
98 // Set and propagate
99 setValue(value);
100 fParentView.updateCurrentEventTime(value);
101 }
102 }
103
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
120 public void traceUpdated(final TmfTraceUpdatedSignal signal) {
121 fTraceStartTime = signal.getTrace().getTimeRange().getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
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
140 }
This page took 0.03544 seconds and 5 git commands to generate.