Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 855cede0932d7325927707ce576a9b2a5ffbfa4c (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
/*******************************************************************************
 * Copyright (c) 2013 Red Hat, Inc.
 * 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:
 *    Camilo Bernal <cabernal@redhat.com> - Initial Implementation.
 *******************************************************************************/
package org.eclipse.linuxtools.internal.perf.handlers;

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.linuxtools.internal.perf.IPerfData;
import org.eclipse.linuxtools.internal.perf.PerfPlugin;

/**
 * Handler for saving a perf statistics session.
 */
public class PerfSaveStatsHandler extends AbstractSaveDataHandler {

	public static String DATA_EXT = "stat"; //$NON-NLS-1$

	@Override
	public File saveData(String filename) {
		IPath newDataLoc = getNewDataLocation(filename, DATA_EXT);
		IPerfData statData = PerfPlugin.getDefault().getStatData();

		File statsData = new File(newDataLoc.toOSString());

		if (canSave(statsData)) {
			BufferedWriter bw = null;
			try {
				statsData.createNewFile();
				FileWriter fw = new FileWriter(statsData.getAbsoluteFile());
				bw = new BufferedWriter(fw);
				bw.write(statData.getPerfData());
				return statsData;
			} catch (IOException e) {
				openErroDialog(Messages.PerfSaveStat_error_title,
						Messages.PerfSaveStat_error_msg,
						newDataLoc.lastSegment());
			} finally {
				closeResource(bw);
			}
		}
		return null;
	}

	@Override
	public boolean verifyData() {
		IPerfData statData = PerfPlugin.getDefault().getStatData();
		return statData != null && statData.getPerfData() != null;
	}

}

Back to the top