linux: make KernelStateProvider handle aggregate prev_states of sched_switch
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / histogram / HistogramView.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2015 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 * William Bourque - Initial API and implementation
11 * Yuriy Vashchuk - GUI reorganisation, simplification and some related code improvements.
12 * Yuriy Vashchuk - Histograms optimisation.
13 * Yuriy Vashchuk - Histogram Canvas Heritage correction
14 * Francois Chouinard - Cleanup and refactoring
15 * Francois Chouinard - Moved from LTTng to TMF
16 * Patrick Tasse - Update for mouse wheel zoom
17 * Xavier Raynaud - Support multi-trace coloring
18 *******************************************************************************/
19
20 package org.eclipse.tracecompass.tmf.ui.views.histogram;
21
22 import java.util.Collection;
23
24 import org.eclipse.jdt.annotation.NonNull;
25 import org.eclipse.jface.action.Action;
26 import org.eclipse.jface.action.IAction;
27 import org.eclipse.jface.action.Separator;
28 import org.eclipse.swt.SWT;
29 import org.eclipse.swt.custom.CLabel;
30 import org.eclipse.swt.custom.SashForm;
31 import org.eclipse.swt.custom.ScrolledComposite;
32 import org.eclipse.swt.events.MouseAdapter;
33 import org.eclipse.swt.events.MouseEvent;
34 import org.eclipse.swt.events.MouseWheelListener;
35 import org.eclipse.swt.events.PaintEvent;
36 import org.eclipse.swt.events.PaintListener;
37 import org.eclipse.swt.graphics.GC;
38 import org.eclipse.swt.graphics.Image;
39 import org.eclipse.swt.graphics.Point;
40 import org.eclipse.swt.graphics.Rectangle;
41 import org.eclipse.swt.layout.GridData;
42 import org.eclipse.swt.layout.GridLayout;
43 import org.eclipse.swt.layout.RowLayout;
44 import org.eclipse.swt.widgets.Composite;
45 import org.eclipse.swt.widgets.Control;
46 import org.eclipse.swt.widgets.Display;
47 import org.eclipse.swt.widgets.Event;
48 import org.eclipse.swt.widgets.Label;
49 import org.eclipse.swt.widgets.Listener;
50 import org.eclipse.swt.widgets.Sash;
51 import org.eclipse.tracecompass.internal.tmf.ui.Activator;
52 import org.eclipse.tracecompass.internal.tmf.ui.ITmfImageConstants;
53 import org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest;
54 import org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType;
55 import org.eclipse.tracecompass.tmf.core.signal.TmfSelectionRangeUpdatedSignal;
56 import org.eclipse.tracecompass.tmf.core.signal.TmfSignalHandler;
57 import org.eclipse.tracecompass.tmf.core.signal.TmfSignalManager;
58 import org.eclipse.tracecompass.tmf.core.signal.TmfSignalThrottler;
59 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceClosedSignal;
60 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceOpenedSignal;
61 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceRangeUpdatedSignal;
62 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceSelectedSignal;
63 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceUpdatedSignal;
64 import org.eclipse.tracecompass.tmf.core.signal.TmfWindowRangeUpdatedSignal;
65 import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
66 import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimeRange;
67 import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestamp;
68 import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
69 import org.eclipse.tracecompass.tmf.core.trace.TmfTraceContext;
70 import org.eclipse.tracecompass.tmf.core.trace.TmfTraceManager;
71 import org.eclipse.tracecompass.tmf.ui.signal.TmfTimeViewAlignmentInfo;
72 import org.eclipse.tracecompass.tmf.ui.signal.TmfTimeViewAlignmentSignal;
73 import org.eclipse.tracecompass.tmf.ui.views.ITmfTimeAligned;
74 import org.eclipse.tracecompass.tmf.ui.views.TmfView;
75 import org.eclipse.ui.IActionBars;
76
77 /**
78 * The purpose of this view is to provide graphical time distribution statistics about the trace events.
79 * <p>
80 * The view is composed of two histograms and two controls:
81 * <ul>
82 * <li>an event distribution histogram for the whole trace;
83 * <li>an event distribution histogram for current time window (window span);
84 * <li>the timestamp of the currently selected event;
85 * <li>the window span (size of the time window of the smaller histogram).
86 * </ul>
87 * The histograms x-axis show their respective time range.
88 *
89 * @version 2.0
90 * @author Francois Chouinard
91 */
92 public class HistogramView extends TmfView implements ITmfTimeAligned {
93
94 // ------------------------------------------------------------------------
95 // Constants
96 // ------------------------------------------------------------------------
97
98 /**
99 * The view ID as defined in plugin.xml
100 */
101 public static final @NonNull String ID = "org.eclipse.linuxtools.tmf.ui.views.histogram"; //$NON-NLS-1$
102
103 private static final Image LINK_IMG = Activator.getDefault().getImageFromPath(ITmfImageConstants.IMG_UI_LINK);
104
105 private static final int[] DEFAULT_WEIGHTS = {1, 3};
106
107 // ------------------------------------------------------------------------
108 // Attributes
109 // ------------------------------------------------------------------------
110
111 // The current trace
112 private ITmfTrace fTrace;
113
114 // Current timestamp/time window - everything in the TIME_SCALE
115 private long fTraceStartTime;
116 private long fTraceEndTime;
117 private long fWindowStartTime;
118 private long fWindowEndTime;
119 private long fWindowSpan;
120 private long fSelectionBeginTime;
121 private long fSelectionEndTime;
122
123 // SashForm
124 private SashForm fSashForm;
125 private ScrolledComposite fScrollComposite;
126 private Composite fTimeControlsComposite;
127 private Composite fTimeRangeComposite;
128 private Listener fSashDragListener;
129
130 // Time controls
131 private HistogramTextControl fSelectionStartControl;
132 private HistogramTextControl fSelectionEndControl;
133 private HistogramTextControl fTimeSpanControl;
134
135 // Link
136 private Label fLinkButton;
137 private boolean fLinkState;
138
139 // Histogram/request for the full trace range
140 private static FullTraceHistogram fFullTraceHistogram;
141 private HistogramRequest fFullTraceRequest;
142
143 // Histogram/request for the selected time range
144 private static TimeRangeHistogram fTimeRangeHistogram;
145 private HistogramRequest fTimeRangeRequest;
146
147 // Legend area
148 private Composite fLegendArea;
149 private Image[] fLegendImages;
150
151 // Throttlers for the time sync and time-range sync signals
152 private final TmfSignalThrottler fTimeSyncThrottle;
153 private final TmfSignalThrottler fTimeRangeSyncThrottle;
154
155 // Action for toggle showing the lost events
156 private Action hideLostEventsAction;
157 // Action for toggle showing the traces
158 private Action showTraceAction;
159
160 // ------------------------------------------------------------------------
161 // Constructor
162 // ------------------------------------------------------------------------
163
164 /**
165 * Default constructor
166 */
167 public HistogramView() {
168 super(ID);
169 fTimeSyncThrottle = new TmfSignalThrottler(this, 200);
170 fTimeRangeSyncThrottle = new TmfSignalThrottler(this, 200);
171 }
172
173 @Override
174 public void dispose() {
175 if ((fTimeRangeRequest != null) && !fTimeRangeRequest.isCompleted()) {
176 fTimeRangeRequest.cancel();
177 }
178 if ((fFullTraceRequest != null) && !fFullTraceRequest.isCompleted()) {
179 fFullTraceRequest.cancel();
180 }
181 fFullTraceHistogram.dispose();
182 fTimeRangeHistogram.dispose();
183 fSelectionStartControl.dispose();
184 fSelectionEndControl.dispose();
185 fTimeSpanControl.dispose();
186 disposeLegendImages();
187
188 super.dispose();
189 }
190
191 private void disposeLegendImages() {
192 if (fLegendImages != null) {
193 for (Image i: fLegendImages) {
194 i.dispose();
195 }
196 }
197 fLegendImages = null;
198 }
199
200 // ------------------------------------------------------------------------
201 // TmfView
202 // ------------------------------------------------------------------------
203
204 @Override
205 public void createPartControl(Composite parent) {
206 super.createPartControl(parent);
207
208 // Control labels
209 final String selectionStartLabel = Messages.HistogramView_selectionStartLabel;
210 final String selectionEndLabel = Messages.HistogramView_selectionEndLabel;
211 final String windowSpanLabel = Messages.HistogramView_windowSpanLabel;
212
213 // --------------------------------------------------------------------
214 // Set the HistogramView layout
215 // --------------------------------------------------------------------
216 Composite viewComposite = new Composite(getParentComposite(), SWT.FILL);
217 GridLayout gridLayout = new GridLayout(1, false);
218 gridLayout.verticalSpacing = 0;
219 gridLayout.marginHeight = 0;
220 gridLayout.marginWidth = 0;
221 viewComposite.setLayout(gridLayout);
222
223 // --------------------------------------------------------------------
224 // Add a sash for time controls and time range histogram
225 // --------------------------------------------------------------------
226
227 /*
228 * The ScrolledComposite preferred size can be larger than its visible
229 * width. This affects the preferred width of the SashForm. Set the
230 * preferred width to 1 to prevent it from affecting the preferred width
231 * of the view composite.
232 */
233 fSashForm = new SashForm(viewComposite, SWT.NONE) {
234 @Override
235 public Point computeSize(int wHint, int hHint) {
236 Point computedSize = super.computeSize(wHint, hHint);
237 if (wHint == SWT.DEFAULT) {
238 return new Point(1, computedSize.y);
239 }
240 return computedSize;
241 }
242 @Override
243 public Point computeSize(int wHint, int hHint, boolean changed) {
244 Point computedSize = super.computeSize(wHint, hHint, changed);
245 if (wHint == SWT.DEFAULT) {
246 return new Point(1, computedSize.y);
247 }
248 return computedSize;
249 }
250 };
251 GridData gridData = new GridData(GridData.FILL, GridData.FILL, false, true);
252 fSashForm.setLayoutData(gridData);
253
254 // --------------------------------------------------------------------
255 // Time controls
256 // --------------------------------------------------------------------
257 fScrollComposite = new PackedScrolledComposite(fSashForm, SWT.H_SCROLL | SWT.V_SCROLL);
258 fTimeControlsComposite = new Composite(fScrollComposite, SWT.NONE);
259 fScrollComposite.setContent(fTimeControlsComposite);
260 gridLayout = new GridLayout(1, false);
261 gridLayout.marginHeight = 0;
262 gridLayout.marginWidth = 0;
263 fScrollComposite.setLayout(gridLayout);
264 fScrollComposite.setExpandHorizontal(true);
265 fScrollComposite.setExpandVertical(true);
266
267 gridLayout = new GridLayout(1, false);
268 gridLayout.marginHeight = 0;
269 gridLayout.marginWidth = 0;
270 fTimeControlsComposite.setLayout(gridLayout);
271 gridData = new GridData(GridData.FILL, GridData.CENTER, false, true);
272 fTimeControlsComposite.setLayoutData(gridData);
273
274 Composite innerComp = new Composite(fTimeControlsComposite, SWT.NONE);
275
276 gridLayout = new GridLayout(2, false);
277 innerComp.setLayout(gridLayout);
278 gridLayout.marginHeight = 0;
279 gridLayout.marginWidth = 0;
280 gridLayout.horizontalSpacing = 5;
281 gridLayout.verticalSpacing = 1;
282 gridData = new GridData(GridData.FILL, GridData.CENTER, false, true);
283 innerComp.setLayoutData(gridData);
284
285 Composite selectionGroup = new Composite(innerComp, SWT.BORDER);
286 gridLayout = new GridLayout(1, false);
287 gridLayout.marginHeight = 0;
288 gridLayout.marginWidth = 0;
289 selectionGroup.setLayout(gridLayout);
290 gridData = new GridData(GridData.BEGINNING, GridData.CENTER, false, false);
291 selectionGroup.setLayoutData(gridData);
292
293 // Selection start control
294 gridData = new GridData(GridData.FILL, GridData.CENTER, false, false);
295 fSelectionStartControl = new HistogramSelectionStartControl(this, selectionGroup, selectionStartLabel, 0L);
296 fSelectionStartControl.setLayoutData(gridData);
297 fSelectionStartControl.setValue(Long.MIN_VALUE);
298
299 // Selection end control
300 gridData = new GridData(GridData.FILL, GridData.CENTER, false, false);
301 fSelectionEndControl = new HistogramSelectionEndControl(this, selectionGroup, selectionEndLabel, 0L);
302 fSelectionEndControl.setLayoutData(gridData);
303 fSelectionEndControl.setValue(Long.MIN_VALUE);
304
305 // Link button
306 gridData = new GridData(GridData.BEGINNING, GridData.CENTER, false, false);
307 fLinkButton = new Label(innerComp, SWT.NONE);
308 fLinkButton.setImage(LINK_IMG);
309 fLinkButton.setLayoutData(gridData);
310 addLinkButtonListeners();
311
312 // Window span time control
313 gridData = new GridData(GridData.FILL, GridData.CENTER, false, false);
314 fTimeSpanControl = new HistogramTimeRangeControl(this, innerComp, windowSpanLabel, 0L);
315 fTimeSpanControl.setLayoutData(gridData);
316 fTimeSpanControl.setValue(Long.MIN_VALUE);
317
318 // --------------------------------------------------------------------
319 // Time range histogram
320 // --------------------------------------------------------------------
321 fTimeRangeComposite = new Composite(fSashForm, SWT.NONE);
322 gridLayout = new GridLayout(1, true);
323 gridLayout.marginTop = 0;
324 gridLayout.marginWidth = 0;
325 fTimeRangeComposite.setLayout(gridLayout);
326
327 // Use remaining horizontal space
328 gridData = new GridData(GridData.FILL, GridData.FILL, true, true);
329 fTimeRangeComposite.setLayoutData(gridData);
330
331 // Histogram
332 fTimeRangeHistogram = new TimeRangeHistogram(this, fTimeRangeComposite, true);
333
334 // --------------------------------------------------------------------
335 // Full range histogram
336 // --------------------------------------------------------------------
337 final Composite fullRangeComposite = new Composite(viewComposite, SWT.FILL);
338 gridLayout = new GridLayout(1, true);
339 fullRangeComposite.setLayout(gridLayout);
340
341 // Use remaining horizontal space
342 gridData = new GridData(GridData.FILL, GridData.FILL, true, true, 2, 1);
343 fullRangeComposite.setLayoutData(gridData);
344
345 // Histogram
346 fFullTraceHistogram = new FullTraceHistogram(this, fullRangeComposite);
347
348 fLegendArea = new Composite(viewComposite, SWT.FILL);
349 fLegendArea.setLayoutData(new GridData(SWT.BEGINNING, SWT.BEGINNING, true, false, 2, 1));
350 fLegendArea.setLayout(new RowLayout());
351
352 // Add mouse wheel listener to time span control
353 MouseWheelListener listener = fFullTraceHistogram.getZoom();
354 fTimeSpanControl.addMouseWheelListener(listener);
355
356 // View Action Handling
357 contributeToActionBars();
358
359 ITmfTrace trace = TmfTraceManager.getInstance().getActiveTrace();
360 if (trace != null) {
361 traceSelected(new TmfTraceSelectedSignal(this, trace));
362 }
363
364 fSashForm.setVisible(true);
365 fSashForm.setWeights(DEFAULT_WEIGHTS);
366
367 fTimeControlsComposite.addPaintListener(new PaintListener() {
368 @Override
369 public void paintControl(PaintEvent e) {
370 // Sashes in a SashForm are being created on layout so add the
371 // drag listener here
372 if (fSashDragListener == null) {
373 for (Control control : fSashForm.getChildren()) {
374 if (control instanceof Sash) {
375 fSashDragListener = new Listener() {
376 @Override
377 public void handleEvent(Event event) {
378 TmfSignalManager.dispatchSignal(new TmfTimeViewAlignmentSignal(fSashForm, getTimeViewAlignmentInfo()));
379 }
380 };
381 control.removePaintListener(this);
382 control.addListener(SWT.Selection, fSashDragListener);
383 // There should be only one sash
384 break;
385 }
386 }
387 }
388 }
389 });
390 }
391
392 @Override
393 public void setFocus() {
394 fFullTraceHistogram.fCanvas.setFocus();
395 }
396
397 void refresh() {
398 getParentComposite().layout(true);
399 }
400
401 /**
402 * @since 1.0
403 */
404 @Override
405 public TmfTimeViewAlignmentInfo getTimeViewAlignmentInfo() {
406 if (fSashForm == null) {
407 return null;
408 }
409 return new TmfTimeViewAlignmentInfo(fSashForm.getShell(), fSashForm.toDisplay(0, 0), getTimeAxisOffset());
410 }
411
412 private int getTimeAxisOffset() {
413 return fScrollComposite.getSize().x + fSashForm.getSashWidth() + fTimeRangeHistogram.getPointAreaOffset();
414 }
415
416 /**
417 * @since 1.0
418 */
419 @Override
420 public int getAvailableWidth(int requestedOffset) {
421 int pointAreaWidth = fTimeRangeHistogram.getPointAreaWidth();
422 int curTimeAxisOffset = getTimeAxisOffset();
423 if (pointAreaWidth <= 0) {
424 pointAreaWidth = fSashForm.getBounds().width - curTimeAxisOffset;
425 }
426 int endOffset = curTimeAxisOffset + pointAreaWidth;
427 GridLayout layout = (GridLayout) fTimeRangeComposite.getLayout();
428 int endOffsetWithoutMargin = endOffset + layout.marginRight;
429 int availableWidth = endOffsetWithoutMargin - requestedOffset;
430 availableWidth = Math.min(fSashForm.getBounds().width, Math.max(0, availableWidth));
431
432 return availableWidth;
433 }
434
435 /**
436 * @since 1.0
437 */
438 @Override
439 public void performAlign(int offset, int width) {
440 int total = fSashForm.getBounds().width;
441 int plotAreaOffset = fTimeRangeHistogram.getPointAreaOffset();
442 int width1 = Math.max(0, offset - plotAreaOffset - fSashForm.getSashWidth());
443 int width2 = Math.max(0, total - width1 - fSashForm.getSashWidth());
444 if (width1 >= 0 && width2 > 0 || width1 > 0 && width2 >= 0) {
445 fSashForm.setWeights(new int[] { width1, width2 });
446 fSashForm.layout();
447 }
448
449 // calculate right margin
450 GridLayout layout = (GridLayout) fTimeRangeComposite.getLayout();
451 int timeBasedControlsWidth = fTimeRangeComposite.getSize().x;
452 int marginSize = timeBasedControlsWidth - width - plotAreaOffset;
453 layout.marginRight = Math.max(0, marginSize);
454 fTimeRangeComposite.layout();
455 }
456
457 // ------------------------------------------------------------------------
458 // Accessors
459 // ------------------------------------------------------------------------
460
461 /**
462 * Returns the current trace handled by the view
463 *
464 * @return the current trace
465 */
466 public ITmfTrace getTrace() {
467 return fTrace;
468 }
469
470 /**
471 * Returns the time range of the current selected window (base on default time scale).
472 *
473 * @return the time range of current selected window.
474 */
475 public TmfTimeRange getTimeRange() {
476 return new TmfTimeRange(
477 new TmfTimestamp(fWindowStartTime, ITmfTimestamp.NANOSECOND_SCALE),
478 new TmfTimestamp(fWindowEndTime, ITmfTimestamp.NANOSECOND_SCALE));
479 }
480
481 /**
482 * get the show lost events action
483 *
484 * @return The action object
485 */
486 public Action getShowLostEventsAction() {
487 if (hideLostEventsAction == null) {
488 /* show lost events */
489 hideLostEventsAction = new Action(Messages.HistogramView_hideLostEvents, IAction.AS_CHECK_BOX) {
490 @Override
491 public void run() {
492 HistogramScaledData.hideLostEvents = hideLostEventsAction.isChecked();
493 long maxNbEvents = HistogramScaledData.hideLostEvents ? fFullTraceHistogram.fScaledData.fMaxValue : fFullTraceHistogram.fScaledData.fMaxCombinedValue;
494 fFullTraceHistogram.setMaxNbEvents(maxNbEvents);
495 maxNbEvents = HistogramScaledData.hideLostEvents ? fTimeRangeHistogram.fScaledData.fMaxValue : fTimeRangeHistogram.fScaledData.fMaxCombinedValue;
496 fTimeRangeHistogram.setMaxNbEvents(maxNbEvents);
497 }
498 };
499 hideLostEventsAction.setText(Messages.HistogramView_hideLostEvents);
500 hideLostEventsAction.setToolTipText(Messages.HistogramView_hideLostEvents);
501 hideLostEventsAction.setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_SHOW_LOST_EVENTS));
502 }
503 return hideLostEventsAction;
504 }
505
506 /**
507 * get the show trace action
508 *
509 * @return The action object
510 */
511 public Action getShowTraceAction() {
512 if (showTraceAction == null) {
513 /* show lost events */
514 showTraceAction = new Action(Messages.HistogramView_showTraces, IAction.AS_CHECK_BOX) {
515 @Override
516 public void run() {
517 Histogram.showTraces = showTraceAction.isChecked();
518 fFullTraceHistogram.fCanvas.redraw();
519 fTimeRangeHistogram.fCanvas.redraw();
520 updateLegendArea();
521 }
522 };
523 showTraceAction.setChecked(true);
524 showTraceAction.setText(Messages.HistogramView_showTraces);
525 showTraceAction.setToolTipText(Messages.HistogramView_showTraces);
526 showTraceAction.setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_SHOW_HIST_TRACES));
527 }
528 return showTraceAction;
529 }
530
531 // ------------------------------------------------------------------------
532 // Operations
533 // ------------------------------------------------------------------------
534
535 /**
536 * Broadcast TmfSignal about new current selection time range.
537 * @param beginTime the begin time of current selection.
538 * @param endTime the end time of current selection.
539 */
540 void updateSelectionTime(long beginTime, long endTime) {
541 updateDisplayedSelectionTime(beginTime, endTime);
542 TmfTimestamp beginTs = new TmfTimestamp(beginTime, ITmfTimestamp.NANOSECOND_SCALE);
543 TmfTimestamp endTs = new TmfTimestamp(endTime, ITmfTimestamp.NANOSECOND_SCALE);
544 TmfSelectionRangeUpdatedSignal signal = new TmfSelectionRangeUpdatedSignal(this, beginTs, endTs);
545 fTimeSyncThrottle.queue(signal);
546 }
547
548 /**
549 * Get selection begin time
550 * @return the begin time of current selection
551 */
552 long getSelectionBegin() {
553 return fSelectionBeginTime;
554 }
555
556 /**
557 * Get selection end time
558 * @return the end time of current selection
559 */
560 long getSelectionEnd() {
561 return fSelectionEndTime;
562 }
563
564 /**
565 * Get the link state
566 * @return true if begin and end selection time should be linked
567 */
568 boolean getLinkState() {
569 return fLinkState;
570 }
571
572 /**
573 * Broadcast TmfSignal about new selection time range.
574 * @param startTime the new start time
575 * @param endTime the new end time
576 */
577 void updateTimeRange(long startTime, long endTime) {
578 if (fTrace != null) {
579 // Build the new time range; keep the current time
580 TmfTimeRange timeRange = new TmfTimeRange(
581 new TmfTimestamp(startTime, ITmfTimestamp.NANOSECOND_SCALE),
582 new TmfTimestamp(endTime, ITmfTimestamp.NANOSECOND_SCALE));
583 fTimeSpanControl.setValue(endTime - startTime);
584
585 updateDisplayedTimeRange(startTime, endTime);
586
587 // Send the FW signal
588 TmfWindowRangeUpdatedSignal signal = new TmfWindowRangeUpdatedSignal(this, timeRange);
589 fTimeRangeSyncThrottle.queue(signal);
590 }
591 }
592
593 /**
594 * Broadcast TmfSignal about new selected time range.
595 * @param newDuration new duration (relative to current start time)
596 */
597 public synchronized void updateTimeRange(long newDuration) {
598 if (fTrace != null) {
599 long delta = newDuration - fWindowSpan;
600 long newStartTime = fWindowStartTime - (delta / 2);
601 setNewRange(newStartTime, newDuration);
602 }
603 }
604
605 private void setNewRange(long startTime, long duration) {
606 long realStart = startTime;
607
608 if (realStart < fTraceStartTime) {
609 realStart = fTraceStartTime;
610 }
611
612 long endTime = realStart + duration;
613 if (endTime > fTraceEndTime) {
614 endTime = fTraceEndTime;
615 if ((endTime - duration) > fTraceStartTime) {
616 realStart = endTime - duration;
617 } else {
618 realStart = fTraceStartTime;
619 }
620 }
621 updateTimeRange(realStart, endTime);
622 }
623
624 // ------------------------------------------------------------------------
625 // Signal handlers
626 // ------------------------------------------------------------------------
627
628 /**
629 * Handles trace opened signal. Loads histogram if new trace time range is not
630 * equal <code>TmfTimeRange.NULL_RANGE</code>
631 * @param signal the trace opened signal
632 */
633 @TmfSignalHandler
634 public void traceOpened(TmfTraceOpenedSignal signal) {
635 assert (signal != null);
636 fTrace = signal.getTrace();
637 loadTrace();
638 }
639
640 /**
641 * Handles trace selected signal. Loads histogram if new trace time range is not
642 * equal <code>TmfTimeRange.NULL_RANGE</code>
643 * @param signal the trace selected signal
644 */
645 @TmfSignalHandler
646 public void traceSelected(TmfTraceSelectedSignal signal) {
647 assert (signal != null);
648 if (fTrace != signal.getTrace()) {
649 fTrace = signal.getTrace();
650 loadTrace();
651 }
652 }
653
654 private void loadTrace() {
655 initializeHistograms();
656 getParentComposite().redraw();
657 }
658
659 /**
660 * Handles trace closed signal. Clears the view and data model and cancels requests.
661 * @param signal the trace closed signal
662 */
663 @TmfSignalHandler
664 public void traceClosed(TmfTraceClosedSignal signal) {
665
666 if (signal.getTrace() != fTrace) {
667 return;
668 }
669
670 // Kill any running request
671 if ((fTimeRangeRequest != null) && !fTimeRangeRequest.isCompleted()) {
672 fTimeRangeRequest.cancel();
673 }
674 if ((fFullTraceRequest != null) && !fFullTraceRequest.isCompleted()) {
675 fFullTraceRequest.cancel();
676 }
677
678 // Initialize the internal data
679 fTrace = null;
680 fTraceStartTime = 0L;
681 fTraceEndTime = 0L;
682 fWindowStartTime = 0L;
683 fWindowEndTime = 0L;
684 fWindowSpan = 0L;
685 fSelectionBeginTime = 0L;
686 fSelectionEndTime = 0L;
687
688 // Clear the UI widgets
689 fFullTraceHistogram.clear();
690 fTimeRangeHistogram.clear();
691 fSelectionStartControl.setValue(Long.MIN_VALUE);
692 fSelectionEndControl.setValue(Long.MIN_VALUE);
693
694 fTimeSpanControl.setValue(Long.MIN_VALUE);
695
696 for (Control c: fLegendArea.getChildren()) {
697 c.dispose();
698 }
699 disposeLegendImages();
700 fLegendArea.layout();
701 fLegendArea.getParent().layout();
702 }
703
704 /**
705 * Handles trace range updated signal. Extends histogram according to the new time range. If a
706 * HistogramRequest is already ongoing, it will be cancelled and a new request with the new range
707 * will be issued.
708 *
709 * @param signal the trace range updated signal
710 */
711 @TmfSignalHandler
712 public void traceRangeUpdated(TmfTraceRangeUpdatedSignal signal) {
713
714 if (signal.getTrace() != fTrace) {
715 return;
716 }
717
718 TmfTimeRange fullRange = signal.getRange();
719
720 fTraceStartTime = fullRange.getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
721 fTraceEndTime = fullRange.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
722
723 fFullTraceHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
724 fTimeRangeHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
725
726 sendFullRangeRequest(fullRange);
727 }
728
729 /**
730 * Handles the trace updated signal. Used to update time limits (start and end time)
731 * @param signal the trace updated signal
732 */
733 @TmfSignalHandler
734 public void traceUpdated(TmfTraceUpdatedSignal signal) {
735 if (signal.getTrace() != fTrace) {
736 return;
737 }
738 TmfTimeRange fullRange = signal.getTrace().getTimeRange();
739 fTraceStartTime = fullRange.getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
740 fTraceEndTime = fullRange.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
741
742 fFullTraceHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
743 fTimeRangeHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
744
745 if ((fFullTraceRequest != null) && fFullTraceRequest.getRange().getEndTime().compareTo(signal.getRange().getEndTime()) < 0) {
746 sendFullRangeRequest(fullRange);
747 }
748 }
749
750 /**
751 * Handles the selection range updated signal. Sets the current time
752 * selection in the time range histogram as well as the full histogram.
753 *
754 * @param signal
755 * the signal to process
756 * @since 1.0
757 */
758 @TmfSignalHandler
759 public void selectionRangeUpdated(final TmfSelectionRangeUpdatedSignal signal) {
760 if (Display.getCurrent() == null) {
761 // Make sure the signal is handled in the UI thread
762 Display.getDefault().asyncExec(new Runnable() {
763 @Override
764 public void run() {
765 if (getParentComposite().isDisposed()) {
766 return;
767 }
768 selectionRangeUpdated(signal);
769 }
770 });
771 return;
772 }
773
774 // Update the selected time range
775 ITmfTimestamp beginTime = signal.getBeginTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE);
776 ITmfTimestamp endTime = signal.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE);
777 updateDisplayedSelectionTime(beginTime.getValue(), endTime.getValue());
778 }
779
780 /**
781 * Updates the current window time range in the time range histogram and
782 * full range histogram.
783 *
784 * @param signal
785 * the signal to process
786 * @since 1.0
787 */
788 @TmfSignalHandler
789 public void windowRangeUpdated(final TmfWindowRangeUpdatedSignal signal) {
790 if (Display.getCurrent() == null) {
791 // Make sure the signal is handled in the UI thread
792 Display.getDefault().asyncExec(new Runnable() {
793 @Override
794 public void run() {
795 if (getParentComposite().isDisposed()) {
796 return;
797 }
798 windowRangeUpdated(signal);
799 }
800 });
801 return;
802 }
803
804 if (fTrace != null) {
805 // Validate the time range
806 TmfTimeRange range = signal.getCurrentRange().getIntersection(fTrace.getTimeRange());
807 if (range == null) {
808 return;
809 }
810
811 updateDisplayedTimeRange(
812 range.getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue(),
813 range.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue());
814
815 // Send the event request to populate the small histogram
816 sendTimeRangeRequest(fWindowStartTime, fWindowEndTime);
817
818 fTimeSpanControl.setValue(fWindowSpan);
819 }
820 }
821
822 // ------------------------------------------------------------------------
823 // Helper functions
824 // ------------------------------------------------------------------------
825
826 private void initializeHistograms() {
827 TmfTimeRange fullRange = updateTraceTimeRange();
828
829 TmfTraceContext ctx = TmfTraceManager.getInstance().getCurrentTraceContext();
830 long selectionBeginTime = ctx.getSelectionRange().getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
831 long selectionEndTime = ctx.getSelectionRange().getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
832 long startTime = ctx.getWindowRange().getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
833 long duration = ctx.getWindowRange().getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue() - startTime;
834
835 if ((fTimeRangeRequest != null) && !fTimeRangeRequest.isCompleted()) {
836 fTimeRangeRequest.cancel();
837 }
838 fTimeRangeHistogram.clear();
839 fTimeRangeHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
840 fTimeRangeHistogram.setTimeRange(startTime, duration);
841 fTimeRangeHistogram.setSelection(selectionBeginTime, selectionEndTime);
842 fTimeRangeHistogram.fDataModel.setTrace(fTrace);
843
844 if ((fFullTraceRequest != null) && !fFullTraceRequest.isCompleted()) {
845 fFullTraceRequest.cancel();
846 }
847 fFullTraceHistogram.clear();
848 fFullTraceHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
849 fFullTraceHistogram.setTimeRange(startTime, duration);
850 fFullTraceHistogram.setSelection(selectionBeginTime, selectionEndTime);
851 fFullTraceHistogram.fDataModel.setTrace(fTrace);
852
853 fWindowStartTime = startTime;
854 fWindowSpan = duration;
855 fWindowEndTime = startTime + duration;
856
857 fSelectionBeginTime = selectionBeginTime;
858 fSelectionEndTime = selectionEndTime;
859 fSelectionStartControl.setValue(fSelectionBeginTime);
860 fSelectionEndControl.setValue(fSelectionEndTime);
861
862 // make sure that the scrollbar is setup properly
863 fScrollComposite.setMinSize(fTimeControlsComposite.computeSize(SWT.DEFAULT, SWT.DEFAULT));
864 fTimeSpanControl.setValue(duration);
865
866 Collection<ITmfTrace> traces = TmfTraceManager.getTraceSet(fTrace);
867 if (!traces.isEmpty()) {
868 this.showTraceAction.setEnabled(traces.size() < fFullTraceHistogram.getMaxNbTraces());
869 }
870 updateLegendArea();
871
872 if (!fullRange.equals(TmfTimeRange.NULL_RANGE)) {
873 sendTimeRangeRequest(startTime, startTime + duration);
874 sendFullRangeRequest(fullRange);
875 }
876 }
877
878 private void updateLegendArea() {
879 for (Control c: fLegendArea.getChildren()) {
880 c.dispose();
881 }
882 disposeLegendImages();
883 if (fFullTraceHistogram.showTraces()) {
884 Collection<ITmfTrace> traces = TmfTraceManager.getTraceSet(fTrace);
885 fLegendImages = new Image[traces.size()];
886 int traceIndex = 0;
887 for (ITmfTrace trace : traces) {
888 fLegendImages[traceIndex] = new Image(fLegendArea.getDisplay(), 16, 16);
889 GC gc = new GC(fLegendImages[traceIndex]);
890 gc.setBackground(fFullTraceHistogram.getTraceColor(traceIndex));
891 gc.fillRectangle(0, 0, 15, 15);
892 gc.setForeground(fLegendArea.getDisplay().getSystemColor(SWT.COLOR_BLACK));
893 gc.drawRectangle(0, 0, 15, 15);
894 gc.dispose();
895
896 CLabel label = new CLabel(fLegendArea, SWT.NONE);
897 label.setText(trace.getName());
898 label.setImage(fLegendImages[traceIndex]);
899 traceIndex++;
900 }
901 }
902 fLegendArea.layout();
903 fLegendArea.getParent().layout();
904 }
905
906 private void updateDisplayedSelectionTime(long beginTime, long endTime) {
907 fSelectionBeginTime = beginTime;
908 fSelectionEndTime = endTime;
909
910 fFullTraceHistogram.setSelection(fSelectionBeginTime, fSelectionEndTime);
911 fTimeRangeHistogram.setSelection(fSelectionBeginTime, fSelectionEndTime);
912 fSelectionStartControl.setValue(fSelectionBeginTime);
913 fSelectionEndControl.setValue(fSelectionEndTime);
914 }
915
916 private void updateDisplayedTimeRange(long start, long end) {
917 fWindowStartTime = start;
918 fWindowEndTime = end;
919 fWindowSpan = fWindowEndTime - fWindowStartTime;
920 fFullTraceHistogram.setTimeRange(fWindowStartTime, fWindowSpan);
921 }
922
923 private TmfTimeRange updateTraceTimeRange() {
924 fTraceStartTime = 0L;
925 fTraceEndTime = 0L;
926
927 TmfTimeRange timeRange = fTrace.getTimeRange();
928 if (!timeRange.equals(TmfTimeRange.NULL_RANGE)) {
929 fTraceStartTime = timeRange.getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
930 fTraceEndTime = timeRange.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
931 }
932 return timeRange;
933 }
934
935 private void sendTimeRangeRequest(long startTime, long endTime) {
936 if ((fTimeRangeRequest != null) && !fTimeRangeRequest.isCompleted()) {
937 fTimeRangeRequest.cancel();
938 }
939 TmfTimestamp startTS = new TmfTimestamp(startTime, ITmfTimestamp.NANOSECOND_SCALE);
940 TmfTimestamp endTS = new TmfTimestamp(endTime, ITmfTimestamp.NANOSECOND_SCALE);
941 TmfTimeRange timeRange = new TmfTimeRange(startTS, endTS);
942
943 fTimeRangeHistogram.clear();
944 fTimeRangeHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
945 fTimeRangeHistogram.setTimeRange(startTime, endTime - startTime);
946
947 int cacheSize = fTrace.getCacheSize();
948 fTimeRangeRequest = new HistogramRequest(fTimeRangeHistogram.getDataModel(),
949 timeRange, 0, ITmfEventRequest.ALL_DATA, cacheSize, ExecutionType.FOREGROUND, false);
950 fTrace.sendRequest(fTimeRangeRequest);
951 }
952
953 private void sendFullRangeRequest(TmfTimeRange fullRange) {
954 if ((fFullTraceRequest != null) && !fFullTraceRequest.isCompleted()) {
955 fFullTraceRequest.cancel();
956 }
957 int cacheSize = fTrace.getCacheSize();
958 fFullTraceRequest = new HistogramRequest(fFullTraceHistogram.getDataModel(),
959 fullRange,
960 (int) fFullTraceHistogram.fDataModel.getNbEvents(),
961 ITmfEventRequest.ALL_DATA,
962 cacheSize,
963 ExecutionType.BACKGROUND, true);
964 fTrace.sendRequest(fFullTraceRequest);
965 }
966
967 private void contributeToActionBars() {
968 IActionBars bars = getViewSite().getActionBars();
969 bars.getToolBarManager().add(getShowLostEventsAction());
970 bars.getToolBarManager().add(getShowTraceAction());
971 bars.getToolBarManager().add(new Separator());
972 }
973
974 private void addLinkButtonListeners() {
975 fLinkButton.addMouseListener(new MouseAdapter() {
976 @Override
977 public void mouseDown(MouseEvent e) {
978 fSelectionEndControl.setEnabled(fLinkState);
979 fLinkState = !fLinkState;
980 fLinkButton.redraw();
981 }
982 });
983
984 fLinkButton.addPaintListener(new PaintListener() {
985 @Override
986 public void paintControl(PaintEvent e) {
987 if (fLinkState) {
988 Rectangle r = fLinkButton.getBounds();
989 r.x = -1;
990 r.y = -1;
991 e.gc.setForeground(e.display.getSystemColor(SWT.COLOR_WIDGET_NORMAL_SHADOW));
992 e.gc.drawRectangle(r);
993 r.x = 0;
994 r.y = 0;
995 e.gc.setForeground(e.display.getSystemColor(SWT.COLOR_DARK_GRAY));
996 e.gc.drawRectangle(r);
997 }
998 }
999 });
1000 }
1001
1002 private static class PackedScrolledComposite extends ScrolledComposite {
1003 Point fScrollBarSize; // Size of OS-specific scrollbar
1004
1005 public PackedScrolledComposite(Composite parent, int style) {
1006 super(parent, style);
1007 Composite composite = new Composite(parent, SWT.H_SCROLL | SWT.V_SCROLL);
1008 composite.setSize(1, 1);
1009 fScrollBarSize = composite.computeSize(0, 0);
1010 composite.dispose();
1011 }
1012
1013 @Override
1014 public Point computeSize(int wHint, int hHint, boolean changed) {
1015 Point point = super.computeSize(wHint, hHint, changed);
1016 // Remove scrollbar size if applicable
1017 point.x += ((getStyle() & SWT.V_SCROLL) != 0) ? -fScrollBarSize.x : 0;
1018 point.y += ((getStyle() & SWT.H_SCROLL) != 0) ? -fScrollBarSize.y : 0;
1019 return point;
1020 }
1021 }
1022 }
This page took 0.074059 seconds and 5 git commands to generate.