Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e280d624bfecb2225502da42c7ac8ce337ba19f9 (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
/*******************************************************************************
 * Copyright (c) 2004, 2018 Red Hat, Inc.
 * 
 * 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:
 *    Keith Seitz <keiths@redhat.com> - initial API and implementation
 *    Kent Sebastian <ksebasti@redhat.com> -
 *******************************************************************************/

package org.eclipse.linuxtools.internal.oprofile.launch.configuration;

import org.eclipse.core.resources.IProject;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.linuxtools.internal.oprofile.core.Oprofile;
import org.eclipse.linuxtools.internal.oprofile.launch.OprofileLaunchPlugin;

/**
 * Thic class represents the event configuration tab of the launcher dialog.
 * It supplies all functionality dependent on opcontrol and having root access.
 */
public class OprofileEventConfigTab extends AbstractEventConfigTab {

    @Override
    protected boolean getOprofileTimerMode() {
        return Oprofile.getTimerMode();
    }

    @Override
    public OprofileCounter getOprofileCounter(int i) {
        return new OprofileCounter(i);
    }

    @Override
    protected OprofileCounter[] getOprofileCounters(ILaunchConfiguration config) {
        return OprofileCounter.getCounters(config);
    }

    @Override
    protected int getNumberOfOprofileCounters() {
        return Oprofile.getNumberOfCounters();
    }

    @Override
    protected IProject getOprofileProject() {
        return Oprofile.OprofileProject.getProject();
    }

    @Override
    protected void setOprofileProject(IProject project) {
        Oprofile.OprofileProject.setProject(project);
    }

    @Override
    protected void updateOprofileInfo() {
        Oprofile.updateInfo();
    }

    @Override
    protected boolean checkEventSetupValidity(int counter, String name,
            int maskValue) {
        return OprofileLaunchPlugin.getCache().checkEvent(counter, name, maskValue);
    }

}

Back to the top