blob: c5d55658cf00be06e1909c7f61ed301a7b919b3a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.sourcelookup.browsers;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.internal.ui.DebugUIPlugin;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerFilter;
import org.eclipse.swt.custom.BusyIndicator;
/**
* ArchiveFilter
*/
public class ArchiveFilter extends ViewerFilter {
/**
* Collection of archives and containers to display
*/
private Set fArchives;
/**
* Collection of already existing archives
*/
private List fExisting;
/* (non-Javadoc)
* @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
*/
public boolean select(Viewer viewer, Object parentElement, Object element) {
return fArchives.contains(element) && !fExisting.contains(element);
}
/**
* Constructs a new filter to display archives and their containers,
* excluding the resources in the given list.
*
* @param objects resources to exclude
*/
public ArchiveFilter(List objects) {
fExisting = objects;
init();
}
/**
* Search for all archives in the workspace.
*/
private void init() {
BusyIndicator.showWhile(DebugUIPlugin.getStandardDisplay(), new Runnable() {
public void run() {
fArchives = new HashSet();
traverse(ResourcesPlugin.getWorkspace().getRoot(), fArchives);
}
});
}
/**
* Traverse the given container, adding archives to the given set.
* Returns whether any files were added
*
* @param root
*/
private boolean traverse(IContainer container, Set set) {
boolean added = false;
try {
IResource[] resources = container.members();
for (int i = 0; i < resources.length; i++) {
IResource resource = resources[i];
if (resource instanceof IFile) {
IFile file = (IFile)resource;
String ext = file.getFileExtension();
if (ext != null && (ext.equalsIgnoreCase("jar") || ext.equalsIgnoreCase("zip"))) { //$NON-NLS-1$ //$NON-NLS-2$
set.add(file);
added = true;
}
} else if (resource instanceof IContainer) {
if (traverse((IContainer)resource, set)) {
set.add(resource);
added = true;
}
}
}
} catch (CoreException e) {
}
return added;
}
}