Skip to main content
summaryrefslogtreecommitdiffstats
blob: 93006f5bcbdf1366e41a178e1b6d8ffd1ef40b69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/*******************************************************************************
 * Copyright (c) 2009 STMicroelectronics.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Xavier Raynaud <xavier.raynaud@st.com> - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.gcov.view;

import java.util.LinkedList;
import java.util.List;

import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.jface.action.Separator;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.linuxtools.dataviewers.abstractview.AbstractSTDataView;
import org.eclipse.linuxtools.dataviewers.abstractviewers.AbstractSTViewer;
import org.eclipse.linuxtools.dataviewers.abstractviewers.STDataViewersImages;
import org.eclipse.linuxtools.dataviewers.actions.STExportToCSVAction;
import org.eclipse.linuxtools.dataviewers.charts.actions.ChartAction;
import org.eclipse.linuxtools.gcov.Activator;
import org.eclipse.linuxtools.gcov.action.SwitchContentProviderAction;
import org.eclipse.linuxtools.gcov.parser.CovManager;
import org.eclipse.linuxtools.gcov.parser.SourceFile;
import org.eclipse.linuxtools.gcov.view.annotatedsource.OpenSourceFileAction;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;


/**
 * @author Xavier Raynaud <xavier.raynaud@st.com>
 *
 */
public class CovView extends AbstractSTDataView {

	private String defaultCSVPath = "gcov.csv";
	
	private Label label;

	private Action folderAction;
	private Action fileAction;
	private Action functionAction;

	/* (non-Javadoc)
	 * @see org.eclipse.linuxtools.dataviewers.abstractview.AbstractSTDataView#createAbstractSTViewer
	 * (org.eclipse.swt.widgets.Composite)
	 */
	protected AbstractSTViewer createAbstractSTViewer(Composite parent) {
		return new CovViewer(parent);
	}

	/* (non-Javadoc)
	 * @see org.eclipse.linuxtools.dataviewers.abstractview.AbstractSTDataViewer#contributeToToolbar(org.eclipse.jface.action.IToolBarManager)
	 */
	@Override
	protected void contributeToToolbar(IToolBarManager manager) {
		super.contributeToToolbar(manager);
		manager.add(new Separator());
		manager.add(new Separator());
		manager.add(folderAction);
		manager.add(fileAction);
		manager.add(functionAction);
		manager.add(new Separator());
		manager.add(new ChartAction(getViewSite().getShell(), getSTViewer()));
	}

	/* (non-Javadoc)
	 * @see org.eclipse.linuxtools.dataviewers.abstractview.AbstractSTDataViewer#createActions()
	 */
	@Override
	protected void createActions() {
		STDataViewersImages.getImageDescriptor(""); // workaround a bug
		super.createActions();
		folderAction = new SwitchContentProviderAction(
				"Sort coverage per folder", 
				"icons/directory_obj.gif",
				getSTViewer().getViewer(),
				CovFolderContentProvider.sharedInstance);

		fileAction = new SwitchContentProviderAction(
				"Sort coverage per file",
				"icons/c_file_obj.gif", 
				getSTViewer().getViewer(),
				CovFileContentProvider.sharedInstance);
		fileAction.setChecked(true);

		functionAction = new SwitchContentProviderAction(
				"Sort coverage per function", 
				"icons/function_obj.gif",
				getSTViewer().getViewer(),
				CovFunctionContentProvider.sharedInstance);
	}

	/**
	 * This is a callback that will allow us
	 * to create the viewer and initialize it.
	 */
	public void createPartControl(Composite parent) {
		STDataViewersImages.getImageDescriptor(""); // workaround a bug
		super.createPartControl(parent);
		GridLayout l = (GridLayout) parent.getLayout();
		l.horizontalSpacing = 0;
		l.verticalSpacing = 0;
		l.marginHeight = 0;
		l.marginWidth = 0;
	}

	protected void createTitle(Composite parent) {
		label = new Label(parent, SWT.WRAP);
		GridData data = new GridData(SWT.FILL, SWT.BEGINNING, true, false, 1, 1);
		label.setLayoutData(data);
	}

	public static void setCovViewTitle(CovView view, String title,
			String binaryPath) {
		view.label.setText(" \n program runs = " + title
				+ " \n program file : " + binaryPath + "\n ");
		view.label.getParent().layout(true);
	}


	public static void displayCovDetailedResult(String binaryPath, String gcdaFile) {
		try {
			IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
			IFile binary = root.getFileForLocation(new Path(binaryPath));
			IProject project = null;
			if (binary != null) project = binary.getProject();

			// parse and process coverage data
			CovManager cvrgeMnger = new CovManager(binaryPath, project);
			List<String> gcdaPaths = new LinkedList<String>();
			gcdaPaths.add(gcdaFile);
			cvrgeMnger.processCovFiles(gcdaPaths, gcdaFile);
			// generate model for view
			cvrgeMnger.fillGcovView();
			
			for (SourceFile sf : cvrgeMnger.getSourceMap().values()) {
				OpenSourceFileAction.sharedInstance.openAnnotatedSourceFile(project, 
						binary, sf, 0);
			}
		} catch (Exception _) {
			final String message = "An error has occured when parsing "
				+ "the coverage data files :\n" + _.getMessage();
			Status status = new Status(Status.ERROR, Activator.PLUGIN_ID,
					IStatus.ERROR, message, _);

			Activator.getDefault().getLog().log(status);
			PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {
				public void run() {
					Shell s = PlatformUI.getWorkbench().getDisplay().getActiveShell();
					MessageDialog.openError(s, "Gcov Parsing Error", message);
				}
			});
			return;
		}
	}
	
	public static CovView displayCovResults(String binaryPath, String gcda) {
		try {

			IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
			IFile binary = root.getFileForLocation(new Path(binaryPath));
			IProject project = null;
			if (binary != null) project = binary.getProject();

			// parse and process coverage data
			CovManager cvrgeMnger = new CovManager(binaryPath, project);
			List<String> gcdaPaths = cvrgeMnger.getGCDALocations();
			cvrgeMnger.processCovFiles(gcdaPaths, gcda);
			// generate model for view
			cvrgeMnger.fillGcovView();
			//load an Eclipse view
			CovView cvrgeView = displayCovResults(cvrgeMnger);
			return cvrgeView;
		} catch (Exception _) {
			final String message = "An error has occured when parsing "
				+ "the coverage data files :\n" + _.getMessage();
			Status status = new Status(Status.ERROR, Activator.PLUGIN_ID,
					IStatus.ERROR, message, _);

			Activator.getDefault().getLog().log(status);
			PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {
				public void run() {
					Shell s = PlatformUI.getWorkbench().getDisplay().getActiveShell();
					MessageDialog.openError(s, "Gcov Parsing Error", message);
				}
			});
		}
		return null;
	}
	
	/**
	 * Used by Test engine and OpenSerAction
	 * @param cvrgeMnger
	 */
	public static CovView displayCovResults(CovManager cvrgeMnger) throws PartInitException {
			//load an Eclipse view
			IWorkbenchWindow window = PlatformUI.getWorkbench()
			.getActiveWorkbenchWindow();
			IWorkbenchPage page = window.getActivePage();
			CovView cvrgeView = (CovView) page.showView("org.eclipse.linuxtools.gcov.view");

			//view title 
			CovView.setCovViewTitle(cvrgeView, Integer
					.toString((int) cvrgeMnger.getNbrPgmRuns()), cvrgeMnger
					.getBinaryPath());

			// load the controller
			cvrgeView.setInput(cvrgeMnger);
			CovViewer stviewer = (CovViewer) cvrgeView.getSTViewer();
			stviewer.getViewer().expandToLevel(2);
			return cvrgeView;
	}
	

	/* (non-Javadoc)
	 * @see org.eclipse.linuxtools.dataviewers.abstractview.AbstractSTDataView#createExportToCSVAction()
	 */
	@Override
	protected IAction createExportToCSVAction() {
		IAction action = new STExportToCSVAction(this.getSTViewer()) {
			public void run() {
				Object o = getSTViewer().getInput();
				if (o instanceof CovManager) {
					getExporter().setFilePath(getDefaultCSVPath());
				}
				super.run();
			}
			
		};
		return action;
	}

	/**
	 * @return the defaultCSVPath
	 */
	public String getDefaultCSVPath() {
		return defaultCSVPath;
	}

	/**
	 * @param defaultCSVPath the defaultCSVPath to set
	 */
	public void setDefaultCSVPath(String defaultCSVPath) {
		this.defaultCSVPath = defaultCSVPath;
	}

}

Back to the top