Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fc1748cf9c70439e6243bc5391fbf8e1e445c073 (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
/*******************************************************************************
 * Copyright (c) 2009, 2018 Red Hat, Inc. and others
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    Kent Sebastian <ksebasti@redhat.com> - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.internal.oprofile.launch.launching;

import org.eclipse.core.resources.IProject;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.ILaunchManager;
import org.eclipse.debug.core.ILaunchesListener2;
import org.eclipse.linuxtools.internal.oprofile.core.Oprofile;
import org.eclipse.linuxtools.internal.oprofile.core.Oprofile.OprofileProject;
import org.eclipse.linuxtools.internal.oprofile.core.OprofileCorePlugin;
import org.eclipse.linuxtools.internal.oprofile.core.daemon.OprofileDaemonEvent;
import org.eclipse.linuxtools.internal.oprofile.launch.configuration.LaunchOptions;
import org.eclipse.swt.widgets.Display;

public class OprofileLaunchConfigurationDelegate extends AbstractOprofileLaunchConfigurationDelegate {

    @Override
	protected boolean preExec(LaunchOptions options, OprofileDaemonEvent[] daemonEvents, ILaunch launch) {
		// set up and launch the oprofile daemon
		IProject project = getProject();
		// Set current project to allow using the oprofile path that
		// was chosen for the project
		Oprofile.OprofileProject.setProject(project);

		if (!oprofileStatus()) {
			OprofileCorePlugin.showErrorDialog("opcontrolProvider", null); //$NON-NLS-1$
			return false;
		}

		// add a listener for termination of the launch prior to execution of launch
		ILaunchManager lmgr = DebugPlugin.getDefault().getLaunchManager();
		lmgr.addLaunchListener(new LaunchTerminationWatcher(launch, options.getExecutionsNumber()));
		return true;
	}

    @Override
    protected void postExec(LaunchOptions options, OprofileDaemonEvent[] daemonEvents, Process process) {
        // do nothing here since the termination listener already registered will handle everything needed
    }

    //A class used to listen for the termination of the current launch, and
    // run some functions when it is finished.
    class LaunchTerminationWatcher implements ILaunchesListener2 {
        private ILaunch launch;
        private int executions;
        public LaunchTerminationWatcher(ILaunch il, int executions) {
            launch = il;
            this.executions = executions;
        }
        @Override
		public void launchesTerminated(ILaunch[] launches) {
			for (ILaunch l : launches) {
				/**
				 * Dump samples from the daemon, shut down the daemon, activate the OProfile
				 * view (open it if it isn't already), refresh the view (which parses the
				 * data/ui model and displays it).
				 */
				if (l.equals(launch) && l.getProcesses().length == executions) {
					// need to run this in the ui thread otherwise get SWT Exceptions
					// based on concurrency issues
					if (!OprofileProject.getProfilingBinary().equals(OprofileProject.OCOUNT_BINARY)) {
						Display.getDefault().syncExec(() -> refreshOprofileView());
					}
				}
			}
		}
        @Override
        public void launchesAdded(ILaunch[] launches) { /* dont care */}
        @Override
        public void launchesChanged(ILaunch[] launches) { /* dont care */ }
        @Override
        public void launchesRemoved(ILaunch[] launches) { /* dont care */ }
    }

}

Back to the top