Search in sources :

Example 26 with ProjectScope

use of org.eclipse.core.resources.ProjectScope in project linuxtools by eclipse.

the class GprofShortcutTest method setUp.

@Before
public void setUp() throws Exception {
    // $NON-NLS-1$
    proj = createProjectAndBuild(FrameworkUtil.getBundle(this.getClass()), "fibTest2");
    ProjectScope ps = new ProjectScope(proj.getProject());
    ScopedPreferenceStore scoped = new ScopedPreferenceStore(ps, ProviderProfileConstants.PLUGIN_ID);
    scoped.setSearchContexts(new IScopeContext[] { ps, InstanceScope.INSTANCE });
    scoped.setValue(ProviderProfileConstants.PREFS_KEY + GPROF_CATEGORY, GPROF_PROVIDER_ID);
    scoped.setValue(ProviderProfileConstants.USE_PROJECT_SETTINGS + GPROF_CATEGORY, true);
    scoped.save();
    IExtensionPoint extPoint = Platform.getExtensionRegistry().getExtensionPoint(LAUNCH_SHORT_EXTPT);
    IConfigurationElement[] configs = extPoint.getConfigurationElements();
    for (IConfigurationElement cfg : configs) {
        if (cfg.getAttribute("id").equals(ID)) {
            // $NON-NLS-1$
            try {
                // $NON-NLS-1$
                shortcut = (ProviderLaunchShortcut) cfg.createExecutableExtension("class");
                // $NON-NLS-1$
                launchConfigTypeId = cfg.getChildren("class")[0].getChildren("parameter")[1].getAttribute("value");
            } catch (Exception e) {
                fail(e.getMessage());
            }
        }
    }
    config = createConfiguration(proj.getProject());
    launch = new Launch(config, ILaunchManager.PROFILE_MODE, null);
    wc = config.getWorkingCopy();
}
Also used : ProjectScope(org.eclipse.core.resources.ProjectScope) IExtensionPoint(org.eclipse.core.runtime.IExtensionPoint) IConfigurationElement(org.eclipse.core.runtime.IConfigurationElement) Launch(org.eclipse.debug.core.Launch) ILaunch(org.eclipse.debug.core.ILaunch) ScopedPreferenceStore(org.eclipse.ui.preferences.ScopedPreferenceStore) CModelException(org.eclipse.cdt.core.model.CModelException) Before(org.junit.Before)

Example 27 with ProjectScope

use of org.eclipse.core.resources.ProjectScope in project linuxtools by eclipse.

the class ProviderFramework method getProviderIdToRun.

/**
 * Get a provider id to run for the given profiling type.
 *
 * This first checks for a provider in the project properties if the project
 * can be found and has indicated that project preferences are to override
 * the workspace preferences.  If no project is obtainable or the project
 * has not indicated override, then it looks at provider preferences.  If these
 * are not set or the specified preference points to a non-installed provider,
 * it will look for the provider with the highest priority for the specified type.
 * If this fails, it will look for the default provider.
 *
 * @param wc The launch configuration.
 * @param type A profiling type
 * @return A provider id that contributes to the specified type
 * @since 2.0
 */
public static String getProviderIdToRun(ILaunchConfigurationWorkingCopy wc, String type) {
    String providerId = null;
    // Look for a project first
    if (wc != null) {
        try {
            IResource[] resources = wc.getMappedResources();
            if (resources != null) {
                for (int i = 0; i < resources.length; ++i) {
                    IResource resource = resources[i];
                    if (resource instanceof IProject) {
                        IProject project = (IProject) resource;
                        ScopedPreferenceStore store = new ScopedPreferenceStore(new ProjectScope(project), ProviderProfileConstants.PLUGIN_ID);
                        boolean use_project_settings = store.getBoolean(ProviderProfileConstants.USE_PROJECT_SETTINGS + type);
                        if (use_project_settings) {
                            String provider = store.getString(ProviderProfileConstants.PREFS_KEY + type);
                            if (!provider.isEmpty())
                                providerId = provider;
                        }
                    }
                }
            }
        } catch (CoreException e) {
            e.printStackTrace();
        }
    }
    // if no providerId specified for project, get one from the preferences
    if (providerId == null) {
        // Look in the preferences for a provider
        providerId = ConfigurationScope.INSTANCE.getNode(ProviderProfileConstants.PLUGIN_ID).get(ProviderProfileConstants.PREFS_KEY + type, // $NON-NLS-1$
        "");
        if (providerId.isEmpty() || getConfigurationDelegateFromId(providerId) == null) {
            // Get highest priority provider
            providerId = getHighestProviderId(type);
        }
    }
    return providerId;
}
Also used : ProjectScope(org.eclipse.core.resources.ProjectScope) CoreException(org.eclipse.core.runtime.CoreException) IResource(org.eclipse.core.resources.IResource) IExtensionPoint(org.eclipse.core.runtime.IExtensionPoint) IProject(org.eclipse.core.resources.IProject) ScopedPreferenceStore(org.eclipse.ui.preferences.ScopedPreferenceStore)

Example 28 with ProjectScope

use of org.eclipse.core.resources.ProjectScope in project linuxtools by eclipse.

the class CreaterepoPropertyPage method createContents.

@Override
protected Control createContents(Composite parent) {
    if (getElement() instanceof IResource) {
        project = ((IResource) getElement()).getProject();
    } else {
        Object adapter = getElement().getAdapter(IResource.class);
        if (adapter instanceof IResource) {
            project = ((IResource) adapter).getProject();
        }
    }
    setPreferenceStore(new ScopedPreferenceStore(new ProjectScope(project), Activator.PLUGIN_ID));
    preferenceStore = getPreferenceStore();
    return addContents(parent);
}
Also used : ProjectScope(org.eclipse.core.resources.ProjectScope) IResource(org.eclipse.core.resources.IResource) ScopedPreferenceStore(org.eclipse.ui.preferences.ScopedPreferenceStore)

Aggregations

ProjectScope (org.eclipse.core.resources.ProjectScope)28 IScopeContext (org.eclipse.core.runtime.preferences.IScopeContext)13 IProject (org.eclipse.core.resources.IProject)11 ScopedPreferenceStore (org.eclipse.ui.preferences.ScopedPreferenceStore)9 IEclipsePreferences (org.eclipse.core.runtime.preferences.IEclipsePreferences)6 Preferences (org.osgi.service.prefs.Preferences)5 IResource (org.eclipse.core.resources.IResource)3 CoreException (org.eclipse.core.runtime.CoreException)3 IExtensionPoint (org.eclipse.core.runtime.IExtensionPoint)3 BackingStoreException (org.osgi.service.prefs.BackingStoreException)3 File (java.io.File)2 IFile (org.eclipse.core.resources.IFile)2 IConfigurationElement (org.eclipse.core.runtime.IConfigurationElement)2 IPath (org.eclipse.core.runtime.IPath)2 InstanceScope (org.eclipse.core.runtime.preferences.InstanceScope)2 ILaunch (org.eclipse.debug.core.ILaunch)2 Launch (org.eclipse.debug.core.Launch)2 Before (org.junit.Before)2 PersistenceException (org.talend.commons.exception.PersistenceException)2 IOException (java.io.IOException)1