tmf: Split the state system in a separate plugin
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.ui / src / org / eclipse / linuxtools / internal / lttng2 / kernel / ui / views / cpuusage / CpuUsageXYViewer.java
1 /*******************************************************************************
2 * Copyright (c) 2014 École Polytechnique de Montréal
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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.internal.lttng2.kernel.ui.views.cpuusage;
14
15 import java.util.Arrays;
16 import java.util.HashMap;
17 import java.util.LinkedHashMap;
18 import java.util.Map;
19 import java.util.Map.Entry;
20
21 import org.eclipse.core.runtime.IProgressMonitor;
22 import org.eclipse.jface.viewers.ISelectionChangedListener;
23 import org.eclipse.jface.viewers.IStructuredSelection;
24 import org.eclipse.jface.viewers.SelectionChangedEvent;
25 import org.eclipse.linuxtools.internal.lttng2.kernel.ui.Activator;
26 import org.eclipse.linuxtools.lttng2.kernel.core.cpuusage.LttngKernelCpuUsageAnalysis;
27 import org.eclipse.linuxtools.statesystem.core.ITmfStateSystem;
28 import org.eclipse.linuxtools.statesystem.core.exceptions.StateValueTypeException;
29 import org.eclipse.linuxtools.tmf.ui.viewers.xycharts.linecharts.TmfCommonXLineChartViewer;
30 import org.eclipse.swt.widgets.Composite;
31
32 /**
33 * CPU usage viewer with XY line chart. It displays the total CPU usage and that
34 * of the threads selected in the CPU usage tree viewer.
35 *
36 * @author Geneviève Bastien
37 */
38 public class CpuUsageXYViewer extends TmfCommonXLineChartViewer {
39
40 private LttngKernelCpuUsageAnalysis fModule = null;
41
42 /* Maps a thread ID to a list of y values */
43 private final Map<String, double[]> fYValues = new LinkedHashMap<>();
44 /*
45 * To avoid up and downs CPU usage when process is in and out of CPU
46 * frequently, use a smaller resolution to get better averages.
47 */
48 private static final double RESOLUTION = 0.4;
49
50 private long fSelectedThread = -1;
51
52 /**
53 * Constructor
54 *
55 * @param parent
56 * parent composite
57 * @param treeViewer
58 * The tree viewer containing the list of threads with CPU usage.
59 * A listener will be added to that viewer so it can synchronize
60 * with the selection from the viewer.
61 */
62 public CpuUsageXYViewer(Composite parent, CpuUsageComposite treeViewer) {
63 super(parent, Messages.CpuUsageXYViewer_Title, Messages.CpuUsageXYViewer_TimeXAxis, Messages.CpuUsageXYViewer_CpuYAxis);
64 setResolution(RESOLUTION);
65
66 /* Add selection listener to tree viewer */
67 treeViewer.addSelectionChangeListener(new ISelectionChangedListener() {
68 @Override
69 public void selectionChanged(SelectionChangedEvent event) {
70 if (event.getSelection() instanceof IStructuredSelection) {
71 Object selection = ((IStructuredSelection) event.getSelection()).getFirstElement();
72 if (selection instanceof CpuUsageEntry) {
73 CpuUsageEntry entry = (CpuUsageEntry) selection;
74 setSelectedThread(Long.valueOf(entry.getTid()));
75 }
76 }
77 }
78 });
79 }
80
81 @Override
82 protected void initializeDataSource() {
83 if (getTrace() != null) {
84 fModule = getTrace().getAnalysisModuleOfClass(LttngKernelCpuUsageAnalysis.class, LttngKernelCpuUsageAnalysis.ID);
85 if (fModule == null) {
86 return;
87 }
88 fModule.schedule();
89 }
90 }
91
92 private static double[] zeroFill(int nb) {
93 double[] arr = new double[nb];
94 Arrays.fill(arr, 0.0);
95 return arr;
96 }
97
98 @Override
99 protected void updateData(long start, long end, int nb, IProgressMonitor monitor) {
100 try {
101 if (getTrace() == null || fModule == null) {
102 return;
103 }
104 ITmfStateSystem ss = fModule.getStateSystem();
105 /*
106 * Don't wait for the module completion or initialization, when it's
107 * ready, we'll know
108 */
109 if (ss == null) {
110 return;
111 }
112 double[] xvalues = getXAxis(start, end, nb);
113 if (xvalues.length == 0) {
114 return;
115 }
116 setXAxis(xvalues);
117
118 long traceStart = getStartTime();
119 long traceEnd = getEndTime();
120 long offset = getTimeOffset();
121 long selectedThread = fSelectedThread;
122
123 /* Initialize the data */
124 Map<String, Long> cpuUsageMap = fModule.getCpuUsageInRange(Math.max(start, traceStart), Math.min(end, traceEnd));
125 Map<String, String> totalEntries = new HashMap<>();
126 fYValues.clear();
127 fYValues.put(Messages.CpuUsageXYViewer_Total, zeroFill(xvalues.length));
128 String stringSelectedThread = Long.toString(selectedThread);
129 if (selectedThread != -1) {
130 fYValues.put(stringSelectedThread, zeroFill(xvalues.length));
131 }
132
133 for (Entry<String, Long> entry : cpuUsageMap.entrySet()) {
134 /*
135 * Process only entries representing the total of all CPUs and
136 * that have time on CPU
137 */
138 if (entry.getValue() == 0) {
139 continue;
140 }
141 if (!entry.getKey().startsWith(LttngKernelCpuUsageAnalysis.TOTAL)) {
142 continue;
143 }
144 String[] strings = entry.getKey().split(LttngKernelCpuUsageAnalysis.SPLIT_STRING, 2);
145
146 if ((strings.length > 1) && !(strings[1].equals(LttngKernelCpuUsageAnalysis.TID_ZERO))) {
147 /* This is the total cpu usage for a thread */
148 totalEntries.put(strings[1], entry.getKey());
149 }
150 }
151
152 double prevX = xvalues[0];
153 long prevTime = (long) prevX + offset;
154 /*
155 * make sure that time is in the trace range after double to long
156 * conversion
157 */
158 prevTime = Math.max(traceStart, prevTime);
159 prevTime = Math.min(traceEnd, prevTime);
160 /* Get CPU usage statistics for each x value */
161 for (int i = 1; i < xvalues.length; i++) {
162 if (monitor.isCanceled()) {
163 return;
164 }
165 long totalCpu = 0;
166 double x = xvalues[i];
167 long time = (long) x + offset;
168 time = Math.max(traceStart, time);
169 time = Math.min(traceEnd, time);
170
171 cpuUsageMap = fModule.getCpuUsageInRange(prevTime, time);
172
173 /*
174 * Calculate the sum of all total entries, and add a data point
175 * to the selected one
176 */
177 for (Entry<String, String> entry : totalEntries.entrySet()) {
178 Long cpuEntry = cpuUsageMap.get(entry.getValue());
179 cpuEntry = cpuEntry != null ? cpuEntry : 0L;
180
181 totalCpu += cpuEntry;
182
183 if (entry.getKey().equals(stringSelectedThread)) {
184 /* This is the total cpu usage for a thread */
185 fYValues.get(entry.getKey())[i] = (double) cpuEntry / (double) (time - prevTime) * 100;
186 }
187
188 }
189 fYValues.get(Messages.CpuUsageXYViewer_Total)[i] = (double) totalCpu / (double) (time - prevTime) * 100;
190 prevTime = time;
191 }
192 for (Entry<String, double[]> entry : fYValues.entrySet()) {
193 setSeries(entry.getKey(), entry.getValue());
194 }
195 if (monitor.isCanceled()) {
196 return;
197 }
198 updateDisplay();
199 } catch (StateValueTypeException e) {
200 Activator.getDefault().logError("Error updating the data of the CPU usage view", e); //$NON-NLS-1$
201 }
202
203 }
204
205 /**
206 * Set the selected thread ID, which will be graphed in this viewer
207 *
208 * @param tid
209 * The selected thread ID
210 */
211 public void setSelectedThread(long tid) {
212 cancelUpdate();
213 deleteSeries(Long.toString(fSelectedThread));
214 fSelectedThread = tid;
215 updateContent();
216 }
217
218 }
This page took 0.046583 seconds and 5 git commands to generate.