blob: df7b489f41457de6e5fd4d6c11c63908e8c3b662 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2015, 2016 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Bernd Hufmann - Initial API and implementation
**********************************************************************/
package org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.scatter;
import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestamp;
import org.eclipse.tracecompass.tmf.ui.viewers.xycharts.ITmfChartTimeProvider;
import org.eclipse.tracecompass.tmf.ui.viewers.xycharts.TmfClosestDataPointTooltipProvider;
import org.eclipse.tracecompass.tmf.ui.views.FormatTimeUtils;
import org.eclipse.tracecompass.tmf.ui.views.FormatTimeUtils.Resolution;
import org.eclipse.tracecompass.tmf.ui.views.FormatTimeUtils.TimeFormat;
import org.swtchart.ISeries;
/**
* Tooltip provider for durations scatter charts. It displays the y value of
* position x as well as it highlights the closest data point.
*
* @author Bernd Hufmann
*/
public class SegmentStoreScatterGraphTooltipProvider extends TmfClosestDataPointTooltipProvider{
// ------------------------------------------------------------------------
// Constructors
// ------------------------------------------------------------------------
/**
* Constructor for the segment store scatter chart tooltip provider.
*
* @param tmfChartViewer
* - the parent chart viewer
*/
public SegmentStoreScatterGraphTooltipProvider(ITmfChartTimeProvider tmfChartViewer) {
super(tmfChartViewer);
}
// ------------------------------------------------------------------------
// TmfClosestDataPointTooltipProvider
// ------------------------------------------------------------------------
@Override
protected @Nullable Map<String, Map<String, Object>> createToolTipMap(Parameter param) {
ISeries[] series = getChart().getSeriesSet().getSeries();
int seriesIndex = param.getSeriesIndex();
int dataIndex = param.getDataIndex();
if ((series != null) && (seriesIndex < series.length)) {
Map<String, Object> segMap = new HashMap<>();
ISeries serie = series[seriesIndex];
double[] xS = serie.getXSeries();
double[] yS = serie.getYSeries();
if ((xS != null) && (yS != null) && (dataIndex < xS.length) && (dataIndex < yS.length)) {
ITmfTimestamp segTs = TmfTimestamp.fromNanos((long) xS[dataIndex] + getChartViewer().getTimeOffset());
long segDuration = (long) yS[dataIndex];
segMap.put(checkNotNull(Messages.SegmentStoreScatterGraphViewer_xAxis), segTs);
segMap.put(checkNotNull(Messages.SegmentStoreScatterGraphViewer_yAxis), String.valueOf(FormatTimeUtils.formatDelta(segDuration, TimeFormat.RELATIVE, Resolution.NANOSEC)));
return Collections.singletonMap(checkNotNull(Messages.SegmentStoreScatterGraphTooltipProvider_category), segMap);
}
}
return null;
}
}