blob: 9e2234c09a9da2b192dcc96dd3ec2eb3261ecd4e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2013 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.launchConfigurations;
import java.util.ArrayList;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationType;
import org.eclipse.debug.internal.ui.DebugUIPlugin;
import org.eclipse.debug.ui.IDebugUIConstants;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerFilter;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkingSet;
/**
* creates a filter for the current working sets in use on the workbench to be applied in the launch configuration
* dialog and the launch history/last launched
*
* @since 3.2
*/
public class WorkingSetsFilter extends ViewerFilter {
@Override
public boolean select(Viewer viewer, Object parentElement, Object element) {
if(element instanceof ILaunchConfigurationType) {
return true;
}
if(element instanceof ILaunchConfiguration) {
ILaunchConfiguration config = (ILaunchConfiguration)element;
try {
IResource[] resources = config.getMappedResources();
if(resources == null) {
return true;
}
IWorkbenchWindow window = DebugUIPlugin.getActiveWorkbenchWindow();
if(window == null) {
return true;
}
IWorkbenchPage page = window.getActivePage();
if(page == null) {
return true;
}
IWorkingSet[] wsets = page.getWorkingSets();
if(wsets.length < 1) {
return true;
}
//remove breakpoint working sets
ArrayList<IWorkingSet> ws = new ArrayList<>();
for (IWorkingSet wset : wsets) {
if (!IDebugUIConstants.BREAKPOINT_WORKINGSET_ID.equals(wset.getId())) {
ws.add(wset);
}
}
if(ws.isEmpty()) {
return true;
}
for (IResource resource : resources) {
if (workingSetContains(ws.toArray(new IWorkingSet[ws.size()]), resource)) {
return true;
}
}
}
catch (CoreException e) {}
}
return false;
}
/**
* Determines if the specified group of working sets contains the specified resource.
* @param wsets the set of working sets to examine
* @param res the resource to check for containment
* @return true iff any one of the specified working sets contains the specified resource
* @since 3.2
*/
public static boolean workingSetContains(IWorkingSet[] wsets, IResource res) {
ArrayList<IResource> parents = new ArrayList<>();
parents.add(res);
while(res != null) {
res = res.getParent();
if(res != null) {
parents.add(res);
}
}
IResource lres = null;
for (IWorkingSet wset : wsets) {
IAdaptable[] elements = wset.getElements();
for (IAdaptable element : elements) {
lres = element.getAdapter(IResource.class);
if(lres != null) {
if(parents.contains(lres)) {
return true;
}
}
}
}
return false;
}
}